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 ConfigGroupFee {
pub enable_program_fee: bool,
}
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct ConfigGroupFeeInstructionAccounts {
pub marginfi_group: solana_pubkey::Pubkey,
pub global_fee_admin: solana_pubkey::Pubkey,
pub fee_state: solana_pubkey::Pubkey,
pub remaining: Vec<solana_instruction::AccountMeta>,
}
impl ConfigGroupFee {
pub fn decode(data: &[u8]) -> Option<Self> {
if data.len() < 8 {
return None;
}
let discriminator = &data[0..8];
if discriminator != [231, 205, 66, 242, 220, 87, 145, 38] {
return None;
}
let mut data_slice = data;
data_slice = &data_slice[8..];
borsh::BorshDeserialize::deserialize(&mut data_slice).ok()
}
}
impl ArrangeAccounts for ConfigGroupFee {
type ArrangedAccounts = ConfigGroupFeeInstructionAccounts;
fn arrange_accounts(
accounts: &[solana_instruction::AccountMeta],
) -> Option<Self::ArrangedAccounts> {
let mut iter = accounts.iter();
let marginfi_group = next_account(&mut iter)?;
let global_fee_admin = next_account(&mut iter)?;
let fee_state = next_account(&mut iter)?;
let remaining = iter.as_slice();
Some(ConfigGroupFeeInstructionAccounts {
marginfi_group,
global_fee_admin,
fee_state,
remaining: remaining.to_vec(),
})
}
}