use carbon_core::{account_utils::next_account, deserialize::ArrangeAccounts};
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Debug, Clone, borsh::BorshSerialize, borsh::BorshDeserialize, PartialEq)]
pub struct InitializeUnderlying {
pub flex_underlying: bool,
}
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct InitializeUnderlyingInstructionAccounts {
pub admin: solana_pubkey::Pubkey,
pub zeta_program: solana_pubkey::Pubkey,
pub state: solana_pubkey::Pubkey,
pub system_program: solana_pubkey::Pubkey,
pub underlying: solana_pubkey::Pubkey,
pub underlying_mint: solana_pubkey::Pubkey,
pub remaining: Vec<solana_instruction::AccountMeta>,
}
impl InitializeUnderlying {
pub fn decode(data: &[u8]) -> Option<Self> {
if data.len() < 8 {
return None;
}
let discriminator = &data[0..8];
if discriminator != [114, 108, 213, 92, 175, 124, 43, 19] {
return None;
}
let mut data_slice = data;
data_slice = &data_slice[8..];
borsh::BorshDeserialize::deserialize(&mut data_slice).ok()
}
}
impl ArrangeAccounts for InitializeUnderlying {
type ArrangedAccounts = InitializeUnderlyingInstructionAccounts;
fn arrange_accounts(
accounts: &[solana_instruction::AccountMeta],
) -> Option<Self::ArrangedAccounts> {
let mut iter = accounts.iter();
let admin = next_account(&mut iter)?;
let zeta_program = next_account(&mut iter)?;
let state = next_account(&mut iter)?;
let system_program = next_account(&mut iter)?;
let underlying = next_account(&mut iter)?;
let underlying_mint = next_account(&mut iter)?;
let remaining = iter.as_slice();
Some(InitializeUnderlyingInstructionAccounts {
admin,
zeta_program,
state,
system_program,
underlying,
underlying_mint,
remaining: remaining.to_vec(),
})
}
}