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

    Type Alias ParsedTransactionWithMeta

    A parsed transaction on the ledger with meta

    type ParsedTransactionWithMeta = {
        blockTime?: number | null;
        meta: ParsedTransactionMeta | null;
        slot: number;
        transaction: ParsedTransaction;
        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: ParsedTransaction

    The details of the transaction

    The version of the transaction message