@aztec/archiver 0.0.1-commit.e2b2873ed → 0.0.1-commit.e304674f1

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 (110) hide show
  1. package/README.md +12 -6
  2. package/dest/archiver.d.ts +11 -8
  3. package/dest/archiver.d.ts.map +1 -1
  4. package/dest/archiver.js +79 -114
  5. package/dest/config.d.ts +3 -3
  6. package/dest/config.d.ts.map +1 -1
  7. package/dest/config.js +2 -1
  8. package/dest/errors.d.ts +34 -10
  9. package/dest/errors.d.ts.map +1 -1
  10. package/dest/errors.js +45 -16
  11. package/dest/factory.d.ts +4 -5
  12. package/dest/factory.d.ts.map +1 -1
  13. package/dest/factory.js +29 -26
  14. package/dest/index.d.ts +2 -1
  15. package/dest/index.d.ts.map +1 -1
  16. package/dest/index.js +1 -0
  17. package/dest/l1/bin/retrieve-calldata.js +32 -28
  18. package/dest/l1/calldata_retriever.d.ts +73 -50
  19. package/dest/l1/calldata_retriever.d.ts.map +1 -1
  20. package/dest/l1/calldata_retriever.js +191 -259
  21. package/dest/l1/data_retrieval.d.ts +11 -11
  22. package/dest/l1/data_retrieval.d.ts.map +1 -1
  23. package/dest/l1/data_retrieval.js +35 -34
  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/modules/data_source_base.d.ts +14 -7
  28. package/dest/modules/data_source_base.d.ts.map +1 -1
  29. package/dest/modules/data_source_base.js +39 -77
  30. package/dest/modules/data_store_updater.d.ts +25 -12
  31. package/dest/modules/data_store_updater.d.ts.map +1 -1
  32. package/dest/modules/data_store_updater.js +125 -94
  33. package/dest/modules/instrumentation.d.ts +15 -2
  34. package/dest/modules/instrumentation.d.ts.map +1 -1
  35. package/dest/modules/instrumentation.js +19 -2
  36. package/dest/modules/l1_synchronizer.d.ts +7 -9
  37. package/dest/modules/l1_synchronizer.d.ts.map +1 -1
  38. package/dest/modules/l1_synchronizer.js +176 -136
  39. package/dest/modules/validation.d.ts +1 -1
  40. package/dest/modules/validation.d.ts.map +1 -1
  41. package/dest/modules/validation.js +2 -2
  42. package/dest/store/block_store.d.ts +66 -28
  43. package/dest/store/block_store.d.ts.map +1 -1
  44. package/dest/store/block_store.js +356 -135
  45. package/dest/store/contract_class_store.d.ts +2 -3
  46. package/dest/store/contract_class_store.d.ts.map +1 -1
  47. package/dest/store/contract_class_store.js +7 -67
  48. package/dest/store/contract_instance_store.d.ts +1 -1
  49. package/dest/store/contract_instance_store.d.ts.map +1 -1
  50. package/dest/store/contract_instance_store.js +6 -2
  51. package/dest/store/kv_archiver_store.d.ts +61 -24
  52. package/dest/store/kv_archiver_store.d.ts.map +1 -1
  53. package/dest/store/kv_archiver_store.js +75 -27
  54. package/dest/store/l2_tips_cache.d.ts +20 -0
  55. package/dest/store/l2_tips_cache.d.ts.map +1 -0
  56. package/dest/store/l2_tips_cache.js +109 -0
  57. package/dest/store/log_store.d.ts +6 -3
  58. package/dest/store/log_store.d.ts.map +1 -1
  59. package/dest/store/log_store.js +93 -16
  60. package/dest/store/message_store.d.ts +5 -1
  61. package/dest/store/message_store.d.ts.map +1 -1
  62. package/dest/store/message_store.js +21 -9
  63. package/dest/test/fake_l1_state.d.ts +21 -1
  64. package/dest/test/fake_l1_state.d.ts.map +1 -1
  65. package/dest/test/fake_l1_state.js +133 -26
  66. package/dest/test/mock_archiver.d.ts +1 -1
  67. package/dest/test/mock_archiver.d.ts.map +1 -1
  68. package/dest/test/mock_archiver.js +3 -2
  69. package/dest/test/mock_l1_to_l2_message_source.d.ts +1 -1
  70. package/dest/test/mock_l1_to_l2_message_source.d.ts.map +1 -1
  71. package/dest/test/mock_l1_to_l2_message_source.js +2 -1
  72. package/dest/test/mock_l2_block_source.d.ts +26 -5
  73. package/dest/test/mock_l2_block_source.d.ts.map +1 -1
  74. package/dest/test/mock_l2_block_source.js +160 -89
  75. package/dest/test/mock_structs.d.ts +4 -1
  76. package/dest/test/mock_structs.d.ts.map +1 -1
  77. package/dest/test/mock_structs.js +13 -1
  78. package/dest/test/noop_l1_archiver.d.ts +4 -1
  79. package/dest/test/noop_l1_archiver.d.ts.map +1 -1
  80. package/dest/test/noop_l1_archiver.js +5 -2
  81. package/package.json +13 -13
  82. package/src/archiver.ts +101 -138
  83. package/src/config.ts +8 -1
  84. package/src/errors.ts +70 -26
  85. package/src/factory.ts +30 -16
  86. package/src/index.ts +1 -0
  87. package/src/l1/README.md +25 -68
  88. package/src/l1/bin/retrieve-calldata.ts +40 -27
  89. package/src/l1/calldata_retriever.ts +250 -379
  90. package/src/l1/data_retrieval.ts +31 -37
  91. package/src/l1/spire_proposer.ts +7 -15
  92. package/src/modules/data_source_base.ts +78 -98
  93. package/src/modules/data_store_updater.ts +138 -124
  94. package/src/modules/instrumentation.ts +29 -2
  95. package/src/modules/l1_synchronizer.ts +196 -168
  96. package/src/modules/validation.ts +2 -2
  97. package/src/store/block_store.ts +451 -172
  98. package/src/store/contract_class_store.ts +8 -106
  99. package/src/store/contract_instance_store.ts +8 -5
  100. package/src/store/kv_archiver_store.ts +115 -41
  101. package/src/store/l2_tips_cache.ts +128 -0
  102. package/src/store/log_store.ts +126 -27
  103. package/src/store/message_store.ts +27 -10
  104. package/src/structs/inbox_message.ts +1 -1
  105. package/src/test/fake_l1_state.ts +178 -30
  106. package/src/test/mock_archiver.ts +3 -2
  107. package/src/test/mock_l1_to_l2_message_source.ts +1 -0
  108. package/src/test/mock_l2_block_source.ts +209 -82
  109. package/src/test/mock_structs.ts +20 -6
  110. package/src/test/noop_l1_archiver.ts +7 -2
