fix(curve-substreams): miscellaneous fixes for balances extractions in Curve (#118)

* fix(curve-substreams): filter out reverted calls in `emit_eth_deltas`

* feat(substreams-sdk): extract balances from `Deposit` events in `extract_balance_deltas_from_tx`

* ci: ignore fmt for abi files

* feat(sdk): also account for `Withdrawal` event from WETH

* chore: reorder mod.rs, remove unused import

* chore: cargo fmt

---------

Co-authored-by: zizou <111426680+flopell@users.noreply.github.com>
Co-authored-by: Thales <thales@datarevenue.com>
This commit is contained in:
Zizou
2024-12-06 22:21:07 +01:00
committed by GitHub
parent d766116421
commit 4d4d05203a
7 changed files with 1609 additions and 36 deletions

View File

@@ -1,14 +1,14 @@
#![allow(clippy::all)]
pub mod yearn_linear_pool_factory;
pub mod composable_stable_pool_factory;
pub mod vault;
pub mod weighted_pool_factory_v4;
pub mod weighted_pool_tokens_factory;
pub mod silo_linear_pool_factory;
pub mod weighted_pool_factory_v3;
pub mod weighted_pool_factory_v2;
pub mod euler_linear_pool_factory;
pub mod weighted_pool_factory_v1;
pub mod managed_pool_factory;
pub mod erc_linear_pool_factory;
pub mod gearbox_linear_pool_factory;
pub mod weighted_pool_tokens_factory;
pub mod vault;
pub mod yearn_linear_pool_factory;
pub mod managed_pool_factory;
pub mod weighted_pool_factory_v1;
pub mod euler_linear_pool_factory;
pub mod weighted_pool_factory_v2;
pub mod weighted_pool_factory_v3;
pub mod weighted_pool_factory_v4;
pub mod silo_linear_pool_factory;
pub mod composable_stable_pool_factory;