-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathbrownie-config.yaml
58 lines (54 loc) · 1.79 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
# secrets management via .env (excluded via .gitignore)
dotenv: .env
networks:
default: development
development:
gas_price: 1 # (1 wei)
cmd_settings:
# without this explicit setting chainid==1 is returend by block.chainid
accounts: 20
chain_id: 1337
# brownie default values made explicit
compiler:
evm_version: null
solc:
version: 0.8.2
optimizer:
enabled: true
runs: 200
# https://eth-brownie.readthedocs.io/en/stable/compile.html#compiler-settings
remappings:
- "@openzeppelin=OpenZeppelin/openzeppelin-contracts@4.7.3"
- "@chainlink=smartcontractkit/chainlink@1.6.0"
- "@etherisc/gif-interface=etherisc/gif-interface@6da625a"
# packages below will be added to brownie
# you may use 'brownie pm list' after 'brownie compile'
# to list the packages installed via the dependency list below
dependencies:
# **Important**: If you update any version here, please also update them in .vscode/settings.json section 'solidity.remappingsUnix'
# github dependency format: <owner>/<repository>@<release>
- OpenZeppelin/openzeppelin-contracts@4.7.3
- smartcontractkit/chainlink@1.6.0
- etherisc/gif-interface@6da625a
# exclude open zeppeling contracts when calculating test coverage
# https://eth-brownie.readthedocs.io/en/v1.10.3/config.html#exclude_paths
reports:
exclude_contracts:
# chainlink
- ChainlinkClient
- Operator
# openzeppelin
- AccessControl
- AccessControlEnumerable
- Context
- Ownable
- EnumerableMap
- EnumerableSet
- ERC1967Proxy
- ERC20
- ERC721
- IERC20
- IERC721
- Initializable
- SafeERC20
- Strings