@aztec/aztec-node 0.77.0-testnet-ignition.17 → 0.77.0-testnet-ignition.23

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.
@@ -110,7 +110,7 @@ import { NodeMetrics } from './node_metrics.js';
110
110
  });
111
111
  // create the tx pool and the p2p client, which will need the l2 block source
112
112
  const p2pClient = await createP2PClient(P2PClientType.Full, config, archiver, proofVerifier, worldStateSynchronizer, epochCache, telemetry);
113
- const slasherClient = await createSlasherClient(config, archiver, telemetry);
113
+ const slasherClient = createSlasherClient(config, archiver, telemetry);
114
114
  // start both and wait for them to sync from the block source
115
115
  await Promise.all([
116
116
  p2pClient.start(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/aztec-node",
3
- "version": "0.77.0-testnet-ignition.17",
3
+ "version": "0.77.0-testnet-ignition.23",
4
4
  "main": "dest/index.js",
5
5
  "type": "module",
6
6
  "exports": {
@@ -62,24 +62,24 @@
62
62
  ]
63
63
  },
64
64
  "dependencies": {
65
- "@aztec/archiver": "0.77.0-testnet-ignition.17",
66
- "@aztec/bb-prover": "0.77.0-testnet-ignition.17",
67
- "@aztec/blob-sink": "0.77.0-testnet-ignition.17",
68
- "@aztec/constants": "0.77.0-testnet-ignition.17",
69
- "@aztec/epoch-cache": "0.77.0-testnet-ignition.17",
70
- "@aztec/ethereum": "0.77.0-testnet-ignition.17",
71
- "@aztec/foundation": "0.77.0-testnet-ignition.17",
72
- "@aztec/kv-store": "0.77.0-testnet-ignition.17",
73
- "@aztec/merkle-tree": "0.77.0-testnet-ignition.17",
74
- "@aztec/p2p": "0.77.0-testnet-ignition.17",
75
- "@aztec/protocol-contracts": "0.77.0-testnet-ignition.17",
76
- "@aztec/prover-client": "0.77.0-testnet-ignition.17",
77
- "@aztec/sequencer-client": "0.77.0-testnet-ignition.17",
78
- "@aztec/simulator": "0.77.0-testnet-ignition.17",
79
- "@aztec/stdlib": "0.77.0-testnet-ignition.17",
80
- "@aztec/telemetry-client": "0.77.0-testnet-ignition.17",
81
- "@aztec/validator-client": "0.77.0-testnet-ignition.17",
82
- "@aztec/world-state": "0.77.0-testnet-ignition.17",
65
+ "@aztec/archiver": "0.77.0-testnet-ignition.23",
66
+ "@aztec/bb-prover": "0.77.0-testnet-ignition.23",
67
+ "@aztec/blob-sink": "0.77.0-testnet-ignition.23",
68
+ "@aztec/constants": "0.77.0-testnet-ignition.23",
69
+ "@aztec/epoch-cache": "0.77.0-testnet-ignition.23",
70
+ "@aztec/ethereum": "0.77.0-testnet-ignition.23",
71
+ "@aztec/foundation": "0.77.0-testnet-ignition.23",
72
+ "@aztec/kv-store": "0.77.0-testnet-ignition.23",
73
+ "@aztec/merkle-tree": "0.77.0-testnet-ignition.23",
74
+ "@aztec/p2p": "0.77.0-testnet-ignition.23",
75
+ "@aztec/protocol-contracts": "0.77.0-testnet-ignition.23",
76
+ "@aztec/prover-client": "0.77.0-testnet-ignition.23",
77
+ "@aztec/sequencer-client": "0.77.0-testnet-ignition.23",
78
+ "@aztec/simulator": "0.77.0-testnet-ignition.23",
79
+ "@aztec/stdlib": "0.77.0-testnet-ignition.23",
80
+ "@aztec/telemetry-client": "0.77.0-testnet-ignition.23",
81
+ "@aztec/validator-client": "0.77.0-testnet-ignition.23",
82
+ "@aztec/world-state": "0.77.0-testnet-ignition.23",
83
83
  "koa": "^2.14.2",
84
84
  "koa-router": "^12.0.0",
85
85
  "tslib": "^2.4.0"
@@ -182,7 +182,7 @@ export class AztecNodeService implements AztecNode, Traceable {
182
182
  telemetry,
183
183
  );
184
184
 
185
- const slasherClient = await createSlasherClient(config, archiver, telemetry);
185
+ const slasherClient = createSlasherClient(config, archiver, telemetry);
186
186
 
187
187
  // start both and wait for them to sync from the block source
188
188
  await Promise.all([p2pClient.start(), worldStateSynchronizer.start(), slasherClient.start()]);