-
Notifications
You must be signed in to change notification settings - Fork 0
/
foundry.toml
36 lines (32 loc) · 968 Bytes
/
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]
solc = '0.8.23'
vm_version = 'paris' # Required for L2s (Optimism, Arbitrum, etc.)
sizes = true
verbosity = 3 # display errors
optimizer_runs = 10000
block_number = 14126430
block_timestamp = 1643802347
runs = 4096
via-ir = true
build_info = true
extra_output = ['storageLayout']
fs_permissions = [{ access = "read-write", path = "./"}]
[rpc_endpoints]
ethereum ="${RPC_ETHEREUM_MAINNET}"
optimism = "${RPC_OPTIMISM_MAINNET}"
polygon = "${RPC_POLYGON_MUMBAI}"
arbitrum = "${RPC_ARBITRUM_MAINNET}"
base = "${RPC_BASE_MAINET}"
arbitrum_sepolia = "${RPC_ARBITRUM_SEPOLIA}"
ethereum_sepolia ="${RPC_ETHEREUM_SEPOLIA}"
optimism_sepolia = "${RPC_OPTIMISM_SEPOLIA}"
polygon_mumbai = "${RPC_POLYGON_MUMBAI}"
base_sepolia = "${RPC_BASE_SEPOLIA}"
[profile.ci_sizes]
optimizer_runs = 200
[invariant]
fail_on_revert = false
[fmt]
number_underscore = "thousands"
multiline_func_header = "all"
wrap_comments = true