-
Notifications
You must be signed in to change notification settings - Fork 17
/
brownie-config.json
60 lines (59 loc) · 1.34 KB
/
brownie-config.json
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
{
"network_defaults":{
"name": "development",
"gas_limit": false,
"gas_price": false
},
"networks": {
"development": {
"test-rpc": "ganache-cli",
"host": "http://127.0.0.1:8545",
"broadcast_reverting_tx": true
},
"ropsten": {
"host": "https://ropsten.infura.io/",
"broadcast_reverting_tx": false
}
},
"test":{
"gas_limit": 6721975,
"default_contract_owner": false,
"broadcast_reverting_tx": true
},
"solc":{
"optimize": true,
"runs": 200,
"version": "0.5.7"
},
"logging": {
"test": {
"tx": 0,
"exc": [1, 2]
},
"run": {
"tx": [1, 2],
"exc": 2
},
"console": {
"tx": 1,
"exc": 2
},
"coverage": {
"tx": 0,
"exc": [1, 2]
}
},
"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"
}
}