@aztec/noir-noirc_abi 4.0.0-nightly.20260107 → 4.0.0-nightly.20260110
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/noirc_abi_wasm.d.ts +3 -3
- package/nodejs/noirc_abi_wasm.js +3 -3
- package/nodejs/noirc_abi_wasm_bg.wasm +0 -0
- package/nodejs/noirc_abi_wasm_bg.wasm.d.ts +1 -1
- package/package.json +4 -4
- package/web/noirc_abi_wasm.d.ts +4 -4
- package/web/noirc_abi_wasm.js +3 -3
- package/web/noirc_abi_wasm_bg.wasm +0 -0
- package/web/noirc_abi_wasm_bg.wasm.d.ts +1 -1
|
@@ -5,11 +5,11 @@ export function abiDecode(abi: Abi, witness_map: WitnessMap): any;
|
|
|
5
5
|
export function serializeWitness(witness_map: WitnessMap): Uint8Array;
|
|
6
6
|
export function abiDecodeError(abi: Abi, raw_error: RawAssertionPayload): any;
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
import { Field, InputValue, InputMap, Visibility, Sign, AbiType, AbiParameter, Abi, WitnessMap, RawAssertionPayload } from "@aztec/noir-types";
|
|
9
|
+
export { Field, InputValue, InputMap, Visibility, Sign, AbiType, AbiParameter, Abi, WitnessMap, RawAssertionPayload } from "@aztec/noir-types";
|
|
9
10
|
|
|
10
11
|
|
|
11
12
|
|
|
12
|
-
|
|
13
|
-
export { Field, InputValue, InputMap, Visibility, Sign, AbiType, AbiParameter, Abi, WitnessMap, RawAssertionPayload } from "@aztec/noir-types";
|
|
13
|
+
export type ABIError = Error;
|
|
14
14
|
|
|
15
15
|
|
package/nodejs/noirc_abi_wasm.js
CHANGED
|
@@ -170,10 +170,10 @@ module.exports.abiDecodeError = function(abi, raw_error) {
|
|
|
170
170
|
};
|
|
171
171
|
|
|
172
172
|
function __wbg_adapter_30(arg0, arg1, arg2, arg3) {
|
|
173
|
-
wasm.
|
|
173
|
+
wasm.closure236_externref_shim(arg0, arg1, arg2, arg3);
|
|
174
174
|
}
|
|
175
175
|
|
|
176
|
-
module.exports.
|
|
176
|
+
module.exports.__wbg_constructor_3592dabf8a4edaea = function(arg0) {
|
|
177
177
|
const ret = new Error(arg0);
|
|
178
178
|
return ret;
|
|
179
179
|
};
|
|
@@ -213,7 +213,7 @@ module.exports.__wbg_new_8a6f238a6ece86ea = function() {
|
|
|
213
213
|
return ret;
|
|
214
214
|
};
|
|
215
215
|
|
|
216
|
-
module.exports.
|
|
216
|
+
module.exports.__wbg_new_dc2902000358ae4d = function() {
|
|
217
217
|
const ret = new Map();
|
|
218
218
|
return ret;
|
|
219
219
|
};
|
|
Binary file
|
|
@@ -12,5 +12,5 @@ export const __wbindgen_export_3: WebAssembly.Table;
|
|
|
12
12
|
export const __wbindgen_malloc: (a: number, b: number) => number;
|
|
13
13
|
export const __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|
|
14
14
|
export const __externref_table_dealloc: (a: number) => void;
|
|
15
|
-
export const
|
|
15
|
+
export const closure236_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
16
16
|
export const __wbindgen_start: () => void;
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"contributors": [
|
|
4
4
|
"The Noir Team <team@noir-lang.org>"
|
|
5
5
|
],
|
|
6
|
-
"version": "4.0.0-nightly.
|
|
6
|
+
"version": "4.0.0-nightly.20260110",
|
|
7
7
|
"license": "(MIT OR Apache-2.0)",
|
|
8
8
|
"homepage": "https://noir-lang.org/",
|
|
9
9
|
"repository": {
|
|
@@ -36,14 +36,14 @@
|
|
|
36
36
|
"lint": "NODE_NO_WARNINGS=1 eslint . --max-warnings 0"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@aztec/noir-types": "4.0.0-nightly.
|
|
39
|
+
"@aztec/noir-types": "4.0.0-nightly.20260110"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@esm-bundle/chai": "^4.3.4-fix.0",
|
|
43
43
|
"@web/dev-server-esbuild": "^1.0.4",
|
|
44
44
|
"@web/test-runner": "^0.20.2",
|
|
45
45
|
"@web/test-runner-playwright": "^0.11.1",
|
|
46
|
-
"eslint": "^9.39.
|
|
47
|
-
"mocha": "^11.5
|
|
46
|
+
"eslint": "^9.39.2",
|
|
47
|
+
"mocha": "^11.7.5"
|
|
48
48
|
}
|
|
49
49
|
}
|
package/web/noirc_abi_wasm.d.ts
CHANGED
|
@@ -5,12 +5,12 @@ export function abiDecode(abi: Abi, witness_map: WitnessMap): any;
|
|
|
5
5
|
export function serializeWitness(witness_map: WitnessMap): Uint8Array;
|
|
6
6
|
export function abiDecodeError(abi: Abi, raw_error: RawAssertionPayload): any;
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
import { Field, InputValue, InputMap, Visibility, Sign, AbiType, AbiParameter, Abi, WitnessMap, RawAssertionPayload } from "@aztec/noir-types";
|
|
9
|
+
export { Field, InputValue, InputMap, Visibility, Sign, AbiType, AbiParameter, Abi, WitnessMap, RawAssertionPayload } from "@aztec/noir-types";
|
|
9
10
|
|
|
10
11
|
|
|
11
12
|
|
|
12
|
-
|
|
13
|
-
export { Field, InputValue, InputMap, Visibility, Sign, AbiType, AbiParameter, Abi, WitnessMap, RawAssertionPayload } from "@aztec/noir-types";
|
|
13
|
+
export type ABIError = Error;
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
@@ -29,7 +29,7 @@ export interface InitOutput {
|
|
|
29
29
|
readonly __wbindgen_malloc: (a: number, b: number) => number;
|
|
30
30
|
readonly __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|
|
31
31
|
readonly __externref_table_dealloc: (a: number) => void;
|
|
32
|
-
readonly
|
|
32
|
+
readonly closure236_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
33
33
|
readonly __wbindgen_start: () => void;
|
|
34
34
|
}
|
|
35
35
|
|
package/web/noirc_abi_wasm.js
CHANGED
|
@@ -166,7 +166,7 @@ export function abiDecodeError(abi, raw_error) {
|
|
|
166
166
|
}
|
|
167
167
|
|
|
168
168
|
function __wbg_adapter_30(arg0, arg1, arg2, arg3) {
|
|
169
|
-
wasm.
|
|
169
|
+
wasm.closure236_externref_shim(arg0, arg1, arg2, arg3);
|
|
170
170
|
}
|
|
171
171
|
|
|
172
172
|
async function __wbg_load(module, imports) {
|
|
@@ -203,7 +203,7 @@ async function __wbg_load(module, imports) {
|
|
|
203
203
|
function __wbg_get_imports() {
|
|
204
204
|
const imports = {};
|
|
205
205
|
imports.wbg = {};
|
|
206
|
-
imports.wbg.
|
|
206
|
+
imports.wbg.__wbg_constructor_3592dabf8a4edaea = function(arg0) {
|
|
207
207
|
const ret = new Error(arg0);
|
|
208
208
|
return ret;
|
|
209
209
|
};
|
|
@@ -239,7 +239,7 @@ function __wbg_get_imports() {
|
|
|
239
239
|
const ret = new Error();
|
|
240
240
|
return ret;
|
|
241
241
|
};
|
|
242
|
-
imports.wbg.
|
|
242
|
+
imports.wbg.__wbg_new_dc2902000358ae4d = function() {
|
|
243
243
|
const ret = new Map();
|
|
244
244
|
return ret;
|
|
245
245
|
};
|
|
Binary file
|
|
@@ -12,5 +12,5 @@ export const __wbindgen_export_3: WebAssembly.Table;
|
|
|
12
12
|
export const __wbindgen_malloc: (a: number, b: number) => number;
|
|
13
13
|
export const __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|
|
14
14
|
export const __externref_table_dealloc: (a: number) => void;
|
|
15
|
-
export const
|
|
15
|
+
export const closure236_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
16
16
|
export const __wbindgen_start: () => void;
|