Skip to content

Commit

Permalink
chore: update foundry.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
madlabman committed Feb 29, 2024
1 parent 82c3355 commit 6b92193
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions foundry.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,25 @@
[profile.default]
solc = "0.8.24"
evm_version = "cancun"
optimizer = true
optimizer_runs = 1_000
bytecode_hash = "none" # The metadata hash removed from the bytecode (not the metadata itself).

src = "src"
out = "out"
libs = ["lib", "node_modules"]
cache_path = "cache"
optimizer = true
optimizer_runs = 1_000
evm_version = "shanghai"

block_gas_limit = 30_000_000
fs_permissions = [{ access = "write", path = "./out" }, { access = "read", path = "./test/fixtures" }]
fuzz = { runs = 256 }

fs_permissions = [
{ access = "write", path = "./out" },
{ access = "read", path = "./test/fixtures" }
]

[fmt]
line_length = 80
tab_width = 4
bracket_spacing = true
[profile.ci]
verbosity = 3
fuzz = { runs = 10_000 }

# See more config options https://github.com/foundry-rs/foundry/tree/master/config
# See more config options https://github.com/foundry-rs/foundry/tree/master/crates/config

0 comments on commit 6b92193

Please sign in to comment.