-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathfoundry.toml
More file actions
37 lines (32 loc) · 933 Bytes
/
foundry.toml
File metadata and controls
37 lines (32 loc) · 933 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
33
34
35
36
37
[profile.default]
src = "src"
out = "out"
libs = ["lib"]
solc_version = "0.8.28"
optimizer = true
optimizer_runs = 10000
via_ir = false
evm_version = "cancun"
remappings = [
"@openzeppelin/contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/",
"@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/",
"forge-std/=lib/forge-std/src/"
]
fs_permissions = [{ access = "read-write", path = "./deployments" }]
gas_reports = ["SplitBaseV1", "RegistryV1", "ExecutorV1"]
[fuzz]
runs = 256
[invariant]
runs = 256
[rpc_endpoints]
base = "https://mainnet.base.org"
base_sepolia = "https://sepolia.base.org"
[etherscan]
base = { key = "${BASESCAN_API_KEY}", url = "https://api.basescan.org/api" }
base_sepolia = { key = "${BASESCAN_API_KEY}", url = "https://api-sepolia.basescan.org/api" }
[fmt]
line_length = 120
tab_width = 4
bracket_spacing = true
int_types = "long"
multiline_func_header = "all"