forked from rhinestonewtf/core-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfoundry.toml
More file actions
69 lines (62 loc) · 3 KB
/
foundry.toml
File metadata and controls
69 lines (62 loc) · 3 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[profile.default]
solc = "0.8.25"
evm_version = "cancun"
src = "src"
out = "out"
script = "script"
libs = ["node_modules"]
fs_permissions = [{ access = "read", path = "out-optimized" }, { access = "read-write", path = "deployments" }, { access = "read-write", path = "gas_calculations" }]
allow_paths = ["*", "/"]
[etherscan]
arbitrum = { key = "${API_KEY_ARBISCAN}", chain="arbitrum" }
avalanche = { key = "${API_KEY_ETHERSCAN}", chain="avalanche" }
avalanche-fuji = { key = "${API_KEY_ETHERSCAN}", chain="avalanche-fuji" }
#mainnet = { key = "${API_KEY_ETHERSCAN}" }
optimism = { key = "${API_KEY_OPTISM_ETHERSCAN}", chain="optimism"}
optimism-sepolia = { key = "${API_KEY_OPTIMISM_ETHERSCAN}", chain="optimism-sepolia"}
polygon = { key = "${API_KEY_POLYGONSCAN}", chain="polygon"}
polygon-amoy = { key = "${API_KEY_POLYGONSCAN}", chain="polygon-amoy"}
sepolia = { key = "${API_KEY_ETHERSCAN}", chain="sepolia"}
#gnosis-chidao = { key = "${API_KEY_GNOSISSCAN}", chain="gnosis-chidao"}
gnosis = { key = "${API_KEY_GNOSISSCAN}", chain="gnosis"}
bsc = { key = "${API_KEY_BSCSCAN}", chain="bsc"}
bsc-testnet = { key = "${API_KEY_BSCSCAN}", chain="bsc-testnet"}
base = {key = "${API_KEY_BASESCAN}", chain="base"}
#base-sepolia = {key = "${API_KEY_BASESCAN}", chain="base-sepolia"}
scroll = {key = "${API_KEY_SCROLLSCAN}", chain="scroll"}
#scroll-testnet = {key = "${API_KEY_SCROLLSCAN}", chain="scroll-testnet"}
[rpc_endpoints]
arbitrum = "https://arb-mainnet.g.alchemy.com/v2/${API_KEY_ALCHEMY}"
arbitrum-sepolia = "https://arb-sepolia.g.alchemy.com/v2/${API_KEY_ALCHEMY}"
avalanche = "https://avax-mainnet.g.alchemy.com/v2/${API_KEY_ALCHEMY}"
avalanche-fuji = "https://avax-fuji.g.alchemy.com/v2/${API_KEY_ALCHEMY}"
goerli = "https://goerli.infura.io/v3/${API_KEY_INFURA}"
localhost = "http://localhost:8545"
mainnet = "https://eth-mainnet.g.alchemy.com/v2/${API_KEY_ALCHEMY}"
optimism = "https://optimism-mainnet.infura.io/v3/${API_KEY_INFURA}"
optimism-sepolia = "https://sepolia.optimism.io "
polygon = "https://polygon-mainnet.g.alchemy.com/v2/${API_KEY_ALCHEMY}"
polygon-amoy = "https://polygon-amoy.g.alchemy.com/v2/${API_KEY_ALCHEMY}"
sepolia = "https://eth-sepolia.g.alchemy.com/v2/${API_KEY_ALCHEMY}"
gnosis = "https://gnosis-mainnet.g.alchemy.com/v2/${API_KEY_ALCHEMY}"
gnosis-chidao = "https://gnosis-chiado.g.alchemy.com/v2/${API_KEY_ALCHEMY"
bsc-testnet = "https://bnb-testnet.g.alchemy.com/v2/${API_KEY_ALCHEMY}"
bsc = "https://bnb-mainnet.g.alchemy.com/v2/${API_KEY_ALCHEMY}"
base = "https://base-mainnet.g.alchemy.com/v2/${API_KEY_ALCHEMY}"
base-sepolia = "https://base-sepolia.g.alchemy.com/v2/${API_KEY_ALCHEMY}"
scroll-testnet = "https://rpc.ankr.com/scroll_sepolia_testnet"
scroll = "https://scroll-mainnet.public.blastapi.io"
celo = "https://forno.celo.org"
fuse = "https://explorer-node.fuse.io"
fuse-testnet= "https://rpc.fusespark.io/"
[fmt]
bracket_spacing = true
int_types = "long"
line_length = 100
multiline_func_header = "all"
number_underscore = "thousands"
quote_style = "double"
tab_width = 4
wrap_comments = true
[fuzz]
runs=1000