@aztec/archiver 0.0.1-commit.f2ce05ee → 0.0.1-commit.f5a9928

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 (132) hide show
  1. package/README.md +19 -13
  2. package/dest/archiver.d.ts +76 -18
  3. package/dest/archiver.d.ts.map +1 -1
  4. package/dest/archiver.js +329 -162
  5. package/dest/config.d.ts +7 -3
  6. package/dest/config.d.ts.map +1 -1
  7. package/dest/config.js +43 -14
  8. package/dest/errors.d.ts +55 -9
  9. package/dest/errors.d.ts.map +1 -1
  10. package/dest/errors.js +81 -14
  11. package/dest/factory.d.ts +20 -9
  12. package/dest/factory.d.ts.map +1 -1
  13. package/dest/factory.js +87 -39
  14. package/dest/index.d.ts +12 -3
  15. package/dest/index.d.ts.map +1 -1
  16. package/dest/index.js +11 -2
  17. package/dest/l1/bin/retrieve-calldata.js +32 -28
  18. package/dest/l1/calldata_retriever.d.ts +81 -50
  19. package/dest/l1/calldata_retriever.d.ts.map +1 -1
  20. package/dest/l1/calldata_retriever.js +202 -260
  21. package/dest/l1/data_retrieval.d.ts +32 -18
  22. package/dest/l1/data_retrieval.d.ts.map +1 -1
  23. package/dest/l1/data_retrieval.js +42 -47
  24. package/dest/l1/spire_proposer.d.ts +5 -5
  25. package/dest/l1/spire_proposer.d.ts.map +1 -1
  26. package/dest/l1/spire_proposer.js +9 -17
  27. package/dest/l1/trace_tx.d.ts +12 -66
  28. package/dest/l1/trace_tx.d.ts.map +1 -1
  29. package/dest/l1/validate_historical_logs.d.ts +23 -0
  30. package/dest/l1/validate_historical_logs.d.ts.map +1 -0
  31. package/dest/l1/validate_historical_logs.js +108 -0
  32. package/dest/modules/contract_data_source_adapter.d.ts +25 -0
  33. package/dest/modules/contract_data_source_adapter.d.ts.map +1 -0
  34. package/dest/modules/contract_data_source_adapter.js +32 -0
  35. package/dest/modules/data_source_base.d.ts +74 -46
  36. package/dest/modules/data_source_base.d.ts.map +1 -1
  37. package/dest/modules/data_source_base.js +252 -190
  38. package/dest/modules/data_store_updater.d.ts +49 -17
  39. package/dest/modules/data_store_updater.d.ts.map +1 -1
  40. package/dest/modules/data_store_updater.js +218 -122
  41. package/dest/modules/instrumentation.d.ts +29 -3
  42. package/dest/modules/instrumentation.d.ts.map +1 -1
  43. package/dest/modules/instrumentation.js +67 -11
  44. package/dest/modules/l1_synchronizer.d.ts +16 -14
  45. package/dest/modules/l1_synchronizer.d.ts.map +1 -1
  46. package/dest/modules/l1_synchronizer.js +488 -219
  47. package/dest/modules/outbox_trees_resolver.d.ts +64 -0
  48. package/dest/modules/outbox_trees_resolver.d.ts.map +1 -0
  49. package/dest/modules/outbox_trees_resolver.js +184 -0
  50. package/dest/modules/validation.d.ts +30 -7
  51. package/dest/modules/validation.d.ts.map +1 -1
  52. package/dest/modules/validation.js +35 -17
  53. package/dest/store/block_store.d.ts +186 -74
  54. package/dest/store/block_store.d.ts.map +1 -1
  55. package/dest/store/block_store.js +810 -285
  56. package/dest/store/contract_class_store.d.ts +17 -4
  57. package/dest/store/contract_class_store.d.ts.map +1 -1
  58. package/dest/store/contract_class_store.js +42 -68
  59. package/dest/store/contract_instance_store.d.ts +28 -1
  60. package/dest/store/contract_instance_store.d.ts.map +1 -1
  61. package/dest/store/contract_instance_store.js +58 -6
  62. package/dest/store/data_stores.d.ts +68 -0
  63. package/dest/store/data_stores.d.ts.map +1 -0
  64. package/dest/store/data_stores.js +54 -0
  65. package/dest/store/function_names_cache.d.ts +17 -0
  66. package/dest/store/function_names_cache.d.ts.map +1 -0
  67. package/dest/store/function_names_cache.js +30 -0
  68. package/dest/store/l2_tips_cache.d.ts +25 -0
  69. package/dest/store/l2_tips_cache.d.ts.map +1 -0
  70. package/dest/store/l2_tips_cache.js +26 -0
  71. package/dest/store/log_store.d.ts +42 -37
  72. package/dest/store/log_store.d.ts.map +1 -1
  73. package/dest/store/log_store.js +262 -408
  74. package/dest/store/log_store_codec.d.ts +78 -0
  75. package/dest/store/log_store_codec.d.ts.map +1 -0
  76. package/dest/store/log_store_codec.js +110 -0
  77. package/dest/store/message_store.d.ts +11 -1
  78. package/dest/store/message_store.d.ts.map +1 -1
  79. package/dest/store/message_store.js +51 -9
  80. package/dest/test/fake_l1_state.d.ts +25 -1
  81. package/dest/test/fake_l1_state.d.ts.map +1 -1
  82. package/dest/test/fake_l1_state.js +166 -32
  83. package/dest/test/mock_archiver.d.ts +1 -1
  84. package/dest/test/mock_archiver.d.ts.map +1 -1
  85. package/dest/test/mock_archiver.js +3 -2
  86. package/dest/test/mock_l2_block_source.d.ts +61 -47
  87. package/dest/test/mock_l2_block_source.d.ts.map +1 -1
  88. package/dest/test/mock_l2_block_source.js +306 -211
  89. package/dest/test/mock_structs.d.ts +4 -1
  90. package/dest/test/mock_structs.d.ts.map +1 -1
  91. package/dest/test/mock_structs.js +15 -3
  92. package/dest/test/noop_l1_archiver.d.ts +17 -6
  93. package/dest/test/noop_l1_archiver.d.ts.map +1 -1
  94. package/dest/test/noop_l1_archiver.js +31 -11
  95. package/package.json +15 -14
  96. package/src/archiver.ts +427 -185
  97. package/src/config.ts +51 -13
  98. package/src/errors.ts +122 -21
  99. package/src/factory.ts +104 -29
  100. package/src/index.ts +19 -2
  101. package/src/l1/README.md +25 -68
  102. package/src/l1/bin/retrieve-calldata.ts +40 -27
  103. package/src/l1/calldata_retriever.ts +267 -379
  104. package/src/l1/data_retrieval.ts +66 -70
  105. package/src/l1/spire_proposer.ts +7 -15
  106. package/src/l1/validate_historical_logs.ts +140 -0
  107. package/src/modules/contract_data_source_adapter.ts +46 -0
  108. package/src/modules/data_source_base.ts +337 -238
  109. package/src/modules/data_store_updater.ts +259 -154
  110. package/src/modules/instrumentation.ts +71 -11
  111. package/src/modules/l1_synchronizer.ts +659 -269
  112. package/src/modules/outbox_trees_resolver.ts +220 -0
  113. package/src/modules/validation.ts +80 -23
  114. package/src/store/block_store.ts +989 -358
  115. package/src/store/contract_class_store.ts +49 -103
  116. package/src/store/contract_instance_store.ts +74 -11
  117. package/src/store/data_stores.ts +104 -0
  118. package/src/store/function_names_cache.ts +37 -0
  119. package/src/store/l2_tips_cache.ts +35 -0
  120. package/src/store/log_store.ts +302 -559
  121. package/src/store/log_store_codec.ts +143 -0
  122. package/src/store/message_store.ts +60 -10
  123. package/src/structs/inbox_message.ts +1 -1
  124. package/src/test/fake_l1_state.ts +213 -42
  125. package/src/test/mock_archiver.ts +3 -2
  126. package/src/test/mock_l2_block_source.ts +378 -233
  127. package/src/test/mock_structs.ts +25 -8
  128. package/src/test/noop_l1_archiver.ts +61 -12
  129. package/dest/store/kv_archiver_store.d.ts +0 -340
  130. package/dest/store/kv_archiver_store.d.ts.map +0 -1
  131. package/dest/store/kv_archiver_store.js +0 -446
  132. package/src/store/kv_archiver_store.ts +0 -639
