@noir-lang/acvm_js 1.0.0-beta.6-5984575.nightly → 1.0.0-beta.6-52b2c32.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 +1 -1
- package/nodejs/acvm_js_bg.wasm +0 -0
- package/package.json +5 -5
- package/web/acvm_js.d.ts +9 -9
- package/web/acvm_js.js +1 -1
- 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
|
@@ -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_wrapper2098 = 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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@noir-lang/acvm_js",
|
|
3
|
-
"version": "1.0.0-beta.6-
|
|
3
|
+
"version": "1.0.0-beta.6-52b2c32.nightly",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -39,12 +39,12 @@
|
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@esm-bundle/chai": "^4.3.4-fix.0",
|
|
41
41
|
"@web/dev-server-esbuild": "^0.3.6",
|
|
42
|
-
"@web/test-runner": "^0.
|
|
42
|
+
"@web/test-runner": "^0.20.2",
|
|
43
43
|
"@web/test-runner-playwright": "^0.11.0",
|
|
44
44
|
"chai": "^4.4.1",
|
|
45
|
-
"eslint": "^9.
|
|
46
|
-
"eslint-plugin-prettier": "^5.
|
|
47
|
-
"mocha": "^11.
|
|
45
|
+
"eslint": "^9.28.0",
|
|
46
|
+
"eslint-plugin-prettier": "^5.4.1",
|
|
47
|
+
"mocha": "^11.5.0",
|
|
48
48
|
"prettier": "3.5.3",
|
|
49
49
|
"ts-node": "^10.9.2",
|
|
50
50
|
"typescript": "^5.8.3"
|
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
|
@@ -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_wrapper2098 = 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
|