This repository has been archived by the owner on Apr 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbrownie-config.yaml
57 lines (45 loc) · 1.8 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
# exclude SafeMath when calculating test coverage
# https://eth-brownie.readthedocs.io/en/v1.10.3/config.html#exclude_paths
reports:
exclude_contracts:
- SafeMath
# change the build directory to be within react's scope
project_structure:
build: client/src/artifacts
dependencies:
- smartcontractkit/[email protected]
- OpenZeppelin/[email protected]
compiler:
solc:
remappings:
- '@chainlink=smartcontractkit/[email protected]'
- '@openzeppelin=OpenZeppelin/[email protected]'
# automatically fetch contract sources from Etherscan
autofetch_sources: True
dotenv: .env
networks:
default: development
development:
keyhash: '0x6c3699283bda56ad74f6b855546325b68d482e983852a7a82979cc4807b641f4'
fee: 100000000000000000
jobId: '29fa9aa13bf1468788b7cc4a500a45b8'
update_interval: 60
verify: False
kovan:
link_address: '0xa36085F69e2889c224210F603D836748e7dC0088'
keyhash: '0x6c3699283bda56ad74f6b855546325b68d482e983852a7a82979cc4807b641f4'
fee: 100000000000000000
oracle: '0xc57B33452b4F7BB189bB5AfaE9cc4aBa1f7a4FD8'
jobID: 'd5270d1c311941d0b08bead21fea7747'
dai_address: '0xff795577d9ac8bd7d90ee22b6c1703490b6512fd'
adai_address: '0xdCf0aF9e59C002FA3AA091a46196b37530FD48a8'
poolAddressProvider: '0x88757f2f99175387aB4C6a4b3067c77A695b0349'
# Kovan aave token contract addresses: https://aave.github.io/aave-addresses/kovan.json
# Kovan aave contract addresses: https://docs.aave.com/developers/v/2.0/deployed-contracts/amm-market
# Change to True if you have an Etherscan API key and want to verify
verify: False
update_interval: 60
wallets:
from_key: ${PRIVATE_KEY}
# enable output of development artifacts to load with react
dev_deployment_artifacts: true