-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfoundry.toml
53 lines (47 loc) · 1.11 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
[profile.default]
auto_detect_solc = false
bytecode_hash = "none"
ffi = true
fs_permissions = [
{ access = "read", path = "./.privatekey" },
{ access = "read", path = "./test/data/" },
{ access = "read-write", path = "./script/deployment/" }
]
fuzz_runs = 256
gas_reports = ["*"]
libs = ["lib"]
optimizer = true
optimizer_runs = 10_000
out = "out"
solc = "0.8.17"
src = "src"
test = "test"
[profile.ci]
fuzz_runs = 1_000
verbosity = 4
[rpc_endpoints]
sepolia = "${SEPOLIA_RPC_URL}"
goerli = "${GOERLI_RPC_URL}"
mainnet = "${MAINNET_RPC_URL}"
[etherscan]
sepolia = {key = "${ETHERSCAN_API_KEY}"}
goerli = {key = "${ETHERSCAN_API_KEY}"}
mainnet = {key = "${ETHERSCAN_API_KEY}"}
[doc]
out = "docs"
title = "Floor"
book = "./book.toml"
repository = "https://github.com/FloorDAO/floor-v2"
ignore = ["**/*.t.sol"]
[fmt]
line_length = 140
tab_width = 4
bracket_spacing = false
int_types = "short"
multiline_func_header = "attributes_first"
quote_style = "single"
number_underscore = "preserve"
override_spacing = true
wrap_comments = false
ignore = []
# See more config options https://github.com/foundry-rs/foundry/tree/master/config