@nori-zk/mina-token-bridge
Version:
A Mina zk-program contract allowing users to mint tokens on Nori Bridge.
23 lines (22 loc) • 458 B
TypeScript
/**
* Specification of the methods exposed by EchoWorker
* for parent proxying.
*/
export declare const workerSpec: {
/**
* Proxy method for echoing a message.
*/
readonly echo: (req: {
msg: string;
}) => Promise<{
echoed: string;
}>;
/**
* Proxy method for converting a message to uppercase.
*/
readonly shout: (req: {
msg: string;
}) => Promise<{
upper: string;
}>;
};