-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfoundry.toml
More file actions
29 lines (25 loc) · 889 Bytes
/
foundry.toml
File metadata and controls
29 lines (25 loc) · 889 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
[profile.default]
src = "src"
out = "out"
libs = ["lib"]
viaIR = true
solc_version = "0.8.28"
remappings = [
'@openzeppelin/contracts=lib/openzeppelin-contracts/contracts/',
'@prb/math/=lib/prb-math/',
'@BokkyPooBahsDateTimeLibrary/contracts=lib/BokkyPooBahsDateTimeLibrary/contracts',
]
[rpc_endpoints]
base_sepolia = "${BASE_SEPOLIA_RPC_URL}"
base = "${BASE_RPC_URL}"
bera = "${BERA_RPC_URL}"
sonic = "${SONIC_RPC_URL}"
[etherscan]
base_sepolia = { key = "${BASESCAN_API_KEY}", chain = 84532, url = "https://api-sepolia.basescan.org/api" }
base = { key = "${BASESCAN_API_KEY}", chain = 8453, url = "https://api.basescan.org/api" }
bera = { key = "${BERASCAN_API_KEY}", chain = 80094, url = "https://api.berascan.com/api" }
sonic = { key = "${SONIC_SCAN_API_KEY}", chain = 80094, url = "https://api.sonicscan.org/api" }
[invariant]
fail_on_revert = false
runs = 1215
depth = 23