@@ -1,5 +1,6 @@
1
1
  import type { BlobClientInterface } from '@aztec/blob-client/client';
2
2
  import { type Blob, getBlobsPerL1Block, getPrefixedEthBlobCommitments } from '@aztec/blob-lib';
3
+ import { INITIAL_CHECKPOINT_NUMBER } from '@aztec/constants';
3
4
  import type { CheckpointProposedLog, InboxContract, MessageSentLog, RollupContract } from '@aztec/ethereum/contracts';
4
5
  import { MULTI_CALL_3_ADDRESS } from '@aztec/ethereum/contracts';
5
6
  import type { ViemPublicClient } from '@aztec/ethereum/types';
@@ -14,6 +15,7 @@ import { CommitteeAttestation, CommitteeAttestationsAndSigners, L2Block } from '
14
15
  import { Checkpoint } from '@aztec/stdlib/checkpoint';
15
16
  import { getSlotAtTimestamp } from '@aztec/stdlib/epoch-helpers';
16
17
  import { InboxLeaf } from '@aztec/stdlib/messaging';
18
+ import { ConsensusPayload, SignatureDomainSeparator } from '@aztec/stdlib/p2p';
17
19
  import {
18
20
  makeAndSignCommitteeAttestationsAndSigners,
19
21
  makeCheckpointAttestationFromCheckpoint,
@@ -22,7 +24,16 @@ import {
22
24
  import { AppendOnlyTreeSnapshot } from '@aztec/stdlib/trees';
23
25
 
24
26
  import { type MockProxy, mock } from 'jest-mock-extended';
25
- import { type FormattedBlock, type Transaction, encodeFunctionData, multicall3Abi, toHex } from 'viem';
27
+ import {
28
+ type AbiParameter,
29
+ type FormattedBlock,
30
+ type Transaction,
31
+ encodeAbiParameters,
32
+ encodeFunctionData,
33
+ keccak256,
34
+ multicall3Abi,
35
+ toHex,
36
+ } from 'viem';
26
37
 
27
38
  import { updateRollingHash } from '../structs/inbox_message.js';
28
39
 
@@ -87,6 +98,10 @@ type CheckpointData = {
87
98
  blobHashes: `0x${string}`[];
88
99
  blobs: Blob[];
89
100
  signers: Secp256k1Signer[];
101
+ /** Hash of the packed attestations, matching what the L1 event emits. */
102
+ attestationsHash: Buffer32;
103
+ /** Payload digest, matching what the L1 event emits. */
104
+ payloadDigest: Buffer32;
90
105
  /** If true, archiveAt will ignore it */
91
106
  pruned?: boolean;
92
107
  };
@@ -131,12 +146,17 @@ export class FakeL1State {
131
146
  private provenCheckpointNumber: CheckpointNumber = CheckpointNumber(0);
132
147
  private targetCommitteeSize: number = 0;
133
148
  private version: bigint = 1n;
149
+ private canPruneResult: boolean = false;
134
150
 
135
151
  // Computed from checkpoints based on L1 block visibility
136
152
  private pendingCheckpointNumber: CheckpointNumber = CheckpointNumber(0);
137
153
 
154
+ // The L1 block number reported as "finalized" (defaults to the start block)
155
+ private finalizedL1BlockNumber: bigint;
156
+
138
157
  constructor(private readonly config: FakeL1StateConfig) {
139
158
  this.l1BlockNumber = config.l1StartBlock;
159
+ this.finalizedL1BlockNumber = config.l1StartBlock;
140
160
  this.lastArchive = new AppendOnlyTreeSnapshot(config.genesisArchiveRoot, 1);
141
161
  }
142
162
 
@@ -193,10 +213,10 @@ export class FakeL1State {
193
213
  // Store the messages internally so they match the checkpoint's inHash
194
214
  this.addMessages(checkpointNumber, messagesL1BlockNumber, messages);
195
215
 
196
- // Create the transaction and blobs
197
- const tx = this.makeRollupTx(checkpoint, signers);
198
- const blobHashes = this.makeVersionedBlobHashes(checkpoint);
199
- const blobs = this.makeBlobsFromCheckpoint(checkpoint);
216
+ // Create the transaction, blobs, and event hashes
217
+ const { tx, attestationsHash, payloadDigest } = await this.makeRollupTx(checkpoint, signers);
218
+ const blobHashes = await this.makeVersionedBlobHashes(checkpoint);
219
+ const blobs = await this.makeBlobsFromCheckpoint(checkpoint);
200
220
 
201
221
  // Store the checkpoint data
202
222
  this.checkpoints.push({
@@ -207,6 +227,8 @@ export class FakeL1State {
207
227
  blobHashes,
208
228
  blobs,
209
229
  signers,
230
+ attestationsHash,
231
+ payloadDigest,
210
232
  });
211
233
 
212
234
  // Update last archive for auto-chaining
@@ -266,16 +288,40 @@ export class FakeL1State {
266
288
  this.updatePendingCheckpointNumber();
267
289
  }
268
290
 
291
+ /** Sets the L1 block number that will be reported as "finalized". */
292
+ setFinalizedL1BlockNumber(blockNumber: bigint): void {
293
+ this.finalizedL1BlockNumber = blockNumber;
294
+ }
295
+
269
296
  /** Marks a checkpoint as proven. Updates provenCheckpointNumber. */
270
297
  markCheckpointAsProven(checkpointNumber: CheckpointNumber): void {
271
298
  this.provenCheckpointNumber = checkpointNumber;
272
299
  }
273
300
 
301
+ /**
302
+ * Simulates what `rollup.getProvenCheckpointNumber({ blockNumber: atL1Block })` would return.
303
+ */
304
+ getProvenCheckpointNumberAtL1Block(atL1Block: bigint): CheckpointNumber {
305
+ if (this.provenCheckpointNumber === 0) {
306
+ return CheckpointNumber(0);
307
+ }
308
+ const checkpoint = this.checkpoints.find(cp => cp.checkpointNumber === this.provenCheckpointNumber);
309
+ if (checkpoint && checkpoint.l1BlockNumber <= atL1Block) {
310
+ return this.provenCheckpointNumber;
311
+ }
312
+ return CheckpointNumber(0);
313
+ }
314
+
274
315
  /** Sets the target committee size for attestation validation. */
275
316
  setTargetCommitteeSize(size: number): void {
276
317
  this.targetCommitteeSize = size;
277
318
  }
278
319
 
320
+ /** Sets whether the rollup contract would allow pruning at the next block. */
321
+ setCanPrune(value: boolean): void {
322
+ this.canPruneResult = value;
323
+ }
324
+
279
325
  /**
280
326
  * Removes all entries for a checkpoint number (simulates L1 reorg or prune).
281
327
  * Note: Does NOT remove messages for this checkpoint (use numL1ToL2Messages: 0 when re-adding).
@@ -286,6 +332,21 @@ export class FakeL1State {
286
332
  this.updatePendingCheckpointNumber();
287
333
  }
288
334
 
335
+ /**
336
+ * Moves a checkpoint to a different L1 block number (simulates L1 reorg that
337
+ * re-includes the same checkpoint transaction in a different block).
338
+ * The checkpoint content stays the same — only the L1 metadata changes.
339
+ * Auto-updates pending status.
340
+ */
341
+ moveCheckpointToL1Block(checkpointNumber: CheckpointNumber, newL1BlockNumber: bigint): void {
342
+ for (const cpData of this.checkpoints) {
343
+ if (cpData.checkpointNumber === checkpointNumber) {
344
+ cpData.l1BlockNumber = newL1BlockNumber;
345
+ }
346
+ }
347
+ this.updatePendingCheckpointNumber();
348
+ }
349
+
289
350
  /**
290
351
  * Removes messages after a given total index (simulates L1 reorg).
291
352
  * Auto-updates rolling hash.
@@ -384,6 +445,13 @@ export class FakeL1State {
384
445
  });
385
446
  });
386
447
 
448
+ mockRollup.getProvenCheckpointNumber.mockImplementation((options?: { blockNumber?: bigint }) => {
449
+ const atBlock = options?.blockNumber ?? this.l1BlockNumber;
450
+ return Promise.resolve(this.getProvenCheckpointNumberAtL1Block(atBlock));
451
+ });
452
+
453
+ mockRollup.canPruneAtTime.mockImplementation(() => Promise.resolve(this.canPruneResult));
454
+
387
455
  // Mock the wrapper method for fetching checkpoint events
388
456
  mockRollup.getCheckpointProposedEvents.mockImplementation((fromBlock: bigint, toBlock: bigint) =>
389
457
  Promise.resolve(this.getCheckpointProposedLogs(fromBlock, toBlock)),
@@ -398,21 +466,44 @@ export class FakeL1State {
398
466
  createMockInboxContract(_publicClient: MockProxy<ViemPublicClient>): MockProxy<InboxContract> {
399
467
  const mockInbox = mock<InboxContract>();
400
468
 
401
- mockInbox.getState.mockImplementation(() =>
402
- Promise.resolve({
403
- messagesRollingHash: this.messagesRollingHash,
404
- totalMessagesInserted: BigInt(this.messages.length),
405
- treeInProgress: 0n,
406
- }),
407
- );
469
+ mockInbox.getState.mockImplementation((opts: { blockTag?: string; blockNumber?: bigint } = {}) => {
470
+ // Filter messages visible at the given block number (or all if not specified)
471
+ const blockNumber = opts.blockNumber ?? this.l1BlockNumber;
472
+ const visibleMessages = this.messages.filter(m => m.l1BlockNumber <= blockNumber);
473
+
474
+ // treeInProgress must be > any sealed checkpoint. On L1, a checkpoint can only be proposed
475
+ // after its messages are sealed, so treeInProgress > checkpointNumber for all published checkpoints.
476
+ const maxFromMessages =
477
+ visibleMessages.length > 0 ? Math.max(...visibleMessages.map(m => Number(m.checkpointNumber))) + 1 : 0;
478
+ const maxFromCheckpoints =
479
+ this.checkpoints.length > 0
480
+ ? Math.max(
481
+ ...this.checkpoints
482
+ .filter(cp => !cp.pruned && cp.l1BlockNumber <= blockNumber)
483
+ .map(cp => Number(cp.checkpointNumber)),
484
+ 0,
485
+ ) + 1
486
+ : 0;
487
+ const treeInProgress = Math.max(maxFromMessages, maxFromCheckpoints, INITIAL_CHECKPOINT_NUMBER);
488
+
489
+ // Compute rolling hash only for visible messages
490
+ const rollingHash =
491
+ visibleMessages.length > 0 ? visibleMessages[visibleMessages.length - 1].rollingHash : Buffer16.ZERO;
492
+
493
+ return Promise.resolve({
494
+ messagesRollingHash: rollingHash,
495
+ totalMessagesInserted: BigInt(visibleMessages.length),
496
+ treeInProgress: BigInt(treeInProgress),
497
+ });
498
+ });
408
499
 
409
500
  // Mock the wrapper methods for fetching message events
410
501
  mockInbox.getMessageSentEvents.mockImplementation((fromBlock: bigint, toBlock: bigint) =>
411
502
  Promise.resolve(this.getMessageSentLogs(fromBlock, toBlock)),
412
503
  );
413
504
 
414
- mockInbox.getMessageSentEventByHash.mockImplementation((hash: string, fromBlock: bigint, toBlock: bigint) =>
415
- Promise.resolve(this.getMessageSentLogs(fromBlock, toBlock, hash)),
505
+ mockInbox.getMessageSentEventByHash.mockImplementation((msgHash: string, l1BlockHash: string) =>
506
+ Promise.resolve(this.getMessageSentLogByHash(msgHash, l1BlockHash) as MessageSentLog),
416
507
  );
417
508
 
418
509
  return mockInbox;
@@ -425,10 +516,13 @@ export class FakeL1State {
425
516
  publicClient.getChainId.mockResolvedValue(1);
426
517
  publicClient.getBlockNumber.mockImplementation(() => Promise.resolve(this.l1BlockNumber));
427
518
 
428
- // Use async function pattern that existing test uses for getBlock
429
-
430
- publicClient.getBlock.mockImplementation((async (args: { blockNumber?: bigint } = {}) => {
431
- const blockNum = args.blockNumber ?? (await publicClient.getBlockNumber());
519
+ publicClient.getBlock.mockImplementation((async (args: { blockNumber?: bigint; blockTag?: string } = {}) => {
520
+ let blockNum: bigint;
521
+ if (args.blockTag === 'finalized') {
522
+ blockNum = this.finalizedL1BlockNumber;
523
+ } else {
524
+ blockNum = args.blockNumber ?? (await publicClient.getBlockNumber());
525
+ }
432
526
  return {
433
527
  number: blockNum,
434
528
  timestamp: BigInt(blockNum) * BigInt(this.config.ethereumSlotDuration) + this.config.l1GenesisTime,
@@ -502,10 +596,8 @@ export class FakeL1State {
502
596
  checkpointNumber: cpData.checkpointNumber,
503
597
  archive: cpData.checkpoint.archive.root,
504
598
  versionedBlobHashes: cpData.blobHashes.map(h => Buffer.from(h.slice(2), 'hex')),
505
- // These are intentionally undefined to skip hash validation in the archiver
506
- // (validation is skipped when these fields are falsy)
507
- payloadDigest: undefined,
508
- attestationsHash: undefined,
599
+ attestationsHash: cpData.attestationsHash,
600
+ payloadDigest: cpData.payloadDigest,
509
601
  },
510
602
  }));
511
603
  }
@@ -531,14 +623,37 @@ export class FakeL1State {
531
623
  }));
532
624
  }
533
625
 
534
- private makeRollupTx(checkpoint: Checkpoint, signers: Secp256k1Signer[]): Transaction {
626
+ private getMessageSentLogByHash(msgHash: string, l1BlockHash: string): MessageSentLog | undefined {
627
+ const msg = this.messages.find(
628
+ msg => msg.leaf.toString() === msgHash && Buffer32.fromBigInt(msg.l1BlockNumber).toString() === l1BlockHash,
629
+ );
630
+ if (!msg) {
631
+ return undefined;
632
+ }
633
+ return {
634
+ l1BlockNumber: msg.l1BlockNumber,
635
+ l1BlockHash: Buffer32.fromBigInt(msg.l1BlockNumber),
636
+ l1TransactionHash: `0x${msg.l1BlockNumber.toString(16)}` as `0x${string}`,
637
+ args: {
638
+ checkpointNumber: msg.checkpointNumber,
639
+ index: msg.index,
640
+ leaf: msg.leaf,
641
+ rollingHash: msg.rollingHash,
642
+ },
643
+ };
644
+ }
645
+
646
+ private async makeRollupTx(
647
+ checkpoint: Checkpoint,
648
+ signers: Secp256k1Signer[],
649
+ ): Promise<{ tx: Transaction; attestationsHash: Buffer32; payloadDigest: Buffer32 }> {
535
650
  const attestations = signers
536
651
  .map(signer => makeCheckpointAttestationFromCheckpoint(checkpoint, signer))
537
652
  .map(attestation => CommitteeAttestation.fromSignature(attestation.signature))
538
653
  .map(committeeAttestation => committeeAttestation.toViem());
539
654
 
540
655
  const header = checkpoint.header.toViem();
541
- const blobInput = getPrefixedEthBlobCommitments(getBlobsPerL1Block(checkpoint.toBlobFields()));
656
+ const blobInput = getPrefixedEthBlobCommitments(await getBlobsPerL1Block(checkpoint.toBlobFields()));
542
657
  const archive = toHex(checkpoint.archive.root.toBuffer());
543
658
  const attestationsAndSigners = new CommitteeAttestationsAndSigners(
544
659
  attestations.map(attestation => CommitteeAttestation.fromViem(attestation)),
@@ -549,6 +664,8 @@ export class FakeL1State {
549
664
  signers[0],
550
665
  );
551
666
 
667
+ const packedAttestations = attestationsAndSigners.getPackedAttestations();
668
+
552
669
  const rollupInput = encodeFunctionData({
553
670
  abi: RollupAbi,
554
671
  functionName: 'propose',
@@ -558,7 +675,7 @@ export class FakeL1State {
558
675
  archive,
559
676
  oracleInput: { feeAssetPriceModifier: 0n },
560
677
  },
561
- attestationsAndSigners.getPackedAttestations(),
678
+ packedAttestations,
562
679
  attestationsAndSigners.getSigners().map(signer => signer.toString()),
563
680
  attestationsAndSignersSignature.toViemSignature(),
564
681
  blobInput,
@@ -579,21 +696,52 @@ export class FakeL1State {
579
696
  ],
580
697
  });
581
698
 
582
- return {
699
+ // Compute attestationsHash (same logic as CalldataRetriever)
700
+ const attestationsHash = Buffer32.fromString(
701
+ keccak256(encodeAbiParameters([this.getCommitteeAttestationsStructDef()], [packedAttestations])),
702
+ );
703
+
704
+ // Compute payloadDigest (same logic as CalldataRetriever)
705
+ const consensusPayload = ConsensusPayload.fromCheckpoint(checkpoint);
706
+ const payloadToSign = consensusPayload.getPayloadToSign(SignatureDomainSeparator.checkpointAttestation);
707
+ const payloadDigest = Buffer32.fromString(keccak256(payloadToSign));
708
+
709
+ const tx = {
583
710
  input: multiCallInput,
584
711
  hash: archive,
585
712
  blockHash: archive,
586
713
  to: MULTI_CALL_3_ADDRESS as `0x${string}`,
587
714
  } as Transaction<bigint, number>;
715
+
716
+ return { tx, attestationsHash, payloadDigest };
717
+ }
718
+
719
+ /** Extracts the CommitteeAttestations struct definition from RollupAbi for hash computation. */
720
+ private getCommitteeAttestationsStructDef(): AbiParameter {
721
+ const proposeFunction = RollupAbi.find(item => item.type === 'function' && item.name === 'propose') as
722
+ | { type: 'function'; name: string; inputs: readonly AbiParameter[] }
723
+ | undefined;
724
+
725
+ if (!proposeFunction) {
726
+ throw new Error('propose function not found in RollupAbi');
727
+ }
728
+
729
+ const attestationsParam = proposeFunction.inputs.find(param => param.name === '_attestations');
730
+ if (!attestationsParam) {
731
+ throw new Error('_attestations parameter not found in propose function');
732
+ }
733
+
734
+ const tupleParam = attestationsParam as unknown as { type: 'tuple'; components?: readonly AbiParameter[] };
735
+ return { type: 'tuple', components: tupleParam.components || [] } as AbiParameter;
588
736
  }
589
737
 
590
- private makeVersionedBlobHashes(checkpoint: Checkpoint): `0x${string}`[] {
591
- return getBlobsPerL1Block(checkpoint.toBlobFields()).map(
738
+ private async makeVersionedBlobHashes(checkpoint: Checkpoint): Promise<`0x${string}`[]> {
739
+ return (await getBlobsPerL1Block(checkpoint.toBlobFields())).map(
592
740
  b => `0x${b.getEthVersionedBlobHash().toString('hex')}` as `0x${string}`,
593
741
  );
594
742
  }
595
743
 
596
- private makeBlobsFromCheckpoint(checkpoint: Checkpoint): Blob[] {
597
- return getBlobsPerL1Block(checkpoint.toBlobFields());
744
+ private async makeBlobsFromCheckpoint(checkpoint: Checkpoint): Promise<Blob[]> {
745
+ return await getBlobsPerL1Block(checkpoint.toBlobFields());
598
746
  }
599
747
  }
@@ -56,8 +56,9 @@ export class MockPrefilledArchiver extends MockArchiver {
56
56
  }
57
57
 
58
58
  const fromBlock = this.l2Blocks.length;
59
- // TODO: Add L2 blocks and checkpoints separately once archiver has the apis for that.
60
- this.addProposedBlocks(this.prefilled.slice(fromBlock, fromBlock + numBlocks).flatMap(c => c.blocks));
59
+ const checkpointsToAdd = this.prefilled.slice(fromBlock, fromBlock + numBlocks);
60
+ this.addProposedBlocks(checkpointsToAdd.flatMap(c => c.blocks));
61
+ this.checkpointList.push(...checkpointsToAdd);
61
62
  return Promise.resolve();
62
63
  }
63
64
  }
@@ -44,6 +44,7 @@ export class MockL1ToL2MessageSource implements L1ToL2MessageSource {
44
44
  checkpointed: tip,
45
45
  proven: tip,
46
46
  finalized: tip,
47
+ proposedCheckpoint: tip,
47
48
  });
48
49
  }
49
50
  }