@aztec/prover-client 1.0.0-nightly.20250617 → 1.0.0-nightly.20250618
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aztec/prover-client",
|
|
3
|
-
"version": "1.0.0-nightly.
|
|
3
|
+
"version": "1.0.0-nightly.20250618",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./dest/index.js",
|
|
@@ -62,22 +62,25 @@
|
|
|
62
62
|
"setupFiles": [
|
|
63
63
|
"../../foundation/src/jest/setup.mjs"
|
|
64
64
|
],
|
|
65
|
-
"testEnvironment": "../../foundation/src/jest/env.mjs"
|
|
65
|
+
"testEnvironment": "../../foundation/src/jest/env.mjs",
|
|
66
|
+
"setupFilesAfterEnv": [
|
|
67
|
+
"../../foundation/src/jest/setupAfterEnv.mjs"
|
|
68
|
+
]
|
|
66
69
|
},
|
|
67
70
|
"dependencies": {
|
|
68
|
-
"@aztec/bb-prover": "1.0.0-nightly.
|
|
69
|
-
"@aztec/blob-lib": "1.0.0-nightly.
|
|
70
|
-
"@aztec/constants": "1.0.0-nightly.
|
|
71
|
-
"@aztec/ethereum": "1.0.0-nightly.
|
|
72
|
-
"@aztec/foundation": "1.0.0-nightly.
|
|
73
|
-
"@aztec/kv-store": "1.0.0-nightly.
|
|
74
|
-
"@aztec/noir-protocol-circuits-types": "1.0.0-nightly.
|
|
75
|
-
"@aztec/noir-types": "1.0.0-nightly.
|
|
76
|
-
"@aztec/protocol-contracts": "1.0.0-nightly.
|
|
77
|
-
"@aztec/simulator": "1.0.0-nightly.
|
|
78
|
-
"@aztec/stdlib": "1.0.0-nightly.
|
|
79
|
-
"@aztec/telemetry-client": "1.0.0-nightly.
|
|
80
|
-
"@aztec/world-state": "1.0.0-nightly.
|
|
71
|
+
"@aztec/bb-prover": "1.0.0-nightly.20250618",
|
|
72
|
+
"@aztec/blob-lib": "1.0.0-nightly.20250618",
|
|
73
|
+
"@aztec/constants": "1.0.0-nightly.20250618",
|
|
74
|
+
"@aztec/ethereum": "1.0.0-nightly.20250618",
|
|
75
|
+
"@aztec/foundation": "1.0.0-nightly.20250618",
|
|
76
|
+
"@aztec/kv-store": "1.0.0-nightly.20250618",
|
|
77
|
+
"@aztec/noir-protocol-circuits-types": "1.0.0-nightly.20250618",
|
|
78
|
+
"@aztec/noir-types": "1.0.0-nightly.20250618",
|
|
79
|
+
"@aztec/protocol-contracts": "1.0.0-nightly.20250618",
|
|
80
|
+
"@aztec/simulator": "1.0.0-nightly.20250618",
|
|
81
|
+
"@aztec/stdlib": "1.0.0-nightly.20250618",
|
|
82
|
+
"@aztec/telemetry-client": "1.0.0-nightly.20250618",
|
|
83
|
+
"@aztec/world-state": "1.0.0-nightly.20250618",
|
|
81
84
|
"@google-cloud/storage": "^7.15.0",
|
|
82
85
|
"@iarna/toml": "^2.2.5",
|
|
83
86
|
"commander": "^12.1.0",
|
|
@@ -87,7 +90,7 @@
|
|
|
87
90
|
"zod": "^3.23.8"
|
|
88
91
|
},
|
|
89
92
|
"devDependencies": {
|
|
90
|
-
"@aztec/noir-contracts.js": "1.0.0-nightly.
|
|
93
|
+
"@aztec/noir-contracts.js": "1.0.0-nightly.20250618",
|
|
91
94
|
"@jest/globals": "^30.0.0",
|
|
92
95
|
"@types/jest": "^29.5.0",
|
|
93
96
|
"@types/node": "^22.15.17",
|
|
@@ -234,7 +234,7 @@ export async function getPublicDataHint(db: MerkleTreeWriteOperations, leafSlot:
|
|
|
234
234
|
throw new Error(`Cannot find the previous value index for public data ${leafSlot}.`);
|
|
235
235
|
}
|
|
236
236
|
|
|
237
|
-
const siblingPath = await db.getSiblingPath
|
|
237
|
+
const siblingPath = await db.getSiblingPath(MerkleTreeId.PUBLIC_DATA_TREE, index);
|
|
238
238
|
const membershipWitness = new MembershipWitness(PUBLIC_DATA_TREE_HEIGHT, index, siblingPath.toTuple());
|
|
239
239
|
|
|
240
240
|
const leafPreimage = (await db.getLeafPreimage(MerkleTreeId.PUBLIC_DATA_TREE, index)) as PublicDataTreeLeafPreimage;
|