UNPKG

@nori-zk/proof-conversion

Version:

Verifying zkVM proofs inside o1js circuits, to generate Mina compatible proof

10 lines 457 B
import { ComputationalPlanExecutor } from './executor.js'; import { NumaNodeTestComputationPlan } from './plans/tests/numa.js'; async function main() { const testPlanExecutor = new ComputationalPlanExecutor(12); const result = await testPlanExecutor.execute(new NumaNodeTestComputationPlan(), 'TestInput'); console.log(result); console.log(testPlanExecutor.workerFreeStatus()); } main().catch(console.error); //# sourceMappingURL=test.js.map