-
Notifications
You must be signed in to change notification settings - Fork 11
/
foundry.toml
39 lines (36 loc) · 1.03 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
[profile.default]
src = 'src'
out = 'out'
libs = ['lib']
solc = "0.8.17"
optimizer_runs = 875
bytecode_hash = "none"
remappings = [
"colormap-registry/=lib/colormap-registry/src/",
"forge-std/=lib/forge-std/src/",
"solady/=lib/solady/src/",
"solmate/=lib/solmate/src/",
"@/script/=script/",
"@/contracts/=src/",
"@/test/=test/"
]
no-match-path = "test/deploy/*"
[fmt]
line_length = 100
tab_width = 4
bracket_spacing = true
int_types = "long"
func_attrs_with_params_multiline = false
quote_style = "double"
number_underscore = "thousands"
[rpc_endpoints]
goerli = "${GOERLI_RPC_URL}"
mainnet = "${MAINNET_RPC_URL}"
base_goerli = "${BASE_GOERLI_RPC_URL}"
base_sepolia = "${BASE_SEPOLIA_RPC_URL}"
base_mainnet = "${BASE_MAINNET_RPC_URL}"
[etherscan]
goerli = {key = "${ETHERSCAN_KEY}", url = "https://api-goerli.etherscan.io/api"}
mainnet = {key = "${ETHERSCAN_KEY}"}
base_sepolia = {key ="${BASESCAN_KEY}", url ="https://api-sepolia.basescan.org/api"}
base_mainnet = {key = "${BASESCAN_KEY}", url = "https://basescan.org"}