-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfoundry.toml
More file actions
38 lines (30 loc) · 869 Bytes
/
Copy pathfoundry.toml
File metadata and controls
38 lines (30 loc) · 869 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
37
38
[profile.default]
solc_version = "0.8.28"
evm_version = "cancun"
optimizer = true
optimizer_runs = 200
src = "src"
test = "test"
script = "script"
out = "out"
libs = ["lib"]
ffi = true
fs_permissions = [
{ access = "read", path = "./circuits/target" },
{ access = "read", path = "./test/fixtures" },
{ access = "read", path = "./out" },
]
fuzz = { runs = 256, max_test_rejects = 65536 }
# Generated verifiers are out-of-scope (regenerated via `make fixtures`); the
# HonkVerificationKey struct literal trips via-IR stack-too-deep under coverage.
no_match_coverage = "(src/generated|test|script)"
remappings = [
"forge-std/=lib/forge-std/src/",
]
[rpc_endpoints]
sepolia = "${SEPOLIA_RPC_URL}"
base_sepolia = "${BASE_SEPOLIA_RPC_URL}"
[etherscan]
sepolia = { key = "${ETHERSCAN_API_KEY}", chain = "sepolia" }
[profile.ci]
fuzz = { runs = 10000 }