solana_program::stake::instruction

Enum StakeInstruction

Source
pub enum StakeInstruction {
Show 18 variants Initialize(Authorized, Lockup), Authorize(Pubkey, StakeAuthorize), DelegateStake, Split(u64), Withdraw(u64), Deactivate, SetLockup(LockupArgs), Merge, AuthorizeWithSeed(AuthorizeWithSeedArgs), InitializeChecked, AuthorizeChecked(StakeAuthorize), AuthorizeCheckedWithSeed(AuthorizeCheckedWithSeedArgs), SetLockupChecked(LockupCheckedArgs), GetMinimumDelegation, DeactivateDelinquent, Redelegate, MoveStake(u64), MoveLamports(u64),
}

Variants§

§

Initialize(Authorized, Lockup)

Initialize a stake with lockup and authorization information

§Account references

  1. [WRITE] Uninitialized stake account
  2. [] Rent sysvar

Authorized carries pubkeys that must sign staker transactions and withdrawer transactions. Lockup carries information about withdrawal restrictions

§

Authorize(Pubkey, StakeAuthorize)

Authorize a key to manage stake or withdrawal

§Account references

  1. [WRITE] Stake account to be updated
  2. [] Clock sysvar
  3. [SIGNER] The stake or withdraw authority
  4. Optional: [SIGNER] Lockup authority, if updating StakeAuthorize::Withdrawer before lockup expiration
§

DelegateStake

Delegate a stake to a particular vote account

§Account references

  1. [WRITE] Initialized stake account to be delegated
  2. [] Vote account to which this stake will be delegated
  3. [] Clock sysvar
  4. [] Stake history sysvar that carries stake warmup/cooldown history
  5. [] Unused account, formerly the stake config
  6. [SIGNER] Stake authority

The entire balance of the staking account is staked. DelegateStake can be called multiple times, but re-delegation is delayed by one epoch

§

Split(u64)

Split u64 tokens and stake off a stake account into another stake account.

§Account references

  1. [WRITE] Stake account to be split; must be in the Initialized or Stake state
  2. [WRITE] Uninitialized stake account that will take the split-off amount
  3. [SIGNER] Stake authority
§

Withdraw(u64)

Withdraw unstaked lamports from the stake account

§Account references

  1. [WRITE] Stake account from which to withdraw
  2. [WRITE] Recipient account
  3. [] Clock sysvar
  4. [] Stake history sysvar that carries stake warmup/cooldown history
  5. [SIGNER] Withdraw authority
  6. Optional: [SIGNER] Lockup authority, if before lockup expiration

The u64 is the portion of the stake account balance to be withdrawn, must be <= StakeAccount.lamports - staked_lamports.

§

Deactivate

Deactivates the stake in the account

§Account references

  1. [WRITE] Delegated stake account
  2. [] Clock sysvar
  3. [SIGNER] Stake authority
§

SetLockup(LockupArgs)

Set stake lockup

If a lockup is not active, the withdraw authority may set a new lockup If a lockup is active, the lockup custodian may update the lockup parameters

§Account references

  1. [WRITE] Initialized stake account
  2. [SIGNER] Lockup authority or withdraw authority
§

Merge

Merge two stake accounts.

Both accounts must have identical lockup and authority keys. A merge is possible between two stakes in the following states with no additional conditions:

  • two deactivated stakes
  • an inactive stake into an activating stake during its activation epoch

For the following cases, the voter pubkey and vote credits observed must match:

  • two activated stakes
  • two activating accounts that share an activation epoch, during the activation epoch

All other combinations of stake states will fail to merge, including all “transient” states, where a stake is activating or deactivating with a non-zero effective stake.

§Account references

  1. [WRITE] Destination stake account for the merge
  2. [WRITE] Source stake account for to merge. This account will be drained
  3. [] Clock sysvar
  4. [] Stake history sysvar that carries stake warmup/cooldown history
  5. [SIGNER] Stake authority
§

AuthorizeWithSeed(AuthorizeWithSeedArgs)

Authorize a key to manage stake or withdrawal with a derived key

§Account references

  1. [WRITE] Stake account to be updated
  2. [SIGNER] Base key of stake or withdraw authority
  3. [] Clock sysvar
  4. Optional: [SIGNER] Lockup authority, if updating StakeAuthorize::Withdrawer before lockup expiration
§

InitializeChecked

Initialize a stake with authorization information

This instruction is similar to Initialize except that the withdraw authority must be a signer, and no lockup is applied to the account.

§Account references

  1. [WRITE] Uninitialized stake account
  2. [] Rent sysvar
  3. [] The stake authority
  4. [SIGNER] The withdraw authority
§

AuthorizeChecked(StakeAuthorize)

Authorize a key to manage stake or withdrawal

This instruction behaves like Authorize with the additional requirement that the new stake or withdraw authority must also be a signer.

