-
Notifications
You must be signed in to change notification settings - Fork 3
/
foundry.toml
48 lines (40 loc) · 1.01 KB
/
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
41
42
43
44
45
46
47
48
[fmt]
sort_imports=true
bracket_spacing = true
int_types = "long"
line_length = 120
multiline_func_header = "all"
number_underscore = "thousands"
quote_style = "double"
tab_width = 4
wrap_comments = true
ignore = ["src/codegen/**/*"]
[profile.default]
solc_version = "0.8.24"
ffi = false
optimizer = true
optimizer_runs = 3000
verbosity = 1
src = "src"
test = "test"
out = "out"
allow_paths = ["./node_modules"]
extra_output_files = [
"abi",
"evm.bytecode"
]
fs_permissions = [{ access = "read", path = "./"}]
[fuzz]
runs = 2056
[profile.redstone-mainnet]
eth_rpc_url = "https://rpc.redstonechain.com"
[profile.redstone-garnet]
eth_rpc_url = "https://rpc.garnetchain.com"
[profile.redstone-holesky-legacy]
eth_rpc_url = "https://rpc.holesky.redstone.xyz"
[profile.lattice-901]
eth_rpc_url = "https://redstone.linfra.xyz"
[profile.base-sepolia]
eth_rpc_url = "https://sepolia.base.org"
[profile.base-mainnet]
eth_rpc_url = "https://base-mainnet.blastapi.io/"