@aztec/archiver 0.0.1-commit.b33fc05d0 → 0.0.1-commit.b3d3157a

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 (121) hide show
  1. package/README.md +19 -11
  2. package/dest/archiver.d.ts +53 -16
  3. package/dest/archiver.d.ts.map +1 -1
  4. package/dest/archiver.js +248 -76
  5. package/dest/config.d.ts +4 -1
  6. package/dest/config.d.ts.map +1 -1
  7. package/dest/config.js +21 -14
  8. package/dest/errors.d.ts +50 -2
  9. package/dest/errors.d.ts.map +1 -1
  10. package/dest/errors.js +74 -2
  11. package/dest/factory.d.ts +13 -7
  12. package/dest/factory.d.ts.map +1 -1
  13. package/dest/factory.js +46 -32
  14. package/dest/index.d.ts +11 -3
  15. package/dest/index.d.ts.map +1 -1
  16. package/dest/index.js +10 -2
  17. package/dest/l1/calldata_retriever.d.ts +2 -1
  18. package/dest/l1/calldata_retriever.d.ts.map +1 -1
  19. package/dest/l1/calldata_retriever.js +15 -5
  20. package/dest/l1/data_retrieval.d.ts +19 -10
  21. package/dest/l1/data_retrieval.d.ts.map +1 -1
  22. package/dest/l1/data_retrieval.js +25 -32
  23. package/dest/l1/trace_tx.d.ts +12 -66
  24. package/dest/l1/trace_tx.d.ts.map +1 -1
  25. package/dest/l1/validate_historical_logs.d.ts +23 -0
  26. package/dest/l1/validate_historical_logs.d.ts.map +1 -0
  27. package/dest/l1/validate_historical_logs.js +108 -0
  28. package/dest/modules/contract_data_source_adapter.d.ts +25 -0
  29. package/dest/modules/contract_data_source_adapter.d.ts.map +1 -0
  30. package/dest/modules/contract_data_source_adapter.js +40 -0
  31. package/dest/modules/data_source_base.d.ts +71 -47
  32. package/dest/modules/data_source_base.d.ts.map +1 -1
  33. package/dest/modules/data_source_base.js +269 -137
  34. package/dest/modules/data_store_updater.d.ts +30 -13
  35. package/dest/modules/data_store_updater.d.ts.map +1 -1
  36. package/dest/modules/data_store_updater.js +166 -116
  37. package/dest/modules/instrumentation.d.ts +7 -2
  38. package/dest/modules/instrumentation.d.ts.map +1 -1
  39. package/dest/modules/instrumentation.js +25 -7
  40. package/dest/modules/l1_synchronizer.d.ts +11 -6
  41. package/dest/modules/l1_synchronizer.d.ts.map +1 -1
  42. package/dest/modules/l1_synchronizer.js +414 -213
  43. package/dest/modules/outbox_trees_resolver.d.ts +62 -0
  44. package/dest/modules/outbox_trees_resolver.d.ts.map +1 -0
  45. package/dest/modules/outbox_trees_resolver.js +162 -0
  46. package/dest/modules/validation.d.ts +4 -3
  47. package/dest/modules/validation.d.ts.map +1 -1
  48. package/dest/modules/validation.js +6 -6
  49. package/dest/store/block_store.d.ts +165 -66
  50. package/dest/store/block_store.d.ts.map +1 -1
  51. package/dest/store/block_store.js +648 -233
  52. package/dest/store/contract_class_store.d.ts +17 -4
  53. package/dest/store/contract_class_store.d.ts.map +1 -1
  54. package/dest/store/contract_class_store.js +24 -68
  55. package/dest/store/contract_instance_store.d.ts +28 -1
  56. package/dest/store/contract_instance_store.d.ts.map +1 -1
  57. package/dest/store/contract_instance_store.js +37 -2
  58. package/dest/store/data_stores.d.ts +68 -0
  59. package/dest/store/data_stores.d.ts.map +1 -0
  60. package/dest/store/data_stores.js +54 -0
  61. package/dest/store/function_names_cache.d.ts +17 -0
  62. package/dest/store/function_names_cache.d.ts.map +1 -0
  63. package/dest/store/function_names_cache.js +30 -0
  64. package/dest/store/l2_tips_cache.d.ts +13 -7
  65. package/dest/store/l2_tips_cache.d.ts.map +1 -1
  66. package/dest/store/l2_tips_cache.js +13 -76
  67. package/dest/store/log_store.d.ts +42 -37
  68. package/dest/store/log_store.d.ts.map +1 -1
  69. package/dest/store/log_store.js +262 -408
  70. package/dest/store/log_store_codec.d.ts +70 -0
  71. package/dest/store/log_store_codec.d.ts.map +1 -0
  72. package/dest/store/log_store_codec.js +101 -0
  73. package/dest/store/message_store.d.ts +11 -1
  74. package/dest/store/message_store.d.ts.map +1 -1
  75. package/dest/store/message_store.js +50 -8
  76. package/dest/test/fake_l1_state.d.ts +15 -3
  77. package/dest/test/fake_l1_state.d.ts.map +1 -1
  78. package/dest/test/fake_l1_state.js +88 -18
  79. package/dest/test/mock_l1_to_l2_message_source.d.ts +1 -1
  80. package/dest/test/mock_l1_to_l2_message_source.d.ts.map +1 -1
  81. package/dest/test/mock_l1_to_l2_message_source.js +2 -1
  82. package/dest/test/mock_l2_block_source.d.ts +51 -50
  83. package/dest/test/mock_l2_block_source.d.ts.map +1 -1
  84. package/dest/test/mock_l2_block_source.js +244 -181
  85. package/dest/test/noop_l1_archiver.d.ts +10 -6
  86. package/dest/test/noop_l1_archiver.d.ts.map +1 -1
  87. package/dest/test/noop_l1_archiver.js +22 -9
  88. package/package.json +14 -14
  89. package/src/archiver.ts +315 -83
  90. package/src/config.ts +24 -11
  91. package/src/errors.ts +117 -2
  92. package/src/factory.ts +54 -28
  93. package/src/index.ts +18 -2
  94. package/src/l1/calldata_retriever.ts +16 -5
  95. package/src/l1/data_retrieval.ts +36 -45
  96. package/src/l1/validate_historical_logs.ts +140 -0
  97. package/src/modules/contract_data_source_adapter.ts +55 -0
  98. package/src/modules/data_source_base.ts +341 -174
  99. package/src/modules/data_store_updater.ts +201 -147
  100. package/src/modules/instrumentation.ts +28 -8
  101. package/src/modules/l1_synchronizer.ts +549 -254
  102. package/src/modules/outbox_trees_resolver.ts +199 -0
  103. package/src/modules/validation.ts +10 -9
  104. package/src/store/block_store.ts +807 -285
  105. package/src/store/contract_class_store.ts +31 -103
  106. package/src/store/contract_instance_store.ts +51 -5
  107. package/src/store/data_stores.ts +104 -0
  108. package/src/store/function_names_cache.ts +37 -0
  109. package/src/store/l2_tips_cache.ts +16 -70
  110. package/src/store/log_store.ts +301 -559
  111. package/src/store/log_store_codec.ts +132 -0
  112. package/src/store/message_store.ts +59 -9
  113. package/src/structs/inbox_message.ts +1 -1
  114. package/src/test/fake_l1_state.ts +111 -29
  115. package/src/test/mock_l1_to_l2_message_source.ts +1 -0
  116. package/src/test/mock_l2_block_source.ts +299 -232
  117. package/src/test/noop_l1_archiver.ts +42 -9
  118. package/dest/store/kv_archiver_store.d.ts +0 -363
  119. package/dest/store/kv_archiver_store.d.ts.map +0 -1
  120. package/dest/store/kv_archiver_store.js +0 -476
  121. package/src/store/kv_archiver_store.ts +0 -689
@@ -371,32 +371,39 @@ 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, _dec1, _dec2, _dec3, _initProto;
374
+ import { getFinalizedL1Block } from '@aztec/ethereum/queries';
375
+ import { asyncPool } from '@aztec/foundation/async-pool';
374
376
  import { maxBigint } from '@aztec/foundation/bigint';
375
377
  import { BlockNumber, CheckpointNumber } from '@aztec/foundation/branded-types';
376
- import { Buffer32 } from '@aztec/foundation/buffer';
377
- import { pick } from '@aztec/foundation/collection';
378
+ import { Buffer16, Buffer32 } from '@aztec/foundation/buffer';
379
+ import { compactArray, partition, pick } from '@aztec/foundation/collection';
380
+ import { EthAddress } from '@aztec/foundation/eth-address';
378
381
  import { createLogger } from '@aztec/foundation/log';
382
+ import { retryTimes } from '@aztec/foundation/retry';
379
383
  import { count } from '@aztec/foundation/string';
380
384
  import { Timer, elapsed } from '@aztec/foundation/timer';
381
- import { isDefined } from '@aztec/foundation/types';
385
+ import { isDefined, isErrorClass } from '@aztec/foundation/types';
382
386
  import { L2BlockSourceEvents } from '@aztec/stdlib/block';
387
+ import { Checkpoint, PublishedCheckpoint } from '@aztec/stdlib/checkpoint';
383
388
  import { getEpochAtSlot, getSlotAtNextL1Block } from '@aztec/stdlib/epoch-helpers';
384
389
  import { computeInHashFromL1ToL2Messages } from '@aztec/stdlib/messaging';
385
390
  import { execInSpan, trackSpan } from '@aztec/telemetry-client';
386
391
  import { InitialCheckpointNumberNotSequentialError } from '../errors.js';
387
- import { retrieveCheckpointsFromRollup, retrieveL1ToL2Message, retrieveL1ToL2Messages, retrievedToPublishedCheckpoint } from '../l1/data_retrieval.js';
392
+ import { getCheckpointBlobDataFromBlobs, retrieveCheckpointCalldataFromRollup, retrieveL1ToL2Message, retrieveL1ToL2Messages, retrievedToPublishedCheckpoint } from '../l1/data_retrieval.js';
393
+ import { getArchiverSynchPoint } from '../store/data_stores.js';
394
+ import { MessageStoreError } from '../store/message_store.js';
388
395
  import { ArchiverDataStoreUpdater } from './data_store_updater.js';
389
396
  import { validateCheckpointAttestations } from './validation.js';
