-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathfoundry.toml
63 lines (54 loc) · 1.74 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
54
55
56
57
58
59
60
61
62
63
# Full reference https://github.com/foundry-rs/foundry/tree/master/crates/config
[profile.default]
auto_detect_solc = false
auto_detect_remappings = false
block_timestamp = 1_680_220_800 # March 31, 2023 at 00:00 GMT
bytecode_hash = "none"
evm_version = "shanghai"
fuzz = { runs = 1_000 }
gas_reports = ["*"]
optimizer = true
optimizer_runs = 10_000
libs = ['node_modules']
out = "out"
script = "script"
solc = "0.8.19"
src = "src"
test = "test"
fs_permissions = [{ access = "read-write", path = "src/script/.deploy-config.json" }]
[profile.ci]
fuzz = { runs = 10_000 }
verbosity = 4
# === Test All Profile ========================================================
[profile.bench]
# We make the optimiser run a lot more for production, hoping to reduce our gas
# costs.
optimizer_runs = 20000
# Make things chattier when debugging in case of test failures, giving us more
# information with which to debug the issue. At this level, stack traces for
# failing tests are displayed.
verbosity = 3
# We can specify the contracts to track gas data for by tracing.
gas_reports = [
"WorldIDIdentityManager",
"MockWorldIDIdentityManager",
"Verifier",
]
# [etherscan]
# mainnet = { key = "${API_KEY_ETHERSCAN}" }
# sepolia = { key = "${API_KEY_ETHERSCAN}" }
[fmt]
bracket_spacing = true
int_types = "long"
line_length = 120
multiline_func_header = "all"
number_underscore = "thousands"
quote_style = "double"
tab_width = 4
wrap_comments = true
[rpc_endpoints]
sepolia = "https://sepolia.infura.io/v3/${API_KEY_INFURA}"
mainnet = "https://mainnet.infura.io/v3/${API_KEY_INFURA}"
linea_sepolia = "https://linea-sepolia.infura.io/v3/${API_KEY_INFURA}"
linea_mainnet = "https://linea-mainnet.infura.io/v3/${API_KEY_INFURA}"
localhost = "http://localhost:8545"