-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfoundry.toml
More file actions
38 lines (33 loc) · 868 Bytes
/
foundry.toml
File metadata and controls
38 lines (33 loc) · 868 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 = "0.8.28"
evm_version = "cancun"
bytecode_hash = "ipfs"
optimizer_runs = 1_000_000
libs = ['lib']
remappings = [
"amm-core/=lib/amm-core/src/"
]
match_path = "test/unit/*.sol"
block_base_fee_per_gas = 10_000_000 # set to arbitrum's base fee of 0.01 gwei
verbosity = 3
fs_permissions = [
{ access = "read", path = "./out" }
]
ignored_error_codes = []
skip = ["test/large/*.sol"]
[profile.default.fuzz]
seed = "0xe9cdc8fb2a2c0d1c046034d74d6498826ae3f1d9877353cf40d8a6a7aedfe875"
[profile.large-test]
via_ir = true
match_path = "test/large/*.sol"
match_test = "testGetQuote_RandomizeAllParam_3HopRoute"
skip = []
[profile.integration]
match_path = "test/integration/*.sol"
[fmt]
bracket_spacing = true
wrap_comments = false
number_underscore = "thousands"
int_types = "long"
[profile.script]
optimizer_runs = 1_000_000