-
Notifications
You must be signed in to change notification settings - Fork 0
/
brownie-config.yaml
203 lines (202 loc) · 5.75 KB
/
brownie-config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
live:
- name: Ethereum
networks:
- name: Mainnet (Infura)
chainid: 1
id: mainnet
host: https://spring-delicate-paper.quiknode.pro/$QUIKNODE_ID/
explorer: https://api.etherscan.io/api
multicall2: "0x5BA1e12693Dc8F9c48aAD8770482f4739bEeD696"
- name: Ropsten (Infura)
chainid: 3
id: ropsten
host: https://ropsten.infura.io/v3/$WEB3_INFURA_PROJECT_ID
explorer: https://api-ropsten.etherscan.io/api
multicall2: "0x5BA1e12693Dc8F9c48aAD8770482f4739bEeD696"
- name: Rinkeby (Infura)
chainid: 4
id: rinkeby
host: https://rinkeby.infura.io/v3/$WEB3_INFURA_PROJECT_ID
explorer: https://api-rinkeby.etherscan.io/api
multicall2: "0x5BA1e12693Dc8F9c48aAD8770482f4739bEeD696"
- name: Goerli (Infura)
chainid: 5
id: goerli
host: https://goerli.infura.io/v3/$WEB3_INFURA_PROJECT_ID
explorer: https://api-goerli.etherscan.io/api
multicall2: "0x5BA1e12693Dc8F9c48aAD8770482f4739bEeD696"
- name: Kovan (Infura)
chainid: 42
id: kovan
host: https://kovan.infura.io/v3/$WEB3_INFURA_PROJECT_ID
explorer: https://api-kovan.etherscan.io/api
multicall2: "0x5BA1e12693Dc8F9c48aAD8770482f4739bEeD696"
- name: Ethereum Classic
networks:
- name: Mainnet
chainid: 61
id: etc
host: https://www.ethercluster.com/etc
explorer: https://blockscout.com/etc/mainnet/api
- name: Kotti
chainid: 6
id: kotti
host: https://www.ethercluster.com/kotti
explorer: https://blockscout.com/etc/kotti/api
- name: Binance Smart Chain
networks:
- name: Testnet
chainid: 97
id: bsc-test
host: https://data-seed-prebsc-1-s1.binance.org:8545
explorer: https://api-testnet.bscscan.com/api
- name: Mainnet
chainid: 56
id: bsc-main
host: https://bsc-dataseed.binance.org
explorer: https://api.bscscan.com/api
- name: Fantom Opera
networks:
- name: Testnet
chainid: 0xfa2
id: ftm-test
host: https://rpc.testnet.fantom.network
explorer: https://explorer.testnet.fantom.network
- name: Mainnet
chainid: 250
id: ftm-main
host: https://rpcapi.fantom.network
explorer: https://api.ftmscan.com/api
- name: Polygon
networks:
- name: Mainnet (Infura)
chainid: 137
id: polygon-main
host: https://polygon-mainnet.infura.io/v3/$WEB3_INFURA_PROJECT_ID
explorer: https://api.polygonscan.com/api
multicall2: "0xc8E51042792d7405184DfCa245F2d27B94D013b6"
- name: Mumbai Testnet (Infura)
chainid: 80001
id: polygon-test
host: https://polygon-mumbai.infura.io/v3/$WEB3_INFURA_PROJECT_ID
explorer: https://api-testnet.polygonscan.com/api
multicall2: "0x6842E0412AC1c00464dc48961330156a07268d14"
- name: XDai
networks:
- name: Mainnet
chainid: 100
id: xdai-main
host: https://xdai.poanetwork.dev
explorer: https://blockscout.com/xdai/mainnet/api
- name: Testnet
chainid: 77
id: xdai-test
host: https://sokol.poa.network
explorer: https://blockscout.com/poa/sokol/api
- name: Arbitrum
networks:
- name: Mainnet
chainid: 42161
id: arbitrum-main
host: https://arb-mainnet.g.alchemy.com/v2/$ALCHEMY_ID
explorer: https://api.arbiscan.io/api
multicall2: "0x5B5CFE992AdAC0C9D48E05854B2d91C73a003858"
development:
- name: Ganache-CLI
id: development
cmd: ganache-cli
host: http://127.0.0.1
cmd_settings:
port: 8545
gas_limit: 12000000
accounts: 10
evm_version: istanbul
mnemonic: brownie
- name: Geth Dev
id: geth-dev
cmd: ethnode
host: http://127.0.0.1
cmd_settings:
port: 8545
- name: Hardhat
id: hardhat
cmd: npx hardhat node
host: http://127.0.0.1
cmd_settings:
port: 8545
- name: Hardhat (Mainnet Fork)
id: hardhat-fork
cmd: npx hardhat node
host: http://127.0.0.1
timeout: 120
cmd_settings:
port: 8545
fork: mainnet
- name: Ganache-CLI (Mainnet Fork)
id: mainnet-fork
cmd: ganache-cli
host: http://127.0.0.1
timeout: 120
cmd_settings:
port: 8545
gas_limit: 12000000
accounts: 10
evm_version: istanbul
mnemonic: brownie
fork: mainnet
- name: Ganache-CLI (BSC-Mainnet Fork)
id: bsc-main-fork
cmd: ganache-cli
host: http://127.0.0.1
timeout: 120
cmd_settings:
port: 8545
gas_limit: 12000000
accounts: 10
evm_version: istanbul
mnemonic: brownie
fork: bsc-main
- name: Ganache-CLI (FTM-Mainnet Fork)
id: ftm-main-fork
cmd: ganache-cli
host: http://127.0.0.1
timeout: 120
cmd_settings:
port: 8545
gas_limit: 12000000
accounts: 10
evm_version: istanbul
mnemonic: brownie
fork: ftm-main
- name: Ganache-CLI (Polygon-Mainnet Fork)
id: polygon-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: polygon-main
- name: Ganache-CLI (XDai-Mainnet Fork)
id: xdai-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: xdai-main
- name: Hardhat (Arbitrum Fork)
id: hardhat-arbitrum-fork
cmd: npx hardhat node
host: http://127.0.0.1
timeout: 120
cmd_settings:
port: 8545
fork: arbitrum-main