@aztec-labs/aztec-node 6.0.0-nightly.20260829

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.
Files changed (83) hide show
  1. package/README.md +15 -0
  2. package/dest/aztec-node/block_response_helpers.d.ts +25 -0
  3. package/dest/aztec-node/block_response_helpers.d.ts.map +1 -0
  4. package/dest/aztec-node/block_response_helpers.js +112 -0
  5. package/dest/aztec-node/config.d.ts +52 -0
  6. package/dest/aztec-node/config.d.ts.map +1 -0
  7. package/dest/aztec-node/config.js +129 -0
  8. package/dest/aztec-node/node_metrics.d.ts +12 -0
  9. package/dest/aztec-node/node_metrics.d.ts.map +1 -0
  10. package/dest/aztec-node/node_metrics.js +36 -0
  11. package/dest/aztec-node/node_public_calls_simulator.d.ts +108 -0
  12. package/dest/aztec-node/node_public_calls_simulator.d.ts.map +1 -0
  13. package/dest/aztec-node/node_public_calls_simulator.js +380 -0
  14. package/dest/aztec-node/public_data_overrides.d.ts +13 -0
  15. package/dest/aztec-node/public_data_overrides.d.ts.map +1 -0
  16. package/dest/aztec-node/public_data_overrides.js +21 -0
  17. package/dest/aztec-node/register_node_rpc_handlers.d.ts +11 -0
  18. package/dest/aztec-node/register_node_rpc_handlers.d.ts.map +1 -0
  19. package/dest/aztec-node/register_node_rpc_handlers.js +48 -0
  20. package/dest/aztec-node/server.d.ts +281 -0
  21. package/dest/aztec-node/server.d.ts.map +1 -0
  22. package/dest/aztec-node/server.js +1235 -0
  23. package/dest/bin/index.d.ts +3 -0
  24. package/dest/bin/index.d.ts.map +1 -0
  25. package/dest/bin/index.js +57 -0
  26. package/dest/factory.d.ts +33 -0
  27. package/dest/factory.d.ts.map +1 -0
  28. package/dest/factory.js +539 -0
  29. package/dest/index.d.ts +5 -0
  30. package/dest/index.d.ts.map +1 -0
  31. package/dest/index.js +4 -0
  32. package/dest/modules/block_parameter.d.ts +25 -0
  33. package/dest/modules/block_parameter.d.ts.map +1 -0
  34. package/dest/modules/block_parameter.js +100 -0
  35. package/dest/modules/node_block_provider.d.ts +19 -0
  36. package/dest/modules/node_block_provider.d.ts.map +1 -0
  37. package/dest/modules/node_block_provider.js +112 -0
  38. package/dest/modules/node_tx_receipt.d.ts +24 -0
  39. package/dest/modules/node_tx_receipt.d.ts.map +1 -0
  40. package/dest/modules/node_tx_receipt.js +70 -0
  41. package/dest/modules/node_world_state_queries.d.ts +65 -0
  42. package/dest/modules/node_world_state_queries.d.ts.map +1 -0
  43. package/dest/modules/node_world_state_queries.js +270 -0
  44. package/dest/sentinel/config.d.ts +9 -0
  45. package/dest/sentinel/config.d.ts.map +1 -0
  46. package/dest/sentinel/config.js +39 -0
  47. package/dest/sentinel/factory.d.ts +11 -0
  48. package/dest/sentinel/factory.d.ts.map +1 -0
  49. package/dest/sentinel/factory.js +24 -0
  50. package/dest/sentinel/index.d.ts +3 -0
  51. package/dest/sentinel/index.d.ts.map +1 -0
  52. package/dest/sentinel/index.js +1 -0
  53. package/dest/sentinel/sentinel.d.ts +217 -0
  54. package/dest/sentinel/sentinel.d.ts.map +1 -0
  55. package/dest/sentinel/sentinel.js +551 -0
  56. package/dest/sentinel/store.d.ts +35 -0
  57. package/dest/sentinel/store.d.ts.map +1 -0
  58. package/dest/sentinel/store.js +182 -0
  59. package/dest/test/index.d.ts +31 -0
  60. package/dest/test/index.d.ts.map +1 -0
  61. package/dest/test/index.js +1 -0
  62. package/package.json +118 -0
  63. package/src/aztec-node/block_response_helpers.ts +161 -0
  64. package/src/aztec-node/config.ts +216 -0
  65. package/src/aztec-node/node_metrics.ts +49 -0
  66. package/src/aztec-node/node_public_calls_simulator.ts +437 -0
  67. package/src/aztec-node/public_data_overrides.ts +35 -0
  68. package/src/aztec-node/register_node_rpc_handlers.ts +45 -0
  69. package/src/aztec-node/server.ts +1155 -0
  70. package/src/bin/index.ts +77 -0
  71. package/src/factory.ts +704 -0
  72. package/src/index.ts +4 -0
  73. package/src/modules/block_parameter.ts +93 -0
  74. package/src/modules/node_block_provider.ts +149 -0
  75. package/src/modules/node_tx_receipt.ts +115 -0
  76. package/src/modules/node_world_state_queries.ts +373 -0
  77. package/src/sentinel/README.md +103 -0
  78. package/src/sentinel/config.ts +49 -0
  79. package/src/sentinel/factory.ts +46 -0
  80. package/src/sentinel/index.ts +8 -0
  81. package/src/sentinel/sentinel.ts +694 -0
  82. package/src/sentinel/store.ts +193 -0
  83. package/src/test/index.ts +32 -0
