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

    Type Alias ParsedTransactionMeta

    Metadata for a parsed transaction on the ledger

    type ParsedTransactionMeta = {
        computeUnitsConsumed?: number;
        costUnits?: number;
        err: TransactionError | null;
        fee: number;
        innerInstructions?: ParsedInnerInstruction[] | null;
        loadedAddresses?: LoadedAddresses;
        logMessages?: string[] | null;
        postBalances: number[];
        postTokenBalances?: TokenBalance[] | null;
        preBalances: number[];
        preTokenBalances?: TokenBalance[] | null;
    }
    Index
    computeUnitsConsumed?: number

    The compute units consumed after processing the transaction

    costUnits?: number

    The cost units consumed after processing the transaction

    err: TransactionError | null

    The error result of transaction processing

    fee: number

    The fee charged for processing the transaction

    innerInstructions?: ParsedInnerInstruction[] | null

    An array of cross program invoked parsed instructions

    loadedAddresses?: LoadedAddresses

    The collection of addresses loaded using address lookup tables

    logMessages?: string[] | null

    An array of program log messages emitted during a transaction

    postBalances: number[]

    The balances of the transaction accounts after processing

    postTokenBalances?: TokenBalance[] | null

    The token balances of the transaction accounts after processing

    preBalances: number[]

    The balances of the transaction accounts before processing

    preTokenBalances?: TokenBalance[] | null

    The token balances of the transaction accounts before processing