-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfoundry.toml
37 lines (34 loc) · 973 Bytes
/
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
[profile.default]
src = "src"
out = "out"
libs = ["lib"]
test = "tests"
script = "scripts"
evm_version = 'paris'
auto_detect_solc = true
optimizer = true
optimizer_runs = 20000
verbosity = 3
wrap_comments = true
gas_reports = ["TLAuctionHouse", "TLStacks721", "TLStacks1155"]
fs_permissions = [{ access = "read-write", path = "./"}]
[fuzz]
runs = 1024
[rpc_endpoints]
sepolia = "${SEPOLIA_RPC_URL}"
mainnet = "${ETH_RPC_URL}"
arbitrum_sepolia = "${ARB_SEPOLIA_RPC_URL}"
arbitrum = "${ARB_RPC_URL}"
base_sepolia = "${BASE_SEPOLIA_RPC_URL}"
base = "${BASE_RPC_URL}"
optimism_sepolia = "${OP_SEPOLIA_RPC_URL"
optimism = "${OP_RPC_URL"
[etherscan]
sepolia = { key = "${ETHERSCAN_KEY}" }
mainnet = { key = "${ETHERSCAN_KEY}" }
arbitrum_sepolia = { key = "${ARBISCAN_KEY}" }
arbitrum = { key = "${ARBISCAN_KEY}" }
base_sepolia = { key = "${BASESCAN_KEY}" }
base = { key = "${BASESCAN_KEY}" }
optimism_sepolia = { key = "${OPSCAN_KEY}" }
optimism = { key = "${OPSCAN_KEY}" }