-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfoundry.toml
32 lines (27 loc) · 869 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
[profile.default]
src = 'src'
out = 'out'
libs = ['lib']
solc = "0.8.19"
[profile.default.fuzz]
seed = 1
[profile.default.invariant]
runs = 256 # default == 256
depth = 15 # default == 15
[rpc_endpoints]
mainnet = "${ALCHEMY_ETH_API_URL}"
goerli = "${GOERLI_RPC_URL}"
sepolia = "${SEPOLIA_RPC_URL}"
# See more config options https://github.com/foundry-rs/foundry/tree/master/config
# NOTE Project is using prettier formatting, as opposed to forge.
# See more format options https://book.getfoundry.sh/reference/config/formatter
# [fmt]
# line_length = 120
# tab_width = 4
# bracket_spacing = false
# int_types = "long"
# # If function parameters are multiline then always put the function attributes on separate lines
# func_attrs_with_params_multiline = false
# multiline_func_header = "params_first"
# quote_style = "double"
# number_underscore = "thousands"