- Move executor_addresses.json to a top level directory - Delete executors.json - Use the same file for both encoding and setting executors --- don't change below this line --- ENG-4260 Took 19 minutes Took 11 seconds
26 lines
379 B
TOML
26 lines
379 B
TOML
[profile.default]
|
|
src = 'src'
|
|
out = 'out'
|
|
libs = ['lib']
|
|
auto_detect_sol = true
|
|
evm_version = 'cancun'
|
|
optimizer = true
|
|
optimizer_runs = 200
|
|
via_ir = true
|
|
|
|
[profile.production]
|
|
src = 'src'
|
|
out = 'out'
|
|
libs = ['lib']
|
|
auto_detect_sol = true
|
|
evm_version = 'cancun'
|
|
optimizer = true
|
|
optimizer_runs = 1000
|
|
via_ir = true
|
|
|
|
[rpc_endpoints]
|
|
mainnet = "${RPC_URL}"
|
|
|
|
|
|
[fmt]
|
|
line_length = 80 |