@noir-lang/acvm_js 1.0.0-beta.6-95c9d28.nightly → 1.0.0-beta.6-9580a12.nightly
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 +9 -9
- package/nodejs/acvm_js.js +2 -2
- package/nodejs/acvm_js_bg.wasm +0 -0
- package/nodejs/acvm_js_bg.wasm.d.ts +2 -2
- package/package.json +1 -1
- package/web/acvm_js.d.ts +11 -11
- package/web/acvm_js.js +2 -2
- package/web/acvm_js_bg.wasm +0 -0
- package/web/acvm_js_bg.wasm.d.ts +2 -2
package/nodejs/acvm_js.d.ts
CHANGED
|
@@ -160,15 +160,6 @@ export type SolvedAndReturnWitness = {
|
|
|
160
160
|
|
|
161
161
|
|
|
162
162
|
|
|
163
|
-
export type StackItem = {
|
|
164
|
-
index: number;
|
|
165
|
-
witness: WitnessMap;
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
export type WitnessStack = Array<StackItem>;
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
163
|
export type ForeignCallInput = string[]
|
|
173
164
|
export type ForeignCallOutput = string | string[]
|
|
174
165
|
|
|
@@ -182,3 +173,12 @@ export type ForeignCallOutput = string | string[]
|
|
|
182
173
|
export type ForeignCallHandler = (name: string, inputs: ForeignCallInput[]) => Promise<ForeignCallOutput[]>;
|
|
183
174
|
|
|
184
175
|
|
|
176
|
+
|
|
177
|
+
export type StackItem = {
|
|
178
|
+
index: number;
|
|
179
|
+
witness: WitnessMap;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
export type WitnessStack = Array<StackItem>;
|
|
183
|
+
|
|
184
|
+
|
package/nodejs/acvm_js.js
CHANGED
|
@@ -532,11 +532,11 @@ function __wbg_adapter_30(arg0, arg1, arg2) {
|
|
|
532
532
|
}
|
|
533
533
|
|
|
534
534
|
function __wbg_adapter_89(arg0, arg1, arg2, arg3, arg4) {
|
|
535
|
-
wasm.
|
|
535
|
+
wasm.closure1252_externref_shim(arg0, arg1, arg2, arg3, arg4);
|
|
536
536
|
}
|
|
537
537
|
|
|
538
538
|
function __wbg_adapter_110(arg0, arg1, arg2, arg3) {
|
|
539
|
-
wasm.
|
|
539
|
+
wasm.closure1256_externref_shim(arg0, arg1, arg2, arg3);
|
|
540
540
|
}
|
|
541
541
|
|
|
542
542
|
module.exports.__wbg_call_672a4d21634d4a24 = function() { return handleError(function (arg0, arg1) {
|
package/nodejs/acvm_js_bg.wasm
CHANGED
|
Binary file
|
|
@@ -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 closure605_externref_shim: (a: number, b: number, c: any) => void;
|
|
31
|
-
export const
|
|
32
|
-
export const
|
|
31
|
+
export const closure1252_externref_shim: (a: number, b: number, c: any, d: number, e: any) => void;
|
|
32
|
+
export const closure1256_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
33
33
|
export const __wbindgen_start: () => void;
|
package/package.json
CHANGED
package/web/acvm_js.d.ts
CHANGED
|
@@ -160,15 +160,6 @@ export type SolvedAndReturnWitness = {
|
|
|
160
160
|
|
|
161
161
|
|
|
162
162
|
|
|
163
|
-
export type StackItem = {
|
|
164
|
-
index: number;
|
|
165
|
-
witness: WitnessMap;
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
export type WitnessStack = Array<StackItem>;
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
163
|
export type ForeignCallInput = string[]
|
|
173
164
|
export type ForeignCallOutput = string | string[]
|
|
174
165
|
|
|
@@ -183,6 +174,15 @@ export type ForeignCallHandler = (name: string, inputs: ForeignCallInput[]) => P
|
|
|
183
174
|
|
|
184
175
|
|
|
185
176
|
|
|
177
|
+
export type StackItem = {
|
|
178
|
+
index: number;
|
|
179
|
+
witness: WitnessMap;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
export type WitnessStack = Array<StackItem>;
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
|
|
186
186
|
export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembly.Module;
|
|
187
187
|
|
|
188
188
|
export interface InitOutput {
|
|
@@ -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 closure605_externref_shim: (a: number, b: number, c: any) => void;
|
|
217
|
-
readonly
|
|
218
|
-
readonly
|
|
217
|
+
readonly closure1252_externref_shim: (a: number, b: number, c: any, d: number, e: any) => void;
|
|
218
|
+
readonly closure1256_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
|
@@ -528,11 +528,11 @@ function __wbg_adapter_30(arg0, arg1, arg2) {
|
|
|
528
528
|
}
|
|
529
529
|
|
|
530
530
|
function __wbg_adapter_89(arg0, arg1, arg2, arg3, arg4) {
|
|
531
|
-
wasm.
|
|
531
|
+
wasm.closure1252_externref_shim(arg0, arg1, arg2, arg3, arg4);
|
|
532
532
|
}
|
|
533
533
|
|
|
534
534
|
function __wbg_adapter_110(arg0, arg1, arg2, arg3) {
|
|
535
|
-
wasm.
|
|
535
|
+
wasm.closure1256_externref_shim(arg0, arg1, arg2, arg3);
|
|
536
536
|
}
|
|
537
537
|
|
|
538
538
|
async function __wbg_load(module, imports) {
|
package/web/acvm_js_bg.wasm
CHANGED
|
Binary file
|
package/web/acvm_js_bg.wasm.d.ts
CHANGED
|
@@ -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 closure605_externref_shim: (a: number, b: number, c: any) => void;
|
|
31
|
-
export const
|
|
32
|
-
export const
|
|
31
|
+
export const closure1252_externref_shim: (a: number, b: number, c: any, d: number, e: any) => void;
|
|
32
|
+
export const closure1256_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
33
33
|
export const __wbindgen_start: () => void;
|