@aztec/prover-node 3.0.0-nightly.20251023 → 3.0.0-nightly.20251024
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 +22 -22
- package/src/job/epoch-proving-job.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aztec/prover-node",
|
|
3
|
-
"version": "3.0.0-nightly.
|
|
3
|
+
"version": "3.0.0-nightly.20251024",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./dest/index.js",
|
|
@@ -56,27 +56,27 @@
|
|
|
56
56
|
]
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@aztec/archiver": "3.0.0-nightly.
|
|
60
|
-
"@aztec/bb-prover": "3.0.0-nightly.
|
|
61
|
-
"@aztec/blob-lib": "3.0.0-nightly.
|
|
62
|
-
"@aztec/blob-sink": "3.0.0-nightly.
|
|
63
|
-
"@aztec/constants": "3.0.0-nightly.
|
|
64
|
-
"@aztec/epoch-cache": "3.0.0-nightly.
|
|
65
|
-
"@aztec/ethereum": "3.0.0-nightly.
|
|
66
|
-
"@aztec/foundation": "3.0.0-nightly.
|
|
67
|
-
"@aztec/kv-store": "3.0.0-nightly.
|
|
68
|
-
"@aztec/l1-artifacts": "3.0.0-nightly.
|
|
69
|
-
"@aztec/node-keystore": "3.0.0-nightly.
|
|
70
|
-
"@aztec/node-lib": "3.0.0-nightly.
|
|
71
|
-
"@aztec/noir-protocol-circuits-types": "3.0.0-nightly.
|
|
72
|
-
"@aztec/p2p": "3.0.0-nightly.
|
|
73
|
-
"@aztec/protocol-contracts": "3.0.0-nightly.
|
|
74
|
-
"@aztec/prover-client": "3.0.0-nightly.
|
|
75
|
-
"@aztec/sequencer-client": "3.0.0-nightly.
|
|
76
|
-
"@aztec/simulator": "3.0.0-nightly.
|
|
77
|
-
"@aztec/stdlib": "3.0.0-nightly.
|
|
78
|
-
"@aztec/telemetry-client": "3.0.0-nightly.
|
|
79
|
-
"@aztec/world-state": "3.0.0-nightly.
|
|
59
|
+
"@aztec/archiver": "3.0.0-nightly.20251024",
|
|
60
|
+
"@aztec/bb-prover": "3.0.0-nightly.20251024",
|
|
61
|
+
"@aztec/blob-lib": "3.0.0-nightly.20251024",
|
|
62
|
+
"@aztec/blob-sink": "3.0.0-nightly.20251024",
|
|
63
|
+
"@aztec/constants": "3.0.0-nightly.20251024",
|
|
64
|
+
"@aztec/epoch-cache": "3.0.0-nightly.20251024",
|
|
65
|
+
"@aztec/ethereum": "3.0.0-nightly.20251024",
|
|
66
|
+
"@aztec/foundation": "3.0.0-nightly.20251024",
|
|
67
|
+
"@aztec/kv-store": "3.0.0-nightly.20251024",
|
|
68
|
+
"@aztec/l1-artifacts": "3.0.0-nightly.20251024",
|
|
69
|
+
"@aztec/node-keystore": "3.0.0-nightly.20251024",
|
|
70
|
+
"@aztec/node-lib": "3.0.0-nightly.20251024",
|
|
71
|
+
"@aztec/noir-protocol-circuits-types": "3.0.0-nightly.20251024",
|
|
72
|
+
"@aztec/p2p": "3.0.0-nightly.20251024",
|
|
73
|
+
"@aztec/protocol-contracts": "3.0.0-nightly.20251024",
|
|
74
|
+
"@aztec/prover-client": "3.0.0-nightly.20251024",
|
|
75
|
+
"@aztec/sequencer-client": "3.0.0-nightly.20251024",
|
|
76
|
+
"@aztec/simulator": "3.0.0-nightly.20251024",
|
|
77
|
+
"@aztec/stdlib": "3.0.0-nightly.20251024",
|
|
78
|
+
"@aztec/telemetry-client": "3.0.0-nightly.20251024",
|
|
79
|
+
"@aztec/world-state": "3.0.0-nightly.20251024",
|
|
80
80
|
"source-map-support": "^0.5.21",
|
|
81
81
|
"tslib": "^2.4.0",
|
|
82
82
|
"viem": "npm:@spalladino/viem@2.38.2-eip7594.0"
|
|
@@ -274,7 +274,7 @@ export class EpochProvingJob implements Traceable {
|
|
|
274
274
|
*/
|
|
275
275
|
private async createFork(blockNumber: number, l1ToL2Messages: Fr[]) {
|
|
276
276
|
const db = await this.dbProvider.fork(blockNumber);
|
|
277
|
-
const l1ToL2MessagesPadded = padArrayEnd(
|
|
277
|
+
const l1ToL2MessagesPadded = padArrayEnd<Fr, number>(
|
|
278
278
|
l1ToL2Messages,
|
|
279
279
|
Fr.ZERO,
|
|
280
280
|
NUMBER_OF_L1_L2_MESSAGES_PER_ROLLUP,
|