forked from open-dollar/od-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
foundry.toml
42 lines (36 loc) · 857 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
40
41
42
[fmt]
line_length = 120
tab_width = 2
bracket_spacing = false
int_types = 'long'
multiline_func_header = 'params_first'
quote_style = 'single'
number_underscore = 'thousands'
wrap_comments = false
[profile.docs]
title = 'Open Dollar Docs'
src = 'src/' # root_path variable in build-docs.sh
[profile.default]
auto_detect_solc = true
src = 'src'
test = 'test'
out = 'out'
libs = ['lib']
fuzz_runs = 1000
optimizer_runs = 10_000
block_timestamp = 1675855961
fs_permissions = [{ access = "write", path = "./test/testnet/simulations" }]
[profile.governance]
fs_permissions = [{ access = "read-write", path = "./" }]
[profile.optimized]
via_ir = true
out = 'out-via-ir'
fuzz_runs = 5000
[profile.test]
via_ir = true
out = 'out-via-ir'
fuzz_runs = 5000
src = 'test'
[rpc_endpoints]
mainnet = "${ARB_MAINNET_RPC}"
sepolia = "${ARB_SEPOLIA_RPC}"