pub struct CreatePurchaseOrderV2 {Show 26 fields
pub kyc_account: Pubkey,
pub user_wallet: Pubkey,
pub bond_account: Pubkey,
pub issuance_account: Pubkey,
pub payment_account: Pubkey,
pub payment_token_account: Pubkey,
pub user_payment_token_account: Pubkey,
pub user_nft_token_account: Pubkey,
pub nft_mint_account: Pubkey,
pub nft_metadata_account: Pubkey,
pub nft_master_edition_account: Pubkey,
pub purchase_order_vault_account: Pubkey,
pub nft_collection_mint: Pubkey,
pub nft_collection_metadata_account: Pubkey,
pub nft_collection_master_edition_account: Pubkey,
pub payment_mint_account: Pubkey,
pub payment_feed_account: Pubkey,
pub payment_base_price_feed_account: Pubkey,
pub config_account: Pubkey,
pub associated_token_program: Pubkey,
pub token2022_program: Pubkey,
pub token_program: Pubkey,
pub system_program: Pubkey,
pub metadata_program: Pubkey,
pub sysvar_instructions: Pubkey,
pub payment_quote_price_feed_account: Option<Pubkey>,
}Expand description
Accounts.
Fields§
§kyc_account: Pubkey§user_wallet: Pubkey§bond_account: Pubkey§issuance_account: Pubkey§payment_account: Pubkey§payment_token_account: Pubkey§user_payment_token_account: Pubkey§user_nft_token_account: Pubkey§nft_mint_account: Pubkey§nft_metadata_account: Pubkey§nft_master_edition_account: Pubkey§purchase_order_vault_account: Pubkey§nft_collection_mint: Pubkey§nft_collection_metadata_account: Pubkey§nft_collection_master_edition_account: Pubkey§payment_mint_account: Pubkey§payment_feed_account: Pubkey§payment_base_price_feed_account: Pubkey§config_account: Pubkey§associated_token_program: Pubkey§token2022_program: Pubkey§token_program: Pubkey§system_program: Pubkey§metadata_program: Pubkey§sysvar_instructions: Pubkey§payment_quote_price_feed_account: Option<Pubkey>Implementations§
Source§impl CreatePurchaseOrderV2
impl CreatePurchaseOrderV2
pub fn instruction( &self, args: CreatePurchaseOrderV2InstructionArgs, ) -> Instruction
pub fn instruction_with_remaining_accounts( &self, args: CreatePurchaseOrderV2InstructionArgs, remaining_accounts: &[AccountMeta], ) -> Instruction
Auto Trait Implementations§
impl Freeze for CreatePurchaseOrderV2
impl RefUnwindSafe for CreatePurchaseOrderV2
impl Send for CreatePurchaseOrderV2
impl Sync for CreatePurchaseOrderV2
impl Unpin for CreatePurchaseOrderV2
impl UnwindSafe for CreatePurchaseOrderV2
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more