Status of a transaction signature.

1.0.0

interface SignatureStatus {
    confirmations: null | number;
    confirmationStatus: null | Commitment;
    err: unknown;
    slot: Slot;
}

Properties

confirmations: null | number

Number of confirmations (null = finalized).

confirmationStatus: null | Commitment

Current confirmation status.

err: unknown

Error if the transaction failed.

slot: Slot

Slot where the transaction was processed.