-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfoundry.toml
More file actions
50 lines (45 loc) · 1.24 KB
/
foundry.toml
File metadata and controls
50 lines (45 loc) · 1.24 KB
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
49
50
[profile.default]
solc = "0.8.22"
via_ir = true
src = "src"
out = "out"
libs = ["lib"]
evm_version = "shanghai"
fs_permissions = [{ access = "read-write", path = "./"}]
gas_reports = ["*"]
build_info = true
extra_output = ["storageLayout"]
remappings = [
"@openzeppelin/=lib/openzeppelin-contracts/",
"@prb/=lib/prb-math/"
]
[rpc_endpoints]
mainnet = "${ETH_RPC_URL}"
holesky = "${HOLESKY_RPC_URL}"
sepolia = "${SEPOLIA_RPC_URL}"
base = "${BASE_RPC_URL}"
unichain = "${UNICHAIN_RPC_URL}"
plume = "${PLUME_RPC_URL}"
hyperevm = "${HYPEREVM_RPC_URL}"
katana = "${KATANA_RPC_URL}"
[fmt]
bracket_spacing = false
int_types = "long"
line_length = 120
multiline_func_header = "params_first"
number_underscore = "thousands"
quote_style = "double"
tab_width = 4
[fuzz]
runs = 4096
max_test_rejects = 262144
[etherscan]
mainnet = { key = "${ETHERSCAN_API_KEY}" }
holesky = { key = "${ETHERSCAN_API_KEY}" }
sepolia = { key = "${ETHERSCAN_API_KEY}" }
base = { key = "${ETHERSCAN_API_KEY}" }
unichain = { key = "${ETHERSCAN_API_KEY}" }
plume = { key = "${ETHERSCAN_API_KEY}" }
hyperevm = { key = "${ETHERSCAN_API_KEY}" }
katana = { key = "${ETHERSCAN_API_KEY}" }
# See more config options https://github.com/foundry-rs/foundry/blob/master/crates/config/README.md#all-options