[][src]Trait solana_stake_program::stake_state::StakeAccount

pub trait StakeAccount {
    fn initialize(
        &self,
        authorized: &Authorized,
        lockup: &Lockup,
        rent: &Rent
    ) -> Result<(), InstructionError>;
fn authorize(
        &self,
        authority: &Pubkey,
        stake_authorize: StakeAuthorize,
        signers: &HashSet<Pubkey>
    ) -> Result<(), InstructionError>;
fn delegate(
        &self,
        vote_account: &KeyedAccount<'_>,
        clock: &Clock,
        stake_history: &StakeHistory,
        config: &Config,
        signers: &HashSet<Pubkey>
    ) -> Result<(), InstructionError>;
fn deactivate(
        &self,
        clock: &Clock,
        signers: &HashSet<Pubkey>
    ) -> Result<(), InstructionError>;
fn set_lockup(
        &self,
        lockup: &LockupArgs,
        signers: &HashSet<Pubkey>
    ) -> Result<(), InstructionError>;
fn split(
        &self,
        lamports: u64,
        split_stake: &KeyedAccount<'_>,
        signers: &HashSet<Pubkey>
    ) -> Result<(), InstructionError>;
fn merge(
        &self,
        source_stake: &KeyedAccount<'_>,
        clock: &Clock,
        stake_history: &StakeHistory,
        signers: &HashSet<Pubkey>
    ) -> Result<(), InstructionError>;
fn withdraw(
        &self,
        lamports: u64,
        to: &KeyedAccount<'_>,
        clock: &Clock,
        stake_history: &StakeHistory,
        withdraw_authority: &KeyedAccount<'_>,
        custodian: Option<&KeyedAccount<'_>>
    ) -> Result<(), InstructionError>; }

Required methods

fn initialize(
    &self,
    authorized: &Authorized,
    lockup: &Lockup,
    rent: &Rent
) -> Result<(), InstructionError>

fn authorize(
    &self,
    authority: &Pubkey,
    stake_authorize: StakeAuthorize,
    signers: &HashSet<Pubkey>
) -> Result<(), InstructionError>

fn delegate(
    &self,
    vote_account: &KeyedAccount<'_>,
    clock: &Clock,
    stake_history: &StakeHistory,
    config: &Config,
    signers: &HashSet<Pubkey>
) -> Result<(), InstructionError>

fn deactivate(
    &self,
    clock: &Clock,
    signers: &HashSet<Pubkey>
) -> Result<(), InstructionError>

fn set_lockup(
    &self,
    lockup: &LockupArgs,
    signers: &HashSet<Pubkey>
) -> Result<(), InstructionError>

fn split(
    &self,
    lamports: u64,
    split_stake: &KeyedAccount<'_>,
    signers: &HashSet<Pubkey>
) -> Result<(), InstructionError>

fn merge(
    &self,
    source_stake: &KeyedAccount<'_>,
    clock: &Clock,
    stake_history: &StakeHistory,
    signers: &HashSet<Pubkey>
) -> Result<(), InstructionError>

fn withdraw(
    &self,
    lamports: u64,
    to: &KeyedAccount<'_>,
    clock: &Clock,
    stake_history: &StakeHistory,
    withdraw_authority: &KeyedAccount<'_>,
    custodian: Option<&KeyedAccount<'_>>
) -> Result<(), InstructionError>

Loading content...

Implementations on Foreign Types

impl<'a> StakeAccount for KeyedAccount<'a>[src]

fn authorize(
    &self,
    authority: &Pubkey,
    stake_authorize: StakeAuthorize,
    signers: &HashSet<Pubkey>
) -> Result<(), InstructionError>
[src]

Authorize the given pubkey to manage stake (deactivate, withdraw). This may be called multiple times, but will implicitly withdraw authorization from the previously authorized staker. The default staker is the owner of the stake account's pubkey.

Loading content...

Implementors

Loading content...