@aztec/noir-acvm_js 3.0.0-nightly.20250925 → 3.0.0-nightly.20250927

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.
@@ -63,30 +63,6 @@ export function executeCircuitWithReturnWitness(program: Uint8Array, initial_wit
63
63
  * @returns {WitnessStack} The solved witness calculated by executing the program on the provided inputs.
64
64
  */
65
65
  export function executeProgram(program: Uint8Array, initial_witness: WitnessMap, foreign_call_handler: ForeignCallHandler): Promise<WitnessStack>;
66
- /**
67
- * Performs a bitwise AND operation between `lhs` and `rhs`
68
- */
69
- export function and(lhs: string, rhs: string): string;
70
- /**
71
- * Performs a bitwise XOR operation between `lhs` and `rhs`
72
- */
73
- export function xor(lhs: string, rhs: string): string;
74
- /**
75
- * Sha256 compression function
76
- */
77
- export function sha256_compression(inputs: Uint32Array, state: Uint32Array): Uint32Array;
78
- /**
79
- * Calculates the Blake2s256 hash of the input bytes
80
- */
81
- export function blake2s256(inputs: Uint8Array): Uint8Array;
82
- /**
83
- * Verifies a ECDSA signature over the secp256k1 curve.
84
- */
85
- export function ecdsa_secp256k1_verify(hashed_msg: Uint8Array, public_key_x_bytes: Uint8Array, public_key_y_bytes: Uint8Array, signature: Uint8Array): boolean;
86
- /**
87
- * Verifies a ECDSA signature over the secp256r1 curve.
88
- */
89
- export function ecdsa_secp256r1_verify(hashed_msg: Uint8Array, public_key_x_bytes: Uint8Array, public_key_y_bytes: Uint8Array, signature: Uint8Array): boolean;
90
66
  /**
91
67
  * Returns the `BuildInfo` object containing information about how the installed package was built.
92
68
  * @returns {BuildInfo} - Information on how the installed package was built.
@@ -116,6 +92,30 @@ export function getPublicParametersWitness(program: Uint8Array, solved_witness:
116
92
  * @returns {WitnessMap} A witness map containing the circuit's public inputs.
117
93
  */
118
94
  export function getPublicWitness(program: Uint8Array, solved_witness: WitnessMap): WitnessMap;
95
+ /**
96
+ * Performs a bitwise AND operation between `lhs` and `rhs`
97
+ */
98
+ export function and(lhs: string, rhs: string): string;
99
+ /**
100
+ * Performs a bitwise XOR operation between `lhs` and `rhs`
101
+ */
102
+ export function xor(lhs: string, rhs: string): string;
103
+ /**
104
+ * Sha256 compression function
105
+ */
106
+ export function sha256_compression(inputs: Uint32Array, state: Uint32Array): Uint32Array;
107
+ /**
108
+ * Calculates the Blake2s256 hash of the input bytes
109
+ */
110
+ export function blake2s256(inputs: Uint8Array): Uint8Array;
111
+ /**
112
+ * Verifies a ECDSA signature over the secp256k1 curve.
113
+ */
114
+ export function ecdsa_secp256k1_verify(hashed_msg: Uint8Array, public_key_x_bytes: Uint8Array, public_key_y_bytes: Uint8Array, signature: Uint8Array): boolean;
115
+ /**
116
+ * Verifies a ECDSA signature over the secp256r1 curve.
117
+ */
118
+ export function ecdsa_secp256r1_verify(hashed_msg: Uint8Array, public_key_x_bytes: Uint8Array, public_key_y_bytes: Uint8Array, signature: Uint8Array): boolean;
119
119
 
120
120
  export type StackItem = {
121
121
  index: number;
@@ -140,6 +140,20 @@ export type BuildInfo = {
140
140
 
141
141
 
142
142
 
143
+ export type ForeignCallInput = string[]
144
+ export type ForeignCallOutput = string | string[]
145
+
146
+ /**
147
+ * A callback which performs an foreign call and returns the response.
148
+ * @callback ForeignCallHandler
149
+ * @param {string} name - The identifier for the type of foreign call being performed.
150
+ * @param {string[][]} inputs - An array of hex encoded inputs to the foreign call.
151
+ * @returns {Promise<string[]>} outputs - An array of hex encoded outputs containing the results of the foreign call.
152
+ */
153
+ export type ForeignCallHandler = (name: string, inputs: ForeignCallInput[]) => Promise<ForeignCallOutput[]>;
154
+
155
+
156
+
143
157
  export type RawAssertionPayload = {
144
158
  selector: string;
145
159
  data: string[];
@@ -168,17 +182,3 @@ export type SolvedAndReturnWitness = {
168
182
  }
169
183
 
170
184
 
171
-
172
- export type ForeignCallInput = string[]
173
- export type ForeignCallOutput = string | string[]
174
-
175
- /**
176
- * A callback which performs an foreign call and returns the response.
177
- * @callback ForeignCallHandler
178
- * @param {string} name - The identifier for the type of foreign call being performed.
179
- * @param {string[][]} inputs - An array of hex encoded inputs to the foreign call.
180
- * @returns {Promise<string[]>} outputs - An array of hex encoded outputs containing the results of the foreign call.
181
- */
182
- export type ForeignCallHandler = (name: string, inputs: ForeignCallInput[]) => Promise<ForeignCallOutput[]>;
183
-
184
-
package/nodejs/acvm_js.js CHANGED
@@ -342,6 +342,75 @@ module.exports.executeProgram = function(program, initial_witness, foreign_call_
342
342
  return ret;
343
343
  };
344
344
 
345
+ /**
346
+ * Returns the `BuildInfo` object containing information about how the installed package was built.
347
+ * @returns {BuildInfo} - Information on how the installed package was built.
348
+ */
349
+ module.exports.buildInfo = function() {
350
+ const ret = wasm.buildInfo();
351
+ return ret;
352
+ };
353
+
354
+ /**
355
+ * Extracts a `WitnessMap` containing the witness indices corresponding to the circuit's return values.
356
+ *
357
+ * @param {Uint8Array} circuit - A serialized representation of an ACIR circuit
358
+ * @param {WitnessMap} witness_map - The completed witness map after executing the circuit.
359
+ * @returns {WitnessMap} A witness map containing the circuit's return values.
360
+ * @param {Uint8Array} program
361
+ * @param {WitnessMap} witness_map
362
+ * @returns {WitnessMap}
363
+ */
364
+ module.exports.getReturnWitness = function(program, witness_map) {
365
+ const ptr0 = passArray8ToWasm0(program, wasm.__wbindgen_malloc);
366
+ const len0 = WASM_VECTOR_LEN;
367
+ const ret = wasm.getReturnWitness(ptr0, len0, witness_map);
368
+ if (ret[2]) {
369
+ throw takeFromExternrefTable0(ret[1]);
370
+ }
371
+ return takeFromExternrefTable0(ret[0]);
372
+ };
373
+
374
+ /**
375
+ * Extracts a `WitnessMap` containing the witness indices corresponding to the circuit's public parameters.
376
+ *
377
+ * @param {Uint8Array} circuit - A serialized representation of an ACIR circuit
378
+ * @param {WitnessMap} witness_map - The completed witness map after executing the circuit.
379
+ * @returns {WitnessMap} A witness map containing the circuit's public parameters.
380
+ * @param {Uint8Array} program
381
+ * @param {WitnessMap} solved_witness
382
+ * @returns {WitnessMap}
383
+ */
384
+ module.exports.getPublicParametersWitness = function(program, solved_witness) {
385
+ const ptr0 = passArray8ToWasm0(program, wasm.__wbindgen_malloc);
386
+ const len0 = WASM_VECTOR_LEN;
387
+ const ret = wasm.getPublicParametersWitness(ptr0, len0, solved_witness);
388
+ if (ret[2]) {
389
+ throw takeFromExternrefTable0(ret[1]);
390
+ }
391
+ return takeFromExternrefTable0(ret[0]);
392
+ };
393
+
394
+ /**
395
+ * Extracts a `WitnessMap` containing the witness indices corresponding to the circuit's public inputs.
396
+ *
397
+ * @param {Uint8Array} circuit - A serialized representation of an ACIR circuit
398
+ * @param {WitnessMap} witness_map - The completed witness map after executing the circuit.
399
+ * @returns {WitnessMap} A witness map containing the circuit's public inputs.
400
+ * @param {Uint8Array} program
401
+ * @param {WitnessMap} solved_witness
402
+ * @returns {WitnessMap}
403
+ */
404
+ module.exports.getPublicWitness = function(program, solved_witness) {
405
+ const ptr0 = passArray8ToWasm0(program, wasm.__wbindgen_malloc);
406
+ const len0 = WASM_VECTOR_LEN;
407
+ const ret = wasm.getPublicWitness(ptr0, len0, solved_witness);
408
+ if (ret[2]) {
409
+ throw takeFromExternrefTable0(ret[1]);
410
+ }
411
+ return takeFromExternrefTable0(ret[0]);
412
+ };
413
+
345
414
  /**
346
415
  * Performs a bitwise AND operation between `lhs` and `rhs`
347
416
  * @param {string} lhs
@@ -457,85 +526,16 @@ module.exports.ecdsa_secp256r1_verify = function(hashed_msg, public_key_x_bytes,
457
526
  return ret !== 0;
458
527
  };
459
528
 
460
- /**
461
- * Returns the `BuildInfo` object containing information about how the installed package was built.
462
- * @returns {BuildInfo} - Information on how the installed package was built.
463
- */
464
- module.exports.buildInfo = function() {
465
- const ret = wasm.buildInfo();
466
- return ret;
467
- };
468
-
469
- /**
470
- * Extracts a `WitnessMap` containing the witness indices corresponding to the circuit's return values.
471
- *
472
- * @param {Uint8Array} circuit - A serialized representation of an ACIR circuit
473
- * @param {WitnessMap} witness_map - The completed witness map after executing the circuit.
474
- * @returns {WitnessMap} A witness map containing the circuit's return values.
475
- * @param {Uint8Array} program
476
- * @param {WitnessMap} witness_map
477
- * @returns {WitnessMap}
478
- */
479
- module.exports.getReturnWitness = function(program, witness_map) {
480
- const ptr0 = passArray8ToWasm0(program, wasm.__wbindgen_malloc);
481
- const len0 = WASM_VECTOR_LEN;
482
- const ret = wasm.getReturnWitness(ptr0, len0, witness_map);
483
- if (ret[2]) {
484
- throw takeFromExternrefTable0(ret[1]);
485
- }
486
- return takeFromExternrefTable0(ret[0]);
487
- };
488
-
489
- /**
490
- * Extracts a `WitnessMap` containing the witness indices corresponding to the circuit's public parameters.
491
- *
492
- * @param {Uint8Array} circuit - A serialized representation of an ACIR circuit
493
- * @param {WitnessMap} witness_map - The completed witness map after executing the circuit.
494
- * @returns {WitnessMap} A witness map containing the circuit's public parameters.
495
- * @param {Uint8Array} program
496
- * @param {WitnessMap} solved_witness
497
- * @returns {WitnessMap}
498
- */
499
- module.exports.getPublicParametersWitness = function(program, solved_witness) {
500
- const ptr0 = passArray8ToWasm0(program, wasm.__wbindgen_malloc);
501
- const len0 = WASM_VECTOR_LEN;
502
- const ret = wasm.getPublicParametersWitness(ptr0, len0, solved_witness);
503
- if (ret[2]) {
504
- throw takeFromExternrefTable0(ret[1]);
505
- }
506
- return takeFromExternrefTable0(ret[0]);
507
- };
508
-
509
- /**
510
- * Extracts a `WitnessMap` containing the witness indices corresponding to the circuit's public inputs.
511
- *
512
- * @param {Uint8Array} circuit - A serialized representation of an ACIR circuit
513
- * @param {WitnessMap} witness_map - The completed witness map after executing the circuit.
514
- * @returns {WitnessMap} A witness map containing the circuit's public inputs.
515
- * @param {Uint8Array} program
516
- * @param {WitnessMap} solved_witness
517
- * @returns {WitnessMap}
518
- */
519
- module.exports.getPublicWitness = function(program, solved_witness) {
520
- const ptr0 = passArray8ToWasm0(program, wasm.__wbindgen_malloc);
521
- const len0 = WASM_VECTOR_LEN;
522
- const ret = wasm.getPublicWitness(ptr0, len0, solved_witness);
523
- if (ret[2]) {
524
- throw takeFromExternrefTable0(ret[1]);
525
- }
526
- return takeFromExternrefTable0(ret[0]);
527
- };
528
-
529
529
  function __wbg_adapter_30(arg0, arg1, arg2) {
530
530
  wasm.closure571_externref_shim(arg0, arg1, arg2);
531
531
  }
532
532
 
533
533
  function __wbg_adapter_89(arg0, arg1, arg2, arg3, arg4) {
534
- wasm.closure1165_externref_shim(arg0, arg1, arg2, arg3, arg4);
534
+ wasm.closure1166_externref_shim(arg0, arg1, arg2, arg3, arg4);
535
535
  }
536
536
 
537
537
  function __wbg_adapter_110(arg0, arg1, arg2, arg3) {
538
- wasm.closure1169_externref_shim(arg0, arg1, arg2, arg3);
538
+ wasm.closure1170_externref_shim(arg0, arg1, arg2, arg3);
539
539
  }
540
540
 
541
541
  module.exports.__wbg_call_672a4d21634d4a24 = function() { return handleError(function (arg0, arg1) {
@@ -553,12 +553,12 @@ module.exports.__wbg_call_833bed5770ea2041 = function() { return handleError(fun
553
553
  return ret;
554
554
  }, arguments) };
555
555
 
556
- module.exports.__wbg_constructor_78d4b46bae4ee3a6 = function(arg0) {
556
+ module.exports.__wbg_constructor_9e8cb540daf7ff05 = function(arg0) {
557
557
  const ret = new Error(arg0);
558
558
  return ret;
559
559
  };
560
560
 
561
- module.exports.__wbg_constructor_e15d65f40a39eb05 = function(arg0) {
561
+ module.exports.__wbg_constructor_e941aad07ba7dc0f = function(arg0) {
562
562
  const ret = new Error(arg0);
563
563
  return ret;
564
564
  };
@@ -674,6 +674,11 @@ module.exports.__wbg_new_23a2665fac83c611 = function(arg0, arg1) {
674
674
  }
675
675
  };
676
676
 
677
+ module.exports.__wbg_new_5bbc7db92320b11c = function() {
678
+ const ret = new Array();
679
+ return ret;
680
+ };
681
+
677
682
  module.exports.__wbg_new_5e0be73521bc8c17 = function() {
678
683
  const ret = new Map();
679
684
  return ret;
@@ -689,7 +694,7 @@ module.exports.__wbg_new_8a6f238a6ece86ea = function() {
689
694
  return ret;
690
695
  };
691
696
 
692
- module.exports.__wbg_new_95a101145c23dc1d = function() {
697
+ module.exports.__wbg_new_baeac847dc19991f = function() {
693
698
  const ret = new Map();
694
699
  return ret;
695
700
  };
@@ -699,11 +704,6 @@ module.exports.__wbg_new_c68d7209be747379 = function(arg0, arg1) {
699
704
  return ret;
700
705
  };
701
706
 
702
- module.exports.__wbg_new_d1312de2c48bf990 = function() {
703
- const ret = new Array();
704
- return ret;
705
- };
706
-
707
707
  module.exports.__wbg_newnoargs_105ed471475aaf50 = function(arg0, arg1) {
708
708
  const ret = new Function(getStringFromWasm0(arg0, arg1));
709
709
  return ret;
@@ -813,7 +813,7 @@ module.exports.__wbindgen_cb_drop = function(arg0) {
813
813
  return ret;
814
814
  };
815
815
 
816
- module.exports.__wbindgen_closure_wrapper1986 = function(arg0, arg1, arg2) {
816
+ module.exports.__wbindgen_closure_wrapper1967 = function(arg0, arg1, arg2) {
817
817
  const ret = makeMutClosure(arg0, arg1, 572, __wbg_adapter_30);
818
818
  return ret;
819
819
  };
Binary file
@@ -9,16 +9,16 @@ export const decompressWitnessStack: (a: number, b: number) => [number, number,
9
9
  export const executeCircuit: (a: number, b: number, c: any, d: any) => any;
10
10
  export const executeCircuitWithReturnWitness: (a: number, b: number, c: any, d: any) => any;
11
11
  export const executeProgram: (a: number, b: number, c: any, d: any) => any;
12
+ export const buildInfo: () => any;
13
+ export const getReturnWitness: (a: number, b: number, c: any) => [number, number, number];
14
+ export const getPublicParametersWitness: (a: number, b: number, c: any) => [number, number, number];
15
+ export const getPublicWitness: (a: number, b: number, c: any) => [number, number, number];
12
16
  export const and: (a: any, b: any) => any;
13
17
  export const xor: (a: any, b: any) => any;
14
18
  export const sha256_compression: (a: number, b: number, c: number, d: number) => [number, number];
15
19
  export const blake2s256: (a: number, b: number) => [number, number];
16
20
  export const ecdsa_secp256k1_verify: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
17
21
  export const ecdsa_secp256r1_verify: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
18
- export const buildInfo: () => any;
19
- export const getReturnWitness: (a: number, b: number, c: any) => [number, number, number];
20
- export const getPublicParametersWitness: (a: number, b: number, c: any) => [number, number, number];
21
- export const getPublicWitness: (a: number, b: number, c: any) => [number, number, number];
22
22
  export const __wbindgen_exn_store: (a: number) => void;
23
23
  export const __externref_table_alloc: () => number;
24
24
  export const __wbindgen_export_2: WebAssembly.Table;
@@ -28,6 +28,6 @@ export const __wbindgen_realloc: (a: number, b: number, c: number, d: number) =>
28
28
  export const __wbindgen_export_6: WebAssembly.Table;
29
29
  export const __externref_table_dealloc: (a: number) => void;
30
30
  export const closure571_externref_shim: (a: number, b: number, c: any) => void;
31
- export const closure1165_externref_shim: (a: number, b: number, c: any, d: number, e: any) => void;
32
- export const closure1169_externref_shim: (a: number, b: number, c: any, d: any) => void;
31
+ export const closure1166_externref_shim: (a: number, b: number, c: any, d: number, e: any) => void;
32
+ export const closure1170_externref_shim: (a: number, b: number, c: any, d: any) => void;
33
33
  export const __wbindgen_start: () => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/noir-acvm_js",
3
- "version": "3.0.0-nightly.20250925",
3
+ "version": "3.0.0-nightly.20250927",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -38,9 +38,9 @@
38
38
  },
39
39
  "devDependencies": {
40
40
  "@esm-bundle/chai": "^4.3.4-fix.0",
41
- "@web/dev-server-esbuild": "^0.3.6",
41
+ "@web/dev-server-esbuild": "^1.0.4",
42
42
  "@web/test-runner": "^0.20.2",
43
- "@web/test-runner-playwright": "^0.11.0",
43
+ "@web/test-runner-playwright": "^0.11.1",
44
44
  "chai": "^4.4.1",
45
45
  "eslint": "^9.28.0",
46
46
  "eslint-plugin-prettier": "^5.4.1",
package/web/acvm_js.d.ts CHANGED
@@ -63,30 +63,6 @@ export function executeCircuitWithReturnWitness(program: Uint8Array, initial_wit
63
63
  * @returns {WitnessStack} The solved witness calculated by executing the program on the provided inputs.
64
64
  */
65
65
  export function executeProgram(program: Uint8Array, initial_witness: WitnessMap, foreign_call_handler: ForeignCallHandler): Promise<WitnessStack>;
66
- /**
67
- * Performs a bitwise AND operation between `lhs` and `rhs`
68
- */
69
- export function and(lhs: string, rhs: string): string;
70
- /**
71
- * Performs a bitwise XOR operation between `lhs` and `rhs`
72
- */
73
- export function xor(lhs: string, rhs: string): string;
74
- /**
75
- * Sha256 compression function
76
- */
77
- export function sha256_compression(inputs: Uint32Array, state: Uint32Array): Uint32Array;
78
- /**
79
- * Calculates the Blake2s256 hash of the input bytes
80
- */
81
- export function blake2s256(inputs: Uint8Array): Uint8Array;
82
- /**
83
- * Verifies a ECDSA signature over the secp256k1 curve.
84
- */
85
- export function ecdsa_secp256k1_verify(hashed_msg: Uint8Array, public_key_x_bytes: Uint8Array, public_key_y_bytes: Uint8Array, signature: Uint8Array): boolean;
86
- /**
87
- * Verifies a ECDSA signature over the secp256r1 curve.
88
- */
89
- export function ecdsa_secp256r1_verify(hashed_msg: Uint8Array, public_key_x_bytes: Uint8Array, public_key_y_bytes: Uint8Array, signature: Uint8Array): boolean;
90
66
  /**
91
67
  * Returns the `BuildInfo` object containing information about how the installed package was built.
92
68
  * @returns {BuildInfo} - Information on how the installed package was built.
@@ -116,6 +92,30 @@ export function getPublicParametersWitness(program: Uint8Array, solved_witness:
116
92
  * @returns {WitnessMap} A witness map containing the circuit's public inputs.
117
93
  */
118
94
  export function getPublicWitness(program: Uint8Array, solved_witness: WitnessMap): WitnessMap;
95
+ /**
96
+ * Performs a bitwise AND operation between `lhs` and `rhs`
97
+ */
98
+ export function and(lhs: string, rhs: string): string;
99
+ /**
100
+ * Performs a bitwise XOR operation between `lhs` and `rhs`
101
+ */
102
+ export function xor(lhs: string, rhs: string): string;
103
+ /**
104
+ * Sha256 compression function
105
+ */
106
+ export function sha256_compression(inputs: Uint32Array, state: Uint32Array): Uint32Array;
107
+ /**
108
+ * Calculates the Blake2s256 hash of the input bytes
109
+ */
110
+ export function blake2s256(inputs: Uint8Array): Uint8Array;
111
+ /**
112
+ * Verifies a ECDSA signature over the secp256k1 curve.
113
+ */
114
+ export function ecdsa_secp256k1_verify(hashed_msg: Uint8Array, public_key_x_bytes: Uint8Array, public_key_y_bytes: Uint8Array, signature: Uint8Array): boolean;
115
+ /**
116
+ * Verifies a ECDSA signature over the secp256r1 curve.
117
+ */
118
+ export function ecdsa_secp256r1_verify(hashed_msg: Uint8Array, public_key_x_bytes: Uint8Array, public_key_y_bytes: Uint8Array, signature: Uint8Array): boolean;
119
119
 
120
120
  export type StackItem = {
121
121
  index: number;
@@ -140,6 +140,20 @@ export type BuildInfo = {
140
140
 
141
141
 
142
142
 
143
+ export type ForeignCallInput = string[]
144
+ export type ForeignCallOutput = string | string[]
145
+
146
+ /**
147
+ * A callback which performs an foreign call and returns the response.
148
+ * @callback ForeignCallHandler
149
+ * @param {string} name - The identifier for the type of foreign call being performed.
150
+ * @param {string[][]} inputs - An array of hex encoded inputs to the foreign call.
151
+ * @returns {Promise<string[]>} outputs - An array of hex encoded outputs containing the results of the foreign call.
152
+ */
153
+ export type ForeignCallHandler = (name: string, inputs: ForeignCallInput[]) => Promise<ForeignCallOutput[]>;
154
+
155
+
156
+
143
157
  export type RawAssertionPayload = {
144
158
  selector: string;
145
159
  data: string[];
@@ -169,20 +183,6 @@ export type SolvedAndReturnWitness = {
169
183
 
170
184
 
171
185
 
172
- export type ForeignCallInput = string[]
173
- export type ForeignCallOutput = string | string[]
174
-
175
- /**
176
- * A callback which performs an foreign call and returns the response.
177
- * @callback ForeignCallHandler
178
- * @param {string} name - The identifier for the type of foreign call being performed.
179
- * @param {string[][]} inputs - An array of hex encoded inputs to the foreign call.
180
- * @returns {Promise<string[]>} outputs - An array of hex encoded outputs containing the results of the foreign call.
181
- */
182
- export type ForeignCallHandler = (name: string, inputs: ForeignCallInput[]) => Promise<ForeignCallOutput[]>;
183
-
184
-
185
-
186
186
  export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembly.Module;
187
187
 
188
188
  export interface InitOutput {
@@ -195,16 +195,16 @@ export interface InitOutput {
195
195
  readonly executeCircuit: (a: number, b: number, c: any, d: any) => any;
196
196
  readonly executeCircuitWithReturnWitness: (a: number, b: number, c: any, d: any) => any;
197
197
  readonly executeProgram: (a: number, b: number, c: any, d: any) => any;
198
+ readonly buildInfo: () => any;
199
+ readonly getReturnWitness: (a: number, b: number, c: any) => [number, number, number];
200
+ readonly getPublicParametersWitness: (a: number, b: number, c: any) => [number, number, number];
201
+ readonly getPublicWitness: (a: number, b: number, c: any) => [number, number, number];
198
202
  readonly and: (a: any, b: any) => any;
199
203
  readonly xor: (a: any, b: any) => any;
200
204
  readonly sha256_compression: (a: number, b: number, c: number, d: number) => [number, number];
201
205
  readonly blake2s256: (a: number, b: number) => [number, number];
202
206
  readonly ecdsa_secp256k1_verify: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
203
207
  readonly ecdsa_secp256r1_verify: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
204
- readonly buildInfo: () => any;
205
- readonly getReturnWitness: (a: number, b: number, c: any) => [number, number, number];
206
- readonly getPublicParametersWitness: (a: number, b: number, c: any) => [number, number, number];
207
- readonly getPublicWitness: (a: number, b: number, c: any) => [number, number, number];
208
208
  readonly __wbindgen_exn_store: (a: number) => void;
209
209
  readonly __externref_table_alloc: () => number;
210
210
  readonly __wbindgen_export_2: WebAssembly.Table;
@@ -214,8 +214,8 @@ export interface InitOutput {
214
214
  readonly __wbindgen_export_6: WebAssembly.Table;
215
215
  readonly __externref_table_dealloc: (a: number) => void;
216
216
  readonly closure571_externref_shim: (a: number, b: number, c: any) => void;
217
- readonly closure1165_externref_shim: (a: number, b: number, c: any, d: number, e: any) => void;
218
- readonly closure1169_externref_shim: (a: number, b: number, c: any, d: any) => void;
217
+ readonly closure1166_externref_shim: (a: number, b: number, c: any, d: number, e: any) => void;
218
+ readonly closure1170_externref_shim: (a: number, b: number, c: any, d: any) => void;
219
219
  readonly __wbindgen_start: () => void;
220
220
  }
221
221
 
package/web/acvm_js.js CHANGED
@@ -338,6 +338,75 @@ export function executeProgram(program, initial_witness, foreign_call_handler) {
338
338
  return ret;
339
339
  }
340
340
 
341
+ /**
342
+ * Returns the `BuildInfo` object containing information about how the installed package was built.
343
+ * @returns {BuildInfo} - Information on how the installed package was built.
344
+ */
345
+ export function buildInfo() {
346
+ const ret = wasm.buildInfo();
347
+ return ret;
348
+ }
349
+
350
+ /**
351
+ * Extracts a `WitnessMap` containing the witness indices corresponding to the circuit's return values.
352
+ *
353
+ * @param {Uint8Array} circuit - A serialized representation of an ACIR circuit
354
+ * @param {WitnessMap} witness_map - The completed witness map after executing the circuit.
355
+ * @returns {WitnessMap} A witness map containing the circuit's return values.
356
+ * @param {Uint8Array} program
357
+ * @param {WitnessMap} witness_map
358
+ * @returns {WitnessMap}
359
+ */
360
+ export function getReturnWitness(program, witness_map) {
361
+ const ptr0 = passArray8ToWasm0(program, wasm.__wbindgen_malloc);
362
+ const len0 = WASM_VECTOR_LEN;
363
+ const ret = wasm.getReturnWitness(ptr0, len0, witness_map);
364
+ if (ret[2]) {
365
+ throw takeFromExternrefTable0(ret[1]);
366
+ }
367
+ return takeFromExternrefTable0(ret[0]);
368
+ }
369
+
370
+ /**
371
+ * Extracts a `WitnessMap` containing the witness indices corresponding to the circuit's public parameters.
372
+ *
373
+ * @param {Uint8Array} circuit - A serialized representation of an ACIR circuit
374
+ * @param {WitnessMap} witness_map - The completed witness map after executing the circuit.
375
+ * @returns {WitnessMap} A witness map containing the circuit's public parameters.
376
+ * @param {Uint8Array} program
377
+ * @param {WitnessMap} solved_witness
378
+ * @returns {WitnessMap}
379
+ */
380
+ export function getPublicParametersWitness(program, solved_witness) {
381
+ const ptr0 = passArray8ToWasm0(program, wasm.__wbindgen_malloc);
382
+ const len0 = WASM_VECTOR_LEN;
383
+ const ret = wasm.getPublicParametersWitness(ptr0, len0, solved_witness);
384
+ if (ret[2]) {
385
+ throw takeFromExternrefTable0(ret[1]);
386
+ }
387
+ return takeFromExternrefTable0(ret[0]);
388
+ }
389
+
390
+ /**
391
+ * Extracts a `WitnessMap` containing the witness indices corresponding to the circuit's public inputs.
392
+ *
393
+ * @param {Uint8Array} circuit - A serialized representation of an ACIR circuit
394
+ * @param {WitnessMap} witness_map - The completed witness map after executing the circuit.
395
+ * @returns {WitnessMap} A witness map containing the circuit's public inputs.
396
+ * @param {Uint8Array} program
397
+ * @param {WitnessMap} solved_witness
398
+ * @returns {WitnessMap}
399
+ */
400
+ export function getPublicWitness(program, solved_witness) {
401
+ const ptr0 = passArray8ToWasm0(program, wasm.__wbindgen_malloc);
402
+ const len0 = WASM_VECTOR_LEN;
403
+ const ret = wasm.getPublicWitness(ptr0, len0, solved_witness);
404
+ if (ret[2]) {
405
+ throw takeFromExternrefTable0(ret[1]);
406
+ }
407
+ return takeFromExternrefTable0(ret[0]);
408
+ }
409
+
341
410
  /**
342
411
  * Performs a bitwise AND operation between `lhs` and `rhs`
343
412
  * @param {string} lhs
@@ -453,85 +522,16 @@ export function ecdsa_secp256r1_verify(hashed_msg, public_key_x_bytes, public_ke
453
522
  return ret !== 0;
454
523
  }
455
524
 
456
- /**
457
- * Returns the `BuildInfo` object containing information about how the installed package was built.
458
- * @returns {BuildInfo} - Information on how the installed package was built.
459
- */
460
- export function buildInfo() {
461
- const ret = wasm.buildInfo();
462
- return ret;
463
- }
464
-
465
- /**
466
- * Extracts a `WitnessMap` containing the witness indices corresponding to the circuit's return values.
467
- *
468
- * @param {Uint8Array} circuit - A serialized representation of an ACIR circuit
469
- * @param {WitnessMap} witness_map - The completed witness map after executing the circuit.
470
- * @returns {WitnessMap} A witness map containing the circuit's return values.
471
- * @param {Uint8Array} program
472
- * @param {WitnessMap} witness_map
473
- * @returns {WitnessMap}
474
- */
475
- export function getReturnWitness(program, witness_map) {
476
- const ptr0 = passArray8ToWasm0(program, wasm.__wbindgen_malloc);
477
- const len0 = WASM_VECTOR_LEN;
478
- const ret = wasm.getReturnWitness(ptr0, len0, witness_map);
479
- if (ret[2]) {
480
- throw takeFromExternrefTable0(ret[1]);
481
- }
482
- return takeFromExternrefTable0(ret[0]);
483
- }
484
-
485
- /**
486
- * Extracts a `WitnessMap` containing the witness indices corresponding to the circuit's public parameters.
487
- *
488
- * @param {Uint8Array} circuit - A serialized representation of an ACIR circuit
489
- * @param {WitnessMap} witness_map - The completed witness map after executing the circuit.
490
- * @returns {WitnessMap} A witness map containing the circuit's public parameters.
491
- * @param {Uint8Array} program
492
- * @param {WitnessMap} solved_witness
493
- * @returns {WitnessMap}
494
- */
495
- export function getPublicParametersWitness(program, solved_witness) {
496
- const ptr0 = passArray8ToWasm0(program, wasm.__wbindgen_malloc);
497
- const len0 = WASM_VECTOR_LEN;
498
- const ret = wasm.getPublicParametersWitness(ptr0, len0, solved_witness);
499
- if (ret[2]) {
500
- throw takeFromExternrefTable0(ret[1]);
501
- }
502
- return takeFromExternrefTable0(ret[0]);
503
- }
504
-
505
- /**
506
- * Extracts a `WitnessMap` containing the witness indices corresponding to the circuit's public inputs.
507
- *
508
- * @param {Uint8Array} circuit - A serialized representation of an ACIR circuit
509
- * @param {WitnessMap} witness_map - The completed witness map after executing the circuit.
510
- * @returns {WitnessMap} A witness map containing the circuit's public inputs.
511
- * @param {Uint8Array} program
512
- * @param {WitnessMap} solved_witness
513
- * @returns {WitnessMap}
514
- */
515
- export function getPublicWitness(program, solved_witness) {
516
- const ptr0 = passArray8ToWasm0(program, wasm.__wbindgen_malloc);
517
- const len0 = WASM_VECTOR_LEN;
518
- const ret = wasm.getPublicWitness(ptr0, len0, solved_witness);
519
- if (ret[2]) {
520
- throw takeFromExternrefTable0(ret[1]);
521
- }
522
- return takeFromExternrefTable0(ret[0]);
523
- }
524
-
525
525
  function __wbg_adapter_30(arg0, arg1, arg2) {
526
526
  wasm.closure571_externref_shim(arg0, arg1, arg2);
527
527
  }
528
528
 
529
529
  function __wbg_adapter_89(arg0, arg1, arg2, arg3, arg4) {
530
- wasm.closure1165_externref_shim(arg0, arg1, arg2, arg3, arg4);
530
+ wasm.closure1166_externref_shim(arg0, arg1, arg2, arg3, arg4);
531
531
  }
532
532
 
533
533
  function __wbg_adapter_110(arg0, arg1, arg2, arg3) {
534
- wasm.closure1169_externref_shim(arg0, arg1, arg2, arg3);
534
+ wasm.closure1170_externref_shim(arg0, arg1, arg2, arg3);
535
535
  }
536
536
 
537
537
  async function __wbg_load(module, imports) {
@@ -580,11 +580,11 @@ function __wbg_get_imports() {
580
580
  const ret = arg0.call(arg1, arg2, arg3);
581
581
  return ret;
582
582
  }, arguments) };
583
- imports.wbg.__wbg_constructor_78d4b46bae4ee3a6 = function(arg0) {
583
+ imports.wbg.__wbg_constructor_9e8cb540daf7ff05 = function(arg0) {
584
584
  const ret = new Error(arg0);
585
585
  return ret;
586
586
  };
587
- imports.wbg.__wbg_constructor_e15d65f40a39eb05 = function(arg0) {
587
+ imports.wbg.__wbg_constructor_e941aad07ba7dc0f = function(arg0) {
588
588
  const ret = new Error(arg0);
589
589
  return ret;
590
590
  };
@@ -685,6 +685,10 @@ function __wbg_get_imports() {
685
685
  state0.a = state0.b = 0;
686
686
  }
687
687
  };
688
+ imports.wbg.__wbg_new_5bbc7db92320b11c = function() {
689
+ const ret = new Array();
690
+ return ret;
691
+ };
688
692
  imports.wbg.__wbg_new_5e0be73521bc8c17 = function() {
689
693
  const ret = new Map();
690
694
  return ret;
@@ -697,7 +701,7 @@ function __wbg_get_imports() {
697
701
  const ret = new Error();
698
702
  return ret;
699
703
  };
700
- imports.wbg.__wbg_new_95a101145c23dc1d = function() {
704
+ imports.wbg.__wbg_new_baeac847dc19991f = function() {
701
705
  const ret = new Map();
702
706
  return ret;
703
707
  };
@@ -705,10 +709,6 @@ function __wbg_get_imports() {
705
709
  const ret = new Error(getStringFromWasm0(arg0, arg1));
706
710
  return ret;
707
711
  };
708
- imports.wbg.__wbg_new_d1312de2c48bf990 = function() {
709
- const ret = new Array();
710
- return ret;
711
- };
712
712
  imports.wbg.__wbg_newnoargs_105ed471475aaf50 = function(arg0, arg1) {
713
713
  const ret = new Function(getStringFromWasm0(arg0, arg1));
714
714
  return ret;
@@ -797,7 +797,7 @@ function __wbg_get_imports() {
797
797
  const ret = false;
798
798
  return ret;
799
799
  };
800
- imports.wbg.__wbindgen_closure_wrapper1986 = function(arg0, arg1, arg2) {
800
+ imports.wbg.__wbindgen_closure_wrapper1967 = function(arg0, arg1, arg2) {
801
801
  const ret = makeMutClosure(arg0, arg1, 572, __wbg_adapter_30);
802
802
  return ret;
803
803
  };
Binary file
@@ -9,16 +9,16 @@ export const decompressWitnessStack: (a: number, b: number) => [number, number,
9
9
  export const executeCircuit: (a: number, b: number, c: any, d: any) => any;
10
10
  export const executeCircuitWithReturnWitness: (a: number, b: number, c: any, d: any) => any;
11
11
  export const executeProgram: (a: number, b: number, c: any, d: any) => any;
12
+ export const buildInfo: () => any;
13
+ export const getReturnWitness: (a: number, b: number, c: any) => [number, number, number];
14
+ export const getPublicParametersWitness: (a: number, b: number, c: any) => [number, number, number];
15
+ export const getPublicWitness: (a: number, b: number, c: any) => [number, number, number];
12
16
  export const and: (a: any, b: any) => any;
13
17
  export const xor: (a: any, b: any) => any;
14
18
  export const sha256_compression: (a: number, b: number, c: number, d: number) => [number, number];
15
19
  export const blake2s256: (a: number, b: number) => [number, number];
16
20
  export const ecdsa_secp256k1_verify: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
17
21
  export const ecdsa_secp256r1_verify: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
18
- export const buildInfo: () => any;
19
- export const getReturnWitness: (a: number, b: number, c: any) => [number, number, number];
20
- export const getPublicParametersWitness: (a: number, b: number, c: any) => [number, number, number];
21
- export const getPublicWitness: (a: number, b: number, c: any) => [number, number, number];
22
22
  export const __wbindgen_exn_store: (a: number) => void;
23
23
  export const __externref_table_alloc: () => number;
24
24
  export const __wbindgen_export_2: WebAssembly.Table;
@@ -28,6 +28,6 @@ export const __wbindgen_realloc: (a: number, b: number, c: number, d: number) =>
28
28
  export const __wbindgen_export_6: WebAssembly.Table;
29
29
  export const __externref_table_dealloc: (a: number) => void;
30
30
  export const closure571_externref_shim: (a: number, b: number, c: any) => void;
31
- export const closure1165_externref_shim: (a: number, b: number, c: any, d: number, e: any) => void;
32
- export const closure1169_externref_shim: (a: number, b: number, c: any, d: any) => void;
31
+ export const closure1166_externref_shim: (a: number, b: number, c: any, d: number, e: any) => void;
32
+ export const closure1170_externref_shim: (a: number, b: number, c: any, d: any) => void;
33
33
  export const __wbindgen_start: () => void;