@aztec/aztec-node 0.77.0-testnet-ignition.17 → 0.77.0-testnet-ignition.21
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.
- package/dest/aztec-node/server.js +1 -1
- package/package.json +19 -19
- package/src/aztec-node/server.ts +1 -1
|
@@ -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 =
|
|
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.
|
|
3
|
+
"version": "0.77.0-testnet-ignition.21",
|
|
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.
|
|
66
|
-
"@aztec/bb-prover": "0.77.0-testnet-ignition.
|
|
67
|
-
"@aztec/blob-sink": "0.77.0-testnet-ignition.
|
|
68
|
-
"@aztec/constants": "0.77.0-testnet-ignition.
|
|
69
|
-
"@aztec/epoch-cache": "0.77.0-testnet-ignition.
|
|
70
|
-
"@aztec/ethereum": "0.77.0-testnet-ignition.
|
|
71
|
-
"@aztec/foundation": "0.77.0-testnet-ignition.
|
|
72
|
-
"@aztec/kv-store": "0.77.0-testnet-ignition.
|
|
73
|
-
"@aztec/merkle-tree": "0.77.0-testnet-ignition.
|
|
74
|
-
"@aztec/p2p": "0.77.0-testnet-ignition.
|
|
75
|
-
"@aztec/protocol-contracts": "0.77.0-testnet-ignition.
|
|
76
|
-
"@aztec/prover-client": "0.77.0-testnet-ignition.
|
|
77
|
-
"@aztec/sequencer-client": "0.77.0-testnet-ignition.
|
|
78
|
-
"@aztec/simulator": "0.77.0-testnet-ignition.
|
|
79
|
-
"@aztec/stdlib": "0.77.0-testnet-ignition.
|
|
80
|
-
"@aztec/telemetry-client": "0.77.0-testnet-ignition.
|
|
81
|
-
"@aztec/validator-client": "0.77.0-testnet-ignition.
|
|
82
|
-
"@aztec/world-state": "0.77.0-testnet-ignition.
|
|
65
|
+
"@aztec/archiver": "0.77.0-testnet-ignition.21",
|
|
66
|
+
"@aztec/bb-prover": "0.77.0-testnet-ignition.21",
|
|
67
|
+
"@aztec/blob-sink": "0.77.0-testnet-ignition.21",
|
|
68
|
+
"@aztec/constants": "0.77.0-testnet-ignition.21",
|
|
69
|
+
"@aztec/epoch-cache": "0.77.0-testnet-ignition.21",
|
|
70
|
+
"@aztec/ethereum": "0.77.0-testnet-ignition.21",
|
|
71
|
+
"@aztec/foundation": "0.77.0-testnet-ignition.21",
|
|
72
|
+
"@aztec/kv-store": "0.77.0-testnet-ignition.21",
|
|
73
|
+
"@aztec/merkle-tree": "0.77.0-testnet-ignition.21",
|
|
74
|
+
"@aztec/p2p": "0.77.0-testnet-ignition.21",
|
|
75
|
+
"@aztec/protocol-contracts": "0.77.0-testnet-ignition.21",
|
|
76
|
+
"@aztec/prover-client": "0.77.0-testnet-ignition.21",
|
|
77
|
+
"@aztec/sequencer-client": "0.77.0-testnet-ignition.21",
|
|
78
|
+
"@aztec/simulator": "0.77.0-testnet-ignition.21",
|
|
79
|
+
"@aztec/stdlib": "0.77.0-testnet-ignition.21",
|
|
80
|
+
"@aztec/telemetry-client": "0.77.0-testnet-ignition.21",
|
|
81
|
+
"@aztec/validator-client": "0.77.0-testnet-ignition.21",
|
|
82
|
+
"@aztec/world-state": "0.77.0-testnet-ignition.21",
|
|
83
83
|
"koa": "^2.14.2",
|
|
84
84
|
"koa-router": "^12.0.0",
|
|
85
85
|
"tslib": "^2.4.0"
|
package/src/aztec-node/server.ts
CHANGED
|
@@ -182,7 +182,7 @@ export class AztecNodeService implements AztecNode, Traceable {
|
|
|
182
182
|
telemetry,
|
|
183
183
|
);
|
|
184
184
|
|
|
185
|
-
const slasherClient =
|
|
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()]);
|