use borsh::BorshDeserialize;
use borsh::BorshSerialize;
pub struct CreatePurchaseOrder {
pub user_wallet: solana_program::pubkey::Pubkey,
pub bond_account: solana_program::pubkey::Pubkey,
pub issuance_account: solana_program::pubkey::Pubkey,
pub payment_account: solana_program::pubkey::Pubkey,
pub payment_token_account: solana_program::pubkey::Pubkey,
pub user_payment_token_account: solana_program::pubkey::Pubkey,
pub user_nft_token_account: solana_program::pubkey::Pubkey,
pub nft_mint_account: solana_program::pubkey::Pubkey,
pub nft_metadata_account: solana_program::pubkey::Pubkey,
pub nft_master_edition_account: solana_program::pubkey::Pubkey,
pub purchase_order_vault_account: solana_program::pubkey::Pubkey,
pub nft_collection_mint: solana_program::pubkey::Pubkey,
pub nft_collection_metadata_account: solana_program::pubkey::Pubkey,
pub nft_collection_master_edition_account: solana_program::pubkey::Pubkey,
pub payment_mint_account: solana_program::pubkey::Pubkey,
pub payment_feed_account: solana_program::pubkey::Pubkey,
pub payment_base_price_feed_account: solana_program::pubkey::Pubkey,
pub config_account: solana_program::pubkey::Pubkey,
pub associated_token_program: solana_program::pubkey::Pubkey,
pub token2022_program: solana_program::pubkey::Pubkey,
pub token_program: solana_program::pubkey::Pubkey,
pub system_program: solana_program::pubkey::Pubkey,
pub metadata_program: solana_program::pubkey::Pubkey,
pub sysvar_instructions: solana_program::pubkey::Pubkey,
pub payment_quote_price_feed_account: Option<solana_program::pubkey::Pubkey>,
}
impl CreatePurchaseOrder {
pub fn instruction(
&self,
args: CreatePurchaseOrderInstructionArgs,
) -> solana_program::instruction::Instruction {
self.instruction_with_remaining_accounts(args, &[])
}
#[allow(clippy::vec_init_then_push)]
pub fn instruction_with_remaining_accounts(
&self,
args: CreatePurchaseOrderInstructionArgs,
remaining_accounts: &[solana_program::instruction::AccountMeta],
) -> solana_program::instruction::Instruction {
let mut accounts = Vec::with_capacity(25 + remaining_accounts.len());
accounts.push(solana_program::instruction::AccountMeta::new(
self.user_wallet,
true,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
self.bond_account,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
self.issuance_account,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new(
self.payment_account,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new(
self.payment_token_account,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new(
self.user_payment_token_account,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new(
self.user_nft_token_account,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new(
self.nft_mint_account,
true,
));
accounts.push(solana_program::instruction::AccountMeta::new(
self.nft_metadata_account,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new(
self.nft_master_edition_account,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new(
self.purchase_order_vault_account,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
self.nft_collection_mint,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new(
self.nft_collection_metadata_account,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
self.nft_collection_master_edition_account,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
self.payment_mint_account,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
self.payment_feed_account,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
self.payment_base_price_feed_account,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
self.config_account,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
self.associated_token_program,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
self.token2022_program,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
self.token_program,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
self.system_program,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
self.metadata_program,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
self.sysvar_instructions,
false,
));
if let Some(payment_quote_price_feed_account) = self.payment_quote_price_feed_account {
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
payment_quote_price_feed_account,
false,
));
} else {
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
crate::STABLEBOND_ID,
false,
));
}
accounts.extend_from_slice(remaining_accounts);
let mut data = CreatePurchaseOrderInstructionData::new()
.try_to_vec()
.unwrap();
let mut args = args.try_to_vec().unwrap();
data.append(&mut args);
solana_program::instruction::Instruction {
program_id: crate::STABLEBOND_ID,
accounts,
data,
}
}
}
#[derive(BorshDeserialize, BorshSerialize)]
struct CreatePurchaseOrderInstructionData {
discriminator: u8,
}
impl CreatePurchaseOrderInstructionData {
fn new() -> Self {
Self { discriminator: 16 }
}
}
#[derive(BorshSerialize, BorshDeserialize, Clone, Debug, Eq, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct CreatePurchaseOrderInstructionArgs {
pub amount: u64,
}
#[derive(Default)]
pub struct CreatePurchaseOrderBuilder {
user_wallet: Option<solana_program::pubkey::Pubkey>,
bond_account: Option<solana_program::pubkey::Pubkey>,
issuance_account: Option<solana_program::pubkey::Pubkey>,
payment_account: Option<solana_program::pubkey::Pubkey>,
payment_token_account: Option<solana_program::pubkey::Pubkey>,
user_payment_token_account: Option<solana_program::pubkey::Pubkey>,
user_nft_token_account: Option<solana_program::pubkey::Pubkey>,
nft_mint_account: Option<solana_program::pubkey::Pubkey>,
nft_metadata_account: Option<solana_program::pubkey::Pubkey>,
nft_master_edition_account: Option<solana_program::pubkey::Pubkey>,
purchase_order_vault_account: Option<solana_program::pubkey::Pubkey>,
nft_collection_mint: Option<solana_program::pubkey::Pubkey>,
nft_collection_metadata_account: Option<solana_program::pubkey::Pubkey>,
nft_collection_master_edition_account: Option<solana_program::pubkey::Pubkey>,
payment_mint_account: Option<solana_program::pubkey::Pubkey>,
payment_feed_account: Option<solana_program::pubkey::Pubkey>,
payment_base_price_feed_account: Option<solana_program::pubkey::Pubkey>,
config_account: Option<solana_program::pubkey::Pubkey>,
associated_token_program: Option<solana_program::pubkey::Pubkey>,
token2022_program: Option<solana_program::pubkey::Pubkey>,
token_program: Option<solana_program::pubkey::Pubkey>,
system_program: Option<solana_program::pubkey::Pubkey>,
metadata_program: Option<solana_program::pubkey::Pubkey>,
sysvar_instructions: Option<solana_program::pubkey::Pubkey>,
payment_quote_price_feed_account: Option<solana_program::pubkey::Pubkey>,
amount: Option<u64>,
__remaining_accounts: Vec<solana_program::instruction::AccountMeta>,
}
impl CreatePurchaseOrderBuilder {
pub fn new() -> Self {
Self::default()
}
#[inline(always)]
pub fn user_wallet(&mut self, user_wallet: solana_program::pubkey::Pubkey) -> &mut Self {
self.user_wallet = Some(user_wallet);
self
}
#[inline(always)]
pub fn bond_account(&mut self, bond_account: solana_program::pubkey::Pubkey) -> &mut Self {
self.bond_account = Some(bond_account);
self
}
#[inline(always)]
pub fn issuance_account(
&mut self,
issuance_account: solana_program::pubkey::Pubkey,
) -> &mut Self {
self.issuance_account = Some(issuance_account);
self
}
#[inline(always)]
pub fn payment_account(
&mut self,
payment_account: solana_program::pubkey::Pubkey,
) -> &mut Self {
self.payment_account = Some(payment_account);
self
}
#[inline(always)]
pub fn payment_token_account(
&mut self,
payment_token_account: solana_program::pubkey::Pubkey,
) -> &mut Self {
self.payment_token_account = Some(payment_token_account);
self
}
#[inline(always)]
pub fn user_payment_token_account(
&mut self,
user_payment_token_account: solana_program::pubkey::Pubkey,
) -> &mut Self {
self.user_payment_token_account = Some(user_payment_token_account);
self
}
#[inline(always)]
pub fn user_nft_token_account(
&mut self,
user_nft_token_account: solana_program::pubkey::Pubkey,
) -> &mut Self {
self.user_nft_token_account = Some(user_nft_token_account);
self
}
#[inline(always)]
pub fn nft_mint_account(
&mut self,
nft_mint_account: solana_program::pubkey::Pubkey,
) -> &mut Self {
self.nft_mint_account = Some(nft_mint_account);
self
}
#[inline(always)]
pub fn nft_metadata_account(
&mut self,
nft_metadata_account: solana_program::pubkey::Pubkey,
) -> &mut Self {
self.nft_metadata_account = Some(nft_metadata_account);
self
}
#[inline(always)]
pub fn nft_master_edition_account(
&mut self,
nft_master_edition_account: solana_program::pubkey::Pubkey,
) -> &mut Self {
self.nft_master_edition_account = Some(nft_master_edition_account);
self
}
#[inline(always)]
pub fn purchase_order_vault_account(
&mut self,
purchase_order_vault_account: solana_program::pubkey::Pubkey,
) -> &mut Self {
self.purchase_order_vault_account = Some(purchase_order_vault_account);
self
}
#[inline(always)]
pub fn nft_collection_mint(
&mut self,
nft_collection_mint: solana_program::pubkey::Pubkey,
) -> &mut Self {
self.nft_collection_mint = Some(nft_collection_mint);
self
}
#[inline(always)]
pub fn nft_collection_metadata_account(
&mut self,
nft_collection_metadata_account: solana_program::pubkey::Pubkey,
) -> &mut Self {
self.nft_collection_metadata_account = Some(nft_collection_metadata_account);
self
}
#[inline(always)]
pub fn nft_collection_master_edition_account(
&mut self,
nft_collection_master_edition_account: solana_program::pubkey::Pubkey,
) -> &mut Self {
self.nft_collection_master_edition_account = Some(nft_collection_master_edition_account);
self
}
#[inline(always)]
pub fn payment_mint_account(
&mut self,
payment_mint_account: solana_program::pubkey::Pubkey,
) -> &mut Self {
self.payment_mint_account = Some(payment_mint_account);
self
}
#[inline(always)]
pub fn payment_feed_account(
&mut self,
payment_feed_account: solana_program::pubkey::Pubkey,
) -> &mut Self {
self.payment_feed_account = Some(payment_feed_account);
self
}
#[inline(always)]
pub fn payment_base_price_feed_account(
&mut self,
payment_base_price_feed_account: solana_program::pubkey::Pubkey,
) -> &mut Self {
self.payment_base_price_feed_account = Some(payment_base_price_feed_account);
self
}
#[inline(always)]
pub fn config_account(&mut self, config_account: solana_program::pubkey::Pubkey) -> &mut Self {
self.config_account = Some(config_account);
self
}
#[inline(always)]
pub fn associated_token_program(
&mut self,
associated_token_program: solana_program::pubkey::Pubkey,
) -> &mut Self {
self.associated_token_program = Some(associated_token_program);
self
}
#[inline(always)]
pub fn token2022_program(
&mut self,
token2022_program: solana_program::pubkey::Pubkey,
) -> &mut Self {
self.token2022_program = Some(token2022_program);
self
}
#[inline(always)]
pub fn token_program(&mut self, token_program: solana_program::pubkey::Pubkey) -> &mut Self {
self.token_program = Some(token_program);
self
}
#[inline(always)]
pub fn system_program(&mut self, system_program: solana_program::pubkey::Pubkey) -> &mut Self {
self.system_program = Some(system_program);
self
}
#[inline(always)]
pub fn metadata_program(
&mut self,
metadata_program: solana_program::pubkey::Pubkey,
) -> &mut Self {
self.metadata_program = Some(metadata_program);
self
}
#[inline(always)]
pub fn sysvar_instructions(
&mut self,
sysvar_instructions: solana_program::pubkey::Pubkey,
) -> &mut Self {
self.sysvar_instructions = Some(sysvar_instructions);
self
}
#[inline(always)]
pub fn payment_quote_price_feed_account(
&mut self,
payment_quote_price_feed_account: Option<solana_program::pubkey::Pubkey>,
) -> &mut Self {
self.payment_quote_price_feed_account = payment_quote_price_feed_account;
self
}
#[inline(always)]
pub fn amount(&mut self, amount: u64) -> &mut Self {
self.amount = Some(amount);
self
}
#[inline(always)]
pub fn add_remaining_account(
&mut self,
account: solana_program::instruction::AccountMeta,
) -> &mut Self {
self.__remaining_accounts.push(account);
self
}
#[inline(always)]
pub fn add_remaining_accounts(
&mut self,
accounts: &[solana_program::instruction::AccountMeta],
) -> &mut Self {
self.__remaining_accounts.extend_from_slice(accounts);
self
}
#[allow(clippy::clone_on_copy)]
pub fn instruction(&self) -> solana_program::instruction::Instruction {
let accounts = CreatePurchaseOrder {
user_wallet: self.user_wallet.expect("user_wallet is not set"),
bond_account: self.bond_account.expect("bond_account is not set"),
issuance_account: self.issuance_account.expect("issuance_account is not set"),
payment_account: self.payment_account.expect("payment_account is not set"),
payment_token_account: self
.payment_token_account
.expect("payment_token_account is not set"),
user_payment_token_account: self
.user_payment_token_account
.expect("user_payment_token_account is not set"),
user_nft_token_account: self
.user_nft_token_account
.expect("user_nft_token_account is not set"),
nft_mint_account: self.nft_mint_account.expect("nft_mint_account is not set"),
nft_metadata_account: self
.nft_metadata_account
.expect("nft_metadata_account is not set"),
nft_master_edition_account: self
.nft_master_edition_account
.expect("nft_master_edition_account is not set"),
purchase_order_vault_account: self
.purchase_order_vault_account
.expect("purchase_order_vault_account is not set"),
nft_collection_mint: self
.nft_collection_mint
.expect("nft_collection_mint is not set"),
nft_collection_metadata_account: self
.nft_collection_metadata_account
.expect("nft_collection_metadata_account is not set"),
nft_collection_master_edition_account: self
.nft_collection_master_edition_account
.expect("nft_collection_master_edition_account is not set"),
payment_mint_account: self
.payment_mint_account
.expect("payment_mint_account is not set"),
payment_feed_account: self
.payment_feed_account
.expect("payment_feed_account is not set"),
payment_base_price_feed_account: self
.payment_base_price_feed_account
.expect("payment_base_price_feed_account is not set"),
config_account: self.config_account.expect("config_account is not set"),
associated_token_program: self
.associated_token_program
.expect("associated_token_program is not set"),
token2022_program: self
.token2022_program
.expect("token2022_program is not set"),
token_program: self.token_program.unwrap_or(solana_program::pubkey!(
"TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA"
)),
system_program: self
.system_program
.unwrap_or(solana_program::pubkey!("11111111111111111111111111111111")),
metadata_program: self.metadata_program.expect("metadata_program is not set"),
sysvar_instructions: self.sysvar_instructions.unwrap_or(solana_program::pubkey!(
"Sysvar1nstructions1111111111111111111111111"
)),
payment_quote_price_feed_account: self.payment_quote_price_feed_account,
};
let args = CreatePurchaseOrderInstructionArgs {
amount: self.amount.clone().expect("amount is not set"),
};
accounts.instruction_with_remaining_accounts(args, &self.__remaining_accounts)
}
}
pub struct CreatePurchaseOrderCpiAccounts<'a, 'b> {
pub user_wallet: &'b solana_program::account_info::AccountInfo<'a>,
pub bond_account: &'b solana_program::account_info::AccountInfo<'a>,
pub issuance_account: &'b solana_program::account_info::AccountInfo<'a>,
pub payment_account: &'b solana_program::account_info::AccountInfo<'a>,
pub payment_token_account: &'b solana_program::account_info::AccountInfo<'a>,
pub user_payment_token_account: &'b solana_program::account_info::AccountInfo<'a>,
pub user_nft_token_account: &'b solana_program::account_info::AccountInfo<'a>,
pub nft_mint_account: &'b solana_program::account_info::AccountInfo<'a>,
pub nft_metadata_account: &'b solana_program::account_info::AccountInfo<'a>,
pub nft_master_edition_account: &'b solana_program::account_info::AccountInfo<'a>,
pub purchase_order_vault_account: &'b solana_program::account_info::AccountInfo<'a>,
pub nft_collection_mint: &'b solana_program::account_info::AccountInfo<'a>,
pub nft_collection_metadata_account: &'b solana_program::account_info::AccountInfo<'a>,
pub nft_collection_master_edition_account: &'b solana_program::account_info::AccountInfo<'a>,
pub payment_mint_account: &'b solana_program::account_info::AccountInfo<'a>,
pub payment_feed_account: &'b solana_program::account_info::AccountInfo<'a>,
pub payment_base_price_feed_account: &'b solana_program::account_info::AccountInfo<'a>,
pub config_account: &'b solana_program::account_info::AccountInfo<'a>,
pub associated_token_program: &'b solana_program::account_info::AccountInfo<'a>,
pub token2022_program: &'b solana_program::account_info::AccountInfo<'a>,
pub token_program: &'b solana_program::account_info::AccountInfo<'a>,
pub system_program: &'b solana_program::account_info::AccountInfo<'a>,
pub metadata_program: &'b solana_program::account_info::AccountInfo<'a>,
pub sysvar_instructions: &'b solana_program::account_info::AccountInfo<'a>,
pub payment_quote_price_feed_account: Option<&'b solana_program::account_info::AccountInfo<'a>>,
}
pub struct CreatePurchaseOrderCpi<'a, 'b> {
pub __program: &'b solana_program::account_info::AccountInfo<'a>,
pub user_wallet: &'b solana_program::account_info::AccountInfo<'a>,
pub bond_account: &'b solana_program::account_info::AccountInfo<'a>,
pub issuance_account: &'b solana_program::account_info::AccountInfo<'a>,
pub payment_account: &'b solana_program::account_info::AccountInfo<'a>,
pub payment_token_account: &'b solana_program::account_info::AccountInfo<'a>,
pub user_payment_token_account: &'b solana_program::account_info::AccountInfo<'a>,
pub user_nft_token_account: &'b solana_program::account_info::AccountInfo<'a>,
pub nft_mint_account: &'b solana_program::account_info::AccountInfo<'a>,
pub nft_metadata_account: &'b solana_program::account_info::AccountInfo<'a>,
pub nft_master_edition_account: &'b solana_program::account_info::AccountInfo<'a>,
pub purchase_order_vault_account: &'b solana_program::account_info::AccountInfo<'a>,
pub nft_collection_mint: &'b solana_program::account_info::AccountInfo<'a>,
pub nft_collection_metadata_account: &'b solana_program::account_info::AccountInfo<'a>,
pub nft_collection_master_edition_account: &'b solana_program::account_info::AccountInfo<'a>,
pub payment_mint_account: &'b solana_program::account_info::AccountInfo<'a>,
pub payment_feed_account: &'b solana_program::account_info::AccountInfo<'a>,
pub payment_base_price_feed_account: &'b solana_program::account_info::AccountInfo<'a>,
pub config_account: &'b solana_program::account_info::AccountInfo<'a>,
pub associated_token_program: &'b solana_program::account_info::AccountInfo<'a>,
pub token2022_program: &'b solana_program::account_info::AccountInfo<'a>,
pub token_program: &'b solana_program::account_info::AccountInfo<'a>,
pub system_program: &'b solana_program::account_info::AccountInfo<'a>,
pub metadata_program: &'b solana_program::account_info::AccountInfo<'a>,
pub sysvar_instructions: &'b solana_program::account_info::AccountInfo<'a>,
pub payment_quote_price_feed_account: Option<&'b solana_program::account_info::AccountInfo<'a>>,
pub __args: CreatePurchaseOrderInstructionArgs,
}
impl<'a, 'b> CreatePurchaseOrderCpi<'a, 'b> {
pub fn new(
program: &'b solana_program::account_info::AccountInfo<'a>,
accounts: CreatePurchaseOrderCpiAccounts<'a, 'b>,
args: CreatePurchaseOrderInstructionArgs,
) -> Self {
Self {
__program: program,
user_wallet: accounts.user_wallet,
bond_account: accounts.bond_account,
issuance_account: accounts.issuance_account,
payment_account: accounts.payment_account,
payment_token_account: accounts.payment_token_account,
user_payment_token_account: accounts.user_payment_token_account,
user_nft_token_account: accounts.user_nft_token_account,
nft_mint_account: accounts.nft_mint_account,
nft_metadata_account: accounts.nft_metadata_account,
nft_master_edition_account: accounts.nft_master_edition_account,
purchase_order_vault_account: accounts.purchase_order_vault_account,
nft_collection_mint: accounts.nft_collection_mint,
nft_collection_metadata_account: accounts.nft_collection_metadata_account,
nft_collection_master_edition_account: accounts.nft_collection_master_edition_account,
payment_mint_account: accounts.payment_mint_account,
payment_feed_account: accounts.payment_feed_account,
payment_base_price_feed_account: accounts.payment_base_price_feed_account,
config_account: accounts.config_account,
associated_token_program: accounts.associated_token_program,
token2022_program: accounts.token2022_program,
token_program: accounts.token_program,
system_program: accounts.system_program,
metadata_program: accounts.metadata_program,
sysvar_instructions: accounts.sysvar_instructions,
payment_quote_price_feed_account: accounts.payment_quote_price_feed_account,
__args: args,
}
}
#[inline(always)]
pub fn invoke(&self) -> solana_program::entrypoint::ProgramResult {
self.invoke_signed_with_remaining_accounts(&[], &[])
}
#[inline(always)]
pub fn invoke_with_remaining_accounts(
&self,
remaining_accounts: &[(
&'b solana_program::account_info::AccountInfo<'a>,
bool,
bool,
)],
) -> solana_program::entrypoint::ProgramResult {
self.invoke_signed_with_remaining_accounts(&[], remaining_accounts)
}
#[inline(always)]
pub fn invoke_signed(
&self,
signers_seeds: &[&[&[u8]]],
) -> solana_program::entrypoint::ProgramResult {
self.invoke_signed_with_remaining_accounts(signers_seeds, &[])
}
#[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_program::account_info::AccountInfo<'a>,
bool,
bool,
)],
) -> solana_program::entrypoint::ProgramResult {
let mut accounts = Vec::with_capacity(25 + remaining_accounts.len());
accounts.push(solana_program::instruction::AccountMeta::new(
*self.user_wallet.key,
true,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
*self.bond_account.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
*self.issuance_account.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new(
*self.payment_account.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new(
*self.payment_token_account.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new(
*self.user_payment_token_account.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new(
*self.user_nft_token_account.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new(
*self.nft_mint_account.key,
true,
));
accounts.push(solana_program::instruction::AccountMeta::new(
*self.nft_metadata_account.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new(
*self.nft_master_edition_account.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new(
*self.purchase_order_vault_account.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
*self.nft_collection_mint.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new(
*self.nft_collection_metadata_account.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
*self.nft_collection_master_edition_account.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
*self.payment_mint_account.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
*self.payment_feed_account.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
*self.payment_base_price_feed_account.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
*self.config_account.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
*self.associated_token_program.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
*self.token2022_program.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
*self.token_program.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
*self.system_program.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
*self.metadata_program.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
*self.sysvar_instructions.key,
false,
));
if let Some(payment_quote_price_feed_account) = self.payment_quote_price_feed_account {
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
*payment_quote_price_feed_account.key,
false,
));
} else {
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
crate::STABLEBOND_ID,
false,
));
}
remaining_accounts.iter().for_each(|remaining_account| {
accounts.push(solana_program::instruction::AccountMeta {
pubkey: *remaining_account.0.key,
is_signer: remaining_account.1,
is_writable: remaining_account.2,
})
});
let mut data = CreatePurchaseOrderInstructionData::new()
.try_to_vec()
.unwrap();
let mut args = self.__args.try_to_vec().unwrap();
data.append(&mut args);
let instruction = solana_program::instruction::Instruction {
program_id: crate::STABLEBOND_ID,
accounts,
data,
};
let mut account_infos = Vec::with_capacity(25 + 1 + remaining_accounts.len());
account_infos.push(self.__program.clone());
account_infos.push(self.user_wallet.clone());
account_infos.push(self.bond_account.clone());
account_infos.push(self.issuance_account.clone());
account_infos.push(self.payment_account.clone());
account_infos.push(self.payment_token_account.clone());
account_infos.push(self.user_payment_token_account.clone());
account_infos.push(self.user_nft_token_account.clone());
account_infos.push(self.nft_mint_account.clone());
account_infos.push(self.nft_metadata_account.clone());
account_infos.push(self.nft_master_edition_account.clone());
account_infos.push(self.purchase_order_vault_account.clone());
account_infos.push(self.nft_collection_mint.clone());
account_infos.push(self.nft_collection_metadata_account.clone());
account_infos.push(self.nft_collection_master_edition_account.clone());
account_infos.push(self.payment_mint_account.clone());
account_infos.push(self.payment_feed_account.clone());
account_infos.push(self.payment_base_price_feed_account.clone());
account_infos.push(self.config_account.clone());
account_infos.push(self.associated_token_program.clone());
account_infos.push(self.token2022_program.clone());
account_infos.push(self.token_program.clone());
account_infos.push(self.system_program.clone());
account_infos.push(self.metadata_program.clone());
account_infos.push(self.sysvar_instructions.clone());
if let Some(payment_quote_price_feed_account) = self.payment_quote_price_feed_account {
account_infos.push(payment_quote_price_feed_account.clone());
}
remaining_accounts
.iter()
.for_each(|remaining_account| account_infos.push(remaining_account.0.clone()));
if signers_seeds.is_empty() {
solana_program::program::invoke(&instruction, &account_infos)
} else {
solana_program::program::invoke_signed(&instruction, &account_infos, signers_seeds)
}
}
}
pub struct CreatePurchaseOrderCpiBuilder<'a, 'b> {
instruction: Box<CreatePurchaseOrderCpiBuilderInstruction<'a, 'b>>,
}
impl<'a, 'b> CreatePurchaseOrderCpiBuilder<'a, 'b> {
pub fn new(program: &'b solana_program::account_info::AccountInfo<'a>) -> Self {
let instruction = Box::new(CreatePurchaseOrderCpiBuilderInstruction {
__program: program,
user_wallet: None,
bond_account: None,
issuance_account: None,
payment_account: None,
payment_token_account: None,
user_payment_token_account: None,
user_nft_token_account: None,
nft_mint_account: None,
nft_metadata_account: None,
nft_master_edition_account: None,
purchase_order_vault_account: None,
nft_collection_mint: None,
nft_collection_metadata_account: None,
nft_collection_master_edition_account: None,
payment_mint_account: None,
payment_feed_account: None,
payment_base_price_feed_account: None,
config_account: None,
associated_token_program: None,
token2022_program: None,
token_program: None,
system_program: None,
metadata_program: None,
sysvar_instructions: None,
payment_quote_price_feed_account: None,
amount: None,
__remaining_accounts: Vec::new(),
});
Self { instruction }
}
#[inline(always)]
pub fn user_wallet(
&mut self,
user_wallet: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.user_wallet = Some(user_wallet);
self
}
#[inline(always)]
pub fn bond_account(
&mut self,
bond_account: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.bond_account = Some(bond_account);
self
}
#[inline(always)]
pub fn issuance_account(
&mut self,
issuance_account: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.issuance_account = Some(issuance_account);
self
}
#[inline(always)]
pub fn payment_account(
&mut self,
payment_account: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.payment_account = Some(payment_account);
self
}
#[inline(always)]
pub fn payment_token_account(
&mut self,
payment_token_account: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.payment_token_account = Some(payment_token_account);
self
}
#[inline(always)]
pub fn user_payment_token_account(
&mut self,
user_payment_token_account: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.user_payment_token_account = Some(user_payment_token_account);
self
}
#[inline(always)]
pub fn user_nft_token_account(
&mut self,
user_nft_token_account: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.user_nft_token_account = Some(user_nft_token_account);
self
}
#[inline(always)]
pub fn nft_mint_account(
&mut self,
nft_mint_account: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.nft_mint_account = Some(nft_mint_account);
self
}
#[inline(always)]
pub fn nft_metadata_account(
&mut self,
nft_metadata_account: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.nft_metadata_account = Some(nft_metadata_account);
self
}
#[inline(always)]
pub fn nft_master_edition_account(
&mut self,
nft_master_edition_account: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.nft_master_edition_account = Some(nft_master_edition_account);
self
}
#[inline(always)]
pub fn purchase_order_vault_account(
&mut self,
purchase_order_vault_account: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.purchase_order_vault_account = Some(purchase_order_vault_account);
self
}
#[inline(always)]
pub fn nft_collection_mint(
&mut self,
nft_collection_mint: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.nft_collection_mint = Some(nft_collection_mint);
self
}
#[inline(always)]
pub fn nft_collection_metadata_account(
&mut self,
nft_collection_metadata_account: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.nft_collection_metadata_account = Some(nft_collection_metadata_account);
self
}
#[inline(always)]
pub fn nft_collection_master_edition_account(
&mut self,
nft_collection_master_edition_account: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.nft_collection_master_edition_account =
Some(nft_collection_master_edition_account);
self
}
#[inline(always)]
pub fn payment_mint_account(
&mut self,
payment_mint_account: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.payment_mint_account = Some(payment_mint_account);
self
}
#[inline(always)]
pub fn payment_feed_account(
&mut self,
payment_feed_account: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.payment_feed_account = Some(payment_feed_account);
self
}
#[inline(always)]
pub fn payment_base_price_feed_account(
&mut self,
payment_base_price_feed_account: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.payment_base_price_feed_account = Some(payment_base_price_feed_account);
self
}
#[inline(always)]
pub fn config_account(
&mut self,
config_account: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.config_account = Some(config_account);
self
}
#[inline(always)]
pub fn associated_token_program(
&mut self,
associated_token_program: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.associated_token_program = Some(associated_token_program);
self
}
#[inline(always)]
pub fn token2022_program(
&mut self,
token2022_program: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.token2022_program = Some(token2022_program);
self
}
#[inline(always)]
pub fn token_program(
&mut self,
token_program: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.token_program = Some(token_program);
self
}
#[inline(always)]
pub fn system_program(
&mut self,
system_program: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.system_program = Some(system_program);
self
}
#[inline(always)]
pub fn metadata_program(
&mut self,
metadata_program: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.metadata_program = Some(metadata_program);
self
}
#[inline(always)]
pub fn sysvar_instructions(
&mut self,
sysvar_instructions: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.sysvar_instructions = Some(sysvar_instructions);
self
}
#[inline(always)]
pub fn payment_quote_price_feed_account(
&mut self,
payment_quote_price_feed_account: Option<&'b solana_program::account_info::AccountInfo<'a>>,
) -> &mut Self {
self.instruction.payment_quote_price_feed_account = payment_quote_price_feed_account;
self
}
#[inline(always)]
pub fn amount(&mut self, amount: u64) -> &mut Self {
self.instruction.amount = Some(amount);
self
}
#[inline(always)]
pub fn add_remaining_account(
&mut self,
account: &'b solana_program::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_program::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::entrypoint::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::entrypoint::ProgramResult {
let args = CreatePurchaseOrderInstructionArgs {
amount: self.instruction.amount.clone().expect("amount is not set"),
};
let instruction = CreatePurchaseOrderCpi {
__program: self.instruction.__program,
user_wallet: self
.instruction
.user_wallet
.expect("user_wallet is not set"),
bond_account: self
.instruction
.bond_account
.expect("bond_account is not set"),
issuance_account: self
.instruction
.issuance_account
.expect("issuance_account is not set"),
payment_account: self
.instruction
.payment_account
.expect("payment_account is not set"),
payment_token_account: self
.instruction
.payment_token_account
.expect("payment_token_account is not set"),
user_payment_token_account: self
.instruction
.user_payment_token_account
.expect("user_payment_token_account is not set"),
user_nft_token_account: self
.instruction
.user_nft_token_account
.expect("user_nft_token_account is not set"),
nft_mint_account: self
.instruction
.nft_mint_account
.expect("nft_mint_account is not set"),
nft_metadata_account: self
.instruction
.nft_metadata_account
.expect("nft_metadata_account is not set"),
nft_master_edition_account: self
.instruction
.nft_master_edition_account
.expect("nft_master_edition_account is not set"),
purchase_order_vault_account: self
.instruction
.purchase_order_vault_account
.expect("purchase_order_vault_account is not set"),
nft_collection_mint: self
.instruction
.nft_collection_mint
.expect("nft_collection_mint is not set"),
nft_collection_metadata_account: self
.instruction
.nft_collection_metadata_account
.expect("nft_collection_metadata_account is not set"),
nft_collection_master_edition_account: self
.instruction
.nft_collection_master_edition_account
.expect("nft_collection_master_edition_account is not set"),
payment_mint_account: self
.instruction
.payment_mint_account
.expect("payment_mint_account is not set"),
payment_feed_account: self
.instruction
.payment_feed_account
.expect("payment_feed_account is not set"),
payment_base_price_feed_account: self
.instruction
.payment_base_price_feed_account
.expect("payment_base_price_feed_account is not set"),
config_account: self
.instruction
.config_account
.expect("config_account is not set"),
associated_token_program: self
.instruction
.associated_token_program
.expect("associated_token_program is not set"),
token2022_program: self
.instruction
.token2022_program
.expect("token2022_program is not set"),
token_program: self
.instruction
.token_program
.expect("token_program is not set"),
system_program: self
.instruction
.system_program
.expect("system_program is not set"),
metadata_program: self
.instruction
.metadata_program
.expect("metadata_program is not set"),
sysvar_instructions: self
.instruction
.sysvar_instructions
.expect("sysvar_instructions is not set"),
payment_quote_price_feed_account: self.instruction.payment_quote_price_feed_account,
__args: args,
};
instruction.invoke_signed_with_remaining_accounts(
signers_seeds,
&self.instruction.__remaining_accounts,
)
}
}
struct CreatePurchaseOrderCpiBuilderInstruction<'a, 'b> {
__program: &'b solana_program::account_info::AccountInfo<'a>,
user_wallet: Option<&'b solana_program::account_info::AccountInfo<'a>>,
bond_account: Option<&'b solana_program::account_info::AccountInfo<'a>>,
issuance_account: Option<&'b solana_program::account_info::AccountInfo<'a>>,
payment_account: Option<&'b solana_program::account_info::AccountInfo<'a>>,
payment_token_account: Option<&'b solana_program::account_info::AccountInfo<'a>>,
user_payment_token_account: Option<&'b solana_program::account_info::AccountInfo<'a>>,
user_nft_token_account: Option<&'b solana_program::account_info::AccountInfo<'a>>,
nft_mint_account: Option<&'b solana_program::account_info::AccountInfo<'a>>,
nft_metadata_account: Option<&'b solana_program::account_info::AccountInfo<'a>>,
nft_master_edition_account: Option<&'b solana_program::account_info::AccountInfo<'a>>,
purchase_order_vault_account: Option<&'b solana_program::account_info::AccountInfo<'a>>,
nft_collection_mint: Option<&'b solana_program::account_info::AccountInfo<'a>>,
nft_collection_metadata_account: Option<&'b solana_program::account_info::AccountInfo<'a>>,
nft_collection_master_edition_account:
Option<&'b solana_program::account_info::AccountInfo<'a>>,
payment_mint_account: Option<&'b solana_program::account_info::AccountInfo<'a>>,
payment_feed_account: Option<&'b solana_program::account_info::AccountInfo<'a>>,
payment_base_price_feed_account: Option<&'b solana_program::account_info::AccountInfo<'a>>,
config_account: Option<&'b solana_program::account_info::AccountInfo<'a>>,
associated_token_program: Option<&'b solana_program::account_info::AccountInfo<'a>>,
token2022_program: Option<&'b solana_program::account_info::AccountInfo<'a>>,
token_program: Option<&'b solana_program::account_info::AccountInfo<'a>>,
system_program: Option<&'b solana_program::account_info::AccountInfo<'a>>,
metadata_program: Option<&'b solana_program::account_info::AccountInfo<'a>>,
sysvar_instructions: Option<&'b solana_program::account_info::AccountInfo<'a>>,
payment_quote_price_feed_account: Option<&'b solana_program::account_info::AccountInfo<'a>>,
amount: Option<u64>,
__remaining_accounts: Vec<(
&'b solana_program::account_info::AccountInfo<'a>,
bool,
bool,
)>,
}