carbon-marginfi-v2-decoder 1.0.0

MarginfiV2 Decoder
Documentation
//! This code was AUTOGENERATED using the Codama library.
use carbon_core::{account_utils::next_account, deserialize::ArrangeAccounts};
/// (global_fee_admin only) Unpause the protocol before the auto-expiry.
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Debug, Clone, borsh::BorshSerialize, borsh::BorshDeserialize, PartialEq)]
pub struct PanicUnpause {}

#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct PanicUnpauseInstructionAccounts {
    pub global_fee_admin: solana_pubkey::Pubkey,
    pub fee_state: solana_pubkey::Pubkey,
    pub remaining: Vec<solana_instruction::AccountMeta>,
}

impl PanicUnpause {
    pub fn decode(data: &[u8]) -> Option<Self> {
        if data.len() < 8 {
            return None;
        }
        let discriminator = &data[0..8];
        if discriminator != [236, 107, 194, 242, 99, 51, 121, 128] {
            return None;
        }

        let mut data_slice = data;

        data_slice = &data_slice[8..];

        borsh::BorshDeserialize::deserialize(&mut data_slice).ok()
    }
}

impl ArrangeAccounts for PanicUnpause {
    type ArrangedAccounts = PanicUnpauseInstructionAccounts;

    fn arrange_accounts(
        accounts: &[solana_instruction::AccountMeta],
    ) -> Option<Self::ArrangedAccounts> {
        let mut iter = accounts.iter();

        let global_fee_admin = next_account(&mut iter)?;
        let fee_state = next_account(&mut iter)?;

        let remaining = iter.as_slice();

        Some(PanicUnpauseInstructionAccounts {
            global_fee_admin,
            fee_state,
            remaining: remaining.to_vec(),
        })
    }
}