@nori-zk/mina-token-bridge
Version:
A Mina zk-program contract allowing users to mint tokens on Nori Bridge.
6 lines • 376 B
JavaScript
import { TokenDeployerWorker } 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 getTokenDeployerWorker = () => createProxy(new WorkerParent(workerUrl), TokenDeployerWorker);
//# sourceMappingURL=parent.js.map