§Account references

  1. [WRITE] Stake account to be updated
  2. [] Clock sysvar
  3. [SIGNER] The stake or withdraw authority
  4. [SIGNER] The new stake or withdraw authority
  5. Optional: [SIGNER] Lockup authority, if updating StakeAuthorize::Withdrawer before lockup expiration
§

AuthorizeCheckedWithSeed(AuthorizeCheckedWithSeedArgs)

Authorize a key to manage stake or withdrawal with a derived key

This instruction behaves like AuthorizeWithSeed with the additional requirement that the new stake or withdraw authority must also be a signer.

§Account references

  1. [WRITE] Stake account to be updated
  2. [SIGNER] Base key of stake or withdraw authority
  3. [] Clock sysvar
  4. [SIGNER] The new stake or withdraw authority
  5. Optional: [SIGNER] Lockup authority, if updating StakeAuthorize::Withdrawer before lockup expiration
§

SetLockupChecked(LockupCheckedArgs)

Set stake lockup

This instruction behaves like SetLockup with the additional requirement that the new lockup authority also be a signer.

If a lockup is not active, the withdraw authority may set a new lockup If a lockup is active, the lockup custodian may update the lockup parameters

§Account references

  1. [WRITE] Initialized stake account
  2. [SIGNER] Lockup authority or withdraw authority
  3. Optional: [SIGNER] New lockup authority
§

GetMinimumDelegation

Get the minimum stake delegation, in lamports

§Account references

None

Returns the minimum delegation as a little-endian encoded u64 value. Programs can use the get_minimum_delegation() helper function to invoke and retrieve the return value for this instruction.

§

DeactivateDelinquent

Deactivate stake delegated to a vote account that has been delinquent for at least MINIMUM_DELINQUENT_EPOCHS_FOR_DEACTIVATION epochs.

No signer is required for this instruction as it is a common good to deactivate abandoned stake.

§Account references

  1. [WRITE] Delegated stake account
  2. [] Delinquent vote account for the delegated stake account
  3. [] Reference vote account that has voted at least once in the last MINIMUM_DELINQUENT_EPOCHS_FOR_DEACTIVATION epochs
§

Redelegate

👎Deprecated since 2.1.0: Redelegate will not be enabled

Redelegate activated stake to another vote account.

Upon success:

  • the balance of the delegated stake account will be reduced to the undelegated amount in the account (rent exempt minimum and any additional lamports not part of the delegation), and scheduled for deactivation.
  • the provided uninitialized stake account will receive the original balance of the delegated stake account, minus the rent exempt minimum, and scheduled for activation to the provided vote account. Any existing lamports in the uninitialized stake account will also be included in the re-delegation.

§Account references

  1. [WRITE] Delegated stake account to be redelegated. The account must be fully activated and carry a balance greater than or equal to the minimum delegation amount plus rent exempt minimum
  2. [WRITE] Uninitialized stake account that will hold the redelegated stake
  3. [] Vote account to which this stake will be re-delegated
  4. [] Unused account, formerly the stake config
  5. [SIGNER] Stake authority
§

MoveStake(u64)

Move stake between accounts with the same authorities and lockups, using Staker authority.

The source account must be fully active. If its entire delegation is moved, it immediately becomes inactive. Otherwise, at least the minimum delegation of active stake must remain.

The destination account must be fully active or fully inactive. If it is active, it must be delegated to the same vote account as the source. If it is inactive, it immediately becomes active, and must contain at least the minimum delegation. The destination must be pre-funded with the rent-exempt reserve.

This instruction only affects or moves active stake. Additional unstaked lamports are never moved, activated, or deactivated, and accounts are never deallocated.

§Account references

  1. [WRITE] Active source stake account
  2. [WRITE] Active or inactive destination stake account
  3. [SIGNER] Stake authority

The u64 is the portion of the stake to move, which may be the entire delegation

§

MoveLamports(u64)

Move unstaked lamports between accounts with the same authorities and lockups, using Staker authority.

The source account must be fully active or fully inactive. The destination may be in any mergeable state (active, inactive, or activating, but not in warmup cooldown). Only lamports that are neither backing a delegation nor required for rent-exemption may be moved.

§Account references

  1. [WRITE] Active or inactive source stake account
  2. [WRITE] Mergeable destination stake account
  3. [SIGNER] Stake authority

The u64 is the portion of available lamports to move

Trait Implementations§

Source§

impl Clone for StakeInstruction

Source§

fn clone(&self) -> StakeInstruction

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for StakeInstruction

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for StakeInstruction

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl PartialEq for StakeInstruction

Source§

fn eq(&self, other: &StakeInstruction) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for StakeInstruction

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl Eq for StakeInstruction

Source§

impl StructuralPartialEq for StakeInstruction

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,