pub struct TakeBidLegacy {Show 29 fields
pub fee_vault: Pubkey,
pub seller: Pubkey,
pub bid_state: Pubkey,
pub owner: Pubkey,
pub taker_broker: Option<Pubkey>,
pub maker_broker: Option<Pubkey>,
pub shared_escrow: Pubkey,
pub whitelist: Option<Pubkey>,
pub seller_ta: Pubkey,
pub mint: Pubkey,
pub metadata: Pubkey,
pub owner_ta: Pubkey,
pub edition: Pubkey,
pub seller_token_record: Option<Pubkey>,
pub owner_token_record: Option<Pubkey>,
pub token_metadata_program: Option<Pubkey>,
pub sysvar_instructions: Option<Pubkey>,
pub authorization_rules_program: Option<Pubkey>,
pub bid_ta: Pubkey,
pub bid_token_record: Option<Pubkey>,
pub authorization_rules: Option<Pubkey>,
pub token_program: Pubkey,
pub associated_token_program: Pubkey,
pub system_program: Pubkey,
pub marketplace_program: Pubkey,
pub escrow_program: Pubkey,
pub cosigner: Option<Pubkey>,
pub mint_proof: Option<Pubkey>,
pub rent_destination: Pubkey,
}Expand description
Accounts.
Fields§
§fee_vault: Pubkey§seller: Pubkey§bid_state: Pubkey§owner: Pubkey§taker_broker: Option<Pubkey>§maker_broker: Option<Pubkey>§whitelist: Option<Pubkey>§seller_ta: Pubkey§mint: Pubkey§metadata: Pubkey§owner_ta: Pubkey§edition: Pubkey§seller_token_record: Option<Pubkey>§owner_token_record: Option<Pubkey>§token_metadata_program: Option<Pubkey>§sysvar_instructions: Option<Pubkey>§bid_ta: PubkeyImplicitly checked via transfer. Will fail if wrong account
bid_token_record: Option<Pubkey>§token_program: Pubkey§associated_token_program: Pubkey§system_program: Pubkey§marketplace_program: Pubkey§escrow_program: Pubkey§cosigner: Option<Pubkey>§mint_proof: Option<Pubkey>intentionally not deserializing, it would be dummy in the case of VOC/FVC based verification
rent_destination: PubkeyImplementations§
Source§impl TakeBidLegacy
impl TakeBidLegacy
pub fn instruction(&self, args: TakeBidLegacyInstructionArgs) -> Instruction
pub fn instruction_with_remaining_accounts( &self, args: TakeBidLegacyInstructionArgs, remaining_accounts: &[AccountMeta], ) -> Instruction
Auto Trait Implementations§
impl Freeze for TakeBidLegacy
impl RefUnwindSafe for TakeBidLegacy
impl Send for TakeBidLegacy
impl Sync for TakeBidLegacy
impl Unpin for TakeBidLegacy
impl UnwindSafe for TakeBidLegacy
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