use carbon_core::account::AccountDecoder;
use carbon_core::deserialize::CarbonDeserialize;
use crate::PROGRAM_ID;
use super::GavelDecoder;
pub mod lp_position_account;
pub mod pool_account;
pub enum GavelAccount {
PoolAccount(Box<pool_account::PoolAccount>),
LpPositionAccount(lp_position_account::LpPositionAccount),
}
impl AccountDecoder<'_> for GavelDecoder {
type AccountType = GavelAccount;
fn decode_account(
&self,
account: &solana_account::Account,
) -> Option<carbon_core::account::DecodedAccount<Self::AccountType>> {
if !account.owner.eq(&PROGRAM_ID) {
return None;
}
if let Some(decoded_account) =
pool_account::PoolAccount::deserialize(account.data.as_slice())
{
return Some(carbon_core::account::DecodedAccount {
lamports: account.lamports,
data: GavelAccount::PoolAccount(Box::new(decoded_account)),
owner: account.owner,
executable: account.executable,
rent_epoch: account.rent_epoch,
});
}
if let Some(decoded_account) =
lp_position_account::LpPositionAccount::deserialize(account.data.as_slice())
{
return Some(carbon_core::account::DecodedAccount {
lamports: account.lamports,
data: GavelAccount::LpPositionAccount(decoded_account),
owner: account.owner,
executable: account.executable,
rent_epoch: account.rent_epoch,
});
}
None
}
}