Helius SDK - v2.2.2
    Preparing search index...

    Interface HistoryTransaction

    Transaction with balance changes

    interface HistoryTransaction {
        balanceChanges: BalanceChange[];
        error: string | null;
        fee: number;
        feePayer: string;
        signature: string;
        slot: number;
        timestamp: number | null;
    }
    Index

    Properties

    balanceChanges: BalanceChange[]

    All balance changes in this transaction

    error: string | null

    Error message if transaction failed (null if successful)

    fee: number

    Transaction fee in SOL

    feePayer: string

    Address that paid the transaction fee

    signature: string

    Transaction signature

    slot: number

    Slot number

    timestamp: number | null

    Unix timestamp in seconds (null if not yet confirmed)