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

    Interface TokenWatcherOptions

    interface TokenWatcherOptions {
        maxHolders?: number;
        minBalance?: number;
        mirror?: TokenMirror;
        network?: string;
        statePath?: string;
        tokenId: string;
    }
    Index
    maxHolders?: number

    Cap on holders tracked per poll (default 1000). If the set is larger it is truncated and a warning is logged — never silently.

    minBalance?: number

    Only track holders with at least this many whole tokens (a whale filter).

    mirror?: TokenMirror

    Injectable mirror client (tests). Default: a real client for network.

    network?: string

    "mainnet" (default), "testnet", …

    statePath?: string

    Path of a JSON snapshot file. When set, the holder baseline survives restarts: the next run diffs against the saved snapshot and emits what changed while the process was down, instead of re-baselining silently.

    tokenId: string