@aztec/validator-client 5.0.0-nightly.20260705 → 5.0.0-nightly.20260707

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.
@@ -499,7 +499,7 @@ const MAX_TRACKED_INVALID_PROPOSAL_SLOTS = 1000;
499
499
  };
500
500
  }
501
501
  // If we succeeded, push this block into the archiver (unless disabled)
502
- if (reexecutionResult?.block && this.config.skipPushProposedBlocksToArchiver === false) {
502
+ if (reexecutionResult?.block && !this.config.skipPushProposedBlocksToArchiver) {
503
503
  await this.blockSource.addBlock(reexecutionResult.block);
504
504
  }
505
505
  this.log.info(`Successfully re-executed block ${blockNumber} proposal at index ${proposal.indexWithinCheckpoint} on slot ${slotNumber}`, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/validator-client",
3
- "version": "5.0.0-nightly.20260705",
3
+ "version": "5.0.0-nightly.20260707",
4
4
  "main": "dest/index.js",
5
5
  "type": "module",
6
6
  "exports": {
@@ -64,30 +64,30 @@
64
64
  ]
65
65
  },
66
66
  "dependencies": {
67
- "@aztec/blob-client": "5.0.0-nightly.20260705",
68
- "@aztec/blob-lib": "5.0.0-nightly.20260705",
69
- "@aztec/constants": "5.0.0-nightly.20260705",
70
- "@aztec/epoch-cache": "5.0.0-nightly.20260705",
71
- "@aztec/ethereum": "5.0.0-nightly.20260705",
72
- "@aztec/foundation": "5.0.0-nightly.20260705",
73
- "@aztec/node-keystore": "5.0.0-nightly.20260705",
74
- "@aztec/noir-protocol-circuits-types": "5.0.0-nightly.20260705",
75
- "@aztec/p2p": "5.0.0-nightly.20260705",
76
- "@aztec/protocol-contracts": "5.0.0-nightly.20260705",
77
- "@aztec/prover-client": "5.0.0-nightly.20260705",
78
- "@aztec/simulator": "5.0.0-nightly.20260705",
79
- "@aztec/slasher": "5.0.0-nightly.20260705",
80
- "@aztec/stdlib": "5.0.0-nightly.20260705",
81
- "@aztec/telemetry-client": "5.0.0-nightly.20260705",
82
- "@aztec/validator-ha-signer": "5.0.0-nightly.20260705",
67
+ "@aztec/blob-client": "5.0.0-nightly.20260707",
68
+ "@aztec/blob-lib": "5.0.0-nightly.20260707",
69
+ "@aztec/constants": "5.0.0-nightly.20260707",
70
+ "@aztec/epoch-cache": "5.0.0-nightly.20260707",
71
+ "@aztec/ethereum": "5.0.0-nightly.20260707",
72
+ "@aztec/foundation": "5.0.0-nightly.20260707",
73
+ "@aztec/node-keystore": "5.0.0-nightly.20260707",
74
+ "@aztec/noir-protocol-circuits-types": "5.0.0-nightly.20260707",
75
+ "@aztec/p2p": "5.0.0-nightly.20260707",
76
+ "@aztec/protocol-contracts": "5.0.0-nightly.20260707",
77
+ "@aztec/prover-client": "5.0.0-nightly.20260707",
78
+ "@aztec/simulator": "5.0.0-nightly.20260707",
79
+ "@aztec/slasher": "5.0.0-nightly.20260707",
80
+ "@aztec/stdlib": "5.0.0-nightly.20260707",
81
+ "@aztec/telemetry-client": "5.0.0-nightly.20260707",
82
+ "@aztec/validator-ha-signer": "5.0.0-nightly.20260707",
83
83
  "koa": "^2.16.1",
84
84
  "koa-router": "^13.1.1",
85
85
  "tslib": "^2.4.0",
86
86
  "viem": "npm:@aztec/viem@2.38.2"
87
87
  },
88
88
  "devDependencies": {
89
- "@aztec/archiver": "5.0.0-nightly.20260705",
90
- "@aztec/world-state": "5.0.0-nightly.20260705",
89
+ "@aztec/archiver": "5.0.0-nightly.20260707",
90
+ "@aztec/world-state": "5.0.0-nightly.20260707",
91
91
  "@electric-sql/pglite": "^0.3.14",
92
92
  "@jest/globals": "^30.0.0",
93
93
  "@types/jest": "^30.0.0",
@@ -591,7 +591,7 @@ export class ProposalHandler {
591
591
  }
592
592
 
593
593
  // If we succeeded, push this block into the archiver (unless disabled)
594
- if (reexecutionResult?.block && this.config.skipPushProposedBlocksToArchiver === false) {
594
+ if (reexecutionResult?.block && !this.config.skipPushProposedBlocksToArchiver) {
595
595
  await this.blockSource.addBlock(reexecutionResult.block);
596
596
  }
597
597