use {crate::types::Currency, solana_pubkey::Pubkey};
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Debug, Clone, borsh::BorshSerialize, borsh::BorshDeserialize, PartialEq)]
pub struct ConfigAccount {
pub migration_authority: Pubkey,
pub backend_authority: Pubkey,
pub config_authority: Pubkey,
pub helio_fee: Pubkey,
pub dex_fee: Pubkey,
pub fee_bps: u16,
pub dex_fee_share: u8,
pub migration_fee: u64,
pub marketcap_threshold: u64,
pub marketcap_currency: Currency,
pub min_supported_decimal_places: u8,
pub max_supported_decimal_places: u8,
pub min_supported_token_supply: u64,
pub max_supported_token_supply: u64,
pub bump: u8,
pub coef_b: u32,
}
impl ConfigAccount {
pub fn decode(data: &[u8]) -> Option<Self> {
if data.len() < 8 {
return None;
}
let discriminator = &data[0..8];
if discriminator != [189, 255, 97, 70, 186, 189, 24, 102] {
return None;
}
let mut data_slice = data;
data_slice = &data_slice[8..];
borsh::BorshDeserialize::deserialize(&mut data_slice).ok()
}
}