* fix(balancer): ignore self balance change Euler pool emit a balance change for the pool itself. We don't want to have it because it's an unknown token from Tycho's perspective. example: https://etherscan.io/tx/0x4a9ea683052afefdae3d189862868c3a7dc8f431d1d9828b6bfd9451a8816426#eventlog#338 * refactor(balancer): rename balancer module to balancer-v2 * ci: make clippy happy --------- Co-authored-by: zizou <111426680+flopell@users.noreply.github.com>
34 lines
686 B
TOML
34 lines
686 B
TOML
[workspace]
|
|
members = [
|
|
"ethereum-balancer-v2",
|
|
"ethereum-curve",
|
|
"crates/tycho-substreams",
|
|
"crates/substreams-helper",
|
|
"ethereum-ambient",
|
|
"ethereum-uniswap-v2",
|
|
"ethereum-uniswap-v3",
|
|
"ethereum-sfrax",
|
|
"ethereum-sfraxeth",
|
|
]
|
|
resolver = "2"
|
|
|
|
|
|
[workspace.dependencies]
|
|
substreams-ethereum = "0.9.9"
|
|
substreams = "0.5"
|
|
prost = "0.11"
|
|
prost-types = "0.12.3"
|
|
hex-literal = "0.4.1"
|
|
anyhow = "1.0.75"
|
|
hex = "0.4.3"
|
|
ethabi = "18.0.0"
|
|
tycho-substreams = { path = "crates/tycho-substreams" }
|
|
substreams-helper = { path = "crates/substreams-helper" }
|
|
serde = "1.0.204"
|
|
serde_json = "1.0.120"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
opt-level = 's'
|
|
strip = "debuginfo"
|