use borsh::BorshSerialize;
use borsh::BorshDeserialize;
pub const PAUSE_AUCTION_DISCRIMINATOR: [u8; 8] = [226, 213, 80, 10, 129, 76, 211, 171];
#[derive(Debug)]
pub struct PauseAuction {
pub marketplace_authority: solana_address::Address,
pub auction_config: solana_address::Address,
}
impl PauseAuction {
pub fn instruction(&self) -> solana_instruction::Instruction {
self.instruction_with_remaining_accounts(&[])
}
#[allow(clippy::arithmetic_side_effects)]
#[allow(clippy::vec_init_then_push)]
pub fn instruction_with_remaining_accounts(&self, remaining_accounts: &[solana_instruction::AccountMeta]) -> solana_instruction::Instruction {
let mut accounts = Vec::with_capacity(2+ remaining_accounts.len());
accounts.push(solana_instruction::AccountMeta::new(
self.marketplace_authority,
true
));
accounts.push(solana_instruction::AccountMeta::new(
self.auction_config,
false
));
accounts.extend_from_slice(remaining_accounts);
let data = PauseAuctionInstructionData::new().try_to_vec().unwrap();
solana_instruction::Instruction {
program_id: crate::MALLOW_AUCTION_ID,
accounts,
data,
}
}
}
#[derive(BorshSerialize, BorshDeserialize, Clone, Debug, Eq, PartialEq)]
pub struct PauseAuctionInstructionData {
discriminator: [u8; 8],
}
impl PauseAuctionInstructionData {
pub fn new() -> Self {
Self {
discriminator: [226, 213, 80, 10, 129, 76, 211, 171],
}
}
pub(crate) fn try_to_vec(&self) -> Result<Vec<u8>, std::io::Error> {
borsh::to_vec(self)
}
}
impl Default for PauseAuctionInstructionData {
fn default() -> Self {
Self::new()
}
}
#[derive(Clone, Debug, Default)]
pub struct PauseAuctionBuilder {
marketplace_authority: Option<solana_address::Address>,
auction_config: Option<solana_address::Address>,
__remaining_accounts: Vec<solana_instruction::AccountMeta>,
}
impl PauseAuctionBuilder {
pub fn new() -> Self {
Self::default()
}
#[inline(always)]
pub fn marketplace_authority(&mut self, marketplace_authority: solana_address::Address) -> &mut Self {
self.marketplace_authority = Some(marketplace_authority);
self
}
#[inline(always)]
pub fn auction_config(&mut self, auction_config: solana_address::Address) -> &mut Self {
self.auction_config = Some(auction_config);
self
}
#[inline(always)]
pub fn add_remaining_account(&mut self, account: solana_instruction::AccountMeta) -> &mut Self {
self.__remaining_accounts.push(account);
self
}
#[inline(always)]
pub fn add_remaining_accounts(&mut self, accounts: &[solana_instruction::AccountMeta]) -> &mut Self {
self.__remaining_accounts.extend_from_slice(accounts);
self
}
#[allow(clippy::clone_on_copy)]
pub fn instruction(&self) -> solana_instruction::Instruction {
let accounts = PauseAuction {
marketplace_authority: self.marketplace_authority.unwrap_or(solana_address::address!("AUTH8n3RY3JH38j19r1TrZi88zf5pUnAGh4tFkhcnptZ")),
auction_config: self.auction_config.expect("auction_config is not set"),
};
accounts.instruction_with_remaining_accounts(&self.__remaining_accounts)
}
}
pub struct PauseAuctionCpiAccounts<'a, 'b> {
pub marketplace_authority: &'b solana_account_info::AccountInfo<'a>,
pub auction_config: &'b solana_account_info::AccountInfo<'a>,
}
pub struct PauseAuctionCpi<'a, 'b> {
pub __program: &'b solana_account_info::AccountInfo<'a>,
pub marketplace_authority: &'b solana_account_info::AccountInfo<'a>,
pub auction_config: &'b solana_account_info::AccountInfo<'a>,
}
impl<'a, 'b> PauseAuctionCpi<'a, 'b> {
pub fn new(
program: &'b solana_account_info::AccountInfo<'a>,
accounts: PauseAuctionCpiAccounts<'a, 'b>,
) -> Self {
Self {
__program: program,
marketplace_authority: accounts.marketplace_authority,
auction_config: accounts.auction_config,
}
}
#[inline(always)]
pub fn invoke(&self) -> solana_program_error::ProgramResult {
self.invoke_signed_with_remaining_accounts(&[], &[])
}
#[inline(always)]
pub fn invoke_with_remaining_accounts(&self, remaining_accounts: &[(&'b solana_account_info::AccountInfo<'a>, bool, bool)]) -> solana_program_error::ProgramResult {
self.invoke_signed_with_remaining_accounts(&[], remaining_accounts)
}
#[inline(always)]
pub fn invoke_signed(&self, signers_seeds: &[&[&[u8]]]) -> solana_program_error::ProgramResult {
self.invoke_signed_with_remaining_accounts(signers_seeds, &[])
}
#[allow(clippy::arithmetic_side_effects)]
#[allow(clippy::clone_on_copy)]
#[allow(clippy::vec_init_then_push)]
pub fn invoke_signed_with_remaining_accounts(
&self,
signers_seeds: &[&[&[u8]]],
remaining_accounts: &[(&'b solana_account_info::AccountInfo<'a>, bool, bool)]
) -> solana_program_error::ProgramResult {
let mut accounts = Vec::with_capacity(2+ remaining_accounts.len());
accounts.push(solana_instruction::AccountMeta::new(
*self.marketplace_authority.key,
true
));
accounts.push(solana_instruction::AccountMeta::new(
*self.auction_config.key,
false
));
remaining_accounts.iter().for_each(|remaining_account| {
accounts.push(solana_instruction::AccountMeta {
pubkey: *remaining_account.0.key,
is_signer: remaining_account.1,
is_writable: remaining_account.2,
})
});
let data = PauseAuctionInstructionData::new().try_to_vec().unwrap();
let instruction = solana_instruction::Instruction {
program_id: crate::MALLOW_AUCTION_ID,
accounts,
data,
};
let mut account_infos = Vec::with_capacity(3 + remaining_accounts.len());
account_infos.push(self.__program.clone());
account_infos.push(self.marketplace_authority.clone());
account_infos.push(self.auction_config.clone());
remaining_accounts.iter().for_each(|remaining_account| account_infos.push(remaining_account.0.clone()));
if signers_seeds.is_empty() {
solana_cpi::invoke(&instruction, &account_infos)
} else {
solana_cpi::invoke_signed(&instruction, &account_infos, signers_seeds)
}
}
}
#[derive(Clone, Debug)]
pub struct PauseAuctionCpiBuilder<'a, 'b> {
instruction: Box<PauseAuctionCpiBuilderInstruction<'a, 'b>>,
}
impl<'a, 'b> PauseAuctionCpiBuilder<'a, 'b> {
pub fn new(program: &'b solana_account_info::AccountInfo<'a>) -> Self {
let instruction = Box::new(PauseAuctionCpiBuilderInstruction {
__program: program,
marketplace_authority: None,
auction_config: None,
__remaining_accounts: Vec::new(),
});
Self { instruction }
}
#[inline(always)]
pub fn marketplace_authority(&mut self, marketplace_authority: &'b solana_account_info::AccountInfo<'a>) -> &mut Self {
self.instruction.marketplace_authority = Some(marketplace_authority);
self
}
#[inline(always)]
pub fn auction_config(&mut self, auction_config: &'b solana_account_info::AccountInfo<'a>) -> &mut Self {
self.instruction.auction_config = Some(auction_config);
self
}
#[inline(always)]
pub fn add_remaining_account(&mut self, account: &'b solana_account_info::AccountInfo<'a>, is_writable: bool, is_signer: bool) -> &mut Self {
self.instruction.__remaining_accounts.push((account, is_writable, is_signer));
self
}
#[inline(always)]
pub fn add_remaining_accounts(&mut self, accounts: &[(&'b solana_account_info::AccountInfo<'a>, bool, bool)]) -> &mut Self {
self.instruction.__remaining_accounts.extend_from_slice(accounts);
self
}
#[inline(always)]
pub fn invoke(&self) -> solana_program_error::ProgramResult {
self.invoke_signed(&[])
}
#[allow(clippy::clone_on_copy)]
#[allow(clippy::vec_init_then_push)]
pub fn invoke_signed(&self, signers_seeds: &[&[&[u8]]]) -> solana_program_error::ProgramResult {
let instruction = PauseAuctionCpi {
__program: self.instruction.__program,
marketplace_authority: self.instruction.marketplace_authority.expect("marketplace_authority is not set"),
auction_config: self.instruction.auction_config.expect("auction_config is not set"),
};
instruction.invoke_signed_with_remaining_accounts(signers_seeds, &self.instruction.__remaining_accounts)
}
}
#[derive(Clone, Debug)]
struct PauseAuctionCpiBuilderInstruction<'a, 'b> {
__program: &'b solana_account_info::AccountInfo<'a>,
marketplace_authority: Option<&'b solana_account_info::AccountInfo<'a>>,
auction_config: Option<&'b solana_account_info::AccountInfo<'a>>,
__remaining_accounts: Vec<(&'b solana_account_info::AccountInfo<'a>, bool, bool)>,
}