-
Notifications
You must be signed in to change notification settings - Fork 0
/
brownie-config.yaml
69 lines (67 loc) · 2.16 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
# Brownie configuration file
# https://eth-brownie.readthedocs.io/en/stable/config.html
network:
default: development # the default network that brownie connects to
settings:
gas_limit: "auto"
gas_price: "auto"
persist: true
reverting_tx_gas_limit: false # if false, reverting tx's will raise without broadcasting
networks:
# any settings given here will replace the defaults
development:
host: http://127.0.0.1
gas_price: 0
persist: false
reverting_tx_gas_limit: 6721975
test_rpc:
cmd: ganache-cli
port: 8545
gas_limit: 6721975
accounts: 10
evm_version: istanbul
mnemonic: brownie
# set your Infura API token to the environment variable WEB3_INFURA_PROJECT_ID
mainnet:
host: https://mainnet.infura.io/v3/$WEB3_INFURA_PROJECT_ID
goerli:
host: https://goerli.infura.io/v3/$WEB3_INFURA_PROJECT_ID
kovan:
host: https://kovan.infura.io/v3/$WEB3_INFURA_PROJECT_ID
rinkeby:
host: https://rinkeby.infura.io/v3/$WEB3_INFURA_PROJECT_ID
ropsten:
host: https://ropsten.infura.io/v3/$WEB3_INFURA_PROJECT_ID
classic:
host: https://www.ethercluster.com/etc
kotti:
host: https://www.ethercluster.com/kotti
pytest:
# these settings replace the defaults when running pytest
gas_limit: 6721975
default_contract_owner: true
reverting_tx_gas_limit: 6721975
revert_traceback: true
compiler:
evm_version: null
minify_source: false
solc:
version: 0.6.12
optimize: true
runs: 200
remappings:
- "@openzeppelin=OpenZeppelin/[email protected]"
dependencies:
- OpenZeppelin/[email protected]
colors:
key:
value: bright blue
callable: bright cyan
module: bright blue
contract: bright magenta
contract_method: bright magenta
string: bright magenta
dull: dark white
error: bright red
success: bright green
pending: bright yellow