forked from zkemail/email-recovery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfoundry.toml
35 lines (33 loc) · 808 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
[profile.default]
evm_version = "cancun"
src = "src"
out = "out"
script = "script"
libs = ["node_modules", "lib"]
fs_permissions = [
{ access = "read", path = "out-optimized" },
{ access = "read-write", path = "gas_calculations" },
]
allow_paths = ["*", "/"]
ignored_warnings_from = [
"node_modules",
"node_modules/@rhinestone/modulekit/src/**/*.sol",
"lib",
]
threads = 1
gas_limit = "18446744073709551615"
memory_limit = 1844674407370955161
[rpc_endpoints]
sepolia = "${BASE_SEPOLIA_RPC_URL}"
[etherscan]
sepolia = { key = "${BASE_SCAN_API_KEY}" }
[fmt]
bracket_spacing = true
int_types = "long"
line_length = 100
multiline_func_header = "all"
number_underscore = "thousands"
quote_style = "double"
tab_width = 4
wrap_comments = true
ignore = ["./src/libraries/L2ContractHelper.sol"]