-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfoundry.toml
21 lines (20 loc) · 1.62 KB
/
foundry.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[profile.default]
src = 'src' # the source directory
test = 'test' # the test directory
out = 'out' # the output directory (for artifacts)
libs = ['lib'] # a list of library directories
libraries = [] # a list of deployed libraries to link against
cache = true # whether to cache builds or not
force = false # whether to ignore the cache (clean build)
evm_version = 'london' # the evm version (by hardfork name)
#solc_version = '0.8.17' # override for the solc version (setting this ignores `auto_detect_solc`)
auto_detect_solc = true # enable auto-detection of the appropriate solc version to use
offline = false # disable downloading of missing solc version(s)
optimizer = true # enable or disable the solc optimizer
optimizer_runs = 2000 # the number of optimizer runs
verbosity = 3 # the verbosity of tests
ffi = false # whether to enable ffi or not
gas_reports = ["Example721"]
fs_permissions = [{ access = 'read', path = './test/file_utils'}]
[fuzz]
runs = 10000