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

    Type Alias ConfirmedTransaction

    A confirmed transaction on the ledger

    Deprecated since RPC v1.8.0.

    type ConfirmedTransaction = {
        blockTime?: number | null;
        meta: ConfirmedTransactionMeta | null;
        slot: number;
        transaction: Transaction;
    }
    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: Transaction

    The details of the transaction