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

    Interface ScanResult

    Outcome of a IContractManager.scanContracts run.

    lastIndexUsed is the highest HD index at which any handler discovered a contract (-1 if nothing was found). handlerErrors collects per-handler discoverAt failures — non-empty means the gap window may have closed early and the caller should surface this (the scan itself still resolved).

    interface ScanResult {
        handlerErrors: HandlerError[];
        lastIndexUsed: number;
    }
    Index

    Properties

    handlerErrors: HandlerError[]
    lastIndexUsed: number