@aztec/noir-acvm_js 0.0.1-commit.d431d1c → 0.0.1-commit.d58ff9d0
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/nodejs/acvm_js.d.ts +143 -125
- package/nodejs/acvm_js.js +678 -718
- package/nodejs/acvm_js_bg.wasm +0 -0
- package/nodejs/acvm_js_bg.wasm.d.ts +15 -14
- package/package.json +9 -9
- package/web/acvm_js.d.ts +190 -170
- package/web/acvm_js.js +721 -720
- package/web/acvm_js_bg.wasm +0 -0
- package/web/acvm_js_bg.wasm.d.ts +15 -14
package/web/acvm_js_bg.wasm
CHANGED
|
Binary file
|
package/web/acvm_js_bg.wasm.d.ts
CHANGED
|
@@ -2,13 +2,6 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
export const memory: WebAssembly.Memory;
|
|
4
4
|
export const buildInfo: () => any;
|
|
5
|
-
export const executeCircuit: (a: number, b: number, c: any, d: any) => any;
|
|
6
|
-
export const executeCircuitWithReturnWitness: (a: number, b: number, c: any, d: any) => any;
|
|
7
|
-
export const executeProgram: (a: number, b: number, c: any, d: any) => any;
|
|
8
|
-
export const compressWitness: (a: any) => [number, number, number, number];
|
|
9
|
-
export const decompressWitness: (a: number, b: number) => [number, number, number];
|
|
10
|
-
export const compressWitnessStack: (a: any) => [number, number, number, number];
|
|
11
|
-
export const decompressWitnessStack: (a: number, b: number) => [number, number, number];
|
|
12
5
|
export const and: (a: any, b: any) => any;
|
|
13
6
|
export const xor: (a: any, b: any) => any;
|
|
14
7
|
export const sha256_compression: (a: number, b: number, c: number, d: number) => [number, number];
|
|
@@ -19,15 +12,23 @@ export const initLogLevel: (a: number, b: number) => [number, number];
|
|
|
19
12
|
export const getReturnWitness: (a: number, b: number, c: any) => [number, number, number];
|
|
20
13
|
export const getPublicParametersWitness: (a: number, b: number, c: any) => [number, number, number];
|
|
21
14
|
export const getPublicWitness: (a: number, b: number, c: any) => [number, number, number];
|
|
15
|
+
export const compressWitness: (a: any) => [number, number, number, number];
|
|
16
|
+
export const decompressWitness: (a: number, b: number) => [number, number, number];
|
|
17
|
+
export const compressWitnessStack: (a: any) => [number, number, number, number];
|
|
18
|
+
export const decompressWitnessStack: (a: number, b: number) => [number, number, number];
|
|
19
|
+
export const executeCircuit: (a: number, b: number, c: any, d: any) => any;
|
|
20
|
+
export const executeCircuitWithReturnWitness: (a: number, b: number, c: any, d: any) => any;
|
|
21
|
+
export const executeProgram: (a: number, b: number, c: any, d: any) => any;
|
|
22
|
+
export const wasm_bindgen__closure__destroy__he7fe1c68b8bc08da: (a: number, b: number) => void;
|
|
23
|
+
export const wasm_bindgen__convert__closures_____invoke__h1ed6897f11022225: (a: number, b: number, c: any, d: number, e: any) => void;
|
|
24
|
+
export const wasm_bindgen__convert__closures_____invoke__h230a0ee16e639a7e: (a: number, b: number, c: any) => [number, number];
|
|
25
|
+
export const wasm_bindgen__convert__closures_____invoke__h46c6efe2f2f65342: (a: number, b: number, c: any, d: any) => void;
|
|
26
|
+
export const wasm_bindgen__convert__closures_____invoke__h46c6efe2f2f65342_21: (a: number, b: number, c: any, d: any) => void;
|
|
27
|
+
export const __wbindgen_malloc: (a: number, b: number) => number;
|
|
28
|
+
export const __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|
|
22
29
|
export const __wbindgen_exn_store: (a: number) => void;
|
|
23
30
|
export const __externref_table_alloc: () => number;
|
|
24
|
-
export const
|
|
31
|
+
export const __wbindgen_externrefs: WebAssembly.Table;
|
|
25
32
|
export const __wbindgen_free: (a: number, b: number, c: number) => void;
|
|
26
|
-
export const __wbindgen_malloc: (a: number, b: number) => number;
|
|
27
|
-
export const __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|
|
28
|
-
export const __wbindgen_export_6: WebAssembly.Table;
|
|
29
33
|
export const __externref_table_dealloc: (a: number) => void;
|
|
30
|
-
export const closure447_externref_shim: (a: number, b: number, c: any) => void;
|
|
31
|
-
export const closure932_externref_shim: (a: number, b: number, c: any, d: number, e: any) => void;
|
|
32
|
-
export const closure936_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
33
34
|
export const __wbindgen_start: () => void;
|