sorokeep
    Preparing search index...

    Interface WatchOptions

    interface WatchOptions {
        contractId: string;
        forceRefresh?: boolean;
        name?: string;
        network: string;
        noIntrospection?: boolean;
        pollIntervalSeconds?: number;
        rpcUrl?: string;
        storageKeys?: string[];
    }
    Index
    contractId: string
    forceRefresh?: boolean

    When true, skip the introspection cache and always fetch fresh data from the RPC. Useful for manual watch commands where the user expects an immediate refresh. Defaults to false.

    name?: string
    network: string
    noIntrospection?: boolean
    pollIntervalSeconds?: number
    rpcUrl?: string
    storageKeys?: string[]