-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathfoundry.toml
More file actions
43 lines (39 loc) · 1.03 KB
/
foundry.toml
File metadata and controls
43 lines (39 loc) · 1.03 KB
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
39
40
41
42
43
[profile.ci.fuzz]
runs = 7_000
[profile.default]
# Skip gas tests on CI
# Run them in development manually by commenting `no_match_path` line and running "forge test --mc ETHTransferTest -vvvv"
# don't forget to turn on the optimizer :)
fs_permissions = [{ access = "read-write", path = "./"}, { access = "read", path = "./test/data/"}]
gas_reports=[
"PufferProtocol",
"GuardianModule",
"RestakingOperator",
"EnclaveVerifier",
"PufferModuleManager",
"PufferModule",
"ValidatorTicket"
]
block_number = 0 # Our RAVE evidence is generated for blockhash(0) which is bytes32(0)
auto_detect_solc = false
cbor_metadata = false
bytecode_hash = "none"
optimizer = true
optimizer_runs = 200
seed = "0x1337" # uncomment / change when debugging fuzz tests
# via_ir = true
solc = "0.8.26"
evm_version = "cancun"
[fmt]
line_length = 120
int_types = "long"
tab_width = 4
quote_style = "double"
bracket_spacing = true
[rpc_endpoints]
mainnet="${ETH_RPC_URL}"
holesky="${HOLESKY_RPC_URL}"
[invariant]
fail_on_revert=false
depth = 110
runs = 50