-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfoundry.toml
More file actions
36 lines (29 loc) · 1011 Bytes
/
Copy pathfoundry.toml
File metadata and controls
36 lines (29 loc) · 1011 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
32
33
34
35
36
# TOML assigns every key to the header above it, so all of foundry's keys sit
# under foundry's headers, ahead of the `[dependencies]` and `[soldeer]`
# sections that belong to soldeer. A key that drifts below one of those headers
# becomes soldeer config and foundry silently falls back to its own default.
# See more config options https://github.com/foundry-rs/foundry/tree/master/config
[profile.default]
src = 'src'
out = 'out'
libs = ['dependencies']
solc = "0.8.25"
evm_version = "cancun"
# Try to make sure the optimizer doesn't touch the output in a way that can break
# source maps for debugging.
# via_ir = false
# optimizer = false
# optimizer_runs = 0
# optimizer_steps = 0
# These settings are used for every build, including snapshots.
optimizer = true
optimizer_runs = 1000000
# No metadata hash in the bytecode, so a build is reproducible byte for byte.
bytecode_hash = "none"
cbor_metadata = false
[fuzz]
runs = 2048
[dependencies]
forge-std = "1.16.1"
[soldeer]
recursive_deps = false