@nori-zk/proof-conversion
Version:
Verifying zkVM proofs inside o1js circuits, to generate Mina compatible proof
12 lines • 412 B
JavaScript
import { getMlo } from './get_mlo.js';
import fs from 'fs';
const args = process.argv;
// assert(args.length >= 6)
const mloPath = args[2];
const hexProof = args[3];
const programVk = args[4];
const hexPi = args[5];
const mlo = getMlo(hexProof, programVk, hexPi);
fs.writeFileSync(mloPath, mlo.toJSON(), 'utf-8');
console.log(`JSON data has been written to ${mloPath}`);
//# sourceMappingURL=serialize_mlo.js.map