sorokeep
    Preparing search index...

    Type Alias WatchResult

    WatchResult:
        | {
            contractId: string;
            fromCache?: boolean;
            instance: ContractInstanceResult;
            success: true;
            wasm: SorokeepLedgerEntryResult
            | null;
            wasmWarning?: string;
        }
        | { contractId: string; error: string; success: false }

    Type Declaration

    • {
          contractId: string;
          fromCache?: boolean;
          instance: ContractInstanceResult;
          success: true;
          wasm: SorokeepLedgerEntryResult | null;
          wasmWarning?: string;
      }
      • contractId: string
      • OptionalfromCache?: boolean

        True when the result was served from the introspection cache (no RPC call).

      • instance: ContractInstanceResult
      • success: true
      • wasm: SorokeepLedgerEntryResult | null
      • OptionalwasmWarning?: string
    • { contractId: string; error: string; success: false }