hoodchain - v0.1.0
    Preparing search index...

    Interface WatchOptions

    interface WatchOptions {
        launchpad?: LaunchpadName;
        onError?: (error: Error) => void;
        pollingInterval?: number;
    }
    Index
    launchpad?: LaunchpadName

    Restrict to one launchpad. Defaults to both.

    onError?: (error: Error) => void

    Called when a watcher errors (it keeps polling afterwards).

    pollingInterval?: number

    Poll interval in ms for the underlying log watcher.

    2000