-
Notifications
You must be signed in to change notification settings - Fork 36
/
foundry.toml
36 lines (34 loc) · 1.59 KB
/
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
[profile.default]
optimizer_runs = 1000000
[rpc_endpoints]
arbitrum = "${RPC_URL_ARBITRUM}"
arbitrum_goerli = "${RPC_URL_ARBITRUM_GOERLI}"
avalanche = "${RPC_URL_AVALANCHE}"
base = "${RPC_URL_BASE}"
base_sepolia = "${RPC_URL_BASE_SEPOLIA}"
blast = "${RPC_URL_BLAST}"
bsc = "${RPC_URL_BSC}"
fantom = "${RPC_URL_FANTOM}"
gnosis = "${RPC_URL_GNOSIS}"
goerli = "${RPC_URL_GOERLI}"
holesky = "${RPC_URL_HOLESKY}"
mainnet = "${RPC_URL_MAINNET}"
optimism = "${RPC_URL_OPTIMISM}"
polygon = "${RPC_URL_POLYGON}"
sanko = "${RPC_URL_SANKO}"
sepolia = "${RPC_URL_SEPOLIA}"
[etherscan]
arbitrum = {key = "${ARBISCAN_KEY}", url = "https://api.arbiscan.io/api"}
arbitrum_goerli = {key = "${ARBISCAN_KEY}", url = "https://api-goerli.arbiscan.io/api"}
avalanche = {key = "${SNOWTRACE_KEY}", url = "https://api.snowtrace.io/api"}
base = {key = "${BASESCAN_KEY}", url = "https://api.basescan.org/api"}
blast = {key = "${BLASTSCAN_KEY}", url = "https://api.blastscan.io/api"}
bsc = {key = "${BSCSCAN_KEY}", url = "https://api.bscscan.com/api"}
fantom = {key = "${FTMSCAN_KEY}", url = "https://api.ftmscan.com/api"}
gnosis = {key = "${GNOSISSCAN_KEY}", url = "https://api.gnosisscan.io/api"}
goerli = {key = "${ETHERSCAN_KEY}", url = "https://api-goerli.etherscan.io/api"}
holesky = {key = "${ETHERSCAN_KEY}", url = "https://api-holesky.etherscan.io/api"}
mainnet = {key = "${ETHERSCAN_KEY}"}
optimism = {key = "${OPTIMISM_ETHERSCAN_KEY}", url = "https://api-optimistic.etherscan.io/api"}
polygon = {key = "${POLYGONSCAN_KEY}", url = "https://api.polygonscan.com/api"}
sepolia = {key = "${ETHERSCAN_KEY}", url = "https://api-sepolia.etherscan.io/api"}