snarkjs/src/groth16_fullprove.js

11 lines
343 B
JavaScript
Raw Normal View History

2020-07-11 11:31:52 +03:00
import groth16_prove from "./groth16_prove.js";
import wtns_calculate from "./wtns_calculate.js";
2020-07-13 08:21:03 +03:00
export default async function groth16FullProve(input, wasmFile, zkeyFileName, logger) {
2020-07-11 11:31:52 +03:00
const wtns= {
type: "mem"
};
await wtns_calculate(input, wasmFile, wtns);
return await groth16_prove(zkeyFileName, wtns, logger);
}