forked from lonerapier/unifap-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfoundry.toml
27 lines (25 loc) · 813 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
23
24
25
26
27
# Foundry Configuration File
# Default definitions: https://github.com/gakonst/foundry/blob/b7917fa8491aedda4dd6db53fbb206ea233cd531/config/src/lib.rs#L782
# See more config options at: https://github.com/gakonst/foundry/tree/master/config
# The Default Profile
[default]
# Sets the concrete solc version to use
# This overrides the `auto_detect_solc` value
solc_version = '0.8.12'
auto_detect_solc = false
# Increase optimizer_runs
optimizer = true
optimizer_runs = 1_000
# Fuzz more than the default 256
fuzz_runs = 1_000
# Configure remappings
remappings = [
"@ds=lib/ds-test/src/",
"@std=lib/forge-std/src/",
"@solmate=lib/solmate/src/",
"@clones=lib/clones-with-immutable-args/src/",
"@openzeppelin=lib/openzeppelin-contracts/contracts/"
]
# Extreme Fuzzing CI Profile :P
[ci]
fuzz_runs = 100_000