pub enum AssociatedTokenAccountInstruction {
Create,
CreateIdempotent,
RecoverNested,
}
Expand description
Instructions supported by the AssociatedTokenAccount program
Variants§
Create
Creates an associated token account for the given wallet address and token mint Returns an error if the account exists.
[writeable,signer]
Funding account (must be a system account)[writeable]
Associated token account address to be created[]
Wallet address for the new associated token account[]
The token mint for the new associated token account[]
System program[]
SPL Token program
CreateIdempotent
Creates an associated token account for the given wallet address and token mint, if it doesn’t already exist. Returns an error if the account exists, but with a different owner.
[writeable,signer]
Funding account (must be a system account)[writeable]
Associated token account address to be created[]
Wallet address for the new associated token account[]
The token mint for the new associated token account[]
System program[]
SPL Token program
RecoverNested
Transfers from and closes a nested associated token account: an associated token account owned by an associated token account.
The tokens are moved from the nested associated token account to the wallet’s associated token account, and the nested account lamports are moved to the wallet.
Note: Nested token accounts are an anti-pattern, and almost always created unintentionally, so this instruction should only be used to recover from errors.
[writeable]
Nested associated token account, must be owned by3
[]
Token mint for the nested associated token account[writeable]
Wallet’s associated token account[]
Owner associated token account address, must be owned by5
[]
Token mint for the owner associated token account[writeable, signer]
Wallet address for the owner associated token account[]
SPL Token program
Trait Implementations§
source§impl BorshSchema for AssociatedTokenAccountInstruction
impl BorshSchema for AssociatedTokenAccountInstruction
source§fn declaration() -> Declaration
fn declaration() -> Declaration
source§fn add_definitions_recursively(
definitions: &mut HashMap<Declaration, Definition>
)
fn add_definitions_recursively( definitions: &mut HashMap<Declaration, Definition> )
source§fn add_definition(
declaration: String,
definition: Definition,
definitions: &mut HashMap<String, Definition, RandomState>
)
fn add_definition( declaration: String, definition: Definition, definitions: &mut HashMap<String, Definition, RandomState> )
fn schema_container() -> BorshSchemaContainer
source§impl Clone for AssociatedTokenAccountInstruction
impl Clone for AssociatedTokenAccountInstruction
source§fn clone(&self) -> AssociatedTokenAccountInstruction
fn clone(&self) -> AssociatedTokenAccountInstruction
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<AssociatedTokenAccountInstruction> for AssociatedTokenAccountInstruction
impl PartialEq<AssociatedTokenAccountInstruction> for AssociatedTokenAccountInstruction
source§fn eq(&self, other: &AssociatedTokenAccountInstruction) -> bool
fn eq(&self, other: &AssociatedTokenAccountInstruction) -> bool
self
and other
values to be equal, and is used
by ==
.