@hiero-hackers/hiero-notifications - v0.1.0
    Preparing search index...

    Interface TokenBalanceChange

    One holder's balance change between two polls. delta = after - before.

    interface TokenBalanceChange {
        account: string;
        after: bigint;
        before: bigint;
        decimals: number;
        delta: bigint;
        network: string;
        reason: "changed" | "entered" | "exited";
        symbol: string;
        tokenId: string;
    }
    Index
    account: string
    after: bigint
    before: bigint
    decimals: number
    delta: bigint
    network: string

    Which network the token lives on — 0.0.x ids exist on every network.

    reason: "changed" | "entered" | "exited"

    changed — a holder in both snapshots moved. entered — appeared in this poll's set (from 0, or from below minBalance when a threshold is used). exited — dropped out of the set (to 0, or below the threshold).

    symbol: string
    tokenId: string