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 UpdateFeeConfig {
pub lp_fee_basis_points: u64,
pub protocol_fee_basis_points: u64,
pub protocol_fee_recipients: [Pubkey; 8],
pub coin_creator_fee_basis_points: u64,
pub admin_set_coin_creator_authority: Pubkey,
}
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct UpdateFeeConfigInstructionAccounts {
pub admin: solana_pubkey::Pubkey,
pub global_config: solana_pubkey::Pubkey,
pub event_authority: solana_pubkey::Pubkey,
pub program: solana_pubkey::Pubkey,
pub remaining: Vec<solana_instruction::AccountMeta>,
}
impl UpdateFeeConfig {
pub fn decode(data: &[u8]) -> Option<Self> {
if data.len() < 8 {
return None;
}
let discriminator = &data[0..8];
if discriminator != [104, 184, 103, 242, 88, 151, 107, 20] {
return None;
}
let mut data_slice = data;
data_slice = &data_slice[8..];
borsh::BorshDeserialize::deserialize(&mut data_slice).ok()
}
}
impl ArrangeAccounts for UpdateFeeConfig {
type ArrangedAccounts = UpdateFeeConfigInstructionAccounts;
fn arrange_accounts(
accounts: &[solana_instruction::AccountMeta],
) -> Option<Self::ArrangedAccounts> {
let mut iter = accounts.iter();
let admin = next_account(&mut iter)?;
let global_config = next_account(&mut iter)?;
let event_authority = next_account(&mut iter)?;
let program = next_account(&mut iter)?;
let remaining = iter.as_slice();
Some(UpdateFeeConfigInstructionAccounts {
admin,
global_config,
event_authority,
program,
remaining: remaining.to_vec(),
})
}
}