@noir-lang/acvm_js 1.0.0-beta.6-b1142b6.nightly → 1.0.0-beta.7-c17cd41.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 +10 -10
- package/nodejs/acvm_js_bg.wasm +0 -0
- package/package.json +1 -1
- package/web/acvm_js.d.ts +9 -9
- package/web/acvm_js.js +9 -9
- package/web/acvm_js_bg.wasm +0 -0
package/nodejs/acvm_js.d.ts
CHANGED
|
@@ -160,6 +160,15 @@ 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
|
+
|
|
163
172
|
export type ForeignCallInput = string[]
|
|
164
173
|
export type ForeignCallOutput = string | string[]
|
|
165
174
|
|
|
@@ -173,12 +182,3 @@ export type ForeignCallOutput = string | string[]
|
|
|
173
182
|
export type ForeignCallHandler = (name: string, inputs: ForeignCallInput[]) => Promise<ForeignCallOutput[]>;
|
|
174
183
|
|
|
175
184
|
|
|
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
|
@@ -554,12 +554,12 @@ module.exports.__wbg_call_833bed5770ea2041 = function() { return handleError(fun
|
|
|
554
554
|
return ret;
|
|
555
555
|
}, arguments) };
|
|
556
556
|
|
|
557
|
-
module.exports.
|
|
557
|
+
module.exports.__wbg_constructor_80adc7700dc98be7 = function(arg0) {
|
|
558
558
|
const ret = new Error(arg0);
|
|
559
559
|
return ret;
|
|
560
560
|
};
|
|
561
561
|
|
|
562
|
-
module.exports.
|
|
562
|
+
module.exports.__wbg_constructor_d4798d01154f4bbf = function(arg0) {
|
|
563
563
|
const ret = new Error(arg0);
|
|
564
564
|
return ret;
|
|
565
565
|
};
|
|
@@ -675,18 +675,13 @@ module.exports.__wbg_new_23a2665fac83c611 = function(arg0, arg1) {
|
|
|
675
675
|
}
|
|
676
676
|
};
|
|
677
677
|
|
|
678
|
-
module.exports.__wbg_new_2a807b4b89247fc6 = function() {
|
|
679
|
-
const ret = new Map();
|
|
680
|
-
return ret;
|
|
681
|
-
};
|
|
682
|
-
|
|
683
678
|
module.exports.__wbg_new_5e0be73521bc8c17 = function() {
|
|
684
679
|
const ret = new Map();
|
|
685
680
|
return ret;
|
|
686
681
|
};
|
|
687
682
|
|
|
688
|
-
module.exports.
|
|
689
|
-
const ret = new
|
|
683
|
+
module.exports.__wbg_new_63dcb8fa4e4ab11b = function() {
|
|
684
|
+
const ret = new Map();
|
|
690
685
|
return ret;
|
|
691
686
|
};
|
|
692
687
|
|
|
@@ -705,6 +700,11 @@ module.exports.__wbg_new_c68d7209be747379 = function(arg0, arg1) {
|
|
|
705
700
|
return ret;
|
|
706
701
|
};
|
|
707
702
|
|
|
703
|
+
module.exports.__wbg_new_dc45136d2de0bc6a = function() {
|
|
704
|
+
const ret = new Array();
|
|
705
|
+
return ret;
|
|
706
|
+
};
|
|
707
|
+
|
|
708
708
|
module.exports.__wbg_newnoargs_105ed471475aaf50 = function(arg0, arg1) {
|
|
709
709
|
const ret = new Function(getStringFromWasm0(arg0, arg1));
|
|
710
710
|
return ret;
|
|
@@ -814,7 +814,7 @@ module.exports.__wbindgen_cb_drop = function(arg0) {
|
|
|
814
814
|
return ret;
|
|
815
815
|
};
|
|
816
816
|
|
|
817
|
-
module.exports.
|
|
817
|
+
module.exports.__wbindgen_closure_wrapper2096 = function(arg0, arg1, arg2) {
|
|
818
818
|
const ret = makeMutClosure(arg0, arg1, 606, __wbg_adapter_30);
|
|
819
819
|
return ret;
|
|
820
820
|
};
|
package/nodejs/acvm_js_bg.wasm
CHANGED
|
Binary file
|
package/package.json
CHANGED
package/web/acvm_js.d.ts
CHANGED
|
@@ -160,6 +160,15 @@ 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
|
+
|
|
163
172
|
export type ForeignCallInput = string[]
|
|
164
173
|
export type ForeignCallOutput = string | string[]
|
|
165
174
|
|
|
@@ -174,15 +183,6 @@ export type ForeignCallHandler = (name: string, inputs: ForeignCallInput[]) => P
|
|
|
174
183
|
|
|
175
184
|
|
|
176
185
|
|
|
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 {
|
package/web/acvm_js.js
CHANGED
|
@@ -581,11 +581,11 @@ function __wbg_get_imports() {
|
|
|
581
581
|
const ret = arg0.call(arg1, arg2, arg3);
|
|
582
582
|
return ret;
|
|
583
583
|
}, arguments) };
|
|
584
|
-
imports.wbg.
|
|
584
|
+
imports.wbg.__wbg_constructor_80adc7700dc98be7 = function(arg0) {
|
|
585
585
|
const ret = new Error(arg0);
|
|
586
586
|
return ret;
|
|
587
587
|
};
|
|
588
|
-
imports.wbg.
|
|
588
|
+
imports.wbg.__wbg_constructor_d4798d01154f4bbf = function(arg0) {
|
|
589
589
|
const ret = new Error(arg0);
|
|
590
590
|
return ret;
|
|
591
591
|
};
|
|
@@ -686,16 +686,12 @@ function __wbg_get_imports() {
|
|
|
686
686
|
state0.a = state0.b = 0;
|
|
687
687
|
}
|
|
688
688
|
};
|
|
689
|
-
imports.wbg.__wbg_new_2a807b4b89247fc6 = function() {
|
|
690
|
-
const ret = new Map();
|
|
691
|
-
return ret;
|
|
692
|
-
};
|
|
693
689
|
imports.wbg.__wbg_new_5e0be73521bc8c17 = function() {
|
|
694
690
|
const ret = new Map();
|
|
695
691
|
return ret;
|
|
696
692
|
};
|
|
697
|
-
imports.wbg.
|
|
698
|
-
const ret = new
|
|
693
|
+
imports.wbg.__wbg_new_63dcb8fa4e4ab11b = function() {
|
|
694
|
+
const ret = new Map();
|
|
699
695
|
return ret;
|
|
700
696
|
};
|
|
701
697
|
imports.wbg.__wbg_new_78feb108b6472713 = function() {
|
|
@@ -710,6 +706,10 @@ function __wbg_get_imports() {
|
|
|
710
706
|
const ret = new Error(getStringFromWasm0(arg0, arg1));
|
|
711
707
|
return ret;
|
|
712
708
|
};
|
|
709
|
+
imports.wbg.__wbg_new_dc45136d2de0bc6a = function() {
|
|
710
|
+
const ret = new Array();
|
|
711
|
+
return ret;
|
|
712
|
+
};
|
|
713
713
|
imports.wbg.__wbg_newnoargs_105ed471475aaf50 = function(arg0, arg1) {
|
|
714
714
|
const ret = new Function(getStringFromWasm0(arg0, arg1));
|
|
715
715
|
return ret;
|
|
@@ -798,7 +798,7 @@ function __wbg_get_imports() {
|
|
|
798
798
|
const ret = false;
|
|
799
799
|
return ret;
|
|
800
800
|
};
|
|
801
|
-
imports.wbg.
|
|
801
|
+
imports.wbg.__wbindgen_closure_wrapper2096 = function(arg0, arg1, arg2) {
|
|
802
802
|
const ret = makeMutClosure(arg0, arg1, 606, __wbg_adapter_30);
|
|
803
803
|
return ret;
|
|
804
804
|
};
|
package/web/acvm_js_bg.wasm
CHANGED
|
Binary file
|