forked from omni-network/omni
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfoundry.toml
40 lines (32 loc) · 865 Bytes
/
foundry.toml
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
[profile.default]
src = "src"
out = "out"
libs = ["node_modules"]
remappings = [
"forge-std/=node_modules/forge-std/src",
"ds-test/=node_modules/ds-test/src",
"src/=src",
"test/=test",
"avs/=../avs/src",
# remapping for eigenlayers import
'@openzeppelin-upgrades/contracts/=node_modules/@openzeppelin/contracts-upgradeable',
]
fs_permissions = [
{ access = "read-write", path = "./test" },
{ access = "read-write", path = "./script" },
{ access = "read", path = "./out" },
]
allow_paths = ["../avs"]
gas_limit = 9223372036854775807 # prev foundry default
ffi = true
# TODO: upgrade solc
solc_version = "0.8.24"
[fuzz]
seed = "0x6eed"
[fmt]
bracket_spacing = true
number_underscore = "thousands"
[etherscan]
holesky = { key = "${ETHERSCAN_KEY}" }
optimism_sepolia = { key = "${OPSCAN_KEY}" }
arbitrum_sepolia = { key = "${ARBSCAN_KEY}" }