@smithii_io/mixoor 0.0.5 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/src/index.js
CHANGED
|
@@ -1198,7 +1198,11 @@ async function generateProof(input) {
|
|
|
1198
1198
|
const { proof, publicSignals } = await snarkjs.groth16.fullProve(
|
|
1199
1199
|
circuitInputs,
|
|
1200
1200
|
wasmPath,
|
|
1201
|
-
zkeyPath
|
|
1201
|
+
zkeyPath,
|
|
1202
|
+
void 0,
|
|
1203
|
+
void 0,
|
|
1204
|
+
{ singleThread: true }
|
|
1205
|
+
// ! does this impact performance
|
|
1202
1206
|
);
|
|
1203
1207
|
const vKeyPath = path__namespace.join(packageRoot, "circuits/verification_key.json");
|
|
1204
1208
|
const isValid = await snarkjs.groth16.verify(
|