UNPKG

@nori-zk/mina-token-bridge

Version:

A Mina zk-program contract allowing users to mint tokens on Nori Bridge.

9 lines 415 B
import { EchoWorker } from '../worker.js'; import { WorkerParent } from '../../../worker/parent/index.browser.js'; import { createProxy } from '../../../worker/index.js'; const worker = new Worker(new URL('./child.js', import.meta.url), { type: 'module', }); const workerParent = new WorkerParent(worker); export const echoWorkerParent = createProxy(workerParent, EchoWorker); //# sourceMappingURL=parent.js.map