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 MarginfiAccountCloseOrder {}
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct MarginfiAccountCloseOrderInstructionAccounts {
pub marginfi_account: solana_pubkey::Pubkey,
pub authority: solana_pubkey::Pubkey,
pub order: solana_pubkey::Pubkey,
pub fee_recipient: solana_pubkey::Pubkey,
pub system_program: solana_pubkey::Pubkey,
pub remaining: Vec<solana_instruction::AccountMeta>,
}
impl MarginfiAccountCloseOrder {
pub fn decode(data: &[u8]) -> Option<Self> {
if data.len() < 8 {
return None;
}
let discriminator = &data[0..8];
if discriminator != [212, 223, 79, 182, 172, 183, 205, 237] {
return None;
}
let mut data_slice = data;
data_slice = &data_slice[8..];
borsh::BorshDeserialize::deserialize(&mut data_slice).ok()
}
}
impl ArrangeAccounts for MarginfiAccountCloseOrder {
type ArrangedAccounts = MarginfiAccountCloseOrderInstructionAccounts;
fn arrange_accounts(
accounts: &[solana_instruction::AccountMeta],
) -> Option<Self::ArrangedAccounts> {
let mut iter = accounts.iter();
let marginfi_account = next_account(&mut iter)?;
let authority = next_account(&mut iter)?;
let order = next_account(&mut iter)?;
let fee_recipient = next_account(&mut iter)?;
let system_program = next_account(&mut iter)?;
let remaining = iter.as_slice();
Some(MarginfiAccountCloseOrderInstructionAccounts {
marginfi_account,
authority,
order,
fee_recipient,
system_program,
remaining: remaining.to_vec(),
})
}
}