UNPKG

@nori-zk/mina-token-bridge

Version:

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

6 lines 364 B
import { TokenMintWorker } from '../worker.js'; import { WorkerParent } from '../../../worker/parent/index.node.js'; import { createProxy } from '../../../worker/index.js'; const workerUrl = new URL('./child.js', import.meta.url); export const getTokenMintWorker = () => createProxy(new WorkerParent(workerUrl), TokenMintWorker); //# sourceMappingURL=parent.js.map