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 PropagateFeeState {}
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct PropagateFeeStateInstructionAccounts {
pub fee_state: solana_pubkey::Pubkey,
pub marginfi_group: solana_pubkey::Pubkey,
pub remaining: Vec<solana_instruction::AccountMeta>,
}
impl PropagateFeeState {
pub fn decode(data: &[u8]) -> Option<Self> {
if data.len() < 8 {
return None;
}
let discriminator = &data[0..8];
if discriminator != [64, 3, 166, 194, 129, 21, 101, 155] {
return None;
}
let mut data_slice = data;
data_slice = &data_slice[8..];
borsh::BorshDeserialize::deserialize(&mut data_slice).ok()
}
}
impl ArrangeAccounts for PropagateFeeState {
type ArrangedAccounts = PropagateFeeStateInstructionAccounts;
fn arrange_accounts(
accounts: &[solana_instruction::AccountMeta],
) -> Option<Self::ArrangedAccounts> {
let mut iter = accounts.iter();
let fee_state = next_account(&mut iter)?;
let marginfi_group = next_account(&mut iter)?;
let remaining = iter.as_slice();
Some(PropagateFeeStateInstructionAccounts {
fee_state,
marginfi_group,
remaining: remaining.to_vec(),
})
}
}