forked from consenlabs/tokenlon-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfoundry.toml
22 lines (19 loc) · 794 Bytes
/
foundry.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[profile.default]
src = 'contracts' # the source directory
cache = true # whether to cache builds or not
force = false # whether to ignore the cache (clean build)
evm_version = "shanghai"
solc_version = "0.8.26"
optimizer = true # enable or disable the solc optimizer
optimizer_runs = 1000 # the number of optimizer runs
verbosity = 3 # The verbosity of tests
isolate = true # enable or disable the isolate mode for calculating gas usage correctly
fs_permissions = [
{ access = "read", path = "./test/utils/config/" },
{ access = "read", path = "./test/utils/payload/" },
]
[profile.ci]
force = false # whether to ignore the cache (clean build)
[fuzz]
runs = 1000 # the number of fuzz runs for tests
# See more config options https://github.com/foundry-rs/foundry/tree/master/config