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

    Type Alias VersionedTransactionResponse

    A processed transaction from the RPC API

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

    The unix timestamp of when the transaction was processed

    Metadata produced from the transaction

    slot: number

    The slot during which the transaction was processed

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

    The transaction

    Type Declaration

    • message: VersionedMessage

      The transaction message

    • signatures: string[]

      The transaction signatures

    The transaction version