390
397
  _dec = trackSpan('Archiver.syncFromL1'), _dec1 = trackSpan('Archiver.handleEpochPrune'), _dec2 = trackSpan('Archiver.handleL1ToL2Messages'), _dec3 = trackSpan('Archiver.handleCheckpoints');
391
398
  /**
392
399
  * Handles L1 synchronization for the archiver.
393
- * Responsible for fetching checkpoints, L1L2 messages, and handling L1 reorgs.
400
+ * Responsible for fetching checkpoints, L1 to L2 messages, and handling L1 reorgs.
394
401
  */ export class ArchiverL1Synchronizer {
395
402
  publicClient;
396
403
  debugClient;
397
404
  rollup;
398
405
  inbox;
399
- store;
406
+ stores;
400
407
  config;
401
408
  blobClient;
402
409
  epochCache;
@@ -434,12 +441,12 @@ _dec = trackSpan('Archiver.syncFromL1'), _dec1 = trackSpan('Archiver.handleEpoch
434
441
  l1Timestamp;
435
442
  updater;
436
443
  tracer;
437
- constructor(publicClient, debugClient, rollup, inbox, store, config, blobClient, epochCache, dateProvider, instrumentation, l1Constants, events, tracer, l2TipsCache, log = createLogger('archiver:l1-sync')){
444
+ constructor(publicClient, debugClient, rollup, inbox, stores, config, blobClient, epochCache, dateProvider, instrumentation, l1Constants, events, tracer, l2TipsCache, log = createLogger('archiver:l1-sync')){
438
445
  this.publicClient = publicClient;
439
446
  this.debugClient = debugClient;
440
447
  this.rollup = rollup;
441
448
  this.inbox = inbox;
442
- this.store = store;
449
+ this.stores = stores;
443
450
  this.config = config;
444
451
  this.blobClient = blobClient;
445
452
  this.epochCache = epochCache;
@@ -449,7 +456,7 @@ _dec = trackSpan('Archiver.syncFromL1'), _dec1 = trackSpan('Archiver.handleEpoch
449
456
  this.events = events;
450
457
  this.log = log;
451
458
  _initProto(this);
452
- this.updater = new ArchiverDataStoreUpdater(this.store, l2TipsCache, {
459
+ this.updater = new ArchiverDataStoreUpdater(this.stores, l2TipsCache, {
453
460
  rollupManaLimit: l1Constants.rollupManaLimit
454
461
  });
455
462
  this.tracer = tracer;
@@ -463,6 +470,12 @@ _dec = trackSpan('Archiver.syncFromL1'), _dec1 = trackSpan('Archiver.handleEpoch
463
470
  /** Returns the last L1 timestamp that was synced. */ getL1Timestamp() {
464
471
  return this.l1Timestamp;
465
472
  }
473
+ getSignatureContext() {
474
+ return {
475
+ chainId: this.publicClient.chain.id,
476
+ rollupAddress: EthAddress.fromString(this.rollup.address)
477
+ };
478
+ }
466
479
  /** Checks that the ethereum node we are connected to has a latest timestamp no more than the allowed drift. Throw if not. */ async testEthereumNodeSynced() {
467
480
  const maxAllowedDelay = this.config.maxAllowedEthClientDriftSeconds;
468
481
  if (maxAllowedDelay === 0) {
@@ -477,57 +490,52 @@ _dec = trackSpan('Archiver.syncFromL1'), _dec1 = trackSpan('Archiver.handleEpoch
477
490
  }
478
491
  }
479
492
  async syncFromL1(initialSyncComplete) {
493
+ // In between the various calls to L1, the block number can move meaning some of the following
494
+ // calls will return data for blocks that were not present during earlier calls. To combat this
495
+ // we ensure that all data retrieval methods only retrieve data up to the currentBlockNumber
496
+ // captured at the top of this function.
480
497
  const currentL1Block = await this.publicClient.getBlock({
481
498
  includeTransactions: false
482
499
  });
483
500
  const currentL1BlockNumber = currentL1Block.number;
484
501
  const currentL1BlockHash = Buffer32.fromString(currentL1Block.hash);
485
502
  const currentL1Timestamp = currentL1Block.timestamp;
503
+ const currentL1BlockData = {
504
+ l1BlockNumber: currentL1BlockNumber,
505
+ l1BlockHash: currentL1BlockHash
506
+ };
486
507
  if (this.l1BlockHash && currentL1BlockHash.equals(this.l1BlockHash)) {
487
508
  this.log.trace(`No new L1 blocks since last sync at L1 block ${this.l1BlockNumber}`);
488
509
  return;
489
510
  }
490
- // Warn if the latest L1 block timestamp is too old
511
+ // Log at error if the latest L1 block timestamp is too old
491
512
  const maxAllowedDelay = this.config.maxAllowedEthClientDriftSeconds;
492
513
  const now = this.dateProvider.nowInSeconds();
493
514
  if (maxAllowedDelay > 0 && Number(currentL1Timestamp) <= now - maxAllowedDelay) {
494
- this.log.warn(`Latest L1 block ${currentL1BlockNumber} timestamp ${currentL1Timestamp} is too old. Make sure your Ethereum node is synced.`, {
515
+ this.log.error(`Latest L1 block ${currentL1BlockNumber} timestamp ${currentL1Timestamp} is too old. Make sure your Ethereum node is synced.`, {
495
516
  currentL1BlockNumber,
496
517
  currentL1Timestamp,
497
518
  now,
498
519
  maxAllowedDelay
499
520
  });
500
521
  }
501
- // Load sync point for blocks and messages defaulting to start block
502
- const { blocksSynchedTo = this.l1Constants.l1StartBlock, messagesSynchedTo = {
503
- l1BlockNumber: this.l1Constants.l1StartBlock,
504
- l1BlockHash: this.l1Constants.l1StartBlockHash
505
- } } = await this.store.getSynchPoint();
522
+ // Query finalized block on L1
523
+ const rawFinalizedL1Block = await getFinalizedL1Block(this.publicClient);
524
+ const finalizedL1Block = rawFinalizedL1Block && {
525
+ l1BlockNumber: rawFinalizedL1Block.number,
526
+ l1BlockHash: Buffer32.fromString(rawFinalizedL1Block.hash)
527
+ };
528
+ // Load sync point for blocks defaulting to start block
529
+ const { blocksSynchedTo = this.l1Constants.l1StartBlock } = await getArchiverSynchPoint(this.stores);
506
530
  this.log.debug(`Starting new archiver sync iteration`, {
507
531
  blocksSynchedTo,
508
- messagesSynchedTo,
509
- currentL1BlockNumber,
510
- currentL1BlockHash
532
+ currentL1BlockData,
533
+ finalizedL1Block
511
534
  });
512
- // ********** Ensuring Consistency of data pulled from L1 **********
513
- /**
514
- * There are a number of calls in this sync operation to L1 for retrieving
515
- * events and transaction data. There are a couple of things we need to bear in mind
516
- * to ensure that data is read exactly once.
517
- *
518
- * The first is the problem of eventually consistent ETH service providers like Infura.
519
- * Each L1 read operation will query data from the last L1 block that it saw emit its kind of data.
520
- * (so pending L1 to L2 messages will read from the last L1 block that emitted a message and so on)
521
- * This will mean the archiver will lag behind L1 and will only advance when there's L2-relevant activity on the chain.
522
- *
523
- * The second is that in between the various calls to L1, the block number can move meaning some
524
- * of the following calls will return data for blocks that were not present during earlier calls.
525
- * To combat this for the time being we simply ensure that all data retrieval methods only retrieve
526
- * data up to the currentBlockNumber captured at the top of this function. We might want to improve on this
527
- * in future but for the time being it should give us the guarantees that we need
528
- */ // ********** Events that are processed per L1 block **********
529
- await this.handleL1ToL2Messages(messagesSynchedTo, currentL1BlockNumber);
530
- // ********** Events that are processed per checkpoint **********
535
+ // Sync L1 to L2 messages. We retry this a few times since there are error conditions that reset the sync point, requiring a new iteration.
536
+ // Note that we cannot just wait for the l1 synchronizer to loop again, since the synchronizer would report as synced up to the current L1
537
+ // block, when that wouldn't be the case, since L1 to L2 messages would need another iteration.
538
+ await retryTimes(()=>this.handleL1ToL2Messages(currentL1BlockData, finalizedL1Block), 'Handling L1 to L2 messages', 3, 0.1);
531
539
  if (currentL1BlockNumber > blocksSynchedTo) {
532
540
  // First we retrieve new checkpoints and L2 blocks and store them in the DB. This will also update the
533
541
  // pending chain validation status, proven checkpoint number, and synched L1 block number.
@@ -540,23 +548,16 @@ _dec = trackSpan('Archiver.syncFromL1'), _dec1 = trackSpan('Archiver.handleEpoch
540
548
  // the chain locally before we start unwinding stuff. This can be optimized by figuring out
541
549
  // up to which point we're pruning, and then requesting checkpoints up to that point only.
542
550
  const { rollupCanPrune } = await this.handleEpochPrune(rollupStatus.provenCheckpointNumber, currentL1BlockNumber, currentL1Timestamp);
543
- // If the last checkpoint we processed had an invalid attestation, we manually advance the L1 syncpoint
544
- // past it, since otherwise we'll keep downloading it and reprocessing it on every iteration until
545
- // we get a valid checkpoint to advance the syncpoint.
546
- if (!rollupStatus.validationResult?.valid && rollupStatus.lastL1BlockWithCheckpoint !== undefined) {
547
- await this.store.setCheckpointSynchedL1BlockNumber(rollupStatus.lastL1BlockWithCheckpoint);
548
- }
549
551
  // And lastly we check if we are missing any checkpoints behind us due to a possible L1 reorg.
550
552
  // We only do this if rollup cant prune on the next submission. Otherwise we will end up
551
- // re-syncing the checkpoints we have just unwound above. We also dont do this if the last checkpoint is invalid,
552
- // since the archiver will rightfully refuse to sync up to it.
553
- if (!rollupCanPrune && rollupStatus.validationResult?.valid) {
553
+ // re-syncing the checkpoints we have just unwound above.
554
+ if (!rollupCanPrune) {
554
555
  await this.checkForNewCheckpointsBeforeL1SyncPoint(rollupStatus, blocksSynchedTo, currentL1BlockNumber);
555
556
  }
556
557
  this.instrumentation.updateL1BlockHeight(currentL1BlockNumber);
557
558
  }
558
559
  // Update the finalized L2 checkpoint based on L1 finality.
559
- await this.updateFinalizedCheckpoint();
560
+ await this.updateFinalizedCheckpoint(finalizedL1Block);
560
561
  // After syncing has completed, update the current l1 block number and timestamp,
561
562
  // otherwise we risk announcing to the world that we've synced to a given point,
562
563
  // but the corresponding blocks have not been processed (see #12631).
@@ -570,17 +571,17 @@ _dec = trackSpan('Archiver.syncFromL1'), _dec1 = trackSpan('Archiver.handleEpoch
570
571
  l1BlockNumberAtEnd
571
572
  });
572
573
  }
573
- /** Query L1 for its finalized block and update the finalized checkpoint accordingly. */ async updateFinalizedCheckpoint() {
574
+ /** Updates the finalized checkpoint using the pre-fetched finalized L1 block from the current sync iteration. */ async updateFinalizedCheckpoint(finalizedL1Block) {
574
575
  try {
575
- const finalizedL1Block = await this.publicClient.getBlock({
576
- blockTag: 'finalized',
577
- includeTransactions: false
578
- });
579
- const finalizedL1BlockNumber = finalizedL1Block.number;
576
+ if (!finalizedL1Block) {
577
+ this.log.trace(`Skipping finalized checkpoint update: L1 has no finalized block yet.`);
578
+ return;
579
+ }
580
+ const finalizedL1BlockNumber = finalizedL1Block.l1BlockNumber;
580
581
  const finalizedCheckpointNumber = await this.rollup.getProvenCheckpointNumber({
581
582
  blockNumber: finalizedL1BlockNumber
582
583
  });
583
- const localFinalizedCheckpointNumber = await this.store.getFinalizedCheckpointNumber();
584
+ const localFinalizedCheckpointNumber = await this.stores.blocks.getFinalizedCheckpointNumber();
584
585
  if (localFinalizedCheckpointNumber !== finalizedCheckpointNumber) {
585
586
  await this.updater.setFinalizedCheckpointNumber(finalizedCheckpointNumber);
586
587
  this.log.info(`Updated finalized chain to checkpoint ${finalizedCheckpointNumber}`, {
@@ -589,39 +590,46 @@ _dec = trackSpan('Archiver.syncFromL1'), _dec1 = trackSpan('Archiver.handleEpoch
589
590
  });
590
591
  }
591
592
  } catch (err) {
592
- this.log.warn(`Failed to update finalized checkpoint: ${err}`);
593
+ // The rollup contract may not exist at the finalized L1 block right after deployment.
594
+ if (!err?.message?.includes('returned no data')) {
595
+ this.log.warn(`Failed to update finalized checkpoint: ${err}`);
596
+ }
593
597
  }
594
598
  }
595
599
  /** Prune all proposed local blocks that should have been checkpointed by now. */ async pruneUncheckpointedBlocks(currentL1Timestamp) {
596
600
  const [lastCheckpointedBlockNumber, lastProposedBlockNumber] = await Promise.all([
597
- this.store.getCheckpointedL2BlockNumber(),
598
- this.store.getLatestBlockNumber()
601
+ this.stores.blocks.getCheckpointedL2BlockNumber(),
602
+ this.stores.blocks.getLatestL2BlockNumber()
599
603
  ]);
600
604
  // If there are no uncheckpointed blocks, we got nothing to do
601
605
  if (lastProposedBlockNumber === lastCheckpointedBlockNumber) {
602
606
  this.log.trace(`No uncheckpointed blocks to prune.`);
603
607
  return;
604
608
  }
605
- // What's the slot of the first uncheckpointed block?
606
- const firstUncheckpointedBlockNumber = BlockNumber(lastCheckpointedBlockNumber + 1);
607
- const [firstUncheckpointedBlockHeader] = await this.store.getBlockHeaders(firstUncheckpointedBlockNumber, 1);
608
- const firstUncheckpointedBlockSlot = firstUncheckpointedBlockHeader?.getSlot();
609
609
  // What's the slot at the next L1 block? All blocks for slots strictly before this one should've been checkpointed by now.
610
610
  const slotAtNextL1Block = getSlotAtNextL1Block(currentL1Timestamp, this.l1Constants);
611
- // Prune provisional blocks from slots that have ended without being checkpointed
612
- if (firstUncheckpointedBlockSlot !== undefined && firstUncheckpointedBlockSlot < slotAtNextL1Block) {
613
- this.log.warn(`Pruning blocks after block ${lastCheckpointedBlockNumber} due to slot ${firstUncheckpointedBlockSlot} not being checkpointed`, {
614
- firstUncheckpointedBlockHeader: firstUncheckpointedBlockHeader.toInspect(),
615
- slotAtNextL1Block
611
+ const firstUncheckpointedBlockNumber = BlockNumber(lastCheckpointedBlockNumber + 1);
612
+ // What's the slot of the first uncheckpointed block?
613
+ const firstUncheckpointedBlockData = await this.stores.blocks.getBlockData({
614
+ number: firstUncheckpointedBlockNumber
615
+ });
616
+ const firstUncheckpointedBlockSlot = firstUncheckpointedBlockData?.header.getSlot();
617
+ if (firstUncheckpointedBlockSlot === undefined || firstUncheckpointedBlockSlot >= slotAtNextL1Block) {
618
+ return;
619
+ }
620
+ // Prune provisional blocks from slots that have ended without being checkpointed.
621
+ // This also clears any proposed checkpoint whose blocks are being pruned.
622
+ this.log.warn(`Pruning blocks after block ${lastCheckpointedBlockNumber} due to slot ${firstUncheckpointedBlockSlot} not being checkpointed`, {
623
+ firstUncheckpointedBlockHeader: firstUncheckpointedBlockData?.header.toInspect(),
624
+ slotAtNextL1Block
625
+ });
626
+ const prunedBlocks = await this.updater.removeUncheckpointedBlocksAfter(lastCheckpointedBlockNumber);
627
+ if (prunedBlocks.length > 0) {
628
+ this.events.emit(L2BlockSourceEvents.L2PruneUncheckpointed, {
629
+ type: L2BlockSourceEvents.L2PruneUncheckpointed,
630
+ slotNumber: firstUncheckpointedBlockSlot,
631
+ blocks: prunedBlocks
616
632
  });
617
- const prunedBlocks = await this.updater.removeUncheckpointedBlocksAfter(lastCheckpointedBlockNumber);
618
- if (prunedBlocks.length > 0) {
619
- this.events.emit(L2BlockSourceEvents.L2PruneUncheckpointed, {
620
- type: L2BlockSourceEvents.L2PruneUncheckpointed,
621
- slotNumber: firstUncheckpointedBlockSlot,
622
- blocks: prunedBlocks
623
- });
624
- }
625
633
  }
626
634
  }
627
635
  /** Queries the rollup contract on whether a prune can be executed on the immediate next L1 block. */ async canPrune(currentL1BlockNumber, currentL1Timestamp) {
@@ -640,7 +648,7 @@ _dec = trackSpan('Archiver.syncFromL1'), _dec1 = trackSpan('Archiver.handleEpoch
640
648
  }
641
649
  /** Checks if there'd be a reorg for the next checkpoint submission and start pruning now. */ async handleEpochPrune(provenCheckpointNumber, currentL1BlockNumber, currentL1Timestamp) {
642
650
  const rollupCanPrune = await this.canPrune(currentL1BlockNumber, currentL1Timestamp);
643
- const localPendingCheckpointNumber = await this.store.getSynchedCheckpointNumber();
651
+ const localPendingCheckpointNumber = await this.stores.blocks.getLatestCheckpointNumber();
644
652
  const canPrune = localPendingCheckpointNumber > provenCheckpointNumber && rollupCanPrune;
645
653
  if (canPrune) {
646
654
  const timer = new Timer();
@@ -652,12 +660,14 @@ _dec = trackSpan('Archiver.syncFromL1'), _dec1 = trackSpan('Archiver.handleEpoch
652
660
  const pruneFromSlotNumber = header.slotNumber;
653
661
  const pruneFromEpochNumber = getEpochAtSlot(pruneFromSlotNumber, this.l1Constants);
654
662
  const checkpointsToUnwind = localPendingCheckpointNumber - provenCheckpointNumber;
655
- const checkpointPromises = Array.from({
663
+ // Fetch checkpoints and blocks in bounded batches to avoid unbounded concurrent
664
+ // promises when the gap between local pending and proven checkpoint numbers is large.
665
+ const BATCH_SIZE = 10;
666
+ const indices = Array.from({
656
667
  length: checkpointsToUnwind
657
- }).fill(0).map((_, i)=>this.store.getCheckpointData(CheckpointNumber(i + pruneFrom)));
658
- const checkpoints = await Promise.all(checkpointPromises);
659
- const blockPromises = await Promise.all(checkpoints.filter(isDefined).map((cp)=>this.store.getBlocksForCheckpoint(CheckpointNumber(cp.checkpointNumber))));
660
- const newBlocks = blockPromises.filter(isDefined).flat();
668
+ }, (_, i)=>CheckpointNumber(i + pruneFrom));
669
+ const checkpoints = (await asyncPool(BATCH_SIZE, indices, (idx)=>this.stores.blocks.getCheckpointData(idx))).filter(isDefined);
670
+ const newBlocks = (await asyncPool(BATCH_SIZE, checkpoints, (cp)=>this.stores.blocks.getBlocksForCheckpoint(CheckpointNumber(cp.checkpointNumber)))).filter(isDefined).flat();
661
671
  // Emit an event for listening services to react to the chain prune
662
672
  this.events.emit(L2BlockSourceEvents.L2PruneUnproven, {
663
673
  type: L2BlockSourceEvents.L2PruneUnproven,
@@ -666,11 +676,11 @@ _dec = trackSpan('Archiver.syncFromL1'), _dec1 = trackSpan('Archiver.handleEpoch
666
676
  });
667
677
  this.log.debug(`L2 prune from ${provenCheckpointNumber + 1} to ${localPendingCheckpointNumber} will occur on next checkpoint submission.`);
668
678
  await this.updater.removeCheckpointsAfter(provenCheckpointNumber);
669
- this.log.warn(`Removed ${count(checkpointsToUnwind, 'checkpoint')} after checkpoint ${provenCheckpointNumber} ` + `due to predicted reorg at L1 block ${currentL1BlockNumber}. ` + `Updated latest checkpoint is ${await this.store.getSynchedCheckpointNumber()}.`);
679
+ this.log.warn(`Removed ${count(checkpointsToUnwind, 'checkpoint')} after checkpoint ${provenCheckpointNumber} ` + `due to predicted reorg at L1 block ${currentL1BlockNumber}. ` + `Updated latest checkpoint is ${await this.stores.blocks.getLatestCheckpointNumber()}.`);
670
680
  this.instrumentation.processPrune(timer.ms());
671
681
  // TODO(palla/reorg): Do we need to set the block synched L1 block number here?
672
682
  // Seems like the next iteration should handle this.
673
- // await this.store.setCheckpointSynchedL1BlockNumber(currentL1BlockNumber);
683
+ // await this.stores.blocks.setSynchedL1BlockNumber(currentL1BlockNumber);
674
684
  }
675
685
  return {
676
686
  rollupCanPrune
@@ -691,59 +701,79 @@ _dec = trackSpan('Archiver.syncFromL1'), _dec1 = trackSpan('Archiver.handleEpoch
691
701
  nextEnd
692
702
  ];
693
703
  }
694
- async handleL1ToL2Messages(messagesSyncPoint, currentL1BlockNumber) {
695
- this.log.trace(`Handling L1 to L2 messages from ${messagesSyncPoint.l1BlockNumber} to ${currentL1BlockNumber}.`);
696
- if (currentL1BlockNumber <= messagesSyncPoint.l1BlockNumber) {
697
- return;
704
+ async handleL1ToL2Messages(currentL1Block, finalizedL1Block) {
705
+ // Load the syncpoint, which may have been updated in a previous iteration
706
+ const { messagesSynchedTo = {
707
+ l1BlockNumber: this.l1Constants.l1StartBlock,
708
+ l1BlockHash: this.l1Constants.l1StartBlockHash
709
+ } } = await getArchiverSynchPoint(this.stores);
710
+ // Nothing to do if L1 block number has not moved forward
711
+ const currentL1BlockNumber = currentL1Block.l1BlockNumber;
712
+ if (currentL1BlockNumber <= messagesSynchedTo.l1BlockNumber) {
713
+ return true;
698
714
  }
699
- // Load remote and local inbox states.
700
- const localMessagesInserted = await this.store.getTotalL1ToL2MessageCount();
701
- const localLastMessage = await this.store.getLastL1ToL2Message();
715
+ // Compare local message store state with the remote. If they match, we just advance the match pointer.
702
716
  const remoteMessagesState = await this.inbox.getState({
703
717
  blockNumber: currentL1BlockNumber
704
718
  });
705
- this.log.trace(`Retrieved remote inbox state at L1 block ${currentL1BlockNumber}.`, {
706
- localMessagesInserted,
707
- localLastMessage,
708
- remoteMessagesState
709
- });
710
- // Compare message count and rolling hash. If they match, no need to retrieve anything.
711
- if (remoteMessagesState.totalMessagesInserted === localMessagesInserted && remoteMessagesState.messagesRollingHash.equals(localLastMessage?.rollingHash ?? Buffer32.ZERO)) {
712
- this.log.trace(`No L1 to L2 messages to query between L1 blocks ${messagesSyncPoint.l1BlockNumber} and ${currentL1BlockNumber}.`);
713
- return;
719
+ const localLastMessage = await this.stores.messages.getLastMessage();
720
+ if (await this.localStateMatches(localLastMessage, remoteMessagesState)) {
721
+ this.log.trace(`Local L1 to L2 messages are already in sync with remote at L1 block ${currentL1BlockNumber}`);
722
+ await this.stores.messages.setMessageSyncState(currentL1Block, remoteMessagesState.treeInProgress, finalizedL1Block);
723
+ return true;
714
724
  }
715
- // Check if our syncpoint is still valid. If not, there was an L1 reorg and we need to re-retrieve messages.
716
- // Note that we need to fetch it from logs and not from inbox state at the syncpoint l1 block number, since it
717
- // could be older than 128 blocks and non-archive nodes cannot resolve it.
718
- if (localLastMessage) {
719
- const remoteLastMessage = await this.retrieveL1ToL2Message(localLastMessage.leaf);
720
- this.log.trace(`Retrieved remote message for local last`, {
721
- remoteLastMessage,
722
- localLastMessage
723
- });
724
- if (!remoteLastMessage || !remoteLastMessage.rollingHash.equals(localLastMessage.rollingHash)) {
725
- this.log.warn(`Rolling back L1 to L2 messages due to hash mismatch or msg not found.`, {
726
- remoteLastMessage,
727
- messagesSyncPoint,
728
- localLastMessage
729
- });
730
- messagesSyncPoint = await this.rollbackL1ToL2Messages(localLastMessage, messagesSyncPoint);
731
- this.log.debug(`Rolled back L1 to L2 messages to L1 block ${messagesSyncPoint.l1BlockNumber}.`, {
732
- messagesSyncPoint
725
+ // If not, then we are out of sync. Most likely there are new messages on the inbox, so we try retrieving them.
726
+ // However, it could also be the case that there was an L1 reorg and our syncpoint is no longer valid.
727
+ // If that's the case, we'd get an exception out of the message store since the rolling hash of the first message
728
+ // we try to insert would not match the one in the db, in which case we rollback to the last common message with L1.
729
+ try {
730
+ await this.retrieveAndStoreMessages(messagesSynchedTo.l1BlockNumber, currentL1BlockNumber);
731
+ } catch (error) {
732
+ if (isErrorClass(error, MessageStoreError)) {
733
+ this.log.warn(`Failed to store L1 to L2 messages retrieved from L1: ${error.message}. Rolling back syncpoint to retry.`, {
734
+ inboxMessage: error.inboxMessage
733
735
  });
736
+ await this.rollbackL1ToL2Messages(remoteMessagesState);
737
+ return false;
734
738
  }
739
+ throw error;
735
740
  }
736
- // Retrieve and save messages in batches. Each batch is estimated to acommodate up to L2 'blockBatchSize' blocks,
741
+ // Note that, if there are no new messages to insert, but there was an L1 reorg that pruned out last messages,
742
+ // we'd notice by comparing our local state with the remote one again, and seeing they don't match even after
743
+ // our sync attempt. In this case, we also rollback our syncpoint, and trigger a retry.
744
+ const localLastMessageAfterSync = await this.stores.messages.getLastMessage();
745
+ if (!await this.localStateMatches(localLastMessageAfterSync, remoteMessagesState)) {
746
+ this.log.warn(`Local L1 to L2 messages state does not match remote after sync attempt. Rolling back syncpoint to retry.`, {
747
+ localLastMessageAfterSync,
748
+ remoteMessagesState
749
+ });
750
+ await this.rollbackL1ToL2Messages(remoteMessagesState);
751
+ return false;
752
+ }
753
+ // Advance the syncpoint after a successful sync
754
+ await this.stores.messages.setMessageSyncState(currentL1Block, remoteMessagesState.treeInProgress, finalizedL1Block);
755
+ return true;
756
+ }
757
+ /** Checks if the local rolling hash and message count matches the remote state */ async localStateMatches(localLastMessage, remoteState) {
758
+ const localMessageCount = await this.stores.messages.getTotalL1ToL2MessageCount();
759
+ this.log.trace(`Comparing local and remote inbox state`, {
760
+ localMessageCount,
761
+ localLastMessage,
762
+ remoteState
763
+ });
764
+ return remoteState.totalMessagesInserted === localMessageCount && remoteState.messagesRollingHash.equals(localLastMessage?.rollingHash ?? Buffer16.ZERO);
765
+ }
766
+ /** Retrieves L1 to L2 messages from L1 in batches and stores them. */ async retrieveAndStoreMessages(fromL1Block, toL1Block) {
737
767
  let searchStartBlock = 0n;
738
- let searchEndBlock = messagesSyncPoint.l1BlockNumber;
768
+ let searchEndBlock = fromL1Block;
739
769
  let lastMessage;
740
770
  let messageCount = 0;
741
771
  do {
742
- [searchStartBlock, searchEndBlock] = this.nextRange(searchEndBlock, currentL1BlockNumber);
772
+ [searchStartBlock, searchEndBlock] = this.nextRange(searchEndBlock, toL1Block);
743
773
  this.log.trace(`Retrieving L1 to L2 messages in L1 blocks ${searchStartBlock}-${searchEndBlock}`);
744
774
  const messages = await retrieveL1ToL2Messages(this.inbox, searchStartBlock, searchEndBlock);
745
775
  const timer = new Timer();
746
- await this.store.addL1ToL2Messages(messages);
776
+ await this.stores.messages.addL1ToL2Messages(messages);
747
777
  const perMsg = timer.ms() / messages.length;
748
778
  this.instrumentation.processNewMessages(messages.length, perMsg);
749
779
  for (const msg of messages){
@@ -754,74 +784,94 @@ _dec = trackSpan('Archiver.syncFromL1'), _dec1 = trackSpan('Archiver.handleEpoch
754
784
  lastMessage = msg;
755
785
  messageCount++;
756
786
  }
757
- }while (searchEndBlock < currentL1BlockNumber)
758
- // Log stats for messages retrieved (if any).
787
+ }while (searchEndBlock < toL1Block)
759
788
  if (messageCount > 0) {
760
789
  this.log.info(`Retrieved ${messageCount} new L1 to L2 messages up to message with index ${lastMessage?.index} for checkpoint ${lastMessage?.checkpointNumber}`, {
761
790
  lastMessage,
762
791
  messageCount
763
792
  });
764
793
  }
765
- // Warn if the resulting rolling hash does not match the remote state we had retrieved.
766
- if (lastMessage && !lastMessage.rollingHash.equals(remoteMessagesState.messagesRollingHash)) {
767
- this.log.warn(`Last message retrieved rolling hash does not match remote state.`, {
768
- lastMessage,
769
- remoteMessagesState
770
- });
771
- }
772
794
  }
773
- async retrieveL1ToL2Message(leaf) {
774
- const currentL1BlockNumber = await this.publicClient.getBlockNumber();
775
- let searchStartBlock = 0n;
776
- let searchEndBlock = this.l1Constants.l1StartBlock - 1n;
777
- do {
778
- [searchStartBlock, searchEndBlock] = this.nextRange(searchEndBlock, currentL1BlockNumber);
779
- const message = await retrieveL1ToL2Message(this.inbox, leaf, searchStartBlock, searchEndBlock);
780
- if (message) {
781
- return message;
782
- }
783
- }while (searchEndBlock < currentL1BlockNumber)
784
- return undefined;
785
- }
786
- async rollbackL1ToL2Messages(localLastMessage, messagesSyncPoint) {
787
- // Slowly go back through our messages until we find the last common message.
788
- // We could query the logs in batch as an optimization, but the depth of the reorg should not be deep, and this
789
- // is a very rare case, so it's fine to query one log at a time.
795
+ /**
796
+ * Rolls back local L1 to L2 messages to the last common message with L1, and updates the syncpoint to the L1 block of that message.
797
+ * If no common message is found, rolls back all messages and sets the syncpoint to the start block.
798
+ */ async rollbackL1ToL2Messages(remoteMessagesState) {
799
+ const { treeInProgress: remoteTreeInProgress, messagesRollingHash: remoteRollingHash } = remoteMessagesState;
800
+ const messagesFinalizedL1Block = await this.stores.messages.getMessagesFinalizedL1Block();
801
+ const finalizedL1BlockNumber = messagesFinalizedL1Block?.l1BlockNumber;
802
+ // Slowly go back through our messages until we find the last common message. We could query the logs in
803
+ // batch as an optimization, but the depth of the reorg should not be deep, and this is a very rare case,
804
+ // so it's fine to query one log at a time.
790
805
  let commonMsg;
791
- this.log.verbose(`Searching most recent common L1 to L2 message at or before index ${localLastMessage.index}`);
792
- for await (const msg of this.store.iterateL1ToL2Messages({
793
- reverse: true,
794
- end: localLastMessage.index
806
+ let messagesToDelete = 0;
807
+ this.log.verbose(`Searching most recent common L1 to L2 message`);
808
+ for await (const localMsg of this.stores.messages.iterateL1ToL2Messages({
809
+ reverse: true
795
810
  })){
796
- const remoteMsg = await this.retrieveL1ToL2Message(msg.leaf);
797
811
  const logCtx = {
798
- remoteMsg,
799
- localMsg: msg
812
+ remoteMsg: undefined,
813
+ localMsg,
814
+ remoteMessagesState
800
815
  };
801
- if (remoteMsg && remoteMsg.rollingHash.equals(msg.rollingHash)) {
802
- this.log.verbose(`Found most recent common L1 to L2 message at index ${msg.index} on L1 block ${msg.l1BlockNumber}`, logCtx);
816
+ // First check if the local message rolling hash matches the current rolling hash of the inbox contract,
817
+ // which means we just need to rollback some local messages and we should be back in sync. This means there
818
+ // was an L1 reorg that removed some of the messages we had, but no new messages were added compared.
819
+ if (localMsg.rollingHash.equals(remoteRollingHash)) {
820
+ this.log.info(`Found common L1 to L2 message at index ${localMsg.index} on L1 block ${localMsg.l1BlockNumber} matching current remote state`, logCtx);
821
+ commonMsg = localMsg;
822
+ break;
823
+ }
824
+ // Messages at or below the finalized L1 block cannot have been reorged — accept as common without querying L1.
825
+ if (finalizedL1BlockNumber !== undefined && localMsg.l1BlockNumber <= finalizedL1BlockNumber) {
826
+ this.log.info(`Found common L1 to L2 message at finalized L1 block ${localMsg.l1BlockNumber}`, logCtx);
827
+ commonMsg = localMsg;
828
+ break;
829
+ }
830
+ // If there's no match with the current remote state, check if the message exists on the inbox contract at all
831
+ // by looking at the inbox events. If the L1 reorg *added* new messages in addition to deleting existing ones,
832
+ // then the current remote state's rolling hash will not match anything we have locally, so we need to check existence
833
+ // of individual messages via logs. Note we use logs and not historical queries so we don't have to depend on
834
+ // an archival rpc node, since the message could be from a long time ago if we're catching up with syncing.
835
+ const remoteMsg = await retrieveL1ToL2Message(this.inbox, localMsg);
836
+ logCtx.remoteMsg = remoteMsg;
837
+ if (remoteMsg && remoteMsg.rollingHash.equals(localMsg.rollingHash)) {
838
+ this.log.info(`Found most recent common L1 to L2 message at index ${localMsg.index} on L1 block ${localMsg.l1BlockNumber}`, logCtx);
803
839
  commonMsg = remoteMsg;
804
840
  break;
805
841
  } else if (remoteMsg) {
806
- this.log.debug(`Local L1 to L2 message with index ${msg.index} has different rolling hash`, logCtx);
842
+ this.log.debug(`Local L1 to L2 message with index ${localMsg.index} has different rolling hash`, logCtx);
843
+ messagesToDelete++;
807
844
  } else {
808
- this.log.debug(`Local L1 to L2 message with index ${msg.index} not found on L1`, logCtx);
845
+ this.log.debug(`Local L1 to L2 message with index ${localMsg.index} not found on L1`, logCtx);
846
+ messagesToDelete++;
809
847
  }
810
848
  }
811
- // Delete everything after the common message we found.
812
- const lastGoodIndex = commonMsg?.index;
813
- this.log.warn(`Deleting all local L1 to L2 messages after index ${lastGoodIndex ?? 'undefined'}`);
814
- await this.store.removeL1ToL2Messages(lastGoodIndex !== undefined ? lastGoodIndex + 1n : 0n);
849
+ // Delete everything after the common message we found, if anything needs to be deleted.
850
+ // Do not exit early if there are no messages to delete, we still want to update the syncpoint.
851
+ if (messagesToDelete > 0) {
852
+ const lastGoodIndex = commonMsg?.index;
853
+ this.log.warn(`Rolling back all local L1 to L2 messages after index ${lastGoodIndex ?? 'initial'}`);
854
+ await this.stores.messages.removeL1ToL2Messages(lastGoodIndex !== undefined ? lastGoodIndex + 1n : 0n);
855
+ }
815
856
  // Update the syncpoint so the loop below reprocesses the changed messages. We go to the block before
816
857
  // the last common one, so we force reprocessing it, in case new messages were added on that same L1 block
817
- // after the last common message.
818
- const syncPointL1BlockNumber = commonMsg ? commonMsg.l1BlockNumber - 1n : this.l1Constants.l1StartBlock;
819
- const syncPointL1BlockHash = await this.getL1BlockHash(syncPointL1BlockNumber);
820
- messagesSyncPoint = {
858
+ // after the last common message. Cap at the finalized L1 block: messages at or below finalized cannot
859
+ // have been reorged, so there is no need to walk back any further than that.
860
+ const syncPointL1BlockNumber = maxBigint(...compactArray([
861
+ commonMsg ? commonMsg.l1BlockNumber - 1n : undefined,
862
+ finalizedL1BlockNumber,
863
+ this.l1Constants.l1StartBlock
864
+ ]));
865
+ const syncPointL1BlockHash = syncPointL1BlockNumber === finalizedL1BlockNumber ? messagesFinalizedL1Block.l1BlockHash : await this.getL1BlockHash(syncPointL1BlockNumber);
866
+ const messagesSyncPoint = {
821
867
  l1BlockNumber: syncPointL1BlockNumber,
822
868
  l1BlockHash: syncPointL1BlockHash
823
869
  };
824
- await this.store.setMessageSynchedL1Block(messagesSyncPoint);
870
+ await this.stores.messages.setMessageSyncState(messagesSyncPoint, remoteTreeInProgress);
871
+ this.log.verbose(`Updated messages syncpoint to L1 block ${messagesSyncPoint.l1BlockNumber}`, {
872
+ ...messagesSyncPoint,
873
+ remoteTreeInProgress
874
+ });
825
875
  return messagesSyncPoint;
826
876
  }
827
877
  async getL1BlockHash(l1BlockNumber) {
@@ -835,8 +885,8 @@ _dec = trackSpan('Archiver.syncFromL1'), _dec1 = trackSpan('Archiver.handleEpoch
835
885
  return Buffer32.fromString(block.hash);
836
886
  }
837
887
  async handleCheckpoints(blocksSynchedTo, currentL1BlockNumber, initialSyncComplete) {
838
- const localPendingCheckpointNumber = await this.store.getSynchedCheckpointNumber();
839
- const initialValidationResult = await this.store.getPendingChainValidationStatus();
888
+ const localPendingCheckpointNumber = await this.stores.blocks.getLatestCheckpointNumber();
889
+ const initialValidationResult = await this.stores.blocks.getPendingChainValidationStatus();
840
890
  const { provenCheckpointNumber, provenArchive, pendingCheckpointNumber, pendingArchive, archiveOfMyCheckpoint: archiveForLocalPendingCheckpointNumber } = await execInSpan(this.tracer, 'Archiver.getRollupStatus', ()=>this.rollup.status(localPendingCheckpointNumber, {
841
891
  blockNumber: currentL1BlockNumber
842
892
  }));
@@ -859,7 +909,7 @@ _dec = trackSpan('Archiver.syncFromL1'), _dec1 = trackSpan('Archiver.handleEpoch
859
909
  // we need to set it to zero. This is an edge case because we dont have a checkpoint zero (initial checkpoint is one),
860
910
  // so localCheckpointForDestinationProvenCheckpointNumber would not be found below.
861
911
  if (provenCheckpointNumber === 0) {
862
- const localProvenCheckpointNumber = await this.store.getProvenCheckpointNumber();
912
+ const localProvenCheckpointNumber = await this.stores.blocks.getProvenCheckpointNumber();
863
913
  if (localProvenCheckpointNumber !== provenCheckpointNumber) {
864
914
  await this.updater.setProvenCheckpointNumber(provenCheckpointNumber);
865
915
  this.log.info(`Rolled back proven chain to checkpoint ${provenCheckpointNumber}`, {
@@ -867,16 +917,16 @@ _dec = trackSpan('Archiver.syncFromL1'), _dec1 = trackSpan('Archiver.handleEpoch
867
917
  });
868
918
  }
869
919
  }
870
- const localCheckpointForDestinationProvenCheckpointNumber = await this.store.getCheckpointData(provenCheckpointNumber);
920
+ const localCheckpointForDestinationProvenCheckpointNumber = await this.stores.blocks.getCheckpointData(provenCheckpointNumber);
871
921
  // Sanity check. I've hit what seems to be a state where the proven checkpoint is set to a value greater than the latest
872
922
  // synched checkpoint when requesting L2Tips from the archiver. This is the only place where the proven checkpoint is set.
873
- const synched = await this.store.getSynchedCheckpointNumber();
923
+ const synched = await this.stores.blocks.getLatestCheckpointNumber();
874
924
  if (localCheckpointForDestinationProvenCheckpointNumber && synched < localCheckpointForDestinationProvenCheckpointNumber.checkpointNumber) {
875
925
  this.log.error(`Hit local checkpoint greater than last synched checkpoint: ${localCheckpointForDestinationProvenCheckpointNumber.checkpointNumber} > ${synched}`);
876
926
  }
877
927
  this.log.trace(`Local checkpoint for remote proven checkpoint ${provenCheckpointNumber} is ${localCheckpointForDestinationProvenCheckpointNumber?.archive.root.toString() ?? 'undefined'}`);
878
928
  if (localCheckpointForDestinationProvenCheckpointNumber && provenArchive.equals(localCheckpointForDestinationProvenCheckpointNumber.archive.root)) {
879
- const localProvenCheckpointNumber = await this.store.getProvenCheckpointNumber();
929
+ const localProvenCheckpointNumber = await this.stores.blocks.getProvenCheckpointNumber();
880
930
  if (localProvenCheckpointNumber !== provenCheckpointNumber) {
881
931
  await this.updater.setProvenCheckpointNumber(provenCheckpointNumber);
882
932
  this.log.info(`Updated proven chain to checkpoint ${provenCheckpointNumber}`, {
@@ -901,7 +951,7 @@ _dec = trackSpan('Archiver.syncFromL1'), _dec1 = trackSpan('Archiver.handleEpoch
901
951
  // If we have 0 checkpoints locally and there are no checkpoints onchain there is nothing to do.
902
952
  const noCheckpoints = localPendingCheckpointNumber === 0 && pendingCheckpointNumber === 0;
903
953
  if (noCheckpoints) {
904
- await this.store.setCheckpointSynchedL1BlockNumber(currentL1BlockNumber);
954
+ await this.stores.blocks.setSynchedL1BlockNumber(currentL1BlockNumber);
905
955
  this.log.debug(`No checkpoints to retrieve from ${blocksSynchedTo + 1n} to ${currentL1BlockNumber}, no checkpoints on chain`);
906
956
  return rollupStatus;
907
957
  }
@@ -909,7 +959,7 @@ _dec = trackSpan('Archiver.syncFromL1'), _dec1 = trackSpan('Archiver.handleEpoch
909
959
  // Related to the L2 reorgs of the pending chain. We are only interested in actually addressing a reorg if there
910
960
  // are any state that could be impacted by it. If we have no checkpoints, there is no impact.
911
961
  if (localPendingCheckpointNumber > 0) {
912
- const localPendingCheckpoint = await this.store.getCheckpointData(localPendingCheckpointNumber);
962
+ const localPendingCheckpoint = await this.stores.blocks.getCheckpointData(localPendingCheckpointNumber);
913
963
  if (localPendingCheckpoint === undefined) {
914
964
  throw new Error(`Missing checkpoint ${localPendingCheckpointNumber}`);
915
965
  }
@@ -923,7 +973,7 @@ _dec = trackSpan('Archiver.syncFromL1'), _dec1 = trackSpan('Archiver.handleEpoch
923
973
  // However, in the re-org scenario, our L1 node is temporarily lying to us and we end up potentially missing checkpoints.
924
974
  // We must only set this block number based on actually retrieved logs.
925
975
  // TODO(#8621): Tackle this properly when we handle L1 Re-orgs.
926
- // await this.store.setCheckpointSynchedL1BlockNumber(currentL1BlockNumber);
976
+ // await this.stores.blocks.setSynchedL1BlockNumber(currentL1BlockNumber);
927
977
  this.log.debug(`No checkpoints to retrieve from ${blocksSynchedTo + 1n} to ${currentL1BlockNumber}`);
928
978
  return rollupStatus;
929
979
  }
@@ -940,7 +990,7 @@ _dec = trackSpan('Archiver.syncFromL1'), _dec1 = trackSpan('Archiver.handleEpoch
940
990
  });
941
991
  let tipAfterUnwind = localPendingCheckpointNumber;
942
992
  while(true){
943
- const candidateCheckpoint = await this.store.getCheckpointData(tipAfterUnwind);
993
+ const candidateCheckpoint = await this.stores.blocks.getCheckpointData(tipAfterUnwind);
944
994
  if (candidateCheckpoint === undefined) {
945
995
  break;
946
996
  }
@@ -956,7 +1006,7 @@ _dec = trackSpan('Archiver.syncFromL1'), _dec1 = trackSpan('Archiver.handleEpoch
956
1006
  }
957
1007
  const checkpointsToRemove = localPendingCheckpointNumber - tipAfterUnwind;
958
1008
  await this.updater.removeCheckpointsAfter(CheckpointNumber(tipAfterUnwind));
959
- this.log.warn(`Removed ${count(checkpointsToRemove, 'checkpoint')} after checkpoint ${tipAfterUnwind} ` + `due to mismatched checkpoint hashes at L1 block ${currentL1BlockNumber}. ` + `Updated L2 latest checkpoint is ${await this.store.getSynchedCheckpointNumber()}.`);
1009
+ this.log.warn(`Removed ${count(checkpointsToRemove, 'checkpoint')} after checkpoint ${tipAfterUnwind} ` + `due to mismatched checkpoint hashes at L1 block ${currentL1BlockNumber}. ` + `Updated L2 latest checkpoint is ${await this.stores.blocks.getLatestCheckpointNumber()}.`);
960
1010
  }
961
1011
  }
962
1012
  // Retrieve checkpoints in batches. Each batch is estimated to accommodate up to 'blockBatchSize' L1 blocks,
@@ -964,35 +1014,65 @@ _dec = trackSpan('Archiver.syncFromL1'), _dec1 = trackSpan('Archiver.handleEpoch
964
1014
  let searchStartBlock = blocksSynchedTo;
965
1015
  let searchEndBlock = blocksSynchedTo;
966
1016
  let lastRetrievedCheckpoint;
967
- let lastL1BlockWithCheckpoint = undefined;
1017
+ let lastSeenCheckpoint;
968
1018
  do {
969
1019
  [searchStartBlock, searchEndBlock] = this.nextRange(searchEndBlock, currentL1BlockNumber);
970
1020
  this.log.trace(`Retrieving checkpoints from L1 block ${searchStartBlock} to ${searchEndBlock}`);
971
- // TODO(md): Retrieve from blob client then from consensus client, then from peers
972
- const retrievedCheckpoints = await execInSpan(this.tracer, 'Archiver.retrieveCheckpointsFromRollup', ()=>retrieveCheckpointsFromRollup(this.rollup, this.publicClient, this.debugClient, this.blobClient, searchStartBlock, searchEndBlock, this.instrumentation, this.log, !initialSyncComplete));
973
- if (retrievedCheckpoints.length === 0) {
1021
+ // First fetch calldata only, no blobs yet, since we may be able to just get that data out of the proposed chain
1022
+ const calldataCheckpoints = await execInSpan(this.tracer, 'Archiver.retrieveCheckpointCalldataFromRollup', ()=>retrieveCheckpointCalldataFromRollup(this.rollup, this.publicClient, this.debugClient, searchStartBlock, searchEndBlock, this.instrumentation, this.log));
1023
+ if (calldataCheckpoints.length === 0) {
974
1024
  // We are not calling `setBlockSynchedL1BlockNumber` because it may cause sync issues if based off infura.
975
1025
  // See further details in earlier comments.
976
1026
  this.log.trace(`Retrieved no new checkpoints from L1 block ${searchStartBlock} to ${searchEndBlock}`);
977
1027
  continue;
978
1028
  }
979
- this.log.debug(`Retrieved ${retrievedCheckpoints.length} new checkpoints between L1 blocks ${searchStartBlock} and ${searchEndBlock}`, {
980
- lastProcessedCheckpoint: retrievedCheckpoints[retrievedCheckpoints.length - 1].l1,
1029
+ this.log.debug(`Retrieved ${calldataCheckpoints.length} new checkpoint calldata between L1 blocks ${searchStartBlock} and ${searchEndBlock}`, {
1030
+ lastProcessedCheckpoint: calldataCheckpoints[calldataCheckpoints.length - 1].l1,
981
1031
  searchStartBlock,
982
1032
  searchEndBlock
983
1033
  });
984
- const publishedCheckpoints = await Promise.all(retrievedCheckpoints.map((b)=>retrievedToPublishedCheckpoint(b)));
1034
+ // Check if the last checkpoint matches a local pending entry (so we can skip blob fetch).
1035
+ // We only check the last one; if it matches, the blob fetch is skipped for that entry.
1036
+ // TODO(palla/pipelining): We may have more than a single checkpoint to promote
1037
+ const lastCalldataCheckpoint = calldataCheckpoints[calldataCheckpoints.length - 1];
1038
+ const promoteResult = await this.tryBuildPublishedCheckpointFromProposed(lastCalldataCheckpoint);
1039
+ const checkpointToPromote = promoteResult && !('diverged' in promoteResult) ? promoteResult : undefined;
1040
+ const evictProposedFrom = promoteResult && 'diverged' in promoteResult ? promoteResult.fromCheckpointNumber : undefined;
1041
+ // Then fetch blobs in parallel and build the full published checkpoints
1042
+ const toFetchBlobs = checkpointToPromote ? calldataCheckpoints.slice(0, -1) : calldataCheckpoints;
1043
+ const blobFetched = await asyncPool(10, toFetchBlobs, async (checkpoint)=>retrievedToPublishedCheckpoint({
1044
+ ...checkpoint,
1045
+ checkpointBlobData: await getCheckpointBlobDataFromBlobs(this.blobClient, checkpoint.l1.blockHash, checkpoint.blobHashes, checkpoint.checkpointNumber, this.log, !initialSyncComplete, checkpoint.parentBeaconBlockRoot, checkpoint.l1.timestamp)
1046
+ }));
1047
+ // And add the promoted checkpoint to the list of all checkpoints
1048
+ const publishedCheckpoints = checkpointToPromote ? [
1049
+ ...blobFetched,
1050
+ checkpointToPromote
1051
+ ] : blobFetched;
985
1052
  const validCheckpoints = [];
1053
+ // Now loop through all checkpoints and validate their attestations
986
1054
  for (const published of publishedCheckpoints){
1055
+ // Check the attestations uploaded by the publisher to L1 are correct
1056
+ // Rollup contract does not validate attestations to save on gas, so this
1057
+ // falls on the nodes to verify offchain and skip those checkpoints.
987
1058
  const validationResult = this.config.skipValidateCheckpointAttestations ? {
988
1059
  valid: true
989
- } : await validateCheckpointAttestations(published, this.epochCache, this.l1Constants, this.log);
990
- // Only update the validation result if it has changed, so we can keep track of the first invalid checkpoint
1060
+ } : await validateCheckpointAttestations(published, this.epochCache, this.l1Constants, this.getSignatureContext(), this.log);
1061
+ // Also skip the checkpoint if it builds on a previously-rejected ancestor. Without
1062
+ // this, addCheckpoints would throw InitialCheckpointNumberNotSequentialError when the
1063
+ // ancestor was skipped earlier (e.g. due to invalid attestations), the catch handler
1064
+ // would roll back the L1 sync point, and the next iteration would re-fetch and re-throw.
1065
+ const rejectedAncestor = await this.stores.blocks.getRejectedCheckpointByArchiveRoot(published.checkpoint.header.lastArchiveRoot);
1066
+ // Update the validation result if it has changed, so we can keep track of the first invalid checkpoint
991
1067
  // in case there is a sequence of more than one invalid checkpoint, as we need to invalidate the first one.
992
1068
  // There is an exception though: if a checkpoint is invalidated and replaced with another invalid checkpoint,
993
1069
  // we need to update the validation result, since we need to be able to invalidate the new one.
994
1070
  // See test 'chain progresses if an invalid checkpoint is invalidated with an invalid one' for more info.
995
- if (rollupStatus.validationResult?.valid !== validationResult.valid || !rollupStatus.validationResult.valid && !validationResult.valid && rollupStatus.validationResult.checkpoint.checkpointNumber === validationResult.checkpoint.checkpointNumber) {
1071
+ // Do not update the validation result if there is a rejected ancestor, since in that case we want to keep the
1072
+ // original invalidation, as the new checkpoint is extending from a previous invalid one.
1073
+ const validStatusChanged = rollupStatus.validationResult?.valid !== validationResult.valid;
1074
+ const invalidStatusWithSameCheckpointNumber = !validationResult.valid && rollupStatus.validationResult && !rollupStatus.validationResult.valid && rollupStatus.validationResult.checkpoint.checkpointNumber === validationResult.checkpoint.checkpointNumber;
1075
+ if (!rejectedAncestor && (validStatusChanged || invalidStatusWithSameCheckpointNumber)) {
996
1076
  rollupStatus.validationResult = validationResult;
997
1077
  }
998
1078
  if (!validationResult.valid) {
@@ -1006,12 +1086,52 @@ _dec = trackSpan('Archiver.syncFromL1'), _dec1 = trackSpan('Archiver.handleEpoch
1006
1086
  type: L2BlockSourceEvents.InvalidAttestationsCheckpointDetected,
1007
1087
  validationResult
1008
1088
  });
1089
+ // Persist a rejected-ancestor entry so any later checkpoint that builds on this one
1090
+ // is detected and skipped (rather than tripping the addCheckpoints consecutive-number
1091
+ // check and causing the sync point to roll back in a loop).
1092
+ await this.stores.blocks.addRejectedCheckpoint({
1093
+ checkpointNumber: published.checkpoint.number,
1094
+ archiveRoot: published.checkpoint.archive.root,
1095
+ parentArchiveRoot: published.checkpoint.header.lastArchiveRoot,
1096
+ slotNumber: published.checkpoint.header.slotNumber,
1097
+ l1: published.l1,
1098
+ reason: 'invalid-attestations'
1099
+ });
1100
+ continue;
1101
+ }
1102
+ if (rejectedAncestor) {
1103
+ const descendantInfo = published.checkpoint.toCheckpointInfo();
1104
+ this.log.warn(`Skipping checkpoint ${published.checkpoint.number} as it is a descendant of ` + `rejected checkpoint ${rejectedAncestor.checkpointNumber} (${rejectedAncestor.reason})`, {
1105
+ checkpointNumber: published.checkpoint.number,
1106
+ checkpointHash: published.checkpoint.hash(),
1107
+ l1BlockNumber: published.l1.blockNumber,
1108
+ l1BlockHash: published.l1.blockHash,
1109
+ ancestorCheckpointNumber: rejectedAncestor.checkpointNumber,
1110
+ ancestorArchiveRoot: rejectedAncestor.archiveRoot.toString(),
1111
+ ancestorReason: rejectedAncestor.reason
1112
+ });
1113
+ this.events.emit(L2BlockSourceEvents.DescendentOfInvalidAttestationsCheckpointDetected, {
1114
+ type: L2BlockSourceEvents.DescendentOfInvalidAttestationsCheckpointDetected,
1115
+ checkpoint: descendantInfo,
1116
+ ancestorArchiveRoot: rejectedAncestor.archiveRoot,
1117
+ ancestorCheckpointNumber: rejectedAncestor.checkpointNumber
1118
+ });
1119
+ // Persist this chainpoint as rejected as well, so we can construct a chain of
1120
+ // skipped checkpoints starting from the first one with invalid attestations.
1121
+ await this.stores.blocks.addRejectedCheckpoint({
1122
+ checkpointNumber: published.checkpoint.number,
1123
+ archiveRoot: published.checkpoint.archive.root,
1124
+ parentArchiveRoot: published.checkpoint.header.lastArchiveRoot,
1125
+ slotNumber: published.checkpoint.header.slotNumber,
1126
+ l1: published.l1,
1127
+ reason: 'descends-from-invalid-attestations'
1128
+ });
1009
1129
  continue;
1010
1130
  }
1011
1131
  // Check the inHash of the checkpoint against the l1->l2 messages.
1012
1132
  // The messages should've been synced up to the currentL1BlockNumber and must be available for the published
1013
1133
  // checkpoints we just retrieved.
1014
- const l1ToL2Messages = await this.store.getL1ToL2Messages(published.checkpoint.number);
1134
+ const l1ToL2Messages = await this.stores.messages.getL1ToL2Messages(published.checkpoint.number);
1015
1135
  const computedInHash = computeInHashFromL1ToL2Messages(l1ToL2Messages);
1016
1136
  const publishedInHash = published.checkpoint.header.inHash;
1017
1137
  if (!computedInHash.equals(publishedInHash)) {
@@ -1041,8 +1161,17 @@ _dec = trackSpan('Archiver.syncFromL1'), _dec1 = trackSpan('Archiver.handleEpoch
1041
1161
  }
1042
1162
  try {
1043
1163
  const updatedValidationResult = rollupStatus.validationResult === initialValidationResult ? undefined : rollupStatus.validationResult;
1044
- const [processDuration, result] = await elapsed(()=>execInSpan(this.tracer, 'Archiver.addCheckpoints', ()=>this.updater.addCheckpoints(validCheckpoints, updatedValidationResult)));
1045
- this.instrumentation.processNewBlocks(processDuration / validCheckpoints.length, validCheckpoints.flatMap((c)=>c.checkpoint.blocks));
1164
+ // Split valid checkpoints: the promoted one (if any) is persisted via the proposed-promotion path,
1165
+ // the rest via addCheckpoints. Both paths run within the same store transaction for atomicity.
1166
+ const [[maybeValidCheckpointToPromote], checkpointsToAdd] = partition(validCheckpoints, (c)=>c.checkpoint.number === checkpointToPromote?.checkpoint.number);
1167
+ const [processDuration, result] = await elapsed(()=>execInSpan(this.tracer, 'Archiver.addCheckpoints', ()=>this.updater.addCheckpoints(checkpointsToAdd, updatedValidationResult, maybeValidCheckpointToPromote && {
1168
+ l1: lastCalldataCheckpoint.l1,
1169
+ attestations: lastCalldataCheckpoint.attestations,
1170
+ checkpoint: maybeValidCheckpointToPromote
1171
+ }, evictProposedFrom)));
1172
+ if (validCheckpoints.length > 0) {
1173
+ this.instrumentation.processNewCheckpointedBlocks(processDuration / validCheckpoints.length, validCheckpoints.flatMap((c)=>c.checkpoint.blocks));
1174
+ }
1046
1175
  // If blocks were pruned due to conflict with L1 checkpoints, emit event
1047
1176
  if (result.prunedBlocks && result.prunedBlocks.length > 0) {
1048
1177
  const prunedCheckpointNumber = result.prunedBlocks[0].checkpointNumber;
@@ -1064,11 +1193,15 @@ _dec = trackSpan('Archiver.syncFromL1'), _dec1 = trackSpan('Archiver.handleEpoch
1064
1193
  } catch (err) {
1065
1194
  if (err instanceof InitialCheckpointNumberNotSequentialError) {
1066
1195
  const { previousCheckpointNumber, newCheckpointNumber } = err;
1067
- const previousCheckpoint = previousCheckpointNumber ? await this.store.getCheckpointData(CheckpointNumber(previousCheckpointNumber)) : undefined;
1068
- const updatedL1SyncPoint = previousCheckpoint?.l1.blockNumber ?? this.l1Constants.l1StartBlock;
1069
- await this.store.setCheckpointSynchedL1BlockNumber(updatedL1SyncPoint);
1196
+ const previousCheckpoint = previousCheckpointNumber ? await this.stores.blocks.getCheckpointData(CheckpointNumber(previousCheckpointNumber)) : undefined;
1197
+ const lastFinalizedCheckpoint = await this.stores.blocks.getCheckpointData(await this.stores.blocks.getFinalizedCheckpointNumber());
1198
+ const updatedL1SyncPoint = previousCheckpoint?.l1.blockNumber ?? lastFinalizedCheckpoint?.l1.blockNumber ?? this.l1Constants.l1StartBlock;
1199
+ await this.stores.blocks.setSynchedL1BlockNumber(updatedL1SyncPoint);
1070
1200
  this.log.warn(`Attempting to insert checkpoint ${newCheckpointNumber} with previous block ${previousCheckpointNumber}. Rolling back L1 sync point to ${updatedL1SyncPoint} to try and fetch the missing blocks.`, {
1071
1201
  previousCheckpointNumber,
1202
+ previousCheckpoint: previousCheckpoint?.header.toInspect(),
1203
+ lastFinalizedCheckpoint: lastFinalizedCheckpoint?.header.toInspect(),
1204
+ l1StartBlock: this.l1Constants.l1StartBlock,
1072
1205
  newCheckpointNumber,
1073
1206
  updatedL1SyncPoint
1074
1207
  });
@@ -1087,45 +1220,113 @@ _dec = trackSpan('Archiver.syncFromL1'), _dec1 = trackSpan('Archiver.handleEpoch
1087
1220
  });
1088
1221
  }
1089
1222
  lastRetrievedCheckpoint = validCheckpoints.at(-1) ?? lastRetrievedCheckpoint;
1090
- lastL1BlockWithCheckpoint = retrievedCheckpoints.at(-1)?.l1.blockNumber ?? lastL1BlockWithCheckpoint;
1223
+ lastSeenCheckpoint = publishedCheckpoints.at(-1) ?? lastSeenCheckpoint;
1091
1224
  }while (searchEndBlock < currentL1BlockNumber)
1092
1225
  // Important that we update AFTER inserting the blocks.
1093
1226
  await updateProvenCheckpoint();
1094
1227
  return {
1095
1228
  ...rollupStatus,
1096
1229
  lastRetrievedCheckpoint,
1097
- lastL1BlockWithCheckpoint
1230
+ lastSeenCheckpoint
1098
1231
  };
1099
1232
  }
1233
+ /**
1234
+ * Checks if a specific checkpoint matches a local pending entry, and if so, loads local data to build
1235
+ * a synthetic published checkpoint (skipping blob fetch).
1236
+ *
1237
+ * Returns { diverged: true, fromCheckpointNumber } when the L1 checkpoint does NOT match local pending
1238
+ * data for that number, so the caller can evict the entire pending suffix >= fromCheckpointNumber
1239
+ * (those entries chain off the now-invalid local state) within the same addCheckpoints transaction.
1240
+ */ async tryBuildPublishedCheckpointFromProposed(calldataCheckpoint) {
1241
+ if (this.config.skipPromoteProposedCheckpointDuringL1Sync || !calldataCheckpoint) {
1242
+ return undefined;
1243
+ }
1244
+ // Look up the specific pending entry for the checkpoint being mined, not just the tip
1245
+ const proposed = await this.stores.blocks.getProposedCheckpointByNumber(calldataCheckpoint.checkpointNumber);
1246
+ if (!proposed) {
1247
+ return undefined;
1248
+ }
1249
+ if (!proposed.header.equals(calldataCheckpoint.header) || !proposed.archive.root.equals(calldataCheckpoint.archiveRoot)) {
1250
+ this.log.warn(`Local proposed checkpoint ${proposed.checkpointNumber} does not match checkpoint retrieved from L1, overriding with L1 data`, {
1251
+ proposedCheckpointNumber: proposed.checkpointNumber,
1252
+ proposedHeader: proposed.header.toInspect(),
1253
+ proposedArchiveRoot: proposed.archive.root.toString(),
1254
+ calldataCheckpointNumber: calldataCheckpoint.checkpointNumber,
1255
+ calldataHeader: calldataCheckpoint.header.toInspect(),
1256
+ calldataArchiveRoot: calldataCheckpoint.archiveRoot.toString()
1257
+ });
1258
+ // Both the locally-proposed checkpoint and the L1-confirmed one are signed by the
1259
+ // slot proposer; emit a divergence event so the slasher can attribute equivocation.
1260
+ // Only emit when the slots match — uncheckpointed entries are pruned above so this
1261
+ // should always hold, but guard defensively to avoid mis-attributing a slash.
1262
+ if (proposed.header.slotNumber === calldataCheckpoint.header.slotNumber) {
1263
+ this.events.emit(L2BlockSourceEvents.CheckpointEquivocationDetected, {
1264
+ type: L2BlockSourceEvents.CheckpointEquivocationDetected,
1265
+ slotNumber: calldataCheckpoint.header.slotNumber,
1266
+ checkpointNumber: calldataCheckpoint.checkpointNumber,
1267
+ l1ArchiveRoot: calldataCheckpoint.archiveRoot,
1268
+ proposedArchiveRoot: proposed.archive.root
1269
+ });
1270
+ }
1271
+ // Return a divergence signal so the caller can evict pending >= this number
1272
+ return {
1273
+ diverged: true,
1274
+ fromCheckpointNumber: proposed.checkpointNumber
1275
+ };
1276
+ }
1277
+ this.log.debug(`Building published checkpoint from proposed ${calldataCheckpoint.checkpointNumber} (skipping blob fetch)`, {
1278
+ proposedHeader: proposed.header.toInspect(),
1279
+ proposedArchiveRoot: proposed.archive.root.toString()
1280
+ });
1281
+ const blocks = await this.stores.blocks.getBlocks({
1282
+ from: BlockNumber(proposed.startBlock),
1283
+ limit: proposed.blockCount
1284
+ });
1285
+ if (blocks.length !== proposed.blockCount) {
1286
+ this.log.warn(`Local proposed checkpoint ${proposed.checkpointNumber} has wrong block count (expected ${proposed.blockCount} blocks starting at ${proposed.startBlock} but got ${blocks.length})`, {
1287
+ proposedCheckpointNumber: proposed.checkpointNumber,
1288
+ proposedStartBlock: proposed.startBlock,
1289
+ proposedBlockCount: proposed.blockCount,
1290
+ retrievedBlocks: blocks.map((b)=>b.number)
1291
+ });
1292
+ return undefined;
1293
+ }
1294
+ const checkpoint = Checkpoint.from({
1295
+ archive: proposed.archive,
1296
+ header: proposed.header,
1297
+ blocks,
1298
+ number: proposed.checkpointNumber,
1299
+ feeAssetPriceModifier: proposed.feeAssetPriceModifier
1300
+ });
1301
+ const promotedCheckpoint = PublishedCheckpoint.from({
1302
+ checkpoint,
1303
+ l1: calldataCheckpoint.l1,
1304
+ attestations: calldataCheckpoint.attestations
1305
+ });
1306
+ this.instrumentation.processCheckpointPromoted();
1307
+ return promotedCheckpoint;
1308
+ }
1100
1309
  async checkForNewCheckpointsBeforeL1SyncPoint(status, blocksSynchedTo, currentL1BlockNumber) {
1101
- const { lastRetrievedCheckpoint, pendingCheckpointNumber } = status;
1102
- // Compare the last checkpoint we have (either retrieved in this round or loaded from store) with what the
1103
- // rollup contract told us was the latest one (pinned at the currentL1BlockNumber).
1104
- const latestLocalCheckpointNumber = lastRetrievedCheckpoint?.checkpoint.number ?? await this.store.getSynchedCheckpointNumber();
1310
+ const { lastSeenCheckpoint, pendingCheckpointNumber } = status;
1311
+ // Compare the last checkpoint (valid or not) we have (either retrieved in this round or loaded from store)
1312
+ // with what the rollup contract told us was the latest one (pinned at the currentL1BlockNumber).
1313
+ const latestLocalCheckpointNumber = lastSeenCheckpoint?.checkpoint.number ?? CheckpointNumber.max(await this.stores.blocks.getLatestCheckpointNumber(), await this.stores.blocks.getLatestRejectedCheckpointNumber()) ?? CheckpointNumber.ZERO;
1105
1314
  if (latestLocalCheckpointNumber < pendingCheckpointNumber) {
1106
1315
  // Here we have consumed all logs until the `currentL1Block` we pinned at the beginning of the archiver loop,
1107
1316
  // but still haven't reached the pending checkpoint according to the call to the rollup contract.
1108
1317
  // We suspect an L1 reorg that added checkpoints *behind* us. If that is the case, it must have happened between
1109
1318
  // the last checkpoint we saw and the current one, so we reset the last synched L1 block number. In the edge case
1110
1319
  // we don't have one, we go back 2 L1 epochs, which is the deepest possible reorg (assuming Casper is working).
1111
- let latestLocalCheckpointArchive = undefined;
1112
- let targetL1BlockNumber = maxBigint(currentL1BlockNumber - 64n, 0n);
1113
- if (lastRetrievedCheckpoint) {
1114
- latestLocalCheckpointArchive = lastRetrievedCheckpoint.checkpoint.archive.root.toString();
1115
- targetL1BlockNumber = lastRetrievedCheckpoint.l1.blockNumber;
1116
- } else if (latestLocalCheckpointNumber > 0) {
1117
- const checkpoint = await this.store.getRangeOfCheckpoints(latestLocalCheckpointNumber, 1).then(([c])=>c);
1118
- latestLocalCheckpointArchive = checkpoint.archive.root.toString();
1119
- targetL1BlockNumber = checkpoint.l1.blockNumber;
1120
- }
1320
+ const latestLocalCheckpoint = lastSeenCheckpoint ?? await this.stores.blocks.getCheckpointData(latestLocalCheckpointNumber) ?? await this.stores.blocks.getRejectedCheckpointByNumber(latestLocalCheckpointNumber);
1321
+ const targetL1BlockNumber = latestLocalCheckpoint?.l1.blockNumber ?? maxBigint(currentL1BlockNumber - 64n, this.l1Constants.l1StartBlock, 0n);
1121
1322
  this.log.warn(`Failed to reach checkpoint ${pendingCheckpointNumber} at ${currentL1BlockNumber} (latest is ${latestLocalCheckpointNumber}). ` + `Rolling back last synched L1 block number to ${targetL1BlockNumber}.`, {
1122
1323
  latestLocalCheckpointNumber,
1123
- latestLocalCheckpointArchive,
1324
+ latestLocalCheckpointL1: latestLocalCheckpoint?.l1,
1124
1325
  blocksSynchedTo,
1125
1326
  currentL1BlockNumber,
1126
1327
  ...status
1127
1328
  });
1128
- await this.store.setCheckpointSynchedL1BlockNumber(targetL1BlockNumber);
1329
+ await this.stores.blocks.setSynchedL1BlockNumber(targetL1BlockNumber);
1129
1330
  } else {
1130
1331
  this.log.trace(`No new checkpoints behind L1 sync point to retrieve.`, {
1131
1332
  latestLocalCheckpointNumber,
@@ -1134,7 +1335,7 @@ _dec = trackSpan('Archiver.syncFromL1'), _dec1 = trackSpan('Archiver.handleEpoch
1134
1335
  }
1135
1336
  }
1136
1337
  async getCheckpointHeader(number) {
1137
- const checkpoint = await this.store.getCheckpointData(number);
1338
+ const checkpoint = await this.stores.blocks.getCheckpointData(number);
1138
1339
  if (!checkpoint) {
1139
1340
  return undefined;
1140
1341
  }