@aztec/aztec-node 3.0.0-nightly.20251212 → 3.0.0-nightly.20251214

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/aztec-node",
3
- "version": "3.0.0-nightly.20251212",
3
+ "version": "3.0.0-nightly.20251214",
4
4
  "main": "dest/index.js",
5
5
  "type": "module",
6
6
  "exports": {
@@ -66,29 +66,29 @@
66
66
  ]
67
67
  },
68
68
  "dependencies": {
69
- "@aztec/archiver": "3.0.0-nightly.20251212",
70
- "@aztec/bb-prover": "3.0.0-nightly.20251212",
71
- "@aztec/blob-sink": "3.0.0-nightly.20251212",
72
- "@aztec/constants": "3.0.0-nightly.20251212",
73
- "@aztec/epoch-cache": "3.0.0-nightly.20251212",
74
- "@aztec/ethereum": "3.0.0-nightly.20251212",
75
- "@aztec/foundation": "3.0.0-nightly.20251212",
76
- "@aztec/kv-store": "3.0.0-nightly.20251212",
77
- "@aztec/l1-artifacts": "3.0.0-nightly.20251212",
78
- "@aztec/merkle-tree": "3.0.0-nightly.20251212",
79
- "@aztec/node-keystore": "3.0.0-nightly.20251212",
80
- "@aztec/node-lib": "3.0.0-nightly.20251212",
81
- "@aztec/noir-protocol-circuits-types": "3.0.0-nightly.20251212",
82
- "@aztec/p2p": "3.0.0-nightly.20251212",
83
- "@aztec/protocol-contracts": "3.0.0-nightly.20251212",
84
- "@aztec/prover-client": "3.0.0-nightly.20251212",
85
- "@aztec/sequencer-client": "3.0.0-nightly.20251212",
86
- "@aztec/simulator": "3.0.0-nightly.20251212",
87
- "@aztec/slasher": "3.0.0-nightly.20251212",
88
- "@aztec/stdlib": "3.0.0-nightly.20251212",
89
- "@aztec/telemetry-client": "3.0.0-nightly.20251212",
90
- "@aztec/validator-client": "3.0.0-nightly.20251212",
91
- "@aztec/world-state": "3.0.0-nightly.20251212",
69
+ "@aztec/archiver": "3.0.0-nightly.20251214",
70
+ "@aztec/bb-prover": "3.0.0-nightly.20251214",
71
+ "@aztec/blob-sink": "3.0.0-nightly.20251214",
72
+ "@aztec/constants": "3.0.0-nightly.20251214",
73
+ "@aztec/epoch-cache": "3.0.0-nightly.20251214",
74
+ "@aztec/ethereum": "3.0.0-nightly.20251214",
75
+ "@aztec/foundation": "3.0.0-nightly.20251214",
76
+ "@aztec/kv-store": "3.0.0-nightly.20251214",
77
+ "@aztec/l1-artifacts": "3.0.0-nightly.20251214",
78
+ "@aztec/merkle-tree": "3.0.0-nightly.20251214",
79
+ "@aztec/node-keystore": "3.0.0-nightly.20251214",
80
+ "@aztec/node-lib": "3.0.0-nightly.20251214",
81
+ "@aztec/noir-protocol-circuits-types": "3.0.0-nightly.20251214",
82
+ "@aztec/p2p": "3.0.0-nightly.20251214",
83
+ "@aztec/protocol-contracts": "3.0.0-nightly.20251214",
84
+ "@aztec/prover-client": "3.0.0-nightly.20251214",
85
+ "@aztec/sequencer-client": "3.0.0-nightly.20251214",
86
+ "@aztec/simulator": "3.0.0-nightly.20251214",
87
+ "@aztec/slasher": "3.0.0-nightly.20251214",
88
+ "@aztec/stdlib": "3.0.0-nightly.20251214",
89
+ "@aztec/telemetry-client": "3.0.0-nightly.20251214",
90
+ "@aztec/validator-client": "3.0.0-nightly.20251214",
91
+ "@aztec/world-state": "3.0.0-nightly.20251214",
92
92
  "koa": "^2.16.1",
93
93
  "koa-router": "^13.1.1",
94
94
  "tslib": "^2.4.0",
@@ -136,7 +136,7 @@ function createKeyStoreFromWeb3Signer(config: ConfigRequiredToBuildKeyStore): Ke
136
136
  function createKeyStoreFromPrivateKeys(config: ConfigRequiredToBuildKeyStore): KeyStore | undefined {
137
137
  const validatorKeyStores: ValidatorKeyStore[] = [];
138
138
  const ethPrivateKeys = config.validatorPrivateKeys
139
- ? config.validatorPrivateKeys.getValue().map(x => ethPrivateKeySchema.parse(x))
139
+ ? config.validatorPrivateKeys.getValue().map((x: string) => ethPrivateKeySchema.parse(x))
140
140
  : [];
141
141
 
142
142
  if (!ethPrivateKeys.length) {
@@ -146,7 +146,7 @@ function createKeyStoreFromPrivateKeys(config: ConfigRequiredToBuildKeyStore): K
146
146
  const feeRecipient = config.feeRecipient ?? AztecAddress.ZERO;
147
147
 
148
148
  const publisherKeys = config.publisherPrivateKeys
149
- ? config.publisherPrivateKeys.map(k => ethPrivateKeySchema.parse(k.getValue()))
149
+ ? config.publisherPrivateKeys.map((k: { getValue: () => string }) => ethPrivateKeySchema.parse(k.getValue()))
150
150
  : [];
151
151
 
152
152
  validatorKeyStores.push({