UNPKG

@nori-zk/mina-token-bridge

Version:

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

9 lines 433 B
import { TokenMintWorker } 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 getTokenMintWorker = () => createProxy(workerParent, TokenMintWorker); //# sourceMappingURL=parent.js.map