@@ -0,0 +1,551 @@
1
+ import { CheckpointProposalHash, EpochNumber, SlotNumber } from '@aztec-labs/foundation/branded-types';
2
+ import { countWhile, filterAsync, fromEntries, getEntries, mapValues } from '@aztec-labs/foundation/collection';
3
+ import { EthAddress } from '@aztec-labs/foundation/eth-address';
4
+ import { createLogger } from '@aztec-labs/foundation/log';
5
+ import { RunningPromise } from '@aztec-labs/foundation/running-promise';
6
+ import { OffenseType, WANT_TO_SLASH_EVENT, getOffenseTypeName } from '@aztec-labs/slasher';
7
+ import { getAttestationInfoFromPublishedCheckpoint } from '@aztec-labs/stdlib/block';
8
+ import { getEpochAtSlot, getSlotRangeForEpoch, getTimestampForSlot } from '@aztec-labs/stdlib/epoch-helpers';
9
+ import { ConsensusPayload } from '@aztec-labs/stdlib/p2p';
10
+ import EventEmitter from 'node:events';
11
+ /** Maps a validator status to its category: proposer or attestation. */ function statusToCategory(status) {
12
+ switch(status){
13
+ case 'attestation-sent':
14
+ case 'attestation-missed':
15
+ return 'attestation';
16
+ default:
17
+ return 'proposer';
18
+ }
19
+ }
20
+ /**
21
+ * The Sentinel observes validator behaviour every L2 slot, classifies it into a per-slot status,
22
+ * aggregates those statuses into per-epoch performance once each epoch is fully observed, and
23
+ * emits inactivity slash payloads when a validator has been inactive for the configured number
24
+ * of consecutive epochs.
25
+ *
26
+ * ## Two cadences
27
+ *
28
+ * The sentinel runs `work()` every quarter L2 slot and drives two independent pipelines:
29
+ *
30
+ * 1. **Per-slot activity recording.** `processSlot(currentSlot - 2)` runs once per slot, with a
31
+ * two-slot lag to let P2P attestations settle and the archiver catch up. It classifies each
32
+ * committee member's behaviour for that slot via `getSlotActivity` and persists the result to
33
+ * `SentinelStore.historyMap` (sliding window of `sentinelHistoryLengthInEpochs * epochDuration`
34
+ * slots, default 24 epochs).
35
+ *
36
+ * 2. **Per-epoch evaluation.** `processEpochEnds(currentSlot)` runs every tick too. Once
37
+ * `sentinelEpochEndBufferSlots` (default 2) has elapsed past an epoch's last slot AND the
38
+ * per-slot recorder has covered that last slot, the sentinel calls `handleEpochEnd(epoch)`.
39
+ * That aggregates the slot-level statuses for the epoch into per-validator `{missed, total}`,
40
+ * persists it to `SentinelStore.epochMap` (default 2000-epoch window), and runs the slashing
41
+ * decision.
42
+ *
43
+ * Triggering per-epoch evaluation off local L2 state — rather than waiting for L1 proof
44
+ * publication — decouples slashing from prover availability.
45
+ *
46
+ * ## Six-case taxonomy in `getSlotActivity`
47
+ *
48
+ * For each slot, the sentinel assigns the proposer one of six statuses, ranked highest-confidence
49
+ * first:
50
+ *
51
+ * - `checkpoint-mined` — a checkpoint covering this slot has landed on L1
52
+ * (fetched on demand via `archiver.getCheckpoint({ slot })`).
53
+ * - `checkpoint-valid` — the local node re-executed a checkpoint proposal for this slot
54
+ * successfully (consulted via `CheckpointReexecutionTracker`).
55
+ * - `checkpoint-invalid` — the local node re-executed a checkpoint proposal for this slot
56
+ * and rejected it (e.g. header/archive/out-hash mismatch, limit
57
+ * breach). Proposer-fault.
58
+ * - `checkpoint-unvalidated` — the local node observed a checkpoint proposal but could not
59
+ * validate it (missing blocks/txs, timeouts). Treated as
60
+ * proposer-fault for slashing.
61
+ * - `checkpoint-missed` — block proposals seen on P2P but no checkpoint proposal at all.
62
+ * - `blocks-missed` — no block proposals seen for this slot.
63
+ *
64
+ * Missing-attestor faults are recorded only in `checkpoint-mined` and `checkpoint-valid`, where
65
+ * the local node has positive evidence the checkpoint was canonical or valid. In the other four
66
+ * cases the proposer is at fault and no attestor penalty applies.
67
+ *
68
+ * ## Re-execution tracker
69
+ *
70
+ * `CheckpointReexecutionTracker` is populated by the validator client's checkpoint proposal
71
+ * handler. Every early return in `validateCheckpointProposal` records an outcome
72
+ * (`valid` / `invalid` / `unvalidated`) keyed by slot.
73
+ *
74
+ * ## Inactivity slashing
75
+ *
76
+ * `handleEpochPerformance` filters the epoch's per-validator stats by
77
+ * `slashInactivityTargetPercentage` and then calls `checkPastInactivity` to require
78
+ * `slashInactivityConsecutiveEpochThreshold` consecutive past epochs over the same threshold
79
+ * (read from `SentinelStore.epochMap`). Only validators meeting both conditions are emitted as
80
+ * `WANT_TO_SLASH_EVENT` with `OffenseType.INACTIVITY`. The slot-level counters that feed this —
81
+ * `missedProposals` and `missedAttestations` — include the four proposer-fault statuses plus
82
+ * `attestation-missed`.
83
+ *
84
+ * ## Escape hatch
85
+ *
86
+ * If `epochCache.getCommittee(slot)` reports `isEscapeHatchOpen`, per-slot recording is skipped
87
+ * (no history entries for that slot) and per-epoch evaluation writes an empty performance map
88
+ * (no slashing).
89
+ */ export class Sentinel extends EventEmitter {
90
+ epochCache;
91
+ archiver;
92
+ p2p;
93
+ store;
94
+ reexecutionTracker;
95
+ config;
96
+ logger;
97
+ runningPromise;
98
+ initialSlot;
99
+ lastProcessedSlot;
100
+ /** Largest epoch number for which the end-of-epoch aggregator has run. */ lastEvaluatedEpoch;
101
+ constructor(epochCache, archiver, p2p, store, reexecutionTracker, config, logger = createLogger('node:sentinel')){
102
+ super(), this.epochCache = epochCache, this.archiver = archiver, this.p2p = p2p, this.store = store, this.reexecutionTracker = reexecutionTracker, this.config = config, this.logger = logger;
103
+ const interval = epochCache.getL1Constants().ethereumSlotDuration * 1000 / 4;
104
+ this.runningPromise = new RunningPromise(this.work.bind(this), logger, interval);
105
+ }
106
+ getSignatureContext() {
107
+ return {
108
+ chainId: this.config.l1ChainId,
109
+ rollupAddress: this.config.rollupAddress
110
+ };
111
+ }
112
+ updateConfig(config) {
113
+ this.config = {
114
+ ...this.config,
115
+ ...config
116
+ };
117
+ }
118
+ async start() {
119
+ await this.init();
120
+ this.runningPromise.start();
121
+ }
122
+ /**
123
+ * Loads the initial slot. We will not process anything at or before the initial slot. Floors at the
124
+ * archiver's synced L2 slot so the sentinel keeps making forward progress when L1 is advancing but L2 has no
125
+ * activity (the synced slot is driven by L1 sync, not by L2 blocks). Falls back to the wallclock if the
126
+ * archiver isn't ready yet (cold start).
127
+ */ async init() {
128
+ this.initialSlot = await this.getCurrentSlot();
129
+ this.logger.info(`Starting validator sentinel with initial slot ${this.initialSlot}`);
130
+ }
131
+ /**
132
+ * Returns the L2 slot the sentinel should treat as "current": the archiver's last fully
133
+ * synced L2 slot, falling back to the wallclock slot when the archiver isn't ready yet
134
+ * (cold start). Anchoring to the synced slot keeps timing arithmetic (initial floor,
135
+ * per-slot lag, end-of-epoch buffer, stats-range fallback) from speculating ahead of where
136
+ * L1 actually is.
137
+ */ async getCurrentSlot() {
138
+ return await this.archiver.getSyncedL2SlotNumber() ?? this.epochCache.getSlotNow();
139
+ }
140
+ stop() {
141
+ return this.runningPromise.stop();
142
+ }
143
+ /**
144
+ * Fetches the L1-confirmed checkpoint covering a slot (if any) and derives the slot-level data the
145
+ * activity classifier needs: the checkpoint number, archive root, consensus payload hash (used to fetch
146
+ * matching p2p attestations regardless of feeAssetPriceModifier variants), and the recovered attestor set.
147
+ * Reads on demand so the result is always against the canonical chain — a reorged-out checkpoint simply
148
+ * stops being returned, with no stale mapping to clean up.
149
+ */ async getCheckpointForSlot(slot) {
150
+ const checkpoint = await this.archiver.getCheckpoint({
151
+ slot
152
+ });
153
+ if (!checkpoint) {
154
+ return undefined;
155
+ }
156
+ const signatureContext = this.getSignatureContext();
157
+ const proposalPayloadHash = CheckpointProposalHash.fromBuffer(ConsensusPayload.fromCheckpoint(checkpoint.checkpoint, signatureContext).getPayloadHash());
158
+ return {
159
+ checkpointNumber: checkpoint.checkpoint.number,
160
+ archive: checkpoint.checkpoint.archive.root.toString(),
161
+ proposalPayloadHash,
162
+ attestors: getAttestationInfoFromPublishedCheckpoint(checkpoint, signatureContext).filter((a)=>a.status === 'recovered-from-signature').map((a)=>a.address)
163
+ };
164
+ }
165
+ /**
166
+ * Called once per epoch, after the configured end-of-epoch buffer has elapsed beyond the
167
+ * epoch's last slot. Computes per-epoch performance from the slot-level history collected
168
+ * by `processSlot` and emits any inactivity slash payloads.
169
+ */ async handleEpochEnd(epoch) {
170
+ this.logger.debug(`Computing epoch performance for epoch ${epoch}`);
171
+ const performance = await this.computeEpochPerformance(epoch);
172
+ this.logger.info(`Computed epoch performance for epoch ${epoch}`, performance);
173
+ await this.store.updateEpochPerformance(epoch, performance);
174
+ await this.handleEpochPerformance(epoch, performance);
175
+ }
176
+ async computeEpochPerformance(epoch) {
177
+ const [fromSlot, toSlot] = getSlotRangeForEpoch(epoch, this.epochCache.getL1Constants());
178
+ const { committee, isEscapeHatchOpen } = await this.epochCache.getCommittee(fromSlot);
179
+ if (isEscapeHatchOpen) {
180
+ this.logger.info(`Skipping epoch performance for epoch ${epoch} - escape hatch is open`);
181
+ return {};
182
+ }
183
+ if (!committee) {
184
+ this.logger.trace(`No committee found for slot ${fromSlot}`);
185
+ return {};
186
+ }
187
+ const stats = await this.computeStats({
188
+ fromSlot,
189
+ toSlot,
190
+ validators: committee
191
+ });
192
+ this.logger.debug(`Stats for epoch ${epoch}`, {
193
+ ...stats,
194
+ fromSlot,
195
+ toSlot,
196
+ epoch
197
+ });
198
+ // Note that we are NOT using the total slots in the epoch as `total` here, since we only
199
+ // compute missed attestations over the blocks that had a proposal in them. So, let's say
200
+ // we have an epoch with 10 slots, but only 5 had a block proposal. A validator that was
201
+ // offline, assuming they were not picked as proposer, will then be reported as having missed
202
+ // 5/5 attestations. If we used the total, they'd be reported as 5/10, which would probably
203
+ // allow them to avoid being slashed.
204
+ return mapValues(stats.stats, (stat)=>({
205
+ missed: stat.missedAttestations.count + stat.missedProposals.count,
206
+ total: stat.missedAttestations.total + stat.missedProposals.total
207
+ }));
208
+ }
209
+ /**
210
+ * Checks if a validator has been inactive for the specified number of consecutive epochs for which we have data on it.
211
+ * @param validator The validator address to check
212
+ * @param currentEpoch Epochs strictly before the current one are evaluated only
213
+ * @param requiredConsecutiveEpochs Number of consecutive epochs required for slashing
214
+ */ async checkPastInactivity(validator, currentEpoch, requiredConsecutiveEpochs) {
215
+ if (requiredConsecutiveEpochs === 0) {
216
+ return true;
217
+ }
218
+ // Get all historical per-epoch performance for this validator
219
+ const allPerformance = await this.store.getEpochPerformance(validator);
220
+ // Sort by epoch descending to get most recent first, keep only epochs strictly before the current one, and get the first N
221
+ const pastEpochs = allPerformance.sort((a, b)=>Number(b.epoch - a.epoch)).filter((p)=>p.epoch < currentEpoch);
222
+ // If we don't have enough historical data, don't slash
223
+ if (pastEpochs.length < requiredConsecutiveEpochs) {
224
+ this.logger.debug(`Not enough historical data for slashing ${validator} for inactivity (${allPerformance.length} epochs < ${requiredConsecutiveEpochs} required)`);
225
+ return false;
226
+ }
227
+ // Check that we have at least requiredConsecutiveEpochs and that all of them are above the inactivity threshold
228
+ return pastEpochs.slice(0, requiredConsecutiveEpochs).every((p)=>p.total === 0 ? false : p.missed / p.total >= this.config.slashInactivityTargetPercentage);
229
+ }
230
+ async handleEpochPerformance(epoch, performance) {
231
+ const inactiveValidators = getEntries(performance).filter(([_, { missed, total }])=>total > 0 && missed / total >= this.config.slashInactivityTargetPercentage).map(([address])=>address);
232
+ this.logger.debug(`Found ${inactiveValidators.length} inactive validators in epoch ${epoch}`, {
233
+ inactiveValidators,
234
+ epoch,
235
+ inactivityTargetPercentage: this.config.slashInactivityTargetPercentage
236
+ });
237
+ const epochThreshold = this.config.slashInactivityConsecutiveEpochThreshold;
238
+ const criminals = await filterAsync(inactiveValidators, (address)=>this.checkPastInactivity(EthAddress.fromString(address), epoch, epochThreshold - 1));
239
+ const args = criminals.map((address)=>({
240
+ validator: EthAddress.fromString(address),
241
+ amount: this.config.slashInactivityPenalty,
242
+ offenseType: OffenseType.INACTIVITY,
243
+ epochOrSlot: BigInt(epoch)
244
+ }));
245
+ if (criminals.length > 0) {
246
+ this.logger.info(`Identified ${criminals.length} inactivity offenses in at least ${epochThreshold} consecutive epochs`, {
247
+ offenses: args.map((arg)=>({
248
+ validator: arg.validator.toString(),
249
+ amount: arg.amount,
250
+ offenseType: getOffenseTypeName(arg.offenseType),
251
+ epochOrSlot: arg.epochOrSlot
252
+ })),
253
+ epochThreshold
254
+ });
255
+ this.emit(WANT_TO_SLASH_EVENT, args);
256
+ }
257
+ }
258
+ /**
259
+ * Process data for two L2 slots ago.
260
+ * Note that we do not process historical data, since we rely on p2p data for processing,
261
+ * and we don't have that data if we were offline during the period.
262
+ *
263
+ * `currentSlot` is anchored to the archiver's last synced L2 slot rather than the wallclock,
264
+ * so the per-slot lag (`isReadyToProcess`) and the end-of-epoch buffer (`processEpochEnds`)
265
+ * advance with archiver.
266
+ */ async work() {
267
+ const currentSlot = await this.getCurrentSlot();
268
+ try {
269
+ // Per-slot activity recording (lag = 2 slots for P2P attestation settlement).
270
+ const targetSlot = await this.isReadyToProcess(currentSlot);
271
+ if (targetSlot !== false) {
272
+ await this.processSlot(targetSlot);
273
+ }
274
+ // End-of-epoch evaluation (lag = sentinelEpochEndBufferSlots beyond the epoch's last slot).
275
+ await this.processEpochEnds(currentSlot);
276
+ } catch (err) {
277
+ this.logger.error(`Failed to process slot ${currentSlot}`, err);
278
+ }
279
+ }
280
+ /**
281
+ * After the configured buffer has elapsed past an epoch's last slot, runs the end-of-epoch
282
+ * aggregator for that epoch. Catches up if multiple epochs become eligible at once.
283
+ */ async processEpochEnds(currentSlot) {
284
+ const constants = this.epochCache.getL1Constants();
285
+ const buffer = this.config.sentinelEpochEndBufferSlots;
286
+ if (currentSlot < buffer) {
287
+ return;
288
+ }
289
+ if (this.initialSlot === undefined) {
290
+ return;
291
+ }
292
+ // We can close epoch E iff:
293
+ // - the per-slot recorder has covered the epoch's last slot (lastProcessedSlot ≥ toSlot(E))
294
+ // - the buffer has elapsed past the epoch's last slot (currentSlot − buffer ≥ toSlot(E))
295
+ // - the epoch is not in the past relative to when the sentinel started (toSlot(E) > initialSlot)
296
+ if (this.lastProcessedSlot === undefined) {
297
+ return;
298
+ }
299
+ const slotForBuffer = SlotNumber(currentSlot - buffer);
300
+ // First eligible epoch to close is the one after lastEvaluatedEpoch, or the epoch containing
301
+ // the initial slot if we haven't evaluated any yet (the initialSlot epoch may be partial — we
302
+ // don't try to evaluate it, we start from initialSlot's epoch + 1).
303
+ const startEpoch = this.lastEvaluatedEpoch !== undefined ? EpochNumber(this.lastEvaluatedEpoch + 1) : EpochNumber(getEpochAtSlot(this.initialSlot, constants) + 1);
304
+ for(let epoch = startEpoch;; epoch = EpochNumber(epoch + 1)){
305
+ const [, toSlot] = getSlotRangeForEpoch(epoch, constants);
306
+ if (toSlot > this.lastProcessedSlot || toSlot > slotForBuffer) {
307
+ break;
308
+ }
309
+ await this.handleEpochEnd(epoch);
310
+ this.lastEvaluatedEpoch = epoch;
311
+ }
312
+ }
313
+ /**
314
+ * Check if we are ready to process data for two L2 slots ago, so we allow plenty of time for p2p to process all in-flight attestations.
315
+ * We also don't move past the archiver last synced L2 slot, as we don't want to process data that is not yet available.
316
+ * Last, we check the p2p is synced with the archiver, so it has pulled all attestations from it.
317
+ */ async isReadyToProcess(currentSlot) {
318
+ if (currentSlot < 2) {
319
+ this.logger.trace(`Current slot ${currentSlot} too early.`);
320
+ return false;
321
+ }
322
+ const targetSlot = SlotNumber(currentSlot - 2);
323
+ if (this.lastProcessedSlot && this.lastProcessedSlot >= targetSlot) {
324
+ this.logger.trace(`Already processed slot ${targetSlot}`, {
325
+ lastProcessedSlot: this.lastProcessedSlot
326
+ });
327
+ return false;
328
+ }
329
+ if (this.initialSlot === undefined) {
330
+ this.logger.error(`Initial slot not loaded.`);
331
+ return false;
332
+ }
333
+ if (targetSlot <= this.initialSlot) {
334
+ this.logger.trace(`Refusing to process slot ${targetSlot} given initial slot ${this.initialSlot}`);
335
+ return false;
336
+ }
337
+ const syncedSlot = await this.archiver.getSyncedL2SlotNumber();
338
+ if (syncedSlot === undefined || syncedSlot < targetSlot) {
339
+ this.logger.debug(`Waiting for archiver to sync with L2 slot ${targetSlot}`, {
340
+ syncedSlot,
341
+ targetSlot
342
+ });
343
+ return false;
344
+ }
345
+ const archiverLastBlockHash = await this.archiver.getL2Tips().then((tip)=>tip.proposed.hash);
346
+ const p2pLastBlockHash = await this.p2p.getL2Tips().then((tips)=>tips.proposed.hash);
347
+ const isP2pSynced = archiverLastBlockHash === p2pLastBlockHash;
348
+ if (!isP2pSynced) {
349
+ this.logger.debug(`Waiting for P2P client to sync with archiver`, {
350
+ archiverLastBlockHash,
351
+ p2pLastBlockHash
352
+ });
353
+ return false;
354
+ }
355
+ return targetSlot;
356
+ }
357
+ /**
358
+ * Gathers committee and proposer data for a given slot, computes slot stats,
359
+ * and updates overall stats.
360
+ */ async processSlot(slot) {
361
+ const { epoch, seed, committee, isEscapeHatchOpen } = await this.epochCache.getCommittee(slot);
362
+ if (isEscapeHatchOpen) {
363
+ this.logger.info(`Skipping slot ${slot} at epoch ${epoch} - escape hatch is open`);
364
+ this.lastProcessedSlot = slot;
365
+ return;
366
+ }
367
+ if (!committee || committee.length === 0) {
368
+ this.logger.trace(`No committee found for slot ${slot} at epoch ${epoch}`);
369
+ this.lastProcessedSlot = slot;
370
+ return;
371
+ }
372
+ const proposerIndex = this.epochCache.computeProposerIndex(slot, epoch, seed, BigInt(committee.length));
373
+ const proposer = committee[Number(proposerIndex)];
374
+ const stats = await this.getSlotActivity(slot, epoch, proposer, committee);
375
+ this.logger.verbose(`Updating L2 slot ${slot} observed activity`, stats);
376
+ await this.updateValidators(slot, stats);
377
+ this.lastProcessedSlot = slot;
378
+ }
379
+ /**
380
+ * Computes activity for a given slot using the six-case taxonomy.
381
+ *
382
+ * Proposer status:
383
+ * - case 6 `checkpoint-mined` — a checkpoint covering this slot has landed on L1.
384
+ * - case 5 `checkpoint-valid` — the local node re-executed a checkpoint proposal for this
385
+ * slot successfully.
386
+ * - case 4 `checkpoint-invalid` — the local node re-executed a checkpoint proposal for this
387
+ * slot and rejected it.
388
+ * - case 3 `checkpoint-unvalidated` — the local node observed a checkpoint proposal for this
389
+ * slot but could not validate it (missing data, timeouts).
390
+ * - case 2 `checkpoint-missed` — block proposals seen on P2P but no checkpoint proposal.
391
+ * - case 1 `blocks-missed` — no block proposals seen for this slot.
392
+ *
393
+ * Missing-attestor penalties apply only in cases 5 and 6, where the local node has positive
394
+ * evidence the checkpoint was valid or has been canonicalised on L1.
395
+ */ async getSlotActivity(slot, epoch, proposer, committee) {
396
+ this.logger.debug(`Computing stats for slot ${slot} at epoch ${epoch}`, {
397
+ slot,
398
+ epoch,
399
+ proposer,
400
+ committee
401
+ });
402
+ // Gather attestors from both p2p (live attestations) and the archiver (signers on the
403
+ // checkpoint if one has landed on L1). Fetched on demand so it always reflects the canonical chain.
404
+ // Used regardless of which case applies.
405
+ const checkpoint = await this.getCheckpointForSlot(slot);
406
+ const p2pAttested = await this.p2p.getCheckpointAttestationsForSlot(slot, checkpoint?.proposalPayloadHash);
407
+ const p2pAttestors = p2pAttested.map((a)=>a.getSender()).filter((s)=>s !== undefined);
408
+ const attestors = new Set([
409
+ ...p2pAttestors.map((a)=>a.toString()),
410
+ ...checkpoint?.attestors.map((a)=>a.toString()) ?? []
411
+ ].filter((addr)=>proposer.toString() !== addr));
412
+ // Determine the proposer status from the six-case taxonomy.
413
+ const reexecutionOutcome = this.reexecutionTracker.getOutcomeForSlot(slot);
414
+ let status;
415
+ if (checkpoint) {
416
+ status = 'checkpoint-mined';
417
+ } else if (reexecutionOutcome === 'valid') {
418
+ status = 'checkpoint-valid';
419
+ } else if (reexecutionOutcome === 'invalid') {
420
+ status = 'checkpoint-invalid';
421
+ } else if (reexecutionOutcome === 'unvalidated') {
422
+ status = 'checkpoint-unvalidated';
423
+ } else {
424
+ // No L1 checkpoint, no local re-execution outcome for this slot. Distinguish "proposer
425
+ // sent block proposals but never made a checkpoint" from "proposer sent nothing".
426
+ const hasBlockProposals = await this.p2p.hasBlockProposalsForSlot(slot);
427
+ status = hasBlockProposals ? 'checkpoint-missed' : 'blocks-missed';
428
+ }
429
+ this.logger.debug(`Checkpoint status for slot ${slot}: ${status}`, {
430
+ ...checkpoint,
431
+ slot
432
+ });
433
+ // Missing-attestor faults only apply when we have positive evidence the proposal was valid.
434
+ const attestorsExpected = status === 'checkpoint-mined' || status === 'checkpoint-valid';
435
+ const missedAttestors = new Set(attestorsExpected ? committee.filter((v)=>!attestors.has(v.toString()) && !proposer.equals(v)).map((v)=>v.toString()) : []);
436
+ this.logger.debug(`Retrieved ${attestors.size} attestors out of ${committee.length} for slot ${slot}`, {
437
+ status,
438
+ proposer: proposer.toString(),
439
+ ...checkpoint,
440
+ slot,
441
+ attestors: [
442
+ ...attestors
443
+ ],
444
+ missedAttestors: [
445
+ ...missedAttestors
446
+ ],
447
+ committee: committee.map((c)=>c.toString())
448
+ });
449
+ // Compute the status for each validator in the committee
450
+ const statusFor = (who)=>{
451
+ if (who === proposer.toString()) {
452
+ return status;
453
+ } else if (attestors.has(who)) {
454
+ return 'attestation-sent';
455
+ } else if (missedAttestors.has(who)) {
456
+ return 'attestation-missed';
457
+ } else {
458
+ return undefined;
459
+ }
460
+ };
461
+ return Object.fromEntries(committee.map((v)=>v.toString()).map((who)=>[
462
+ who,
463
+ statusFor(who)
464
+ ]));
465
+ }
466
+ /** Push the status for each slot for each validator. */ updateValidators(slot, stats) {
467
+ return this.store.updateValidators(slot, stats);
468
+ }
469
+ /** Computes stats to be returned based on stored data. */ async computeStats({ fromSlot, toSlot, validators } = {}) {
470
+ const histories = validators ? fromEntries(await Promise.all(validators.map(async (v)=>[
471
+ v.toString(),
472
+ await this.store.getHistory(v)
473
+ ]))) : await this.store.getHistories();
474
+ const slotNow = await this.getCurrentSlot();
475
+ fromSlot ??= SlotNumber(Math.max((this.lastProcessedSlot ?? slotNow) - this.store.getHistoryLength(), 0));
476
+ toSlot ??= this.lastProcessedSlot ?? slotNow;
477
+ const stats = mapValues(histories, (history, address)=>this.computeStatsForValidator(address, history ?? [], fromSlot, toSlot));
478
+ return {
479
+ stats,
480
+ lastProcessedSlot: this.lastProcessedSlot,
481
+ initialSlot: this.initialSlot,
482
+ slotWindow: this.store.getHistoryLength()
483
+ };
484
+ }
485
+ /** Computes stats for a single validator. */ async getValidatorStats(validatorAddress, fromSlot, toSlot) {
486
+ const history = await this.store.getHistory(validatorAddress);
487
+ if (!history || history.length === 0) {
488
+ return undefined;
489
+ }
490
+ const slotNow = await this.getCurrentSlot();
491
+ const effectiveFromSlot = fromSlot ?? SlotNumber(Math.max((this.lastProcessedSlot ?? slotNow) - this.store.getHistoryLength(), 0));
492
+ const effectiveToSlot = toSlot ?? this.lastProcessedSlot ?? slotNow;
493
+ const historyLength = BigInt(this.store.getHistoryLength());
494
+ if (BigInt(effectiveToSlot) - BigInt(effectiveFromSlot) > historyLength) {
495
+ throw new Error(`Slot range (${BigInt(effectiveToSlot) - BigInt(effectiveFromSlot)}) exceeds history length (${historyLength}). ` + `Requested range: ${effectiveFromSlot} to ${effectiveToSlot}.`);
496
+ }
497
+ const validator = this.computeStatsForValidator(validatorAddress.toString(), history, effectiveFromSlot, effectiveToSlot);
498
+ return {
499
+ validator,
500
+ allTimeEpochPerformance: await this.store.getEpochPerformance(validatorAddress),
501
+ lastProcessedSlot: this.lastProcessedSlot,
502
+ initialSlot: this.initialSlot,
503
+ slotWindow: this.store.getHistoryLength()
504
+ };
505
+ }
506
+ computeStatsForValidator(address, allHistory, fromSlot, toSlot) {
507
+ let history = fromSlot ? allHistory.filter((h)=>BigInt(h.slot) >= fromSlot) : allHistory;
508
+ history = toSlot ? history.filter((h)=>BigInt(h.slot) <= toSlot) : history;
509
+ const lastProposal = history.filter((h)=>h.status === 'checkpoint-valid' || h.status === 'checkpoint-mined').at(-1);
510
+ const lastAttestation = history.filter((h)=>h.status === 'attestation-sent').at(-1);
511
+ return {
512
+ address: EthAddress.fromString(address),
513
+ lastProposal: this.computeFromSlot(lastProposal?.slot),
514
+ lastAttestation: this.computeFromSlot(lastAttestation?.slot),
515
+ totalSlots: history.length,
516
+ missedProposals: this.computeMissed(history, 'proposer', [
517
+ 'checkpoint-missed',
518
+ 'blocks-missed',
519
+ 'checkpoint-invalid',
520
+ 'checkpoint-unvalidated'
521
+ ]),
522
+ missedAttestations: this.computeMissed(history, 'attestation', [
523
+ 'attestation-missed'
524
+ ]),
525
+ history
526
+ };
527
+ }
528
+ computeMissed(history, computeOverCategory, filter) {
529
+ const relevantHistory = history.filter((h)=>!computeOverCategory || statusToCategory(h.status) === computeOverCategory);
530
+ const filteredHistory = relevantHistory.filter((h)=>filter.includes(h.status));
531
+ return {
532
+ currentStreak: countWhile([
533
+ ...relevantHistory
534
+ ].reverse(), (h)=>filter.includes(h.status)),
535
+ rate: relevantHistory.length === 0 ? undefined : filteredHistory.length / relevantHistory.length,
536
+ count: filteredHistory.length,
537
+ total: relevantHistory.length
538
+ };
539
+ }
540
+ computeFromSlot(slot) {
541
+ if (slot === undefined) {
542
+ return undefined;
543
+ }
544
+ const timestamp = getTimestampForSlot(slot, this.epochCache.getL1Constants());
545
+ return {
546
+ timestamp,
547
+ slot,
548
+ date: new Date(Number(timestamp) * 1000).toISOString()
549
+ };
550
+ }
551
+ }
@@ -0,0 +1,35 @@
1
+ import { EpochNumber, SlotNumber } from '@aztec-labs/foundation/branded-types';
2
+ import { EthAddress } from '@aztec-labs/foundation/eth-address';
3
+ import type { AztecAsyncKVStore } from '@aztec-labs/kv-store';
4
+ import type { ValidatorStatusHistory, ValidatorStatusInSlot, ValidatorsEpochPerformance } from '@aztec-labs/stdlib/validators';
5
+ export declare class SentinelStore {
6
+ private store;
7
+ private config;
8
+ static readonly SCHEMA_VERSION = 4;
9
+ private readonly historyMap;
10
+ private readonly epochMap;
11
+ constructor(store: AztecAsyncKVStore, config: {
12
+ historyLength: number;
13
+ historicEpochPerformanceLength: number;
14
+ });
15
+ getHistoryLength(): number;
16
+ getHistoricEpochPerformanceLength(): number;
17
+ updateEpochPerformance(epoch: EpochNumber, performance: ValidatorsEpochPerformance): Promise<void>;
18
+ getEpochPerformance(who: EthAddress): Promise<{
19
+ missed: number;
20
+ total: number;
21
+ epoch: EpochNumber;
22
+ }[]>;
23
+ private pushValidatorEpochPerformance;
24
+ updateValidators(slot: SlotNumber, statuses: Record<`0x${string}`, ValidatorStatusInSlot | undefined>): Promise<void>;
25
+ private pushValidatorStatusForSlot;
26
+ getHistories(): Promise<Record<`0x${string}`, ValidatorStatusHistory>>;
27
+ getHistory(address: EthAddress): Promise<ValidatorStatusHistory | undefined>;
28
+ private serializePerformance;
29
+ private deserializePerformance;
30
+ private serializeHistory;
31
+ private deserializeHistory;
32
+ private statusToNumber;
33
+ private statusFromNumber;
34
+ }
35
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3RvcmUuZC50cyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9zZW50aW5lbC9zdG9yZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsV0FBVyxFQUFFLFVBQVUsRUFBRSxNQUFNLHNDQUFzQyxDQUFDO0FBQy9FLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxvQ0FBb0MsQ0FBQztBQUVoRSxPQUFPLEtBQUssRUFBRSxpQkFBaUIsRUFBaUIsTUFBTSxzQkFBc0IsQ0FBQztBQUM3RSxPQUFPLEtBQUssRUFDVixzQkFBc0IsRUFDdEIscUJBQXFCLEVBQ3JCLDBCQUEwQixFQUMzQixNQUFNLCtCQUErQixDQUFDO0FBRXZDLHFCQUFhLGFBQWE7SUFXdEIsT0FBTyxDQUFDLEtBQUs7SUFDYixPQUFPLENBQUMsTUFBTTtJQVhoQixnQkFBdUIsY0FBYyxLQUFLO0lBRzFDLE9BQU8sQ0FBQyxRQUFRLENBQUMsVUFBVSxDQUF1QztJQUlsRSxPQUFPLENBQUMsUUFBUSxDQUFDLFFBQVEsQ0FBdUM7SUFFaEUsWUFDVSxLQUFLLEVBQUUsaUJBQWlCLEVBQ3hCLE1BQU0sRUFBRTtRQUFFLGFBQWEsRUFBRSxNQUFNLENBQUM7UUFBQyw4QkFBOEIsRUFBRSxNQUFNLENBQUE7S0FBRSxFQUlsRjtJQUVNLGdCQUFnQixXQUV0QjtJQUVNLGlDQUFpQyxXQUV2QztJQUVZLHNCQUFzQixDQUFDLEtBQUssRUFBRSxXQUFXLEVBQUUsV0FBVyxFQUFFLDBCQUEwQixpQkFNOUY7SUFFWSxtQkFBbUIsQ0FBQyxHQUFHLEVBQUUsVUFBVSxHQUFHLE9BQU8sQ0FBQztRQUFFLE1BQU0sRUFBRSxNQUFNLENBQUM7UUFBQyxLQUFLLEVBQUUsTUFBTSxDQUFDO1FBQUMsS0FBSyxFQUFFLFdBQVcsQ0FBQTtLQUFFLEVBQUUsQ0FBQyxDQUdsSDtZQUVhLDZCQUE2QjtJQTZCOUIsZ0JBQWdCLENBQUMsSUFBSSxFQUFFLFVBQVUsRUFBRSxRQUFRLEVBQUUsTUFBTSxDQUFDLEtBQUssTUFBTSxFQUFFLEVBQUUscUJBQXFCLEdBQUcsU0FBUyxDQUFDLGlCQVFqSDtZQUVhLDBCQUEwQjtJQVEzQixZQUFZLElBQUksT0FBTyxDQUFDLE1BQU0sQ0FBQyxLQUFLLE1BQU0sRUFBRSxFQUFFLHNCQUFzQixDQUFDLENBQUMsQ0FNbEY7SUFFWSxVQUFVLENBQUMsT0FBTyxFQUFFLFVBQVUsR0FBRyxPQUFPLENBQUMsc0JBQXNCLEdBQUcsU0FBUyxDQUFDLENBR3hGO0lBRUQsT0FBTyxDQUFDLG9CQUFvQjtJQU01QixPQUFPLENBQUMsc0JBQXNCO0lBYTlCLE9BQU8sQ0FBQyxnQkFBZ0I7SUFNeEIsT0FBTyxDQUFDLGtCQUFrQjtJQVcxQixPQUFPLENBQUMsY0FBYztJQXlCdEIsT0FBTyxDQUFDLGdCQUFnQjtDQXNCekIifQ==
@@ -0,0 +1 @@
1
+ {"version":3,"file":"store.d.ts","sourceRoot":"","sources":["../../src/sentinel/store.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,sCAAsC,CAAC;AAC/E,OAAO,EAAE,UAAU,EAAE,MAAM,oCAAoC,CAAC;AAEhE,OAAO,KAAK,EAAE,iBAAiB,EAAiB,MAAM,sBAAsB,CAAC;AAC7E,OAAO,KAAK,EACV,sBAAsB,EACtB,qBAAqB,EACrB,0BAA0B,EAC3B,MAAM,+BAA+B,CAAC;AAEvC,qBAAa,aAAa;IAWtB,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,MAAM;IAXhB,gBAAuB,cAAc,KAAK;IAG1C,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAuC;IAIlE,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAuC;IAEhE,YACU,KAAK,EAAE,iBAAiB,EACxB,MAAM,EAAE;QAAE,aAAa,EAAE,MAAM,CAAC;QAAC,8BAA8B,EAAE,MAAM,CAAA;KAAE,EAIlF;IAEM,gBAAgB,WAEtB;IAEM,iCAAiC,WAEvC;IAEY,sBAAsB,CAAC,KAAK,EAAE,WAAW,EAAE,WAAW,EAAE,0BAA0B,iBAM9F;IAEY,mBAAmB,CAAC,GAAG,EAAE,UAAU,GAAG,OAAO,CAAC;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,WAAW,CAAA;KAAE,EAAE,CAAC,CAGlH;YAEa,6BAA6B;IA6B9B,gBAAgB,CAAC,IAAI,EAAE,UAAU,EAAE,QAAQ,EAAE,MAAM,CAAC,KAAK,MAAM,EAAE,EAAE,qBAAqB,GAAG,SAAS,CAAC,iBAQjH;YAEa,0BAA0B;IAQ3B,YAAY,IAAI,OAAO,CAAC,MAAM,CAAC,KAAK,MAAM,EAAE,EAAE,sBAAsB,CAAC,CAAC,CAMlF;IAEY,UAAU,CAAC,OAAO,EAAE,UAAU,GAAG,OAAO,CAAC,sBAAsB,GAAG,SAAS,CAAC,CAGxF;IAED,OAAO,CAAC,oBAAoB;IAM5B,OAAO,CAAC,sBAAsB;IAa9B,OAAO,CAAC,gBAAgB;IAMxB,OAAO,CAAC,kBAAkB;IAW1B,OAAO,CAAC,cAAc;IAyBtB,OAAO,CAAC,gBAAgB;CAsBzB"}