-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfoundry.toml
More file actions
41 lines (33 loc) · 938 Bytes
/
Copy pathfoundry.toml
File metadata and controls
41 lines (33 loc) · 938 Bytes
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
[profile.default]
src = "src"
out = "out"
libs = ["lib"]
# 0.8.28 + prague: the drand adapter needs the EIP-2537 BLS precompiles,
# live on Robinhood Chain (ArbOS 61 >= "Dia"). Source pragmas stay ^0.8.24.
solc_version = "0.8.28"
optimizer = true
optimizer_runs = 10_000
evm_version = "prague"
fs_permissions = [{ access = "read", path = "./" }]
[profile.default.fuzz]
runs = 512
[profile.default.invariant]
runs = 128
depth = 64
fail_on_revert = false
# Local development against anvil.
[profile.local]
# Robinhood Chain testnet.
[profile.robinhood-testnet]
# Robinhood Chain mainnet.
[profile.robinhood]
[rpc_endpoints]
local = "http://127.0.0.1:8545"
robinhood-testnet = "${ROBINHOOD_TESTNET_RPC_URL}"
robinhood = "https://rpc.mainnet.chain.robinhood.com"
[etherscan]
robinhood = { key = "${BLOCKSCOUT_API_KEY}", url = "https://robinhoodchain.blockscout.com/api" }
[fmt]
line_length = 120
tab_width = 4
bracket_spacing = false