v0.1.0-pre.011-fix-01

This commit is contained in:
2026-07-24 15:06:27 +02:00
parent 42e8a203ec
commit 60660ca555
161 changed files with 10665 additions and 977 deletions

View File

@@ -1,8 +1,24 @@
// file: kb-lib/src/decoder/staking.rs
// version: 1
// version: 2
//! `staking` decoder family.
mod kamino_farm;
mod marinade_finance;
mod solayer;
/// Pending `staking` decoder migration boundaries.
pub(crate) const DC_STAKING_MIGRATION_BOUNDARIES: &[(&str, &str)] = &[
(
self::kamino_farm::DC_STAKING_KAMINO_FARM_LEGACY_CRATE,
self::kamino_farm::DC_STAKING_KAMINO_FARM_MIGRATION_STATUS,
),
(
self::marinade_finance::DC_STAKING_MARINADE_FINANCE_LEGACY_CRATE,
self::marinade_finance::DC_STAKING_MARINADE_FINANCE_MIGRATION_STATUS,
),
(
self::solayer::DC_STAKING_SOLAYER_LEGACY_CRATE,
self::solayer::DC_STAKING_SOLAYER_MIGRATION_STATUS,
),
];