Umi — API References - v1.3.0
    Preparing search index...

    Type Alias TransactionStatus

    The status of a sent transaction.

    type TransactionStatus = {
        commitment: Commitment | null;
        confirmations: number | null;
        error: TransactionError | null;
        slot: number;
    }
    Index

    Properties

    commitment: Commitment | null

    The cluster confirmation status, if any.

    confirmations: number | null

    The number of blocks that have been confirmed and voted on in the fork containing slot.

    error: TransactionError | null

    The transaction error, if any.

    slot: number

    When the transaction was processed.