forked from farcasterxyz/contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfoundry.toml
More file actions
32 lines (29 loc) · 731 Bytes
/
foundry.toml
File metadata and controls
32 lines (29 loc) · 731 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
[profile.default]
solc_version = "0.8.21"
evm_version = "paris"
optimizer_runs = 100_000
fuzz = { runs = 512 }
remappings = [
"solmate/=lib/solmate/",
"openzeppelin/=lib/openzeppelin-contracts/",
"openzeppelin-latest/=lib/openzeppelin-latest/",
"chainlink/=lib/chainlink-brownie-contracts/contracts/src/"
]
no_match_path = "test/Deploy/*"
libs = ["node_modules", "lib"]
bytecode_hash = 'none'
[profile.ci]
verbosity = 3
fuzz = { runs = 2500 }
no_match_path = ""
match_path = "test/*/**"
[fmt]
line_length = 120
tab_width = 4
quote_style = "double"
bracket_spacing = false
int_types = "long"
multiline_func_header = "params_first"
[rpc_endpoints]
l2_mainnet = "${L2_MAINNET_RPC_URL}"
l1_mainnet = "${L1_MAINNET_RPC_URL}"