generated from defi-wonderland/solidity-foundry-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
foundry.toml
37 lines (30 loc) · 766 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
[fmt]
line_length = 120
tab_width = 2
bracket_spacing = false
int_types = 'long'
quote_style = 'double'
number_underscore = 'thousands'
multiline_func_header = 'params_first'
sort_imports = true
[profile.default]
solc_version = '0.8.26'
libs = ['node_modules', 'lib']
optimizer_runs = 10_000
[profile.optimized]
via_ir = true
out = 'out-via-ir'
[profile.test]
via_ir = true
out = 'out-via-ir'
[profile.docs]
src = 'src/interfaces/'
[fuzz]
runs = 1000
[rpc_endpoints]
optimism = "${OPTIMISM_RPC}"
arbitrum = "${ARBITRUM_RPC}"
[etherscan]
optimism = { key = "${OPTIMISM_ETHERSCAN_API_KEY}" }
arbitrum = { key = "${ARBITRUM_ETHERSCAN_API_KEY}" }
unknown_chain = { key = "${TENDERLY_ACCESS_KEY}", chain = 64122, url = "${VIRTUAL_OPTIMISM_RPC}/verify/etherscan" }