-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfoundry.toml
31 lines (29 loc) · 1.22 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
[profile.default]
cache_path = 'forge-cache'
libs = ["node_modules"]
optimizer = true
optimizer_runs = 999
out = "forge-artifacts"
remappings = [
"forge-std/=forge-std/src/",
"ds-test/=forge-std/lib/ds-test/src/",
]
#solc_version = '0.8.23'
auto_detect_solc = true
src = "contracts"
test = 'test/foundry'
#via_ir = true
rpc_endpoints = {mainnet = "https://rpc.ankr.com/eth", optimism = "https://opt-mainnet.g.alchemy.com/v2/demo", fantom = "https://rpc.ankr.com/fantom", arbitrum = "https://rpc.ankr.com/arbitrum", bsc = "https://rpc.ankr.com/bsc", moonriver = "https://moonriver.public.blastapi.io", gnosis = "https://rpc.ankr.com/gnosis", Avalanche = "https://rpc.ankr.com/avalanche", polygon = "https://rpc.ankr.com/polygon", celo = "https://rpc.ankr.com/celo", Base = "https://developer-access-mainnet.base.org", kava = "https://evm.data.kava.chainstacklabs.com", metis = "https://andromeda.metis.io/?owner=1088"}
[fmt]
bracket_spacing = true
func_attrs_with_params_multiline = false
ignore = []
int_types = "long"
line_length = 100
multiline_func_header = "params_first"
number_underscore = "thousands"
quote_style = "double"
single_line_statement_blocks = 'preserve'
tab_width = 4
variable_override_spacing = true
wrap_comments = false