-
Notifications
You must be signed in to change notification settings - Fork 8
/
foundry.toml
37 lines (32 loc) · 990 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
[profile.default]
src = "src"
out = "out"
libs = ["lib"]
fs_permissions = [{ access = "read-write", path = "./"}]
solc_version = "0.8.23"
gas_limit = "18446744073709551615"
optimizer-runs = 200
evm_version = "Cancun"
[profile.lite]
optimizer = false
[doc]
title = "Stability Platform Contracts"
ignore = ["./src/test/**/*.sol"]
[fmt]
int_types = "short"
ignore = ["./src/integrations/**/*.sol"]
multiline_func_header = "params_first_multi"
line_length = 120
[rpc_endpoints]
polygon = "${POLYGON_RPC_URL}"
base = "${BASE_RPC_URL}"
arbitrum = "${ARBITRUM_RPC_URL}"
ethereum = "${ETHEREUM_RPC_URL}"
real = "${REAL_RPC_URL}"
sonic = "${SONIC_RPC_URL}"
[etherscan]
polygon = { key = "${POLYGONSCAN_API_KEY}", chain = 137 }
base = { key = "${BASESCAN_API_KEY}", chain = 8453 }
arbitrum = { key = "${ARBITRUMSCAN_API_KEY}", chain = 42161 }
ethereum = { key = "${ETHERSCAN_API_KEY}", chain = 1 }
sonic = { key = "${SONICSCAN_API_KEY}", chain = 146, url = "https://api.sonicscan.org/api" }