CoreClient invokes wrappers and interacts with wrap packages.

Hierarchy

Constructors

Methods

  • Invoke a wrapper.

    Type Parameters

    • TData = unknown

    • TUri extends string | Uri = string

    Parameters

    • options: InvokerOptions<TUri>

      { // The Wrapper's URI uri: TUri;

      // Method to be executed. method: string;

      //Arguments for the method, structured as a map, removing the chance of incorrectly ordered arguments. args?: Record<string, unknown> | Uint8Array;

      // Env variables for the wrapper invocation. env?: Record<string, unknown>;

      // A Uri resolution context resolutionContext?: IUriResolutionContext;

      // if true, return value is a msgpack-encoded byte array encodeResult?: boolean; }

    Returns Promise<InvokeResult<TData>>

    A Promise with a Result containing the return value or an error

    Remarks

    Unlike invokeWrapper, this method automatically retrieves and caches the wrapper.

  • Invoke a wrapper using an instance of the wrapper.

    Type Parameters

    • TData = unknown

    • TUri extends string | Uri = string

    Parameters

    • options: InvokerOptions<TUri> & {
          wrapper: Wrapper;
      }

      { // The Wrapper's URI uri: TUri;

      // Method to be executed. method: string;

      //Arguments for the method, structured as a map, removing the chance of incorrectly ordered arguments. args?: Record<string, unknown> | Uint8Array;

      // Env variables for the wrapper invocation. env?: Record<string, unknown>;

      // A Uri resolution context resolutionContext?: IUriResolutionContext;

      // if true, return value is a msgpack-encoded byte array encodeResult?: boolean;

      // The wrapper to invoke wrapper: Wrapper }

    Returns Promise<InvokeResult<TData>>

    A Promise with a Result containing the return value or an error

  • Resolve a URI to a wrap package or wrapper. If the URI resolves to wrap package, load the wrapper.

    Parameters

    • uri: Uri

      the Uri to resolve

    • Optional resolutionContext: IUriResolutionContext
    • Optional options: DeserializeManifestOptions

      { noValidate?: boolean }

    Returns Promise<Result<Wrapper, WrapError>>

    A Promise with a Result containing a Wrapper or Error

    Remarks

    Unlike other methods, loadWrapper does not accept a string URI. You can create a Uri (from the @polywrap/core-js package) using Uri.from("wrap://...")

  • Enable tracing for intricate debugging

    Parameters

    • Optional tracerConfig: Partial<TracerConfig>

      configure options such as the tracing level

    Returns void

    void

    Remarks

    Tracing uses the @polywrap/tracing-js package

  • Validate a wrapper, given a URI. Optionally, validate the full ABI and/or recursively validate imports.

    Type Parameters

    • TUri extends string | Uri

    Parameters

    • uri: TUri

      the Uri to resolve

    • options: ValidateOptions

      { abi?: boolean; recursive?: boolean }

    Returns Promise<Result<true, Error>>

    A Promise with a Result containing a boolean or Error

Generated using TypeDoc