package/dest/archiver.js CHANGED
@@ -371,23 +371,30 @@ function _apply_decs_2203_r(targetClass, memberDecs, classDecs, parentClass) {
371
371
  return (_apply_decs_2203_r = applyDecs2203RFactory())(targetClass, memberDecs, classDecs, parentClass);
372
372
  }
373
373
  var _dec, _initProto;
374
- import { GENESIS_BLOCK_HEADER_HASH, INITIAL_L2_BLOCK_NUM } from '@aztec/constants';
375
374
  import { BlockTagTooOldError } from '@aztec/ethereum/contracts';
376
- import { BlockNumber, CheckpointNumber } from '@aztec/foundation/branded-types';
375
+ import { BlockNumber, EpochNumber, SlotNumber } from '@aztec/foundation/branded-types';
377
376
  import { Buffer32 } from '@aztec/foundation/buffer';
378
377
  import { merge } from '@aztec/foundation/collection';
379
378
  import { EthAddress } from '@aztec/foundation/eth-address';
380
379
  import { createLogger } from '@aztec/foundation/log';
381
380
  import { promiseWithResolvers } from '@aztec/foundation/promise';
382
381
  import { RunningPromise, makeLoggingErrorHandler } from '@aztec/foundation/running-promise';
383
- import { GENESIS_CHECKPOINT_HEADER_HASH } from '@aztec/stdlib/block';
384
- import { getEpochNumberAtTimestamp, getSlotAtNextL1Block, getSlotAtTimestamp, getSlotRangeForEpoch, getTimestampRangeForEpoch } from '@aztec/stdlib/epoch-helpers';
382
+ import { elapsed } from '@aztec/foundation/timer';
383
+ import { L2BlockSourceEvents, l2TipsEqual } from '@aztec/stdlib/block';
384
+ import { getEpochAtSlot, getSlotAtNextL1Block, getSlotRangeForEpoch, getTimestampForSlot, getTimestampRangeForEpoch } from '@aztec/stdlib/epoch-helpers';
385
+ import { ConsensusTimetable } from '@aztec/stdlib/timetable';
385
386
  import { trackSpan } from '@aztec/telemetry-client';
386
387
  import { mapArchiverConfig } from './config.js';
387
- import { NoBlobBodiesFoundError } from './errors.js';
388
+ import { BlockAlreadyCheckpointedError, BlockOrCheckpointSlotExpiredError, NoBlobBodiesFoundError } from './errors.js';
389
+ import { validateAndLogHistoricalLogsAvailability } from './l1/validate_historical_logs.js';
388
390
  import { validateAndLogTraceAvailability } from './l1/validate_trace.js';
389
391
  import { ArchiverDataSourceBase } from './modules/data_source_base.js';
390
392
  import { ArchiverDataStoreUpdater } from './modules/data_store_updater.js';
393
+ import { OutboxTreesResolver } from './modules/outbox_trees_resolver.js';
394
+ import { backupArchiverDataStores, getArchiverSynchPoint } from './store/data_stores.js';
395
+ const noCheckpointProposalPresence = {
396
+ hasCheckpointProposalForSlot: ()=>Promise.resolve(false)
397
+ };
391
398
  _dec = trackSpan('Archiver.sync');
392
399
  /**
393
400
  * Pulls checkpoints in a non-blocking manner and provides interface for their retrieval.
@@ -397,11 +404,14 @@ _dec = trackSpan('Archiver.sync');
397
404
  publicClient;
398
405
  debugClient;
399
406
  rollup;
407
+ outbox;
400
408
  l1Addresses;
401
- dataStore;
409
+ dataStores;
402
410
  config;
403
411
  blobClient;
404
412
  l1Constants;
413
+ dateProvider;
414
+ checkpointProposalPresence;
405
415
  log;
406
416
  static{
407
417
  ({ e: [_initProto] } = _apply_decs_2203_r(this, [
@@ -415,37 +425,73 @@ _dec = trackSpan('Archiver.sync');
415
425
  /** Event emitter for archiver events (L2BlockProven, L2PruneUnproven, L2PruneUncheckpointed, etc). */ events;
416
426
  /** A loop in which we will be continually fetching new checkpoints. */ runningPromise;
417
427
  /** L1 synchronizer that handles fetching checkpoints and messages from L1. */ synchronizer;
428
+ /** Resolver for L2-to-L1 message membership witnesses, built over this archiver's read view. */ outboxTreesResolver;
418
429
  initialSyncComplete;
419
430
  initialSyncPromise;
420
- /** Queue of blocks to be added to the store, processed by the sync loop. */ blockQueue;
431
+ /** Queue of blocks and checkpoints to be added to the store, processed by the sync loop. */ inboundQueue;
421
432
  /** Helper to handle updates to the store */ updater;
