Type alias ConfirmedSignatureInfo

ConfirmedSignatureInfo: {
    blockTime?: number | null;
    confirmationStatus?: TransactionConfirmationStatus;
    err: TransactionError | null;
    memo: string | null;
    signature: string;
    slot: number;
}

A confirmed signature with its status

Type declaration

  • Optional blockTime?: number | null

    The unix timestamp of when the transaction was processed

  • Optional confirmationStatus?: TransactionConfirmationStatus

    Cluster confirmation status, if available. Possible values: processed, confirmed, finalized

  • err: TransactionError | null

    error, if any

  • memo: string | null

    memo associated with the transaction, if any

  • signature: string

    the transaction signature

  • slot: number

    when the transaction was processed

Generated using TypeDoc