-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfoundry.toml
More file actions
31 lines (26 loc) · 935 Bytes
/
Copy pathfoundry.toml
File metadata and controls
31 lines (26 loc) · 935 Bytes
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
[profile.default]
src = 'src/contracts'
test = 'src/test'
out = 'out'
libs = ['lib']
gas_reports = ["*"]
remappings = [
'ds-test/=lib/ds-test/src/',
'@openzeppelin/=node_modules/@openzeppelin/',
'@rari-capital/solmate/=node_modules/@rari-capital/solmate/',
'@contracts/=src/contracts/',
'hardhat/=node_modules/hardhat/',
]
optimizer = true # Enable or disable the solc optimizer
optimizer_runs = 200 # The number of optimizer runs
verbosity = 5 # The verbosity of tests
invariant_runs = 250000 # The number of calls to make in the invariant tests
invariant_depth = 50 # The number of times to run the invariant tests
invariant_call_override = false # Override calls
invariant_fail_on_revert = false # Fail the test if the contract reverts
[profile.local]
fuzz_runs = 100
[profile.deep]
fuzz_runs = 500
[profile.super_deep]
fuzz_runs = 50000