433
+ /** In-memory cache for L2 chain tips. */ l2TipsCache;
434
+ /** Consensus timing model used for proposed-checkpoint arrival expectations. */ timetable;
422
435
  tracer;
436
+ instrumentation;
423
437
  /**
424
438
  * Creates a new instance of the Archiver.
425
439
  * @param publicClient - A client for interacting with the Ethereum node.
426
440
  * @param debugClient - A client for interacting with the Ethereum node for debug/trace methods.
427
441
  * @param rollup - Rollup contract instance.
442
+ * @param outbox - Outbox contract instance, used to read per-epoch L2-to-L1 message roots.
428
443
  * @param inbox - Inbox contract instance.
429
- * @param l1Addresses - L1 contract addresses (registry, governance proposer, slash factory, slashing proposer).
430
- * @param dataStore - An archiver data store for storage & retrieval of blocks, encrypted logs & contract data.
444
+ * @param l1Addresses - L1 contract addresses (registry, governance proposer, slashing proposer).
445
+ * @param dataStores - Archiver substores for storage & retrieval of blocks, encrypted logs & contract data.
431
446
  * @param config - Archiver configuration options.
432
447
  * @param blobClient - Client for retrieving blob data.
433
- * @param epochCache - Cache for epoch-related data.
434
- * @param dateProvider - Provider for current date/time.
435
448
  * @param instrumentation - Instrumentation for metrics and tracing.
436
449
  * @param l1Constants - L1 rollup constants.
450
+ * @param synchronizer - L1 synchronizer that handles fetching checkpoints and messages from L1.
451
+ * @param events - Event emitter shared with the synchronizer.
452
+ * @param initialHeader - Genesis block header.
453
+ * @param initialBlockHash - Precomputed hash of the genesis block header.
454
+ * @param l2TipsCache - In-memory cache for L2 chain tips.
455
+ * @param dateProvider - Provider for current date/time, used for wall-clock orphan-block pruning.
437
456
  * @param log - A logger.
438
- */ constructor(publicClient, debugClient, rollup, l1Addresses, dataStore, config, blobClient, instrumentation, l1Constants, synchronizer, events, log = createLogger('archiver')){
439
- super(dataStore, l1Constants), this.publicClient = publicClient, this.debugClient = debugClient, this.rollup = rollup, this.l1Addresses = l1Addresses, this.dataStore = dataStore, this.config = config, this.blobClient = blobClient, this.l1Constants = l1Constants, this.log = log, this.initialSyncComplete = (_initProto(this), false), this.blockQueue = [];
457
+ */ constructor(publicClient, debugClient, rollup, outbox, l1Addresses, dataStores, config, blobClient, instrumentation, l1Constants, synchronizer, events, initialHeader, initialBlockHash, l2TipsCache, dateProvider, checkpointProposalPresence = noCheckpointProposalPresence, log = createLogger('archiver')){
458
+ super(dataStores, l1Constants, initialHeader, initialBlockHash, l1Constants.genesisArchiveRoot), this.publicClient = publicClient, this.debugClient = debugClient, this.rollup = rollup, this.outbox = outbox, this.l1Addresses = l1Addresses, this.dataStores = dataStores, this.config = config, this.blobClient = blobClient, this.l1Constants = l1Constants, this.dateProvider = dateProvider, this.checkpointProposalPresence = checkpointProposalPresence, this.log = log, this.initialSyncComplete = (_initProto(this), false), this.inboundQueue = [];
440
459
  this.tracer = instrumentation.tracer;
460
+ this.instrumentation = instrumentation;
441
461
  this.initialSyncPromise = promiseWithResolvers();
442
462
  this.synchronizer = synchronizer;
443
463
  this.events = events;
444
- this.updater = new ArchiverDataStoreUpdater(this.dataStore);
464
+ this.l2TipsCache = l2TipsCache;
465
+ this.timetable = new ConsensusTimetable({
466
+ l1Constants,
467
+ blockDuration: this.config.blockDuration,
468
+ checkpointProposalSyncGrace: this.config.checkpointProposalSyncGrace
469
+ });
470
+ this.updater = new ArchiverDataStoreUpdater(this.dataStores, this.l2TipsCache, {
471
+ rollupManaLimit: l1Constants.rollupManaLimit
472
+ });
473
+ // The resolver reads its witness data from this archiver and pins its lazy Outbox-root fetches
474
+ // to the archiver's synced L1 block. No method on `this` is invoked during construction.
475
+ this.outboxTreesResolver = new OutboxTreesResolver(this.outbox, this, this.dataStores.db, ()=>Promise.resolve(this.getL1BlockNumber()), l1Constants.epochDuration);
445
476
  // Running promise starts with a small interval inbetween runs, so all iterations needed for the initial sync
446
477
  // are done as fast as possible. This then gets updated once the initial sync completes.
447
478
  this.runningPromise = new RunningPromise(()=>this.sync(), this.log, this.config.pollingIntervalMs / 10, makeLoggingErrorHandler(this.log, NoBlobBodiesFoundError, BlockTagTooOldError));
448
479
  }
480
+ /**
481
+ * Returns the L2-to-L1 membership witness for `message` emitted by tx `txHash`. The node selects
482
+ * the smallest partial-proof root on the Outbox that covers the tx's checkpoint and builds the
483
+ * witness against it.
484
+ *
485
+ * The node reads the Outbox roots lazily, pinned to its synced L1 block, so the witness reflects
486
+ * the node's synced view. Returns `undefined` if the tx isn't yet in a block/epoch or no covering
487
+ * root has landed on L1 as of the synced block.
488
+ *
489
+ * Caveat: roots are cached only for the current synced L1 block and re-fetched once the node
490
+ * advances, so a reorg is picked up on the next synced-block advance rather than re-validated per
491
+ * request.
492
+ */ getL2ToL1MembershipWitness(txHash, message, messageIndexInTx) {
493
+ return this.outboxTreesResolver.getL2ToL1MembershipWitness(txHash, message, messageIndexInTx);
494
+ }
449
495
  /** Updates archiver config */ updateConfig(newConfig) {
450
496
  this.config = merge(this.config, mapArchiverConfig(newConfig));
451
497
  this.synchronizer.setConfig(this.config);
@@ -460,10 +506,16 @@ _dec = trackSpan('Archiver.sync');
460
506
  await this.blobClient.testSources();
461
507
  await this.synchronizer.testEthereumNodeSynced();
462
508
  await validateAndLogTraceAvailability(this.debugClient, this.config.ethereumAllowNoDebugHosts ?? false, this.log.getBindings());
509
+ await validateAndLogHistoricalLogsAvailability(this.publicClient, {
510
+ rollupAddress: this.l1Addresses.rollupAddress,
511
+ inboxAddress: this.l1Addresses.inboxAddress,
512
+ registryAddress: this.l1Addresses.registryAddress,
513
+ governanceProposerAddress: this.l1Addresses.governanceProposerAddress
514
+ }, this.config.skipHistoricalLogsCheck ?? false, this.log.getBindings());
463
515
  // Log initial state for the archiver
464
516
  const { l1StartBlock } = this.l1Constants;
465
- const { blocksSynchedTo = l1StartBlock, messagesSynchedTo = l1StartBlock } = await this.store.getSynchPoint();
466
- const currentL2Checkpoint = await this.getSynchedCheckpointNumber();
517
+ const { blocksSynchedTo = l1StartBlock, messagesSynchedTo = l1StartBlock } = await getArchiverSynchPoint(this.stores);
518
+ const currentL2Checkpoint = await this.getCheckpointNumber();
467
519
  this.log.info(`Starting archiver sync to rollup contract ${this.rollup.address} from L1 block ${blocksSynchedTo} and L2 checkpoint ${currentL2Checkpoint}`, {
468
520
  blocksSynchedTo,
469
521
  messagesSynchedTo,
@@ -478,6 +530,16 @@ _dec = trackSpan('Archiver.sync');
478
530
  syncImmediate() {
479
531
  return this.runningPromise.trigger();
480
532
  }
533
+ /** Sets the proposal-presence provider used by orphan proposed-block pruning. */ setCheckpointProposalPresence(checkpointProposalPresence) {
534
+ this.checkpointProposalPresence = checkpointProposalPresence;
535
+ }
536
+ trySyncImmediate() {
537
+ try {
538
+ return this.syncImmediate();
539
+ } catch (err) {
540
+ this.log.error(`Failed to trigger immediate archiver sync: ${err}`, err);
541
+ }
542
+ }
481
543
  /**
482
544
  * Queues a block to be added to the archiver store and triggers processing.
483
545
  * The block will be processed by the sync loop.
@@ -485,56 +547,91 @@ _dec = trackSpan('Archiver.sync');
485
547
  * @param block - The L2 block to add.
486
548
  * @returns A promise that resolves when the block has been added to the store, or rejects on error.
487
549
  */ addBlock(block) {
488
- return new Promise((resolve, reject)=>{
489
- this.blockQueue.push({
490
- block,
491
- resolve,
492
- reject
493
- });
494
- this.log.debug(`Queued block ${block.number} for processing`);
495
- // Trigger an immediate sync, but don't wait for it - the promise resolves when the block is processed
496
- this.syncImmediate().catch((err)=>{
497
- this.log.error(`Sync immediate call failed: ${err}`);
498
- });
550
+ const promise = promiseWithResolvers();
551
+ this.inboundQueue.push({
552
+ block,
553
+ ...promise,
554
+ type: 'block'
499
555
  });
556
+ this.log.debug(`Queued block ${block.number} for processing`);
557
+ void this.trySyncImmediate();
558
+ return promise.promise;
500
559
  }
501
560
  /**
502
- * Processes all queued blocks, adding them to the store.
561
+ * Queues a new proposed checkpoint into the archiver store.
562
+ * Checks that the checkpoint is not for an L2 slot already synced from L1.
563
+ * Resolves once the checkpoint has been processed.
564
+ */ addProposedCheckpoint(pending) {
565
+ const promise = promiseWithResolvers();
566
+ this.inboundQueue.push({
567
+ checkpoint: pending,
568
+ ...promise,
569
+ type: 'checkpoint'
570
+ });
571
+ this.log.debug(`Queued checkpoint ${pending.checkpointNumber} for processing`);
572
+ void this.trySyncImmediate();
573
+ return promise.promise;
574
+ }
575
+ /**
576
+ * Processes all queued blocks and checkpoints, adding them to the store.
503
577
  * Called at the beginning of each sync iteration.
504
- * Blocks are processed in the order they were queued.
505
- */ async processQueuedBlocks() {
506
- if (this.blockQueue.length === 0) {
507
- return;
578
+ * Items are processed in the order they were queued.
579
+ */ async processInboundQueue() {
580
+ const blocksAdded = [];
581
+ if (this.inboundQueue.length === 0) {
582
+ return blocksAdded;
508
583
  }
509
- // Take all blocks from the queue
510
- const queuedItems = this.blockQueue.splice(0, this.blockQueue.length);
511
- this.log.debug(`Processing ${queuedItems.length} queued block(s)`);
584
+ // Take all items from the queue
585
+ const queuedItems = this.inboundQueue.splice(0, this.inboundQueue.length);
586
+ this.log.debug(`Processing ${queuedItems.length} queued inbound items`);
512
587
  // Calculate slot threshold for validation
513
588
  const l1Timestamp = this.synchronizer.getL1Timestamp();
514
589
  const slotAtNextL1Block = l1Timestamp === undefined ? undefined : getSlotAtNextL1Block(l1Timestamp, this.l1Constants);
515
- // Process each block individually to properly resolve/reject each promise
516
- for (const { block, resolve, reject } of queuedItems){
517
- const blockSlot = block.header.globalVariables.slotNumber;
518
- if (slotAtNextL1Block !== undefined && blockSlot < slotAtNextL1Block) {
519
- this.log.warn(`Rejecting proposed block ${block.number} for past slot ${blockSlot} (current is ${slotAtNextL1Block})`, {
520
- block: block.toBlockInfo(),
590
+ // Helpers for manipulating blocks and checkpoints in the queue
591
+ const getSlot = (item)=>item.type === 'block' ? item.block.header.globalVariables.slotNumber : item.checkpoint.header.slotNumber;
592
+ const getNumber = (item)=>item.type === 'block' ? item.block.number : item.checkpoint.checkpointNumber;
593
+ // Process each item individually to properly resolve/reject each promise
594
+ for (const item of queuedItems){
595
+ const { resolve, reject, type } = item;
596
+ const itemSlot = getSlot(item);
597
+ const itemNumber = getNumber(item);
598
+ if (slotAtNextL1Block !== undefined && itemSlot < slotAtNextL1Block) {
599
+ const nextSlotTimestamp = getTimestampForSlot(slotAtNextL1Block, this.l1Constants);
600
+ this.log.warn(`Rejecting proposed ${type} ${itemNumber} for past slot ${itemSlot} (current ${slotAtNextL1Block})`, {
601
+ number: itemNumber,
602
+ type,
521
603
  l1Timestamp,
522
- slotAtNextL1Block
604
+ slotAtNextL1Block,
605
+ nextSlotTimestamp
523
606
  });
524
- reject(new Error(`Block ${block.number} is for past slot ${blockSlot} (current is ${slotAtNextL1Block})`));
607
+ reject(new BlockOrCheckpointSlotExpiredError(itemSlot, nextSlotTimestamp, l1Timestamp));
525
608
  continue;
526
609
  }
527
610
  try {
528
- await this.updater.addProposedBlocks([
529
- block
530
- ]);
531
- this.log.debug(`Added block ${block.number} to store`);
611
+ if (type === 'block') {
612
+ const [durationMs] = await elapsed(()=>this.updater.addProposedBlock(item.block));
613
+ this.instrumentation.processNewProposedBlock(durationMs, item.block);
614
+ blocksAdded.push(item.block);
615
+ } else {
616
+ await this.updater.addProposedCheckpoint(item.checkpoint);
617
+ }
618
+ this.log.debug(`Added ${type} ${itemNumber} to store`);
532
619
  resolve();
533
620
  } catch (err) {
534
- this.log.error(`Failed to add block ${block.number} to store: ${err.message}`);
621
+ if (err instanceof BlockAlreadyCheckpointedError) {
622
+ this.log.debug(`Proposed block ${itemNumber} matches already checkpointed block, ignoring late proposal`);
623
+ // A late proposal that matches an already-checkpointed block adds nothing new, so it is not appended.
624
+ resolve();
625
+ continue;
626
+ }
627
+ this.log.error(`Failed to add ${type} ${itemNumber} to store: ${err.message}`, err, {
628
+ number: itemNumber,
629
+ type
630
+ });
535
631
  reject(err);
536
632
  }
537
633
  }
634
+ return blocksAdded;
538
635
  }
539
636
  waitForInitialSync() {
540
637
  return this.initialSyncPromise.promise;
@@ -542,14 +639,111 @@ _dec = trackSpan('Archiver.sync');
542
639
  /**
543
640
  * Fetches logs from L1 contracts and processes them.
544
641
  */ async sync() {
642
+ // Capture the tips before any mutation so the aggregate event can report what moved this pass.
643
+ const fromTips = await this.getL2Tips();
644
+ // Accumulate the blocks added across the pass's sub-steps (queued proposals + L1 checkpoint payloads).
645
+ const blocksAdded = [];
545
646
  // Process any queued blocks first, before doing L1 sync
546
- await this.processQueuedBlocks();
647
+ blocksAdded.push(...await this.processInboundQueue());
547
648
  // Now perform L1 sync
548
- await this.syncFromL1();
649
+ blocksAdded.push(...await this.syncFromL1());
650
+ // Prune proposed blocks with no corresponding proposed checkpoint after the appropriate materialization deadline.
651
+ await this.pruneOrphanProposedBlocks();
652
+ // Emit a single aggregate update event after all pass work has committed and the tips cache has refreshed,
653
+ // so `toTips` and the source state observed by listeners are consistent with the event payload. The pass
654
+ // mutated state if the tips moved (added blocks, a prune, or a thin tier movement) or blocks were added; a
655
+ // fully-synced no-op pass emits nothing.
656
+ const toTips = await this.getL2Tips();
657
+ if (!l2TipsEqual(fromTips, toTips) || blocksAdded.length > 0) {
658
+ this.events.emit(L2BlockSourceEvents.L2BlockSourceUpdated, {
659
+ type: L2BlockSourceEvents.L2BlockSourceUpdated,
660
+ fromTips,
661
+ toTips
662
+ });
663
+ }
664
+ }
665
+ /**
666
+ * Prunes a block-only local tip that was built atop a checkpoint that was never itself proposed.
667
+ *
668
+ * Under pipelining, a proposer publishes the blocks for a checkpoint (block-only proposals) before
669
+ * assembling and publishing the enclosing proposed checkpoint at the end of the build slot. A node
670
+ * that received those blocks but never the proposed checkpoint is left with an orphan tip it must not build on.
671
+ * If no checkpoint proposal was received for the orphan slot, we prune after the receive deadline plus local
672
+ * tolerance. If a checkpoint proposal was received but has not materialized into proposed archiver state,
673
+ * we prune after the consensus materialization deadline.
674
+ *
675
+ * The uncheckpointed suffix is scanned in order. Blocks covered by proposed checkpoints are left in
676
+ * place; the first block not covered by a proposed checkpoint starts the orphan suffix to prune.
677
+ */ async pruneOrphanProposedBlocks() {
678
+ if (this.config.skipOrphanProposedBlockPruning) {
679
+ return;
680
+ }
681
+ const tips = await this.getL2Tips();
682
+ const now = BigInt(this.dateProvider.nowInSeconds());
683
+ // Frontier block covered by a proposed (or, falling back, confirmed) checkpoint. Blocks beyond it
684
+ // have no enclosing checkpoint proposal and are the orphan-pruning candidates.
685
+ const proposedCheckpointBlockNumber = await this.stores.blocks.getProposedCheckpointL2BlockNumber();
686
+ // The proposed tip is a proposed-checkpointed block, so there are no orphan proposed blocks to prune
687
+ if (proposedCheckpointBlockNumber === tips.proposed.number) {
688
+ this.log.trace(`No orphan proposed blocks to prune: proposed tip ${tips.proposed.number} is checkpointed`, {
689
+ proposed: tips.proposed,
690
+ proposedCheckpointBlockNumber
691
+ });
692
+ return;
693
+ }
694
+ // Load the blocks that are candidates for pruning (ie blocks without a proposed checkpoint covering them)
695
+ const blocksWithoutProposedCheckpoint = await this.stores.blocks.getBlocksData({
696
+ from: BlockNumber(proposedCheckpointBlockNumber + 1),
697
+ limit: tips.proposed.number - proposedCheckpointBlockNumber
698
+ });
699
+ // Iterate through them in order, the first one with a slot that should have received a proposed checkpoint
700
+ // is the first orphan block, and all blocks after it are also orphaned and should be pruned.
701
+ let lastSlotChecked = undefined;
702
+ for (const blockData of blocksWithoutProposedCheckpoint){
703
+ // No need to recheck if this block had the same slot as the previous one.
704
+ const blockSlot = blockData.header.getSlot();
705
+ const blockNumber = blockData.header.getBlockNumber();
706
+ if (lastSlotChecked !== undefined && blockSlot === lastSlotChecked) {
707
+ continue;
708
+ }
709
+ lastSlotChecked = blockSlot;
710
+ const hasCheckpointProposal = await this.checkpointProposalPresence.hasCheckpointProposalForSlot(blockSlot);
711
+ const deadlineType = hasCheckpointProposal ? 'checkpoint-proposal-synced' : 'checkpoint-proposal-received';
712
+ const selectedDeadline = BigInt(hasCheckpointProposal ? this.timetable.getCheckpointProposalSyncedDeadline(blockSlot) : Math.ceil(this.timetable.getCheckpointProposalReceiveDeadline(blockSlot) + this.config.orphanPruneNoProposalTolerance));
713
+ // If it's still not checkpointed once strictly past the selected deadline, prune it along with all blocks after
714
+ // it. A proposal may still legitimately arrive or materialize at exactly its deadline, so the tip is only
715
+ // orphaned once that instant has fully elapsed.
716
+ if (now > selectedDeadline) {
717
+ const pruneAfterBlockNumber = BlockNumber(blockNumber - 1);
718
+ this.log.warn(`Pruning orphan blocks after block ${pruneAfterBlockNumber}: block at slot ${blockSlot} belongs to ` + `checkpoint ${blockData.checkpointNumber} which has no matching proposed checkpoint`, {
719
+ firstUncheckpointedBlockHeader: blockData.header.toInspect(),
720
+ blockCheckpointNumber: blockData.checkpointNumber,
721
+ blockNumber,
722
+ blockSlot,
723
+ hasCheckpointProposal,
724
+ deadlineType,
725
+ selectedDeadline,
726
+ now
727
+ });
728
+ const prunedBlocks = await this.updater.removeBlocksWithoutProposedCheckpointAfter(pruneAfterBlockNumber);
729
+ if (prunedBlocks.length > 0) {
730
+ this.instrumentation.recordPrune('orphan');
731
+ this.events.emit(L2BlockSourceEvents.L2PruneUncheckpointed, {
732
+ type: L2BlockSourceEvents.L2PruneUncheckpointed,
733
+ slotNumber: blockSlot,
734
+ blocks: prunedBlocks
735
+ });
736
+ }
737
+ return;
738
+ }
739
+ }
740
+ this.log.trace('No orphan proposed blocks to prune: all uncheckpointed blocks are still within deadline', {
741
+ blocksWithoutProposedCheckpoint: blocksWithoutProposedCheckpoint.map((b)=>b.header.toInspect())
742
+ });
549
743
  }
550
744
  async syncFromL1() {
551
745
  // Delegate to the L1 synchronizer
552
- await this.synchronizer.syncFromL1(this.initialSyncComplete);
746
+ const blocksAdded = await this.synchronizer.syncFromL1(this.initialSyncComplete);
553
747
  // Check if we've completed initial sync
554
748
  const currentL1BlockNumber = this.synchronizer.getL1BlockNumber();
555
749
  if (currentL1BlockNumber !== undefined && !this.initialSyncComplete) {
@@ -557,7 +751,7 @@ _dec = trackSpan('Archiver.sync');
557
751
  if (currentL1BlockNumber + 1n >= l1BlockNumberAtEnd) {
558
752
  this.log.info(`Initial archiver sync to L1 block ${currentL1BlockNumber} complete`, {
559
753
  l1BlockNumber: currentL1BlockNumber,
560
- syncPoint: await this.store.getSynchPoint(),
754
+ syncPoint: await getArchiverSynchPoint(this.stores),
561
755
  ...await this.getL2Tips()
562
756
  });
563
757
  this.runningPromise.setPollingIntervalMS(this.config.pollingIntervalMs);
@@ -565,6 +759,7 @@ _dec = trackSpan('Archiver.sync');
565
759
  this.initialSyncPromise.resolve();
566
760
  }
567
761
  }
762
+ return blocksAdded;
568
763
  }
569
764
  /** Resumes the archiver after a stop. */ resume() {
570
765
  if (this.runningPromise.isRunning()) {
@@ -583,7 +778,7 @@ _dec = trackSpan('Archiver.sync');
583
778
  return Promise.resolve();
584
779
  }
585
780
  backupTo(destPath) {
586
- return this.dataStore.backupTo(destPath);
781
+ return backupArchiverDataStores(this.dataStores, destPath);
587
782
  }
588
783
  getL1Constants() {
589
784
  return Promise.resolve(this.l1Constants);
@@ -605,20 +800,53 @@ _dec = trackSpan('Archiver.sync');
605
800
  getL1Timestamp() {
606
801
  return Promise.resolve(this.synchronizer.getL1Timestamp());
607
802
  }
608
- getL2SlotNumber() {
803
+ async getSyncedL2SlotNumber() {
804
+ // The synced L2 slot is the latest slot for which we have all L1 data,
805
+ // either because we have seen all L1 blocks for that slot, or because
806
+ // we have seen the corresponding checkpoint.
807
+ let slotFromL1Sync;
609
808
  const l1Timestamp = this.synchronizer.getL1Timestamp();
610
- return Promise.resolve(l1Timestamp === undefined ? undefined : getSlotAtTimestamp(l1Timestamp, this.l1Constants));
809
+ if (l1Timestamp !== undefined) {
810
+ const nextL1BlockSlot = getSlotAtNextL1Block(l1Timestamp, this.l1Constants);
811
+ if (Number(nextL1BlockSlot) > 0) {
812
+ slotFromL1Sync = SlotNumber.add(nextL1BlockSlot, -1);
813
+ }
814
+ }
815
+ let slotFromCheckpoint;
816
+ const latestCheckpointNumber = await this.stores.blocks.getLatestCheckpointNumber();
817
+ if (latestCheckpointNumber > 0) {
818
+ const checkpointData = await this.stores.blocks.getCheckpointData(latestCheckpointNumber);
819
+ if (checkpointData) {
820
+ slotFromCheckpoint = checkpointData.header.slotNumber;
821
+ }
822
+ }
823
+ if (slotFromL1Sync === undefined && slotFromCheckpoint === undefined) {
824
+ return undefined;
825
+ }
826
+ return SlotNumber(Math.max(slotFromL1Sync ?? 0, slotFromCheckpoint ?? 0));
611
827
  }
612
- getL2EpochNumber() {
613
- const l1Timestamp = this.synchronizer.getL1Timestamp();
614
- return Promise.resolve(l1Timestamp === undefined ? undefined : getEpochNumberAtTimestamp(l1Timestamp, this.l1Constants));
828
+ async getSyncedL2EpochNumber() {
829
+ const syncedSlot = await this.getSyncedL2SlotNumber();
830
+ if (syncedSlot === undefined) {
831
+ return undefined;
832
+ }
833
+ // An epoch is fully synced when all its slots are synced.
834
+ // We check if syncedSlot is the last slot of its epoch; if so, that epoch is fully synced.
835
+ // Otherwise, only the previous epoch is fully synced.
836
+ const epoch = getEpochAtSlot(syncedSlot, this.l1Constants);
837
+ const [, endSlot] = getSlotRangeForEpoch(epoch, this.l1Constants);
838
+ if (syncedSlot >= endSlot) {
839
+ return epoch;
840
+ }
841
+ return Number(epoch) > 0 ? EpochNumber(Number(epoch) - 1) : undefined;
615
842
  }
616
843
  async isEpochComplete(epochNumber) {
617
844
  // The epoch is complete if the current checkpointed L2 block is the last one in the epoch (or later).
618
845
  // We use the checkpointed block number (synced from L1) instead of 'latest' to avoid returning true
619
846
  // prematurely when proposed blocks have been pushed to the archiver but not yet checkpointed on L1.
620
- const checkpointedBlockNumber = await this.getCheckpointedL2BlockNumber();
621
- const header = checkpointedBlockNumber > 0 ? await this.getBlockHeader(checkpointedBlockNumber) : undefined;
847
+ const header = (await this.getBlockData({
848
+ tag: 'checkpointed'
849
+ }))?.header;
622
850
  const slot = header ? header.globalVariables.slotNumber : undefined;
623
851
  const [_startSlot, endSlot] = getSlotRangeForEpoch(epochNumber, this.l1Constants);
624
852
  if (slot && slot >= endSlot) {
@@ -646,110 +874,49 @@ _dec = trackSpan('Archiver.sync');
646
874
  removeCheckpointsAfter(checkpointNumber) {
647
875
  return this.updater.removeCheckpointsAfter(checkpointNumber);
648
876
  }
877
+ /**
878
+ * Removes all uncheckpointed blocks strictly after `blockNumber`, along with the proposed checkpoints
879
+ * that referenced them. Used by the AutomineSequencer to undo a local insert whose propose tx failed
880
+ * to land on L1 (no reorg needed — nothing reached L1). Refuses to touch checkpointed blocks.
881
+ */ removeUncheckpointedBlocksAfter(blockNumber) {
882
+ return this.updater.removeUncheckpointedBlocksAfter(blockNumber);
883
+ }
649
884
  /** Used by TXE to add checkpoints directly without syncing from L1. */ async addCheckpoints(checkpoints, pendingChainValidationStatus) {
650
885
  await this.updater.addCheckpoints(checkpoints, pendingChainValidationStatus);
651
886
  return true;
652
887
  }
653
- async getL2Tips() {
654
- const [latestBlockNumber, provenBlockNumber, checkpointedBlockNumber, finalizedBlockNumber] = await Promise.all([
655
- this.getBlockNumber(),
656
- this.getProvenBlockNumber(),
657
- this.getCheckpointedL2BlockNumber(),
658
- this.getFinalizedL2BlockNumber()
659
- ]);
660
- const beforeInitialblockNumber = BlockNumber(INITIAL_L2_BLOCK_NUM - 1);
661
- // Get the latest block header and checkpointed blocks for proven, finalised and checkpointed blocks
662
- const [latestBlockHeader, provenCheckpointedBlock, finalizedCheckpointedBlock, checkpointedBlock] = await Promise.all([
663
- latestBlockNumber > beforeInitialblockNumber ? this.getBlockHeader(latestBlockNumber) : undefined,
664
- provenBlockNumber > beforeInitialblockNumber ? this.getCheckpointedBlock(provenBlockNumber) : undefined,
665
- finalizedBlockNumber > beforeInitialblockNumber ? this.getCheckpointedBlock(finalizedBlockNumber) : undefined,
666
- checkpointedBlockNumber > beforeInitialblockNumber ? this.getCheckpointedBlock(checkpointedBlockNumber) : undefined
667
- ]);
668
- if (latestBlockNumber > beforeInitialblockNumber && !latestBlockHeader) {
669
- throw new Error(`Failed to retrieve latest block header for block ${latestBlockNumber}`);
670
- }
671
- // Checkpointed blocks must exist for proven, finalized and checkpointed tips if they are beyond the initial block number.
672
- if (checkpointedBlockNumber > beforeInitialblockNumber && !checkpointedBlock?.block.header) {
673
- throw new Error(`Failed to retrieve checkpointed block header for block ${checkpointedBlockNumber} (latest block is ${latestBlockNumber})`);
674
- }
675
- if (provenBlockNumber > beforeInitialblockNumber && !provenCheckpointedBlock?.block.header) {
676
- throw new Error(`Failed to retrieve proven checkpointed for block ${provenBlockNumber} (latest block is ${latestBlockNumber})`);
677
- }
678
- if (finalizedBlockNumber > beforeInitialblockNumber && !finalizedCheckpointedBlock?.block.header) {
679
- throw new Error(`Failed to retrieve finalized block header for block ${finalizedBlockNumber} (latest block is ${latestBlockNumber})`);
680
- }
681
- const latestBlockHeaderHash = await latestBlockHeader?.hash() ?? GENESIS_BLOCK_HEADER_HASH;
682
- const provenBlockHeaderHash = await provenCheckpointedBlock?.block.header?.hash() ?? GENESIS_BLOCK_HEADER_HASH;
683
- const finalizedBlockHeaderHash = await finalizedCheckpointedBlock?.block.header?.hash() ?? GENESIS_BLOCK_HEADER_HASH;
684
- const checkpointedBlockHeaderHash = await checkpointedBlock?.block.header?.hash() ?? GENESIS_BLOCK_HEADER_HASH;
685
- // Now attempt to retrieve checkpoints for proven, finalised and checkpointed blocks
686
- const [[provenBlockCheckpoint], [finalizedBlockCheckpoint], [checkpointedBlockCheckpoint]] = await Promise.all([
687
- provenCheckpointedBlock !== undefined ? await this.getCheckpoints(provenCheckpointedBlock?.checkpointNumber, 1) : [
688
- undefined
689
- ],
690
- finalizedCheckpointedBlock !== undefined ? await this.getCheckpoints(finalizedCheckpointedBlock?.checkpointNumber, 1) : [
691
- undefined
692
- ],
693
- checkpointedBlock !== undefined ? await this.getCheckpoints(checkpointedBlock?.checkpointNumber, 1) : [
694
- undefined
695
- ]
696
- ]);
697
- const initialcheckpointId = {
698
- number: CheckpointNumber.ZERO,
699
- hash: GENESIS_CHECKPOINT_HEADER_HASH.toString()
700
- };
701
- const makeCheckpointId = (checkpoint)=>{
702
- if (checkpoint === undefined) {
703
- return initialcheckpointId;
704
- }
705
- return {
706
- number: checkpoint.checkpoint.number,
707
- hash: checkpoint.checkpoint.hash().toString()
708
- };
709
- };
710
- const l2Tips = {
711
- proposed: {
712
- number: latestBlockNumber,
713
- hash: latestBlockHeaderHash.toString()
714
- },
715
- proven: {
716
- block: {
717
- number: provenBlockNumber,
718
- hash: provenBlockHeaderHash.toString()
719
- },
720
- checkpoint: makeCheckpointId(provenBlockCheckpoint)
721
- },
722
- finalized: {
723
- block: {
724
- number: finalizedBlockNumber,
725
- hash: finalizedBlockHeaderHash.toString()
726
- },
727
- checkpoint: makeCheckpointId(finalizedBlockCheckpoint)
728
- },
729
- checkpointed: {
730
- block: {
731
- number: checkpointedBlockNumber,
732
- hash: checkpointedBlockHeaderHash.toString()
733
- },
734
- checkpoint: makeCheckpointId(checkpointedBlockCheckpoint)
735
- }
736
- };
737
- return l2Tips;
888
+ getL2Tips() {
889
+ return this.l2TipsCache.getL2Tips();
738
890
  }
739
891
  async rollbackTo(targetL2BlockNumber) {
740
- // TODO(pw/mbps): This still assumes 1 block per checkpoint
741
892
  const currentBlocks = await this.getL2Tips();
742
893
  const currentL2Block = currentBlocks.proposed.number;
743
894
  const currentProvenBlock = currentBlocks.proven.block.number;
744
895
  if (targetL2BlockNumber >= currentL2Block) {
745
896
  throw new Error(`Target L2 block ${targetL2BlockNumber} must be less than current L2 block ${currentL2Block}`);
746
897
  }
747
- const targetL2Block = await this.store.getCheckpointedBlock(targetL2BlockNumber);
748
- if (!targetL2Block) {
898
+ const checkpointedTip = await this.stores.blocks.getCheckpointedL2BlockNumber();
899
+ if (targetL2BlockNumber > checkpointedTip) {
900
+ throw new Error(`Target L2 block ${targetL2BlockNumber} is not checkpointed yet`);
901
+ }
902
+ const targetBlockData = await this.stores.blocks.getBlockData({
903
+ number: targetL2BlockNumber
904
+ });
905
+ if (!targetBlockData) {
749
906
  throw new Error(`Target L2 block ${targetL2BlockNumber} not found`);
750
907
  }
751
- const targetL1BlockNumber = targetL2Block.l1.blockNumber;
752
- const targetCheckpointNumber = targetL2Block.checkpointNumber;
908
+ const targetCheckpointNumber = targetBlockData.checkpointNumber;
909
+ // Rollback operates at checkpoint granularity: the target block must be the last block of its checkpoint.
910
+ const checkpointData = await this.stores.blocks.getCheckpointData(targetCheckpointNumber);
911
+ if (!checkpointData) {
912
+ throw new Error(`Checkpoint ${targetCheckpointNumber} not found for block ${targetL2BlockNumber}`);
913
+ }
914
+ const lastBlockInCheckpoint = BlockNumber(checkpointData.startBlock + checkpointData.blockCount - 1);
915
+ if (targetL2BlockNumber !== lastBlockInCheckpoint) {
916
+ const previousCheckpointBoundary = checkpointData.startBlock > 1 ? BlockNumber(checkpointData.startBlock - 1) : BlockNumber(0);
917
+ throw new Error(`Target L2 block ${targetL2BlockNumber} is not at a checkpoint boundary. ` + `Checkpoint ${targetCheckpointNumber} spans blocks ${checkpointData.startBlock} to ${lastBlockInCheckpoint}. ` + `Use block ${lastBlockInCheckpoint} to roll back to this checkpoint, ` + `or block ${previousCheckpointBoundary} to roll back to the previous one.`);
918
+ }
919
+ const targetL1BlockNumber = checkpointData.l1.blockNumber;
753
920
  const targetL1Block = await this.publicClient.getBlock({
754
921
  blockNumber: targetL1BlockNumber,
755
922
  includeTransactions: false
@@ -761,21 +928,21 @@ _dec = trackSpan('Archiver.sync');
761
928
  this.log.info(`Removing checkpoints after checkpoint ${targetCheckpointNumber} (target block ${targetL2BlockNumber})`);
762
929
  await this.updater.removeCheckpointsAfter(targetCheckpointNumber);
763
930
  this.log.info(`Rolling back L1 to L2 messages to checkpoint ${targetCheckpointNumber}`);
764
- await this.store.rollbackL1ToL2MessagesToCheckpoint(targetCheckpointNumber);
931
+ await this.stores.messages.rollbackL1ToL2MessagesToCheckpoint(targetCheckpointNumber);
765
932
  this.log.info(`Setting L1 syncpoints to ${targetL1BlockNumber}`);
766
- await this.store.setCheckpointSynchedL1BlockNumber(targetL1BlockNumber);
767
- await this.store.setMessageSynchedL1Block({
933
+ await this.stores.blocks.setSynchedL1BlockNumber(targetL1BlockNumber);
934
+ await this.stores.messages.setMessageSyncState({
768
935
  l1BlockNumber: targetL1BlockNumber,
769
936
  l1BlockHash: targetL1BlockHash
770
- });
937
+ }, undefined);
771
938
  if (targetL2BlockNumber < currentProvenBlock) {
772
- this.log.info(`Clearing proven L2 block number`);
773
- await this.store.setProvenCheckpointNumber(CheckpointNumber.ZERO);
774
- }
775
- // TODO(palla/reorg): Set the finalized block when we add support for it.
776
- // if (targetL2BlockNumber < currentFinalizedBlock) {
777
- // this.log.info(`Clearing finalized L2 block number`);
778
- // await this.store.setFinalizedL2BlockNumber(0);
779
- // }
939
+ this.log.info(`Rolling back proven L2 checkpoint to ${targetCheckpointNumber}`);
940
+ await this.updater.setProvenCheckpointNumber(targetCheckpointNumber);
941
+ }
942
+ const currentFinalizedBlock = currentBlocks.finalized.block.number;
943
+ if (targetL2BlockNumber < currentFinalizedBlock) {
944
+ this.log.info(`Rolling back finalized L2 checkpoint to ${targetCheckpointNumber}`);
945
+ await this.updater.setFinalizedCheckpointNumber(targetCheckpointNumber);
946
+ }
780
947
  }
781
948
  }