Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add base #1703

Merged
merged 6 commits into from
Jan 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Polygon zkEVM
- Optimisim (fixed explorer support)
- Gnosis Chain
- Base chain

## [1.19.3](https://github.com/eth-brownie/brownie/tree/v1.19.3) - 2023-01-29
### Added
Expand Down
21 changes: 20 additions & 1 deletion brownie/data/network-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,13 @@ live:
host: https://zkevm-rpc.com
id: zkevm-main
name: Polygon zkEVM mainnet
- name: Base
networks:
- chainid: 8453
explorer: https://api.basescan.org/api
host: https://mainnet.base.org
id: base-main
name: Base mainnet



Expand Down Expand Up @@ -361,4 +368,16 @@ development:
accounts: 10
evm_version: istanbul
mnemonic: brownie
fork: zkevm-main
fork: zkevm-main
- name: Ganache-CLI Base-Mainnet Fork)
id: base-main-fork
cmd: ganache-cli
host: http://127.0.0.1
timeout: 120
cmd_settings:
port: 8545
gas_limit: 20000000
accounts: 10
evm_version: istanbul
mnemonic: brownie
fork: base-main
3 changes: 2 additions & 1 deletion brownie/network/contract.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@
"snowtrace": "SNOWTRACE_TOKEN",
"aurorascan": "AURORASCAN_TOKEN",
"moonscan": "MOONSCAN_TOKEN",
"gnosisscan": "GNOSISSCAN_TOKEN"
"gnosisscan": "GNOSISSCAN_TOKEN",
"base": "BASESCAN_TOKEN"
}


Expand Down