-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfoundry.toml
38 lines (35 loc) · 1.05 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
# Full reference https://github.com/foundry-rs/foundry/tree/master/crates/config
[profile.default]
auto_detect_solc = false
block_timestamp = 1_738_368_000 # Feb 1, 2025 at 00:00 UTC
bytecode_hash = "none"
evm_version = "shanghai"
fuzz = { runs = 1_000 }
gas_reports = ["*"]
optimizer = true
optimizer_runs = 100_000
out = "out"
script = "script"
solc = "0.8.28"
src = "src"
test = "test"
[fmt]
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
[rpc_endpoints]
arbitrum = "https://rpc.ankr.com/arbitrum"
arbitrum_sepolia = "https://arbitrum-sepolia-rpc.publicnode.com"
base = "https://mainnet.base.org"
base_sepolia = "https://sepolia.base.org"
bnb = "https://rpc.ankr.com/bsc"
localhost = "http://localhost:8545"
mainnet = "${MAINNET_RPC_URL}"
optimism = "https://rpc.ankr.com/optimism"
optimism_sepolia = "https://sepolia.optimism.io"
polygon = "https://rpc.ankr.com/polygon"