forked from defi-wonderland/solidity-foundry-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfoundry.toml
More file actions
38 lines (31 loc) · 737 Bytes
/
foundry.toml
File metadata and controls
38 lines (31 loc) · 737 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
[fmt]
line_length = 120
tab_width = 2
bracket_spacing = false
int_types = 'long'
quote_style = 'single'
number_underscore = 'thousands'
multiline_func_header = 'params_first_multi'
sort_imports = true
[profile.default]
solc_version = '0.8.23'
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 = 256
[rpc_endpoints]
gnosis = 'https://rpc.gnosis.gateway.fm'
optimism = 'https://mainnet.optimism.io'
sepolia = 'https://rpc.sepolia.io'
[etherscan]
gnosis = { key = "${ETHERSCAN_API_KEY}" }
optimism = { key = "${ETHERSCAN_API_KEY}" }
sepolia = { key = "${ETHERSCAN_API_KEY}" }