@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.mjs
CHANGED
|
@@ -1175,7 +1175,11 @@ async function generateProof(input) {
|
|
|
1175
1175
|
const { proof, publicSignals } = await groth16.fullProve(
|
|
1176
1176
|
circuitInputs,
|
|
1177
1177
|
wasmPath,
|
|
1178
|
-
zkeyPath
|
|
1178
|
+
zkeyPath,
|
|
1179
|
+
void 0,
|
|
1180
|
+
void 0,
|
|
1181
|
+
{ singleThread: true }
|
|
1182
|
+
// ! does this impact performance
|
|
1179
1183
|
);
|
|
1180
1184
|
const vKeyPath = path.join(packageRoot, "circuits/verification_key.json");
|
|
1181
1185
|
const isValid = await groth16.verify(
|