@aztec/prover-node 5.0.0-nightly.20260611 → 5.0.0-nightly.20260613

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.
@@ -531,7 +531,7 @@ import { SessionManager } from './session-manager.js';
531
531
  await this.handleCheckpointEvent(event.checkpoint);
532
532
  break;
533
533
  case 'chain-pruned':
534
- await this.handlePruneEvent(event.checkpoint);
534
+ await this.handlePruneEvent(event.checkpointed.checkpoint);
535
535
  break;
536
536
  case 'chain-proven':
537
537
  this.publishingService?.onChainProven(BlockNumber(event.block.number));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/prover-node",
3
- "version": "5.0.0-nightly.20260611",
3
+ "version": "5.0.0-nightly.20260613",
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.20260611",
60
- "@aztec/bb-prover": "5.0.0-nightly.20260611",
61
- "@aztec/blob-client": "5.0.0-nightly.20260611",
62
- "@aztec/blob-lib": "5.0.0-nightly.20260611",
63
- "@aztec/constants": "5.0.0-nightly.20260611",
64
- "@aztec/epoch-cache": "5.0.0-nightly.20260611",
65
- "@aztec/ethereum": "5.0.0-nightly.20260611",
66
- "@aztec/foundation": "5.0.0-nightly.20260611",
67
- "@aztec/kv-store": "5.0.0-nightly.20260611",
68
- "@aztec/l1-artifacts": "5.0.0-nightly.20260611",
69
- "@aztec/native": "5.0.0-nightly.20260611",
70
- "@aztec/node-keystore": "5.0.0-nightly.20260611",
71
- "@aztec/node-lib": "5.0.0-nightly.20260611",
72
- "@aztec/noir-protocol-circuits-types": "5.0.0-nightly.20260611",
73
- "@aztec/p2p": "5.0.0-nightly.20260611",
74
- "@aztec/protocol-contracts": "5.0.0-nightly.20260611",
75
- "@aztec/prover-client": "5.0.0-nightly.20260611",
76
- "@aztec/sequencer-client": "5.0.0-nightly.20260611",
77
- "@aztec/simulator": "5.0.0-nightly.20260611",
78
- "@aztec/stdlib": "5.0.0-nightly.20260611",
79
- "@aztec/telemetry-client": "5.0.0-nightly.20260611",
80
- "@aztec/world-state": "5.0.0-nightly.20260611",
59
+ "@aztec/archiver": "5.0.0-nightly.20260613",
60
+ "@aztec/bb-prover": "5.0.0-nightly.20260613",
61
+ "@aztec/blob-client": "5.0.0-nightly.20260613",
62
+ "@aztec/blob-lib": "5.0.0-nightly.20260613",
63
+ "@aztec/constants": "5.0.0-nightly.20260613",
64
+ "@aztec/epoch-cache": "5.0.0-nightly.20260613",
65
+ "@aztec/ethereum": "5.0.0-nightly.20260613",
66
+ "@aztec/foundation": "5.0.0-nightly.20260613",
67
+ "@aztec/kv-store": "5.0.0-nightly.20260613",
68
+ "@aztec/l1-artifacts": "5.0.0-nightly.20260613",
69
+ "@aztec/native": "5.0.0-nightly.20260613",
70
+ "@aztec/node-keystore": "5.0.0-nightly.20260613",
71
+ "@aztec/node-lib": "5.0.0-nightly.20260613",
72
+ "@aztec/noir-protocol-circuits-types": "5.0.0-nightly.20260613",
73
+ "@aztec/p2p": "5.0.0-nightly.20260613",
74
+ "@aztec/protocol-contracts": "5.0.0-nightly.20260613",
75
+ "@aztec/prover-client": "5.0.0-nightly.20260613",
76
+ "@aztec/sequencer-client": "5.0.0-nightly.20260613",
77
+ "@aztec/simulator": "5.0.0-nightly.20260613",
78
+ "@aztec/stdlib": "5.0.0-nightly.20260613",
79
+ "@aztec/telemetry-client": "5.0.0-nightly.20260613",
80
+ "@aztec/world-state": "5.0.0-nightly.20260613",
81
81
  "source-map-support": "^0.5.21",
82
82
  "tslib": "^2.4.0",
83
83
  "viem": "npm:@aztec/viem@2.38.2"
@@ -222,7 +222,7 @@ export class ProverNode implements L2BlockStreamEventHandler, ProverNodeApi, Tra
222
222
  await this.handleCheckpointEvent(event.checkpoint);
223
223
  break;
224
224
  case 'chain-pruned':
225
- await this.handlePruneEvent(event.checkpoint);
225
+ await this.handlePruneEvent(event.checkpointed.checkpoint);
226
226
  break;
227
227
  case 'chain-proven':
228
228
  this.publishingService?.onChainProven(BlockNumber(event.block.number));