* 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>
19 lines
472 B
TOML
19 lines
472 B
TOML
reorder_imports = true
|
|
imports_granularity = "Crate"
|
|
use_small_heuristics = "Max"
|
|
comment_width = 100
|
|
wrap_comments = true
|
|
binop_separator = "Back"
|
|
trailing_comma = "Vertical"
|
|
trailing_semicolon = false
|
|
use_field_init_shorthand = true
|
|
chain_width = 40
|
|
ignore = [
|
|
"crates/tycho-substreams/src/pb",
|
|
"ethereum-balancer-v2/src/abi",
|
|
"ethereum-sfraxeth/src/abi",
|
|
"ethereum-curve/src/abi",
|
|
"ethereum-uniswap-v2/src/abi",
|
|
"ethereum-uniswap-v3/src/abi",
|
|
]
|