carbon-system-program-decoder 1.0.0

System Program Decoder
Documentation
//! This code was AUTOGENERATED using the Codama library.
use {
    carbon_core::{account_utils::next_account, deserialize::ArrangeAccounts},
    solana_pubkey::Pubkey,
};
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Debug, Clone, borsh::BorshSerialize, borsh::BorshDeserialize, PartialEq)]
pub struct AllocateWithSeed {
    pub base: Pubkey,
    pub seed: String,
    pub space: u64,
    pub program_address: Pubkey,
}

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

impl AllocateWithSeed {
    pub fn decode(data: &[u8]) -> Option<Self> {
        if data.len() < 4 {
            return None;
        }
        let discriminator = &data[0..4];
        if discriminator != [9, 0, 0, 0] {
            return None;
        }

        let mut data_slice = data;

        data_slice = &data_slice[4..];

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

impl ArrangeAccounts for AllocateWithSeed {
    type ArrangedAccounts = AllocateWithSeedInstructionAccounts;

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

        let new_account = next_account(&mut iter)?;
        let base_account = next_account(&mut iter)?;

        let remaining = iter.as_slice();

        Some(AllocateWithSeedInstructionAccounts {
            new_account,
            base_account,
            remaining: remaining.to_vec(),
        })
    }
}