26 lines
376 B
TOML
26 lines
376 B
TOML
[profile.default]
|
|
# General
|
|
src = 'src'
|
|
out = 'out'
|
|
libs = ["node_modules", "lib"]
|
|
|
|
# Compiler
|
|
auto_detect_solc = true
|
|
via_ir = true
|
|
optimizer = true
|
|
optimizer_runs = 200
|
|
auto_detect_remappings = true
|
|
|
|
# Network
|
|
chain_id = 1
|
|
|
|
# Tests
|
|
verbosity = 3
|
|
|
|
[rpc_endpoints]
|
|
mainnet = "${MAINNET_RPC_URL}"
|
|
|
|
[fmt]
|
|
line_length = 140
|
|
number_underscore = 'thousands'
|
|
bracket_spacing = true |