pub struct SetNonTransferableV2 {
pub tree_config: Pubkey,
pub payer: Pubkey,
pub authority: Option<Pubkey>,
pub leaf_owner: Pubkey,
pub leaf_delegate: Option<Pubkey>,
pub merkle_tree: Pubkey,
pub core_collection: Pubkey,
pub log_wrapper: Pubkey,
pub compression_program: Pubkey,
pub system_program: Pubkey,
}Expand description
Accounts.
Fields§
§tree_config: Pubkey§payer: PubkeyThis authority must be a permanent freeze delegate on the collection
Defaults to payer
leaf_owner: Pubkey§leaf_delegate: Option<Pubkey>Defaults to leaf_owner
merkle_tree: Pubkey§core_collection: Pubkey§log_wrapper: Pubkey§compression_program: Pubkey§system_program: PubkeyImplementations§
Source§impl SetNonTransferableV2
impl SetNonTransferableV2
pub fn instruction( &self, args: SetNonTransferableV2InstructionArgs, ) -> Instruction
pub fn instruction_with_remaining_accounts( &self, args: SetNonTransferableV2InstructionArgs, remaining_accounts: &[AccountMeta], ) -> Instruction
Auto Trait Implementations§
impl Freeze for SetNonTransferableV2
impl RefUnwindSafe for SetNonTransferableV2
impl Send for SetNonTransferableV2
impl Sync for SetNonTransferableV2
impl Unpin for SetNonTransferableV2
impl UnsafeUnpin for SetNonTransferableV2
impl UnwindSafe for SetNonTransferableV2
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