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 TransferSolWithSeed {
    pub amount: u64,
    pub from_seed: String,
    pub from_owner: Pubkey,
}

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

impl TransferSolWithSeed {
    pub fn decode(data: &[u8]) -> Option<Self> {
        if data.len() < 4 {
            return None;
        }
        let discriminator = &data[0..4];
        if discriminator != [11, 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 TransferSolWithSeed {
    type ArrangedAccounts = TransferSolWithSeedInstructionAccounts;

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

        let source = next_account(&mut iter)?;
        let base_account = next_account(&mut iter)?;
        let destination = next_account(&mut iter)?;

        let remaining = iter.as_slice();

        Some(TransferSolWithSeedInstructionAccounts {
            source,
            base_account,
            destination,
            remaining: remaining.to_vec(),
        })
    }
}