use crate::types::PoolFees;
use borsh::BorshDeserialize;
use borsh::BorshSerialize;
use solana_program::pubkey::Pubkey;
#[derive(BorshSerialize, BorshDeserialize, Clone, Debug, Eq, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct Config {
pub discriminator: [u8; 8],
pub pool_fees: PoolFees,
pub activation_duration: u64,
#[cfg_attr(
feature = "serde",
serde(with = "serde_with::As::<serde_with::DisplayFromStr>")
)]
pub vault_config_key: Pubkey,
#[cfg_attr(
feature = "serde",
serde(with = "serde_with::As::<serde_with::DisplayFromStr>")
)]
pub pool_creator_authority: Pubkey,
pub activation_type: u8,
pub partner_fee_numerator: u64,
#[cfg_attr(feature = "serde", serde(with = "serde_with::As::<serde_with::Bytes>"))]
pub padding: [u8; 219],
}
impl Config {
pub const LEN: usize = 340;
#[inline(always)]
pub fn from_bytes(data: &[u8]) -> Result<Self, std::io::Error> {
let mut data = data;
Self::deserialize(&mut data)
}
}
impl<'a> TryFrom<&solana_program::account_info::AccountInfo<'a>> for Config {
type Error = std::io::Error;
fn try_from(
account_info: &solana_program::account_info::AccountInfo<'a>,
) -> Result<Self, Self::Error> {
let mut data: &[u8] = &(*account_info.data).borrow();
Self::deserialize(&mut data)
}
}
#[cfg(feature = "fetch")]
pub fn fetch_config(
rpc: &solana_client::rpc_client::RpcClient,
address: &Pubkey,
) -> Result<super::DecodedAccount<Config>, Error> {
let accounts = fetch_all_config(rpc, vec![address])?;
Ok(accounts[0].clone())
}
#[cfg(feature = "fetch")]
pub fn fetch_all_config(
rpc: &solana_client::rpc_client::RpcClient,
addresses: Vec<Pubkey>,
) -> Result<Vec<super::DecodedAccount<Config>>, Error> {
let accounts = rpc.get_multiple_accounts(&addresses)?;
let mut decoded_accounts: Vec<super::DecodedAccount<Config>> = Vec::new();
for i in 0..addresses.len() {
let address = addresses[i];
let account = accounts[i]
.as_ref()
.ok_or(format!("Account not found: {}", address))?;
let data = Config::from_bytes(&account.data)?;
decoded_accounts.push(super::DecodedAccount {
address,
account: account.clone(),
data,
});
}
Ok(decoded_accounts)
}
#[cfg(feature = "fetch")]
pub fn fetch_maybe_config(
rpc: &solana_client::rpc_client::RpcClient,
address: &Pubkey,
) -> Result<super::MaybeAccount<Config>, Error> {
let accounts = fetch_all_maybe_config(rpc, vec![address])?;
Ok(accounts[0].clone())
}
#[cfg(feature = "fetch")]
pub fn fetch_all_maybe_config(
rpc: &solana_client::rpc_client::RpcClient,
addresses: Vec<Pubkey>,
) -> Result<Vec<super::MaybeAccount<Config>>, Error> {
let accounts = rpc.get_multiple_accounts(&addresses)?;
let mut decoded_accounts: Vec<super::MaybeAccount<Config>> = Vec::new();
for i in 0..addresses.len() {
let address = addresses[i];
if let Some(account) = accounts[i].as_ref() {
let data = Config::from_bytes(&account.data)?;
decoded_accounts.push(super::MaybeAccount::Exists(super::DecodedAccount {
address,
account: account.clone(),
data,
}));
} else {
decoded_accounts.push(super::MaybeAccount::NotFound(address));
}
}
Ok(decoded_accounts)
}
#[cfg(feature = "anchor")]
impl anchor_lang::AccountDeserialize for Config {
fn try_deserialize_unchecked(buf: &mut &[u8]) -> anchor_lang::Result<Self> {
Ok(Self::deserialize(buf)?)
}
}
#[cfg(feature = "anchor")]
impl anchor_lang::AccountSerialize for Config {}
#[cfg(feature = "anchor")]
impl anchor_lang::Owner for Config {
fn owner() -> Pubkey {
crate::AMM_ID
}
}
#[cfg(feature = "anchor-idl-build")]
impl anchor_lang::IdlBuild for Config {}
#[cfg(feature = "anchor-idl-build")]
impl anchor_lang::Discriminator for Config {
const DISCRIMINATOR: [u8; 8] = [0; 8];
}