forked from axieinfinity/ronin-dpos-contracts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
foundry.toml
54 lines (41 loc) · 1 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
53
54
[profile.default]
src = 'src'
out = 'out'
optimizer = true
optimizer_runs = 200
ffi = true
libs = [
'lib',
'node_modules/hardhat',
]
# See more config options https://github.com/foundry-rs/foundry/blob/master/crates/config/README.md#all-options
solc = '0.8.23'
extra_output = ["devdoc", "userdoc", "storagelayout"]
fs_permissions = [{ access = "read-write", path = "./" }]
evm_version = 'istanbul'
verbosity = 4
[profile.ronin]
evm_version = 'istanbul'
[profile.ethereum]
evm_version = 'shanghai'
[fmt]
line_length = 120
tab_width = 2
bracket_spacing = true
[profile.default.fuzz]
runs = 256
[profile.intense.fuzz]
runs = 5_000
[profile.via-ir.fuzz]
runs = 1_000
[profile.min-solc]
solc_version = "0.8.4"
[profile.min-solc.fuzz]
runs = 1_000
[profile.min-solc-via-ir.fuzz]
runs = 1_000
[rpc_endpoints]
ethereum = "https://eth.llamarpc.com"
goerli = "https://ethereum-goerli.publicnode.com"
ronin-mainnet = "https://api-partner.roninchain.com/rpc"
ronin-testnet = "https://saigon-archive.roninchain.com/rpc"