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

    Type Alias TransactionResponse

    A processed transaction from the RPC API

    type TransactionResponse = {
        blockTime?: number | null;
        meta: ConfirmedTransactionMeta | null;
        slot: number;
        transaction: { message: Message; signatures: string[] };
    }
    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: Message; signatures: string[] }

    The transaction

    Type Declaration

    • message: Message

      The transaction message

    • signatures: string[]

      The transaction signatures