-
Notifications
You must be signed in to change notification settings - Fork 15
/
foundry.toml
43 lines (39 loc) · 1.6 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
[profile.default]
libs = ['node_modules', "lib"]
fs_permissions = [{ access = "read", path = "./"}]
verbosity = 2
fuzz_runs = 256
fuzz_max_global_rejects = 100000000
evm_version = "shanghai"
auto_detect_solc=true
remappings = [
'ds-test/=lib/forge-std/lib/ds-test/src/',
'forge-std/=lib/forge-std/src/',
'openzeppelin-contracts/=lib/openzeppelin-contracts/contracts/',
'openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/',
'solmate/=lib/solmate/src/',
'solady/=lib/solady/src/',
'bitlib/=lib/solidity-bytes-utils/contracts/',
'weiroll/=lib/weiroll/contracts/'
]
no_match_contract = "Skip"
[rpc_endpoints]
mainnet = "${ETH_RPC_URL}"
polygon = "${POLYGON_RPC_URL}"
optimism = "${OPTIMISM_RPC_URL}"
arbitrum = "${ARBITRUM_RPC_URL}"
goerli = "${GOERLI_RPC_URL}"
sepolia = "${SEPOLIA_RPC_URL}"
base = "${BASE_RPC_URL}"
fraxtal = "${FRAXTAL_RPC_URL}"
avalanche = "${AVALANCHE_RPC_URL}"
[etherscan]
mainnet = { key = "${ETH_EXPLORE_KEY}" }
polygon = { key = "${POLYGON_EXPLORE_KEY}", url = "https://api.polygonscan.com/api" }
optimism = { key = "${OPTIMISM_EXPLORE_KEY}", url = "https://api-optimistic.etherscan.io/api" }
arbitrum = { key = "${ARBITRUM_EXPLORE_KEY}", url = "https://api.arbiscan.io/api" }
goerli = { key = "${ETH_EXPLORE_KEY}", url = "https://api-goerli.etherscan.io/api?" }
sepolia = { key = "${ETH_EXPLORE_KEY}", url = ""}
base = { key = "${BASE_EXPLORE_KEY}", url = "https://api.basescan.org/api"}
fraxtal = { key = "${FRAXTAL_EXPLORE_KEY}", url = "https://api.fraxscan.com/api"}
avalanche = { key = "${AVALANCHE_EXPLORE_KEY}", url = "https://api.snowscan.xyz/api"}