-
Notifications
You must be signed in to change notification settings - Fork 55
/
brownie-config.yaml
35 lines (35 loc) · 1.23 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
# exclude SafeMath when calculating test coverage
# https://eth-brownie.readthedocs.io/en/v1.10.3/config.html#exclude_paths
reports:
exclude_contracts:
- SafeMath
- MockV3Aggregator
- DappToken
- MockERC20
dependencies:
- smartcontractkit/[email protected]
- OpenZeppelin/[email protected]
compiler:
solc:
remappings:
- "@chainlink=smartcontractkit/[email protected]"
- "@openzeppelin=OpenZeppelin/[email protected]"
autofetch_sources: True
dotenv: .env
networks:
development:
verify: False
rinkeby:
link_token: "0x01BE23585060835E02B77ef475b0Cc51aA1e0709"
eth_usd_price_feed: "0x8A753747A1Fa494EC906cE90E9f37563A8AF630e"
dai_usd_price_feed: "0x2bA49Aaa16E6afD2a993473cfB70Fa8559B523cF"
verify: True
kovan:
weth_token: "0xd0a1e359811322d97991e03f863a0c30c2cf029c"
fau_token: "0xFab46E002BbF0b4509813474841E0716E6730136"
eth_usd_price_feed: "0x9326BFA02ADD2366b30bacB125260Af641031331"
dai_usd_price_feed: "0x777A68032a88E5A84678A77Af2CD65A7b3c0775a"
verify: True
wallets:
from_key: ${PRIVATE_KEY}
from_mnemonic: ${MNEMONIC}