@nori-zk/mina-token-bridge
Version:
A Mina zk-program contract allowing users to mint tokens on Nori Bridge.
6 lines • 391 B
JavaScript
import { WorkerParent } from '../../../worker/parent/index.node.js';
import { DepositAttestationWorker } from '../worker.js';
import { createProxy } from '../../../worker/index.js';
const workerUrl = new URL('./child.js', import.meta.url);
export const getDepositAttestationWorker = () => createProxy(new WorkerParent(workerUrl), DepositAttestationWorker);
//# sourceMappingURL=parent.js.map