@aztec/prover-node 5.0.0-nightly.20260324 → 5.0.0-nightly.20260331

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.
@@ -102,7 +102,7 @@ export class ProverNodePublisher {
102
102
  }
103
103
  // toCheckpoint can't be greater than pending
104
104
  if (toCheckpoint > pending) {
105
- throw new Error(`Cannot submit epoch proof for ${fromCheckpoint}-${toCheckpoint} as pending checkpoint is ${pending}`);
105
+ throw new Error(`Cannot submit epoch proof for ${fromCheckpoint}-${toCheckpoint} as proposed checkpoint is ${pending}`);
106
106
  }
107
107
  // Check the archive for the immediate checkpoint before the epoch
108
108
  const checkpointLog = await this.rollupContract.getCheckpoint(CheckpointNumber(fromCheckpoint - 1));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/prover-node",
3
- "version": "5.0.0-nightly.20260324",
3
+ "version": "5.0.0-nightly.20260331",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./dest/index.js",
@@ -56,28 +56,28 @@
56
56
  ]
57
57
  },
58
58
  "dependencies": {
59
- "@aztec/archiver": "5.0.0-nightly.20260324",
60
- "@aztec/bb-prover": "5.0.0-nightly.20260324",
61
- "@aztec/blob-client": "5.0.0-nightly.20260324",
62
- "@aztec/blob-lib": "5.0.0-nightly.20260324",
63
- "@aztec/constants": "5.0.0-nightly.20260324",
64
- "@aztec/epoch-cache": "5.0.0-nightly.20260324",
65
- "@aztec/ethereum": "5.0.0-nightly.20260324",
66
- "@aztec/foundation": "5.0.0-nightly.20260324",
67
- "@aztec/kv-store": "5.0.0-nightly.20260324",
68
- "@aztec/l1-artifacts": "5.0.0-nightly.20260324",
69
- "@aztec/native": "5.0.0-nightly.20260324",
70
- "@aztec/node-keystore": "5.0.0-nightly.20260324",
71
- "@aztec/node-lib": "5.0.0-nightly.20260324",
72
- "@aztec/noir-protocol-circuits-types": "5.0.0-nightly.20260324",
73
- "@aztec/p2p": "5.0.0-nightly.20260324",
74
- "@aztec/protocol-contracts": "5.0.0-nightly.20260324",
75
- "@aztec/prover-client": "5.0.0-nightly.20260324",
76
- "@aztec/sequencer-client": "5.0.0-nightly.20260324",
77
- "@aztec/simulator": "5.0.0-nightly.20260324",
78
- "@aztec/stdlib": "5.0.0-nightly.20260324",
79
- "@aztec/telemetry-client": "5.0.0-nightly.20260324",
80
- "@aztec/world-state": "5.0.0-nightly.20260324",
59
+ "@aztec/archiver": "5.0.0-nightly.20260331",
60
+ "@aztec/bb-prover": "5.0.0-nightly.20260331",
61
+ "@aztec/blob-client": "5.0.0-nightly.20260331",
62
+ "@aztec/blob-lib": "5.0.0-nightly.20260331",
63
+ "@aztec/constants": "5.0.0-nightly.20260331",
64
+ "@aztec/epoch-cache": "5.0.0-nightly.20260331",
65
+ "@aztec/ethereum": "5.0.0-nightly.20260331",
66
+ "@aztec/foundation": "5.0.0-nightly.20260331",
67
+ "@aztec/kv-store": "5.0.0-nightly.20260331",
68
+ "@aztec/l1-artifacts": "5.0.0-nightly.20260331",
69
+ "@aztec/native": "5.0.0-nightly.20260331",
70
+ "@aztec/node-keystore": "5.0.0-nightly.20260331",
71
+ "@aztec/node-lib": "5.0.0-nightly.20260331",
72
+ "@aztec/noir-protocol-circuits-types": "5.0.0-nightly.20260331",
73
+ "@aztec/p2p": "5.0.0-nightly.20260331",
74
+ "@aztec/protocol-contracts": "5.0.0-nightly.20260331",
75
+ "@aztec/prover-client": "5.0.0-nightly.20260331",
76
+ "@aztec/sequencer-client": "5.0.0-nightly.20260331",
77
+ "@aztec/simulator": "5.0.0-nightly.20260331",
78
+ "@aztec/stdlib": "5.0.0-nightly.20260331",
79
+ "@aztec/telemetry-client": "5.0.0-nightly.20260331",
80
+ "@aztec/world-state": "5.0.0-nightly.20260331",
81
81
  "source-map-support": "^0.5.21",
82
82
  "tslib": "^2.4.0",
83
83
  "viem": "npm:@aztec/viem@2.38.2"
@@ -168,7 +168,7 @@ export class ProverNodePublisher {
168
168
  // toCheckpoint can't be greater than pending
169
169
  if (toCheckpoint > pending) {
170
170
  throw new Error(
171
- `Cannot submit epoch proof for ${fromCheckpoint}-${toCheckpoint} as pending checkpoint is ${pending}`,
171
+ `Cannot submit epoch proof for ${fromCheckpoint}-${toCheckpoint} as proposed checkpoint is ${pending}`,
172
172
  );
173
173
  }
174
174