-
Notifications
You must be signed in to change notification settings - Fork 50
/
brownie-config.yaml
55 lines (49 loc) · 1.22 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
# use Ganache's forked mainnet mode as the default network
networks:
default: mainnet-fork
mainnet-fork:
explorer: https://api.etherscan.io/api
cmd: ganache-cli
cmd_settings:
accounts: 50
mnemonic: brownie
fork: https://eth-mainnet.alchemyapi.io/v2/$ALCHEMYAPI_TOKEN
default_balance: 500 ether
chain_id: 1
bsc:
explorer: https://www.bscscan.com/
host: https://bsc-dataseed1.binance.org
bsc-fork:
id: bsc-fork
cmd: ganache-cli
host: http://127.0.0.1
cmd_settings:
timeout: 120
accounts: 10
evm_version: istanbul
fork: bsc
gas_limit: 12000000
mnemonic: brownie
port: 8545
project_structure:
contracts: contracts
interfaces: interfaces
build: build
reports: reports
scripts: scripts
tests: tests
# automatically fetch contract sources from Etherscan
autofetch_sources: True
# require OpenZepplin Contracts
dependencies:
- iearn-finance/[email protected]
- OpenZeppelin/[email protected]
reports:
exclude_paths:
- contracts/test/Token.sol
exclude_contracts:
- SafeMathUpgradeable
- AccessControlUpgradeable
- EnumerableSetUpgradeable
- SafeERC20Upgradeable
- ERC20Upgradeable