Type Alias VersionedTransactionResponse

VersionedTransactionResponse: {
    blockTime?: number | null;
    meta: ConfirmedTransactionMeta | null;
    slot: number;
    transaction: { message: VersionedMessage; signatures: string[] };
    version?: TransactionVersion;
}

A processed transaction from the RPC API

Type declaration

  • OptionalblockTime?: number | null

    The unix timestamp of when the transaction was processed

  • meta: ConfirmedTransactionMeta | null

    Metadata produced from the transaction

  • slot: number

    The slot during which the transaction was processed

  • transaction: { message: VersionedMessage; signatures: string[] }

    The transaction

    • message: VersionedMessage

      The transaction message

    • signatures: string[]

      The transaction signatures

  • Optionalversion?: TransactionVersion

    The transaction version