harb/onchain/foundry.toml

25 lines
538 B
TOML
Raw Normal View History

2023-11-17 07:36:33 +01:00
[profile.default]
src = "src"
out = "out"
libs = ["lib"]
2024-05-29 17:26:19 +02:00
fs_permissions = [{ access = "read-write", path = "./"}]
2025-08-18 22:09:03 +02:00
gas_limit = 1_000_000_000
2025-08-09 18:03:31 +02:00
gas_price = 0
optimizer = true
optimizer_runs = 200
2023-11-21 21:06:21 +01:00
# See more config options https://github.com/foundry-rs/foundry/tree/master/config
2023-11-17 07:36:33 +01:00
2023-11-21 21:06:21 +01:00
[rpc_endpoints]
goerli = "${GOERLI_RPC_URL}"
2023-11-21 20:27:49 +01:00
# Remappings in remappings.txt
[fmt]
line_length = 160
tab_width = 4
bracket_spacing = true
int_types = "long"
multiline_func_header = "all"
quote_style = "double"
number_underscore = "thousands"
sort_imports = true