-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathfoundry.toml
39 lines (31 loc) · 956 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
37
38
39
[profile.default]
src = "src"
out = "out"
script = "script"
libs = ["lib"]
ffi = true
# See more config options https://github.com/foundry-rs/foundry/blob/master/crates/config/README.md#all-options
optimizer_runs = 1_000_000
via_ir=true
evm_version = 'istanbul'
use_literal_content = true
extra_output = ["devdoc", "userdoc", "storagelayout"]
fs_permissions = [{ access = "read-write", path = "./" }]
[fmt]
tab_width = 2
line_length = 120
bracket_spacing = true
[rpc_endpoints]
localhost = "http://localhost:8545"
ethereum = "https://eth.llamarpc.com"
ronin-mainnet = "https://api.roninchain.com/rpc"
goerli = "https://ethereum-goerli.publicnode.com"
ronin-testnet = "https://saigon-archive.roninchain.com/rpc"
[fuzz]
runs = 256
[invariant]
runs = 256
[dependencies]
"@openzeppelin-contracts" = { version = "4.7.0", url = "https://github.com/OpenZeppelin/openzeppelin-contracts/archive/refs/tags/v4.7.0.zip" }
[soldeer]
remappings_generate = false