Enum solana_program::system_instruction::SystemInstruction [−][src]
pub enum SystemInstruction { CreateAccount { lamports: u64, space: u64, owner: Pubkey, }, Assign { owner: Pubkey, }, Transfer { lamports: u64, }, CreateAccountWithSeed { base: Pubkey, seed: String, lamports: u64, space: u64, owner: Pubkey, }, AdvanceNonceAccount, WithdrawNonceAccount(u64), InitializeNonceAccount(Pubkey), AuthorizeNonceAccount(Pubkey), Allocate { space: u64, }, AllocateWithSeed { base: Pubkey, seed: String, space: u64, owner: Pubkey, }, AssignWithSeed { base: Pubkey, seed: String, owner: Pubkey, }, TransferWithSeed { lamports: u64, from_seed: String, from_owner: Pubkey, }, }
Variants
Show fields
Show fields
Fields of Assign
owner: Pubkey
Owner program account
Show fields
Fields of Transfer
lamports: u64
Create a new account at an address derived from a base pubkey and a seed
Account references
- [WRITE, SIGNER] Funding account
- [WRITE] Created account
- [SIGNER] (optional) Base account; the account matching the base Pubkey below must be provided as a signer, but may be the same as the funding account and provided as account 0
Show fields
Consumes a stored nonce, replacing it with a successor
Account references
- [WRITE] Nonce account
- [] RecentBlockhashes sysvar
- [SIGNER] Nonce authority
WithdrawNonceAccount(u64)
Withdraw funds from a nonce account
Account references
- [WRITE] Nonce account
- [WRITE] Recipient account
- [] RecentBlockhashes sysvar
- [] Rent sysvar
- [SIGNER] Nonce authority
The u64
parameter is the lamports to withdraw, which must leave the
account balance above the rent exempt reserve or at zero.
InitializeNonceAccount(Pubkey)
Drive state of Uninitalized nonce account to Initialized, setting the nonce value
Account references
- [WRITE] Nonce account
- [] RecentBlockhashes sysvar
- [] Rent sysvar
The Pubkey
parameter specifies the entity authorized to execute nonce
instruction on the account
No signatures are required to execute this instruction, enabling derived nonce account addresses
AuthorizeNonceAccount(Pubkey)
Change the entity authorized to execute nonce instructions on the account
Account references
- [WRITE] Nonce account
- [SIGNER] Nonce authority
The Pubkey
parameter identifies the entity to authorize
Allocate space in a (possibly new) account without funding
Account references
- [WRITE, SIGNER] New account
Show fields
Fields of Allocate
space: u64
Number of bytes of memory to allocate
Allocate space for and assign an account at an address derived from a base public key and a seed
Account references
- [WRITE] Allocated account
- [SIGNER] Base account
Show fields
Assign account to a program based on a seed
Account references
- [WRITE] Assigned account
- [SIGNER] Base account
Show fields
Transfer lamports from a derived address
Account references
- [WRITE] Funding account
- [SIGNER] Base for funding account
- [WRITE] Recipient account
Show fields
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]Deserialize this value from the given Serde deserializer. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for SystemInstruction
impl Send for SystemInstruction
impl Sync for SystemInstruction
impl Unpin for SystemInstruction
impl UnwindSafe for SystemInstruction
Blanket Implementations
Mutably borrows from an owned value. Read more