@aztec/prover-client 3.0.0-nightly.20251119 → 3.0.0-nightly.20251120
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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { SpongeBlob, encodeCheckpointBlobData } from '@aztec/blob-lib';
|
|
2
|
-
import {
|
|
2
|
+
import { BLOBS_PER_CHECKPOINT, FIELDS_PER_BLOB, NUM_MSGS_PER_BASE_PARITY } from '@aztec/constants';
|
|
3
3
|
import { padArrayEnd } from '@aztec/foundation/collection';
|
|
4
4
|
import { BLS12Point, Fr } from '@aztec/foundation/fields';
|
|
5
5
|
import { UnbalancedTreeStore } from '@aztec/foundation/trees';
|
|
@@ -165,8 +165,8 @@ export class CheckpointProvingState {
|
|
|
165
165
|
previousArchiveSiblingPath: this.lastArchiveSiblingPath,
|
|
166
166
|
startBlobAccumulator: this.startBlobAccumulator.toBlobAccumulator(),
|
|
167
167
|
finalBlobChallenges: this.finalBlobBatchingChallenges,
|
|
168
|
-
blobFields: padArrayEnd(blobFields, Fr.ZERO, FIELDS_PER_BLOB *
|
|
169
|
-
blobCommitments: padArrayEnd(blobCommitments, BLS12Point.ZERO,
|
|
168
|
+
blobFields: padArrayEnd(blobFields, Fr.ZERO, FIELDS_PER_BLOB * BLOBS_PER_CHECKPOINT),
|
|
169
|
+
blobCommitments: padArrayEnd(blobCommitments, BLS12Point.ZERO, BLOBS_PER_CHECKPOINT),
|
|
170
170
|
blobsHash
|
|
171
171
|
});
|
|
172
172
|
const [left, right] = nonEmptyProofs.map((p)=>toProofData(p));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aztec/prover-client",
|
|
3
|
-
"version": "3.0.0-nightly.
|
|
3
|
+
"version": "3.0.0-nightly.20251120",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./dest/index.js",
|
|
@@ -67,19 +67,19 @@
|
|
|
67
67
|
]
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
|
-
"@aztec/bb-prover": "3.0.0-nightly.
|
|
71
|
-
"@aztec/blob-lib": "3.0.0-nightly.
|
|
72
|
-
"@aztec/constants": "3.0.0-nightly.
|
|
73
|
-
"@aztec/ethereum": "3.0.0-nightly.
|
|
74
|
-
"@aztec/foundation": "3.0.0-nightly.
|
|
75
|
-
"@aztec/kv-store": "3.0.0-nightly.
|
|
76
|
-
"@aztec/noir-protocol-circuits-types": "3.0.0-nightly.
|
|
77
|
-
"@aztec/noir-types": "3.0.0-nightly.
|
|
78
|
-
"@aztec/protocol-contracts": "3.0.0-nightly.
|
|
79
|
-
"@aztec/simulator": "3.0.0-nightly.
|
|
80
|
-
"@aztec/stdlib": "3.0.0-nightly.
|
|
81
|
-
"@aztec/telemetry-client": "3.0.0-nightly.
|
|
82
|
-
"@aztec/world-state": "3.0.0-nightly.
|
|
70
|
+
"@aztec/bb-prover": "3.0.0-nightly.20251120",
|
|
71
|
+
"@aztec/blob-lib": "3.0.0-nightly.20251120",
|
|
72
|
+
"@aztec/constants": "3.0.0-nightly.20251120",
|
|
73
|
+
"@aztec/ethereum": "3.0.0-nightly.20251120",
|
|
74
|
+
"@aztec/foundation": "3.0.0-nightly.20251120",
|
|
75
|
+
"@aztec/kv-store": "3.0.0-nightly.20251120",
|
|
76
|
+
"@aztec/noir-protocol-circuits-types": "3.0.0-nightly.20251120",
|
|
77
|
+
"@aztec/noir-types": "3.0.0-nightly.20251120",
|
|
78
|
+
"@aztec/protocol-contracts": "3.0.0-nightly.20251120",
|
|
79
|
+
"@aztec/simulator": "3.0.0-nightly.20251120",
|
|
80
|
+
"@aztec/stdlib": "3.0.0-nightly.20251120",
|
|
81
|
+
"@aztec/telemetry-client": "3.0.0-nightly.20251120",
|
|
82
|
+
"@aztec/world-state": "3.0.0-nightly.20251120",
|
|
83
83
|
"@google-cloud/storage": "^7.15.0",
|
|
84
84
|
"@iarna/toml": "^2.2.5",
|
|
85
85
|
"commander": "^12.1.0",
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
"zod": "^3.23.8"
|
|
90
90
|
},
|
|
91
91
|
"devDependencies": {
|
|
92
|
-
"@aztec/noir-contracts.js": "3.0.0-nightly.
|
|
92
|
+
"@aztec/noir-contracts.js": "3.0.0-nightly.20251120",
|
|
93
93
|
"@jest/globals": "^30.0.0",
|
|
94
94
|
"@types/jest": "^30.0.0",
|
|
95
95
|
"@types/node": "^22.15.17",
|
|
@@ -6,7 +6,7 @@ import {
|
|
|
6
6
|
} from '@aztec/blob-lib';
|
|
7
7
|
import {
|
|
8
8
|
type ARCHIVE_HEIGHT,
|
|
9
|
-
|
|
9
|
+
BLOBS_PER_CHECKPOINT,
|
|
10
10
|
FIELDS_PER_BLOB,
|
|
11
11
|
type L1_TO_L2_MSG_SUBTREE_ROOT_SIBLING_PATH_LENGTH,
|
|
12
12
|
type NESTED_RECURSIVE_ROLLUP_HONK_PROOF_LENGTH,
|
|
@@ -253,8 +253,8 @@ export class CheckpointProvingState {
|
|
|
253
253
|
previousArchiveSiblingPath: this.lastArchiveSiblingPath,
|
|
254
254
|
startBlobAccumulator: this.startBlobAccumulator.toBlobAccumulator(),
|
|
255
255
|
finalBlobChallenges: this.finalBlobBatchingChallenges,
|
|
256
|
-
blobFields: padArrayEnd(blobFields, Fr.ZERO, FIELDS_PER_BLOB *
|
|
257
|
-
blobCommitments: padArrayEnd(blobCommitments, BLS12Point.ZERO,
|
|
256
|
+
blobFields: padArrayEnd(blobFields, Fr.ZERO, FIELDS_PER_BLOB * BLOBS_PER_CHECKPOINT),
|
|
257
|
+
blobCommitments: padArrayEnd(blobCommitments, BLS12Point.ZERO, BLOBS_PER_CHECKPOINT),
|
|
258
258
|
blobsHash,
|
|
259
259
|
});
|
|
260
260
|
|