@solana/web3.js
    Preparing search index...

    Type Alias ConfirmedSignatureInfo

    A confirmed signature with its status

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

    The unix timestamp of when the transaction was processed

    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