This way we can automatically replace the calldata when something changes. We don't need to manually replace the string ourselves. --- don't change below this line --- ENG-4453 Took 3 hours 26 minutes
26 lines
441 B
TOML
26 lines
441 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
|
|
fs_permissions = [{ access = "read", path = "./test/assets" }]
|
|
|
|
[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 |