UNPKG

@nori-zk/mina-token-bridge

Version:

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

15 lines 369 B
/** * Specification of the methods exposed by EchoWorker * for parent proxying. */ export const workerSpec = { /** * Proxy method for echoing a message. */ echo: async (req) => ({ echoed: '' }), /** * Proxy method for converting a message to uppercase. */ shout: async (req) => ({ upper: '' }), }; //# sourceMappingURL=spec.js.map