@aztec/aztec-node 4.0.0-nightly.20260116 → 4.0.0-nightly.20260118

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.
@@ -593,7 +593,7 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
593
593
  // We'll accumulate sentinel watchers here
594
594
  const watchers = [];
595
595
  // Create validator client if required
596
- const validatorClient = createValidatorClient(config, {
596
+ const validatorClient = await createValidatorClient(config, {
597
597
  checkpointsBuilder: validatorCheckpointsBuilder,
598
598
  worldState: worldStateSynchronizer,
599
599
  p2pClient,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/aztec-node",
3
- "version": "4.0.0-nightly.20260116",
3
+ "version": "4.0.0-nightly.20260118",
4
4
  "main": "dest/index.js",
5
5
  "type": "module",
6
6
  "exports": {
@@ -65,29 +65,30 @@
65
65
  ]
66
66
  },
67
67
  "dependencies": {
68
- "@aztec/archiver": "4.0.0-nightly.20260116",
69
- "@aztec/bb-prover": "4.0.0-nightly.20260116",
70
- "@aztec/blob-client": "4.0.0-nightly.20260116",
71
- "@aztec/constants": "4.0.0-nightly.20260116",
72
- "@aztec/epoch-cache": "4.0.0-nightly.20260116",
73
- "@aztec/ethereum": "4.0.0-nightly.20260116",
74
- "@aztec/foundation": "4.0.0-nightly.20260116",
75
- "@aztec/kv-store": "4.0.0-nightly.20260116",
76
- "@aztec/l1-artifacts": "4.0.0-nightly.20260116",
77
- "@aztec/merkle-tree": "4.0.0-nightly.20260116",
78
- "@aztec/node-keystore": "4.0.0-nightly.20260116",
79
- "@aztec/node-lib": "4.0.0-nightly.20260116",
80
- "@aztec/noir-protocol-circuits-types": "4.0.0-nightly.20260116",
81
- "@aztec/p2p": "4.0.0-nightly.20260116",
82
- "@aztec/protocol-contracts": "4.0.0-nightly.20260116",
83
- "@aztec/prover-client": "4.0.0-nightly.20260116",
84
- "@aztec/sequencer-client": "4.0.0-nightly.20260116",
85
- "@aztec/simulator": "4.0.0-nightly.20260116",
86
- "@aztec/slasher": "4.0.0-nightly.20260116",
87
- "@aztec/stdlib": "4.0.0-nightly.20260116",
88
- "@aztec/telemetry-client": "4.0.0-nightly.20260116",
89
- "@aztec/validator-client": "4.0.0-nightly.20260116",
90
- "@aztec/world-state": "4.0.0-nightly.20260116",
68
+ "@aztec/archiver": "4.0.0-nightly.20260118",
69
+ "@aztec/bb-prover": "4.0.0-nightly.20260118",
70
+ "@aztec/blob-client": "4.0.0-nightly.20260118",
71
+ "@aztec/constants": "4.0.0-nightly.20260118",
72
+ "@aztec/epoch-cache": "4.0.0-nightly.20260118",
73
+ "@aztec/ethereum": "4.0.0-nightly.20260118",
74
+ "@aztec/foundation": "4.0.0-nightly.20260118",
75
+ "@aztec/kv-store": "4.0.0-nightly.20260118",
76
+ "@aztec/l1-artifacts": "4.0.0-nightly.20260118",
77
+ "@aztec/merkle-tree": "4.0.0-nightly.20260118",
78
+ "@aztec/node-keystore": "4.0.0-nightly.20260118",
79
+ "@aztec/node-lib": "4.0.0-nightly.20260118",
80
+ "@aztec/noir-protocol-circuits-types": "4.0.0-nightly.20260118",
81
+ "@aztec/p2p": "4.0.0-nightly.20260118",
82
+ "@aztec/protocol-contracts": "4.0.0-nightly.20260118",
83
+ "@aztec/prover-client": "4.0.0-nightly.20260118",
84
+ "@aztec/sequencer-client": "4.0.0-nightly.20260118",
85
+ "@aztec/simulator": "4.0.0-nightly.20260118",
86
+ "@aztec/slasher": "4.0.0-nightly.20260118",
87
+ "@aztec/stdlib": "4.0.0-nightly.20260118",
88
+ "@aztec/telemetry-client": "4.0.0-nightly.20260118",
89
+ "@aztec/validator-client": "4.0.0-nightly.20260118",
90
+ "@aztec/validator-ha-signer": "4.0.0-nightly.20260118",
91
+ "@aztec/world-state": "4.0.0-nightly.20260118",
91
92
  "koa": "^2.16.1",
92
93
  "koa-router": "^13.1.1",
93
94
  "tslib": "^2.4.0",
@@ -332,7 +332,7 @@ export class AztecNodeService implements AztecNode, AztecNodeAdmin, Traceable {
332
332
  const watchers: Watcher[] = [];
333
333
 
334
334
  // Create validator client if required
335
- const validatorClient = createValidatorClient(config, {
335
+ const validatorClient = await createValidatorClient(config, {
336
336
  checkpointsBuilder: validatorCheckpointsBuilder,
337
337
  worldState: worldStateSynchronizer,
338
338
  p2pClient,