@arkade-os/sdk Documentation - v0.4.54
    Preparing search index...

    Interface HandlerError

    A single Discoverable handler's discovery failure, captured during a IContractManager.scanContracts run instead of aborting the loop.

    TODO(next major): rename indexfromIndex so the pair reads fromIndex/toIndex. It stays index here only to keep this exported shape backward-compatible.

    interface HandlerError {
        error: unknown;
        handler: string;
        index: number;
        toIndex?: number;
    }
    Index

    Properties

    error: unknown
    handler: string
    index: number

    The failed index, or the first index of a failed discoverRange window.

    toIndex?: number

    Inclusive end of a failed discoverRange window; absent for a single index.