Taquito TypeDocs
    Preparing search index...

    Interface FinalizeUnstakeParams

    RPC finalize_unstake pseudo operation params

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

    Properties

    amount?: number

    Transaction amount in mutez for the underlying finalize_unstake transaction.

    Protocol requires this to be 0 when present. Non-zero values are rejected with operations.invalid_nonzero_transaction_amount.

    fee?: number

    Fee in mutez.

    gasLimit?: number

    Gas limit.

    mutez?: boolean

    When true, numeric amounts are 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 account for finalized funds.

    Defaults to source when omitted.