- We cannot use the regular v3-periphery library because of outdated solc versions. I've copied the v3-updated library which we have used in our previous project
17 lines
278 B
TOML
17 lines
278 B
TOML
[profile.default]
|
|
src = 'src'
|
|
out = 'out'
|
|
libs = ['lib']
|
|
solc = "0.8.28"
|
|
auto_detect_solc = true # Allows per-file version detection
|
|
evm_version = 'shanghai'
|
|
optimizer = true
|
|
optimizer_runs = 1000
|
|
via_ir = true
|
|
|
|
[rpc_endpoints]
|
|
mainnet = "${RPC_URL}"
|
|
|
|
|
|
[fmt]
|
|
line_length = 80 |