-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathfoundry.toml
49 lines (45 loc) · 2.07 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
37
38
39
40
41
42
43
44
45
46
47
48
49
[profile.default]
src = "src"
out = "out"
libs = ["lib"]
solc = "0.8.20"
fs_permissions = [
{ access = "read", path = "./constants"},
{ access = "read", path = "./out"},
{ access = "read-write", path = "./deployments"},
{ access = "read", path = "./actual-deployments"},
]
gas_reports = ["DcntEth", "DecentEthRouter"]
[rpc_endpoints]
ethereum = "${ETHEREUM_RPC}"
arbitrum = "${ARBITRUM_RPC}"
optimism = "${OPTIMISM_RPC}"
polygon = "${POLYGON_RPC}"
avalanche = "${AVALANCHE_RPC}"
ftm-testnet = "${FTM_TESTNET_RPC}"
fuji = "${FUJI_RPC}"
sepolia = "${SEPOLIA_RPC}"
zora = "${ZORA_RPC}"
base = "${BASE_RPC}"
zora-goerli = "${ZORA_GOERLI_RPC}"
optimism-goerli = "${OPTIMISM_GOERLI_RPC}"
fork_ethereum = "http://localhost:${FORK_ETHEREUM_PORT}"
fork_arbitrum = "http://localhost:${FORK_ARBITRUM_PORT}"
fork_optimism = "http://localhost:${FORK_OPTIMISM_PORT}"
fork_zora= "http://localhost:${FORK_ZORA_PORT}"
fork_base= "http://localhost:${FORK_BASE_PORT}"
fork_sepolia= "http://localhost:${FORK_SEPOLIA_PORT}"
fork_zora-goerli= "http://localhost:${FORK_ZORA_GOERLI_PORT}"
fork_avalanche= "http://localhost:${FORK_AVALANCHE_PORT}"
fork_polygon= "http://localhost:${FORK_POLYGON_PORT}"
[etherscan]
ethereum = { key = "${ETHERSCAN_ETHERUM_API_KEY}", url = "https://api.etherscan.io/api" }
base = { key = "${BASESCAN_API_KEY}", url = "https://api.basescan.org/api" }
arbitrum = { key = "${ARBISCAN_API_KEY}", url = "https://api.arbiscan.io/api" }
optimism = { key = "${OPTIMISM_ETHERSCAN_API_KEY}", url = "https://api-optimistic.etherscan.io/api" }
optimism-goerli = { key = "${OPTIMISM_ETHERSCAN_API_KEY}", url = "https://api-goerli-optimistic.etherscan.io/api" }
polygon = { key = "${POLYGONSCAN_API_KEY}", url = "https://api-testnet.polygonscan.com/api" }
ftm-testnet = { key = "${FTMSCAN_API_KEY}", url = "https://api-testnet.ftmscan.com/api" }
fuji = { key = "${SNOWTRACE_API_KEY}", url = "https://api-testnet.snowtrace.io/api" }
sepolia = { key = "${ETHERSCAN_ETHERUM_API_KEY}", url = "https://api-sepolia.etherscan.io/api" }
# See more config options https://github.com/foundry-rs/foundry/tree/master/config