Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 775 Bytes

createaleoworker.md

File metadata and controls

27 lines (17 loc) · 775 Bytes

createAleoWorker

Description

The createAleoWorker method creates a new Web Worker instance for handling Aleo computations. This is useful for offloading heavy cryptographic operations to a separate thread to avoid blocking the main thread.

Parameters

  • options (CreateAleoWorkerOptions): An object containing:
    • url (string): URL of the worker script file
    • baseUrl (string, optional): Base URL to resolve the worker script URL against

Returns

Returns a wrapped Worker instance configured for Aleo operations using Comlink.

Example

import { createAleoWorker } from "zpass-sdk";

const AleoWorker = () => {
    return createAleoWorker({url: "worker.js", baseUrl: import.meta.url});
};

export { AleoWorker };