Taquito TypeDocs
    Preparing search index...

    Interface StakeParams

    RPC Stake pseudo operation params

    interface StakeParams {
        amount: number;
        fee?: number;
        gasLimit?: number;
        mutez?: boolean;
        parameter?: TransactionOperationParameter;
        source?: string;
        storageLimit?: number;
        to?: string;
    }
    Index

    Properties

    amount: number

    Amount to stake.

    Interpreted as tez by default. Set mutez: true to pass mutez.

    fee?: number

    Fee in mutez.

    gasLimit?: number

    Gas limit.

    mutez?: boolean

    When true, amount is interpreted as mutez.

    parameter?: TransactionOperationParameter

    Optional RPC-level parameter override.

    source?: string

    Operation source. Defaults to the active signer pkh.

    storageLimit?: number

    Storage limit.

    to?: string

    Destination staking contract/account.

    Defaults to source when omitted.