-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathbrownie-config.yaml
86 lines (80 loc) · 2.19 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# Brownie configuration file
# https://eth-brownie.readthedocs.io/en/stable/config.html
project_structure:
build: build
contracts: contracts
interfaces: interfaces
reports: reports
scripts: scripts
tests: tests
networks:
default: development
development:
gas_limit: max
gas_buffer: 1
gas_price: 0
max_fee: null
priority_fee: null
reverting_tx_gas_limit: max
default_contract_owner: true
cmd_settings:
port: 8555
gas_limit: 8000000
accounts: 10
evm_version: istanbul
mnemonic: brownie
block_time: 0
default_balance: 100
#time: 2020-05-08T14:54:08+0000
live:
gas_limit: auto
gas_buffer: 1.1
gas_price: auto
max_fee: null
priority_fee: null
reverting_tx_gas_limit: false
default_contract_owner: false
compiler:
evm_version: null
solc:
version: null
optimizer:
enabled: true
runs: 200
remappings:
- "@openzeppelin-4.7.0=./node_modules/openzeppelin-4.7.0"
- "@openzeppelin-3.4.0=./node_modules/openzeppelin-3.4.0"
- "@openzeppelin-2.5.0=./node_modules/openzeppelin-2.5.0"
- "@uniswap=./node_modules/@uniswap"
- "@celer=./node_modules/celer"
- "prb-math=./node_modules/prb-math"
console:
show_colors: true
color_style: monokai
auto_suggest: true
completions: true
reports:
exclude_paths:
- contracts/testhelpers/**/*.*
- contracts/openzeppelin/**/*.*
- contracts/feeds/testnet/**/*.*
exclude_contracts:
- Address
- Context
- Ownable
- ReentrancyGuard
- SafeERC20
- SafeMath
- EnumerableBytes32Set
hypothesis:
deadline: null
max_examples: 50
report_multiple_bugs: False
stateful_step_count: 10
autofetch_sources: false
dependencies:
- OpenZeppelin/openzeppelin-contracts@4.3.2
- OpenZeppelin/openzeppelin-contracts@3.4.0
- OpenZeppelin/openzeppelin-contracts@2.5.0
- paulrberg/prb-math@2.4.1
dev_deployment_artifacts: false