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

The status of a sent transaction.

Type declaration

  • 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.

Generated using TypeDoc