@aztec/aztec-node 4.3.0-nightly.20260504 → 4.3.0-nightly.20260506

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.
@@ -516,7 +516,7 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
516
516
  ...inputConfig
517
517
  }; // Copy the config so we dont mutate the input object
518
518
  const log = deps.logger ?? createLogger('node');
519
- const packageVersion = getPackageVersion() ?? '';
519
+ const packageVersion = getPackageVersion();
520
520
  const telemetry = deps.telemetry ?? getTelemetryClient();
521
521
  const dateProvider = deps.dateProvider ?? new DateProvider();
522
522
  const ethereumChain = createEthereumChain(config.l1RpcUrls, config.l1ChainId);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/aztec-node",
3
- "version": "4.3.0-nightly.20260504",
3
+ "version": "4.3.0-nightly.20260506",
4
4
  "main": "dest/index.js",
5
5
  "type": "module",
6
6
  "exports": {
@@ -65,32 +65,32 @@
65
65
  ]
66
66
  },
67
67
  "dependencies": {
68
- "@aztec/archiver": "4.3.0-nightly.20260504",
69
- "@aztec/bb-prover": "4.3.0-nightly.20260504",
70
- "@aztec/blob-client": "4.3.0-nightly.20260504",
71
- "@aztec/blob-lib": "4.3.0-nightly.20260504",
72
- "@aztec/constants": "4.3.0-nightly.20260504",
73
- "@aztec/epoch-cache": "4.3.0-nightly.20260504",
74
- "@aztec/ethereum": "4.3.0-nightly.20260504",
75
- "@aztec/foundation": "4.3.0-nightly.20260504",
76
- "@aztec/kv-store": "4.3.0-nightly.20260504",
77
- "@aztec/l1-artifacts": "4.3.0-nightly.20260504",
78
- "@aztec/merkle-tree": "4.3.0-nightly.20260504",
79
- "@aztec/node-keystore": "4.3.0-nightly.20260504",
80
- "@aztec/node-lib": "4.3.0-nightly.20260504",
81
- "@aztec/noir-protocol-circuits-types": "4.3.0-nightly.20260504",
82
- "@aztec/p2p": "4.3.0-nightly.20260504",
83
- "@aztec/protocol-contracts": "4.3.0-nightly.20260504",
84
- "@aztec/prover-client": "4.3.0-nightly.20260504",
85
- "@aztec/prover-node": "4.3.0-nightly.20260504",
86
- "@aztec/sequencer-client": "4.3.0-nightly.20260504",
87
- "@aztec/simulator": "4.3.0-nightly.20260504",
88
- "@aztec/slasher": "4.3.0-nightly.20260504",
89
- "@aztec/stdlib": "4.3.0-nightly.20260504",
90
- "@aztec/telemetry-client": "4.3.0-nightly.20260504",
91
- "@aztec/validator-client": "4.3.0-nightly.20260504",
92
- "@aztec/validator-ha-signer": "4.3.0-nightly.20260504",
93
- "@aztec/world-state": "4.3.0-nightly.20260504",
68
+ "@aztec/archiver": "4.3.0-nightly.20260506",
69
+ "@aztec/bb-prover": "4.3.0-nightly.20260506",
70
+ "@aztec/blob-client": "4.3.0-nightly.20260506",
71
+ "@aztec/blob-lib": "4.3.0-nightly.20260506",
72
+ "@aztec/constants": "4.3.0-nightly.20260506",
73
+ "@aztec/epoch-cache": "4.3.0-nightly.20260506",
74
+ "@aztec/ethereum": "4.3.0-nightly.20260506",
75
+ "@aztec/foundation": "4.3.0-nightly.20260506",
76
+ "@aztec/kv-store": "4.3.0-nightly.20260506",
77
+ "@aztec/l1-artifacts": "4.3.0-nightly.20260506",
78
+ "@aztec/merkle-tree": "4.3.0-nightly.20260506",
79
+ "@aztec/node-keystore": "4.3.0-nightly.20260506",
80
+ "@aztec/node-lib": "4.3.0-nightly.20260506",
81
+ "@aztec/noir-protocol-circuits-types": "4.3.0-nightly.20260506",
82
+ "@aztec/p2p": "4.3.0-nightly.20260506",
83
+ "@aztec/protocol-contracts": "4.3.0-nightly.20260506",
84
+ "@aztec/prover-client": "4.3.0-nightly.20260506",
85
+ "@aztec/prover-node": "4.3.0-nightly.20260506",
86
+ "@aztec/sequencer-client": "4.3.0-nightly.20260506",
87
+ "@aztec/simulator": "4.3.0-nightly.20260506",
88
+ "@aztec/slasher": "4.3.0-nightly.20260506",
89
+ "@aztec/stdlib": "4.3.0-nightly.20260506",
90
+ "@aztec/telemetry-client": "4.3.0-nightly.20260506",
91
+ "@aztec/validator-client": "4.3.0-nightly.20260506",
92
+ "@aztec/validator-ha-signer": "4.3.0-nightly.20260506",
93
+ "@aztec/world-state": "4.3.0-nightly.20260506",
94
94
  "koa": "^2.16.1",
95
95
  "koa-router": "^13.1.1",
96
96
  "tslib": "^2.4.0",
@@ -208,7 +208,7 @@ export class AztecNodeService implements AztecNode, AztecNodeAdmin, AztecNodeDeb
208
208
  ): Promise<AztecNodeService> {
209
209
  const config = { ...inputConfig }; // Copy the config so we dont mutate the input object
210
210
  const log = deps.logger ?? createLogger('node');
211
- const packageVersion = getPackageVersion() ?? '';
211
+ const packageVersion = getPackageVersion();
212
212
  const telemetry = deps.telemetry ?? getTelemetryClient();
213
213
  const dateProvider = deps.dateProvider ?? new DateProvider();
214
214
  const ethereumChain = createEthereumChain(config.l1RpcUrls, config.l1ChainId);