Files
tycho-execution/foundry/foundry.toml
Diana Carvalho 0ff4aef0c7 chore: Write encoding rust calldata to file and read in solidity test
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
2025-04-29 10:23:47 +01:00

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