-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathfoundry.toml
More file actions
34 lines (29 loc) · 1.11 KB
/
foundry.toml
File metadata and controls
34 lines (29 loc) · 1.11 KB
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
[profile.default]
src = "src"
out = "out"
libs = ["lib"]
optimizer = true
solc_version = "0.8.22"
revert_string = "debug"
fs_permissions = [{ access = "read-write", path = "./"}]
memory_limit = 41943040 # 4GB in bytes, adjust as needed
[fmt]
line_length = 110
tab_width = 4
int_types = "short"
number_underscore = "thousands"
func_attrs_with_params_multiline = false
ignore = ["lib/"]
bracket_spacing = true
[doc]
title = "Collar Protocol Documentation"
repository = "https://github.com/CollarNetworks/protocol-core"
out = "docs-temp"
[fuzz]
runs= 500
[etherscan]
# Paste TENDERLY_ACCESS_KEY Chain ID Verifier URL: ${TENDERLY_VIRTUAL_TESTNET_RPC}verify/etherscan
arbitrum-sepolia = { key = "${ARBITRUM_ETHERSCAN_API_KEY}",chain=421_614 , url = "https://api-sepolia.arbiscan.io/api" }
arbitrum = { key = "${ARBITRUM_ETHERSCAN_API_KEY}",chain=42_161 , url = "https://api.arbiscan.io/api" }
base-sepolia = { key = "${OPBASE_ETHERSCAN_API_KEY}",chain=84_532 , url = "https://api-sepolia.basescan.org/api" }
base = { key = "${OPBASE_ETHERSCAN_API_KEY}",chain=84_53 , url = "https://api.basescan.org/api" }