-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfoundry.toml
More file actions
26 lines (23 loc) · 794 Bytes
/
Copy pathfoundry.toml
File metadata and controls
26 lines (23 loc) · 794 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
[profile.default]
src = "src"
out = "out"
libs = ["lib"]
remappings = ["@openzeppelin/=lib/openzeppelin-contracts/"]
test = "test"
script = "script"
optimizer = true
optimizer_runs = 200
solc_version = "0.8.24"
via_ir = false
fuzz = { runs = 1000 }
invariant = { runs = 256, depth = 15 }
[profile.ci]
optimizer = true
fuzz = { runs = 5000 }
[etherscan]
base-sepolia = { key = "${BASESCAN_API_KEY}", chain = "base-sepolia", url = "https://api-sepolia.basescan.org/api" }
base = { key = "${BASESCAN_API_KEY}", chain = "base", url = "https://api.basescan.org/api" }
[rpc_endpoints]
base-sepolia = "${BASE_SEPOLIA_RPC_URL}"
base = "${BASE_RPC_URL}"
localhost = "http://127.0.0.1:8545"