-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathfoundry.toml
52 lines (49 loc) · 1.81 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
50
51
52
[profile.default]
fs_permissions = [
{ access = "read", path = "./versions" },
{ access = "read", path = "./chainConfigs" },
{ access = "read", path = "./package.json" },
{ access = "read", path = "../erc20z" },
{ access = "read", path = "../comments" },
{ access = "read", path = "../sparks/deterministicConfig" },
{ access = "read", path = "../sparks/addresses" },
{ access = "read", path = "../erc20z/addresses" },
{ access = "readwrite", path = "./deterministicConfig" },
{ access = "readwrite", path = "./addresses" },
]
libs = ['_imagine', 'node_modules', 'script']
allow_paths = [
"node_modules/@zoralabs/protocol-rewards",
"node_modules/@zoralabs/zora-1155-contracts",
]
optimizer = true
optimizer_runs = 50
via_ir = true
solc_version = '0.8.17'
out = 'out'
src = 'src'
evm_version = 'cancun'
[profile.dev]
optimizer = false
optimizer_runs = 0
via_ir = false
[rpc_endpoints]
sepolia = "https://eth-sepolia.g.alchemy.com/v2/${ALCHEMY_KEY}"
mainnet = "https://eth-mainnet.g.alchemy.com/v2/${ALCHEMY_KEY}"
base = "https://base-mainnet.g.alchemy.com/v2/${ALCHEMY_KEY}"
base_sepolia = "https://base-sepolia.g.alchemy.com/v2/${ALCHEMY_KEY}"
optimism = "https://opt-mainnet.g.alchemy.com/v2/${ALCHEMY_KEY}"
pgn = "https://rpc.publicgoods.network"
pgn_sepolia = "https://sepolia.publicgoods.network"
zora = "https://rpc.zora.energy/${CONDUIT_KEY}"
zora_sepolia = "https://sepolia.rpc.zora.energy/${CONDUIT_KEY}"
arbitrum_one = "https://arb-mainnet.g.alchemy.com/v2/${ALCHEMY_KEY}"
arbitrum_sepolia = "https://arb-sepolia.g.alchemy.com/v2/${ALCHEMY_KEY}"
blast = "https://blast.gateway.tenderly.co/${TENDERLY_KEY}/"
blast_sepolia = "https://sepolia.blast.io"
# See more config options https://github.com/foundry-rs/foundry/tree/master/config
[profile.default.zksync]
compile = true
fallback_oz = true
mode = '1'
zksolc='1.5.7'