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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (132) hide show
  1. package/README.md +19 -13
  2. package/dest/archiver.d.ts +76 -18
  3. package/dest/archiver.d.ts.map +1 -1
  4. package/dest/archiver.js +329 -162
  5. package/dest/config.d.ts +7 -3
  6. package/dest/config.d.ts.map +1 -1
  7. package/dest/config.js +43 -14
  8. package/dest/errors.d.ts +55 -9
  9. package/dest/errors.d.ts.map +1 -1
  10. package/dest/errors.js +81 -14
  11. package/dest/factory.d.ts +20 -9
  12. package/dest/factory.d.ts.map +1 -1
  13. package/dest/factory.js +87 -39
  14. package/dest/index.d.ts +12 -3
  15. package/dest/index.d.ts.map +1 -1
  16. package/dest/index.js +11 -2
  17. package/dest/l1/bin/retrieve-calldata.js +32 -28
  18. package/dest/l1/calldata_retriever.d.ts +81 -50
  19. package/dest/l1/calldata_retriever.d.ts.map +1 -1
  20. package/dest/l1/calldata_retriever.js +202 -260
  21. package/dest/l1/data_retrieval.d.ts +32 -18
  22. package/dest/l1/data_retrieval.d.ts.map +1 -1
  23. package/dest/l1/data_retrieval.js +42 -47
  24. package/dest/l1/spire_proposer.d.ts +5 -5
  25. package/dest/l1/spire_proposer.d.ts.map +1 -1
  26. package/dest/l1/spire_proposer.js +9 -17
  27. package/dest/l1/trace_tx.d.ts +12 -66
  28. package/dest/l1/trace_tx.d.ts.map +1 -1
  29. package/dest/l1/validate_historical_logs.d.ts +23 -0
  30. package/dest/l1/validate_historical_logs.d.ts.map +1 -0
  31. package/dest/l1/validate_historical_logs.js +108 -0
  32. package/dest/modules/contract_data_source_adapter.d.ts +25 -0
  33. package/dest/modules/contract_data_source_adapter.d.ts.map +1 -0
  34. package/dest/modules/contract_data_source_adapter.js +32 -0
  35. package/dest/modules/data_source_base.d.ts +74 -46
  36. package/dest/modules/data_source_base.d.ts.map +1 -1
  37. package/dest/modules/data_source_base.js +252 -190
  38. package/dest/modules/data_store_updater.d.ts +49 -17
  39. package/dest/modules/data_store_updater.d.ts.map +1 -1
  40. package/dest/modules/data_store_updater.js +218 -122
  41. package/dest/modules/instrumentation.d.ts +29 -3
  42. package/dest/modules/instrumentation.d.ts.map +1 -1
  43. package/dest/modules/instrumentation.js +67 -11
  44. package/dest/modules/l1_synchronizer.d.ts +16 -14
  45. package/dest/modules/l1_synchronizer.d.ts.map +1 -1
  46. package/dest/modules/l1_synchronizer.js +488 -219
  47. package/dest/modules/outbox_trees_resolver.d.ts +64 -0
  48. package/dest/modules/outbox_trees_resolver.d.ts.map +1 -0
  49. package/dest/modules/outbox_trees_resolver.js +184 -0
  50. package/dest/modules/validation.d.ts +30 -7
  51. package/dest/modules/validation.d.ts.map +1 -1
  52. package/dest/modules/validation.js +35 -17
  53. package/dest/store/block_store.d.ts +186 -74
  54. package/dest/store/block_store.d.ts.map +1 -1
  55. package/dest/store/block_store.js +810 -285
  56. package/dest/store/contract_class_store.d.ts +17 -4
  57. package/dest/store/contract_class_store.d.ts.map +1 -1
  58. package/dest/store/contract_class_store.js +42 -68
  59. package/dest/store/contract_instance_store.d.ts +28 -1
  60. package/dest/store/contract_instance_store.d.ts.map +1 -1
  61. package/dest/store/contract_instance_store.js +58 -6
  62. package/dest/store/data_stores.d.ts +68 -0
  63. package/dest/store/data_stores.d.ts.map +1 -0
  64. package/dest/store/data_stores.js +54 -0
  65. package/dest/store/function_names_cache.d.ts +17 -0
  66. package/dest/store/function_names_cache.d.ts.map +1 -0
  67. package/dest/store/function_names_cache.js +30 -0
  68. package/dest/store/l2_tips_cache.d.ts +25 -0
  69. package/dest/store/l2_tips_cache.d.ts.map +1 -0
  70. package/dest/store/l2_tips_cache.js +26 -0
  71. package/dest/store/log_store.d.ts +42 -37
  72. package/dest/store/log_store.d.ts.map +1 -1
  73. package/dest/store/log_store.js +262 -408
  74. package/dest/store/log_store_codec.d.ts +78 -0
  75. package/dest/store/log_store_codec.d.ts.map +1 -0
  76. package/dest/store/log_store_codec.js +110 -0
  77. package/dest/store/message_store.d.ts +11 -1
  78. package/dest/store/message_store.d.ts.map +1 -1
  79. package/dest/store/message_store.js +51 -9
  80. package/dest/test/fake_l1_state.d.ts +25 -1
  81. package/dest/test/fake_l1_state.d.ts.map +1 -1
  82. package/dest/test/fake_l1_state.js +166 -32
  83. package/dest/test/mock_archiver.d.ts +1 -1
  84. package/dest/test/mock_archiver.d.ts.map +1 -1
  85. package/dest/test/mock_archiver.js +3 -2
  86. package/dest/test/mock_l2_block_source.d.ts +61 -47
  87. package/dest/test/mock_l2_block_source.d.ts.map +1 -1
  88. package/dest/test/mock_l2_block_source.js +306 -211
  89. package/dest/test/mock_structs.d.ts +4 -1
  90. package/dest/test/mock_structs.d.ts.map +1 -1
  91. package/dest/test/mock_structs.js +15 -3
  92. package/dest/test/noop_l1_archiver.d.ts +17 -6
  93. package/dest/test/noop_l1_archiver.d.ts.map +1 -1
  94. package/dest/test/noop_l1_archiver.js +31 -11
  95. package/package.json +15 -14
  96. package/src/archiver.ts +427 -185
  97. package/src/config.ts +51 -13
  98. package/src/errors.ts +122 -21
  99. package/src/factory.ts +104 -29
  100. package/src/index.ts +19 -2
  101. package/src/l1/README.md +25 -68
  102. package/src/l1/bin/retrieve-calldata.ts +40 -27
  103. package/src/l1/calldata_retriever.ts +267 -379
  104. package/src/l1/data_retrieval.ts +66 -70
  105. package/src/l1/spire_proposer.ts +7 -15
  106. package/src/l1/validate_historical_logs.ts +140 -0
  107. package/src/modules/contract_data_source_adapter.ts +46 -0
  108. package/src/modules/data_source_base.ts +337 -238
  109. package/src/modules/data_store_updater.ts +259 -154
  110. package/src/modules/instrumentation.ts +71 -11
  111. package/src/modules/l1_synchronizer.ts +659 -269
  112. package/src/modules/outbox_trees_resolver.ts +220 -0
  113. package/src/modules/validation.ts +80 -23
  114. package/src/store/block_store.ts +989 -358
  115. package/src/store/contract_class_store.ts +49 -103
  116. package/src/store/contract_instance_store.ts +74 -11
  117. package/src/store/data_stores.ts +104 -0
  118. package/src/store/function_names_cache.ts +37 -0
  119. package/src/store/l2_tips_cache.ts +35 -0
  120. package/src/store/log_store.ts +302 -559
  121. package/src/store/log_store_codec.ts +143 -0
  122. package/src/store/message_store.ts +60 -10
  123. package/src/structs/inbox_message.ts +1 -1
  124. package/src/test/fake_l1_state.ts +213 -42
  125. package/src/test/mock_archiver.ts +3 -2
  126. package/src/test/mock_l2_block_source.ts +378 -233
  127. package/src/test/mock_structs.ts +25 -8
  128. package/src/test/noop_l1_archiver.ts +61 -12
  129. package/dest/store/kv_archiver_store.d.ts +0 -340
  130. package/dest/store/kv_archiver_store.d.ts.map +0 -1
  131. package/dest/store/kv_archiver_store.js +0 -446
  132. package/src/store/kv_archiver_store.ts +0 -639
@@ -1,30 +1,29 @@
1
1
  import { BlockNumber, CheckpointNumber } from '@aztec/foundation/branded-types';
2
- import { Fr } from '@aztec/foundation/curves/bn254';
2
+ import { filterAsync } from '@aztec/foundation/collection';
3
3
  import { createLogger } from '@aztec/foundation/log';
4
- import {
5
- ContractClassPublishedEvent,
6
- PrivateFunctionBroadcastedEvent,
7
- UtilityFunctionBroadcastedEvent,
8
- } from '@aztec/protocol-contracts/class-registry';
4
+ import { ContractClassPublishedEvent } from '@aztec/protocol-contracts/class-registry';
9
5
  import {
10
6
  ContractInstancePublishedEvent,
11
7
  ContractInstanceUpdatedEvent,
12
8
  } from '@aztec/protocol-contracts/instance-registry';
13
- import type { L2Block, ValidateCheckpointResult } from '@aztec/stdlib/block';
14
- import type { PublishedCheckpoint } from '@aztec/stdlib/checkpoint';
9
+ import type { CommitteeAttestation, L2Block, ValidateCheckpointResult } from '@aztec/stdlib/block';
10
+ import {
11
+ type L1PublishedData,
12
+ type ProposedCheckpointInput,
13
+ type PublishedCheckpoint,
14
+ validateCheckpoint,
15
+ } from '@aztec/stdlib/checkpoint';
15
16
  import {
16
- type ExecutablePrivateFunctionWithMembershipProof,
17
- type UtilityFunctionWithMembershipProof,
18
- computePublicBytecodeCommitment,
19
- isValidPrivateFunctionMembershipProof,
20
- isValidUtilityFunctionMembershipProof,
17
+ type ContractClassPublicWithCommitment,
18
+ computeContractAddressFromInstance,
19
+ computeContractClassId,
21
20
  } from '@aztec/stdlib/contract';
21
+ import { MAX_CAPACITY_BLOCKS_PER_CHECKPOINT } from '@aztec/stdlib/deserialization';
22
22
  import type { ContractClassLog, PrivateLog, PublicLog } from '@aztec/stdlib/logs';
23
23
  import type { UInt64 } from '@aztec/stdlib/types';
24
24
 
25
- import groupBy from 'lodash.groupby';
26
-
27
- import type { KVArchiverDataStore } from '../store/kv_archiver_store.js';
25
+ import type { ArchiverDataStores } from '../store/data_stores.js';
26
+ import type { L2TipsCache } from '../store/l2_tips_cache.js';
28
27
 
29
28
  /** Operation type for contract data updates. */
30
29
  enum Operation {
@@ -44,87 +43,149 @@ type ReconcileCheckpointsResult = {
44
43
  export class ArchiverDataStoreUpdater {
45
44
  private readonly log = createLogger('archiver:store_updater');
46
45
 
47
- constructor(private store: KVArchiverDataStore) {}
46
+ constructor(
47
+ private stores: ArchiverDataStores,
48
+ private l2TipsCache?: L2TipsCache,
49
+ private opts: { rollupManaLimit?: number } = {},
50
+ ) {}
48
51
 
49
52
  /**
50
- * Adds proposed blocks to the store with contract class/instance extraction from logs.
51
- * These are uncheckpointed blocks that have been proposed by the sequencer but not yet included in a checkpoint on L1.
52
- * Extracts ContractClassPublished, ContractInstancePublished, ContractInstanceUpdated events,
53
- * and individually broadcasted functions from the block logs.
53
+ * Adds a proposed block to the store with contract class/instance extraction from logs.
54
+ * This is an uncheckpointed block that has been proposed by the sequencer but not yet included in a checkpoint on L1.
55
+ * Extracts ContractClassPublished, ContractInstancePublished, ContractInstanceUpdated events from the block logs.
54
56
  *
55
- * @param blocks - The proposed L2 blocks to add.
57
+ * @param block - The proposed L2 block to add.
56
58
  * @param pendingChainValidationStatus - Optional validation status to set.
57
59
  * @returns True if the operation is successful.
58
60
  */
59
- public addProposedBlocks(
60
- blocks: L2Block[],
61
+ public async addProposedBlock(
62
+ block: L2Block,
61
63
  pendingChainValidationStatus?: ValidateCheckpointResult,
62
64
  ): Promise<boolean> {
63
- return this.store.transactionAsync(async () => {
64
- await this.store.addProposedBlocks(blocks);
65
+ const result = await this.stores.db.transactionAsync(async () => {
66
+ await this.stores.blocks.addProposedBlock(block);
65
67
 
66
68
  const opResults = await Promise.all([
67
69
  // Update the pending chain validation status if provided
68
- pendingChainValidationStatus && this.store.setPendingChainValidationStatus(pendingChainValidationStatus),
69
- // Add any logs emitted during the retrieved blocks
70
- this.store.addLogs(blocks),
71
- // Unroll all logs emitted during the retrieved blocks and extract any contract classes and instances from them
72
- ...blocks.map(block => this.addContractDataToDb(block)),
70
+ pendingChainValidationStatus &&
71
+ this.stores.blocks.setPendingChainValidationStatus(pendingChainValidationStatus),
72
+ // Add any logs emitted during the retrieved block
73
+ this.stores.logs.addLogs([block]),
74
+ // Unroll all logs emitted during the retrieved block and extract any contract classes and instances from it
75
+ this.addContractDataToDb(block),
73
76
  ]);
74
77
 
75
78
  return opResults.every(Boolean);
76
79
  });
80
+ await this.l2TipsCache?.refresh();
81
+ return result;
77
82
  }
78
83
 
79
84
  /**
80
85
  * Reconciles local blocks with incoming checkpoints from L1.
81
86
  * Adds new checkpoints to the store with contract class/instance extraction from logs.
82
87
  * Prunes any local blocks that conflict with checkpoint data (by comparing archive roots).
83
- * Extracts ContractClassPublished, ContractInstancePublished, ContractInstanceUpdated events,
84
- * and individually broadcasted functions from the checkpoint block logs.
88
+ * Extracts ContractClassPublished, ContractInstancePublished, ContractInstanceUpdated events from the checkpoint block logs.
89
+ * If `promoteProposed` is supplied, the proposed-checkpoint promotion runs inside the same transaction
90
+ * as the added checkpoints so both updates are applied atomically.
85
91
  *
86
- * @param checkpoints - The published checkpoints to add.
92
+ * @param checkpoints - The published checkpoints to add (excluding any being promoted from proposed).
87
93
  * @param pendingChainValidationStatus - Optional validation status to set.
94
+ * @param promoteProposed - Optional promotion of the current proposed checkpoint (fast path when blocks are already local).
88
95
  * @returns Result with information about any pruned blocks.
89
96
  */
90
- public addCheckpoints(
97
+ public async addCheckpoints(
91
98
  checkpoints: PublishedCheckpoint[],
92
99
  pendingChainValidationStatus?: ValidateCheckpointResult,
100
+ promoteProposed?: {
101
+ l1: L1PublishedData;
102
+ attestations: CommitteeAttestation[];
103
+ checkpoint: PublishedCheckpoint;
104
+ },
105
+ evictProposedFrom?: CheckpointNumber,
93
106
  ): Promise<ReconcileCheckpointsResult> {
94
- return this.store.transactionAsync(async () => {
107
+ // These checkpoints are already on L1, so ingest validates against the physical blob capacity rather than
108
+ // the conservative build/attest policy, and tolerates an empty non-first block. Both rules are enforced by
109
+ // proposers and attesters; rejecting an ingest would stall sync rather than undo the checkpoint.
110
+ const validateOpts = {
111
+ rollupManaLimit: this.opts?.rollupManaLimit,
112
+ maxBlocksPerCheckpoint: MAX_CAPACITY_BLOCKS_PER_CHECKPOINT,
113
+ allowEmptyNonFirstBlocks: true,
114
+ };
115
+ for (const checkpoint of checkpoints) {
116
+ validateCheckpoint(checkpoint.checkpoint, validateOpts);
117
+ }
118
+ if (promoteProposed) {
119
+ validateCheckpoint(promoteProposed.checkpoint.checkpoint, validateOpts);
120
+ }
121
+
122
+ const result = await this.stores.db.transactionAsync(async () => {
95
123
  // Before adding checkpoints, check for conflicts with local blocks if any
96
124
  const { prunedBlocks, lastAlreadyInsertedBlockNumber } = await this.pruneMismatchingLocalBlocks(checkpoints);
97
125
 
98
- await this.store.addCheckpoints(checkpoints);
126
+ const insertedCheckpoints = await this.stores.blocks.addCheckpoints(checkpoints);
99
127
 
100
- // Filter out blocks that were already inserted via addProposedBlocks() to avoid duplicating logs/contract data
101
- const newBlocks = checkpoints
128
+ // Skip blocks already inserted via addProposedBlock() and blocks of already-stored checkpoints
129
+ // re-included by an L1 reorg: their logs/contract data were extracted when first inserted.
130
+ const newBlocks = insertedCheckpoints
102
131
  .flatMap((ch: PublishedCheckpoint) => ch.checkpoint.blocks)
103
132
  .filter(b => lastAlreadyInsertedBlockNumber === undefined || b.number > lastAlreadyInsertedBlockNumber);
104
133
 
105
134
  await Promise.all([
106
135
  // Update the pending chain validation status if provided
107
- pendingChainValidationStatus && this.store.setPendingChainValidationStatus(pendingChainValidationStatus),
136
+ pendingChainValidationStatus &&
137
+ this.stores.blocks.setPendingChainValidationStatus(pendingChainValidationStatus),
108
138
  // Add any logs emitted during the retrieved blocks
109
- this.store.addLogs(newBlocks),
139
+ this.stores.logs.addLogs(newBlocks),
110
140
  // Unroll all logs emitted during the retrieved blocks and extract any contract classes and instances from them
111
141
  ...newBlocks.map(block => this.addContractDataToDb(block)),
142
+ // Promote the proposed checkpoint if requested (uses explicit checkpoint number)
143
+ promoteProposed
144
+ ? this.stores.blocks.promoteProposedToCheckpointed(
145
+ promoteProposed.checkpoint.checkpoint.number,
146
+ promoteProposed.l1,
147
+ promoteProposed.attestations,
148
+ promoteProposed.checkpoint.checkpoint.archive.root,
149
+ )
150
+ : undefined,
151
+ // Evict pending checkpoints that diverged from what L1 mined
152
+ evictProposedFrom !== undefined
153
+ ? this.stores.blocks.evictProposedCheckpointsFrom(evictProposedFrom)
154
+ : undefined,
112
155
  ]);
113
156
 
114
157
  return { prunedBlocks, lastAlreadyInsertedBlockNumber };
115
158
  });
159
+ await this.l2TipsCache?.refresh();
160
+ return result;
161
+ }
162
+
163
+ public async addProposedCheckpoint(proposedCheckpoint: ProposedCheckpointInput) {
164
+ const result = await this.stores.db.transactionAsync(async () => {
165
+ await this.stores.blocks.addProposedCheckpoint(proposedCheckpoint);
166
+ });
167
+ await this.l2TipsCache?.refresh();
168
+ return result;
116
169
  }
117
170
 
118
171
  /**
119
172
  * Checks for local proposed blocks that do not match the ones to be checkpointed and prunes them.
120
- * This method handles multiple checkpoints but returns after pruning the first conflict found.
121
- * This is correct because pruning from the first conflict point removes all subsequent blocks,
122
- * and when checkpoints are added afterward, they include all the correct blocks.
173
+ * Conflict detection is keyed on `blockNumber`: when a local proposed block and an L1
174
+ * checkpointed block share a block number but live at different slots (e.g. a different proposer
175
+ * mined the same block number one slot earlier), we still treat them as a conflict and prune.
176
+ * The trailing per-checkpoint prune that handles "local has extra trailing blocks within the
177
+ * same slot as the published checkpoint" remains scoped by slot to preserve pipelining: local
178
+ * blocks that live at a later slot than the checkpoint being processed represent speculation
179
+ * atop the just-confirmed tip (and may be referenced by a pending proposed checkpoint), so we
180
+ * leave them in place. This method handles multiple checkpoints but returns after pruning the
181
+ * first conflict found. This is correct because pruning from the first conflict point removes
182
+ * all subsequent blocks, and when checkpoints are added afterward, they include all the correct
183
+ * blocks.
123
184
  */
124
185
  private async pruneMismatchingLocalBlocks(checkpoints: PublishedCheckpoint[]): Promise<ReconcileCheckpointsResult> {
125
186
  const [lastCheckpointedBlockNumber, lastBlockNumber] = await Promise.all([
126
- this.store.getCheckpointedL2BlockNumber(),
127
- this.store.getLatestBlockNumber(),
187
+ this.stores.blocks.getCheckpointedL2BlockNumber(),
188
+ this.stores.blocks.getLatestL2BlockNumber(),
128
189
  ]);
129
190
 
130
191
  // Exit early if there are no local uncheckpointed blocks
@@ -133,29 +194,29 @@ export class ArchiverDataStoreUpdater {
133
194
  }
134
195
 
135
196
  // Get all uncheckpointed local blocks
136
- const uncheckpointedLocalBlocks = await this.store.getBlocks(
137
- BlockNumber.add(lastCheckpointedBlockNumber, 1),
138
- lastBlockNumber - lastCheckpointedBlockNumber,
139
- );
197
+ const uncheckpointedLocalBlocks = await this.stores.blocks.getBlocksData({
198
+ from: BlockNumber.add(lastCheckpointedBlockNumber, 1),
199
+ limit: lastBlockNumber - lastCheckpointedBlockNumber,
200
+ });
140
201
 
141
202
  let lastAlreadyInsertedBlockNumber: BlockNumber | undefined;
142
203
 
143
204
  for (const publishedCheckpoint of checkpoints) {
144
205
  const checkpointBlocks = publishedCheckpoint.checkpoint.blocks;
145
206
  const slot = publishedCheckpoint.checkpoint.slot;
146
- const localBlocksInSlot = uncheckpointedLocalBlocks.filter(b => b.slot === slot);
147
207
 
148
208
  if (checkpointBlocks.length === 0) {
149
209
  this.log.warn(`Checkpoint ${publishedCheckpoint.checkpoint.number} for slot ${slot} has no blocks`);
150
210
  continue;
151
211
  }
152
212
 
153
- // Find the first checkpoint block that conflicts with an existing local block and prune local afterwards
213
+ // Find the first checkpoint block that conflicts with an existing local block and prune local afterwards.
214
+ // Conflict detection joins on block number only — same block number at a different slot is still a conflict.
154
215
  for (const checkpointBlock of checkpointBlocks) {
155
216
  const blockNumber = checkpointBlock.number;
156
- const existingBlock = localBlocksInSlot.find(b => b.number === blockNumber);
217
+ const existingBlock = uncheckpointedLocalBlocks.find(b => b.header.getBlockNumber() === blockNumber);
157
218
  const blockInfos = {
158
- existingBlock: existingBlock?.toBlockInfo(),
219
+ existingBlock: existingBlock?.header.toInspect(),
159
220
  checkpointBlock: checkpointBlock.toBlockInfo(),
160
221
  };
161
222
 
@@ -165,22 +226,26 @@ export class ArchiverDataStoreUpdater {
165
226
  this.log.verbose(`Block number ${blockNumber} already inserted and matches checkpoint`, blockInfos);
166
227
  lastAlreadyInsertedBlockNumber = blockNumber;
167
228
  } else {
168
- this.log.warn(`Conflict detected at block ${blockNumber} between checkpointed and local block`, blockInfos);
229
+ this.log.info(`Conflict detected at block ${blockNumber} between checkpointed and local block`, blockInfos);
169
230
  const prunedBlocks = await this.removeBlocksAfter(BlockNumber(blockNumber - 1));
231
+ await this.evictProposedCheckpointsForPrunedBlocks(prunedBlocks);
170
232
  return { prunedBlocks, lastAlreadyInsertedBlockNumber };
171
233
  }
172
234
  }
173
235
 
174
- // If local has more blocks than the checkpoint (e.g., local has [2,3,4] but checkpoint has [2,3]),
175
- // we need to prune the extra local blocks so they match what was checkpointed
236
+ // If the sequencer locally proposed extra blocks within this checkpoint's slot (e.g. local has
237
+ // [N, N+1] but L1 confirmed just [N]), prune the extras. Scoped to the checkpoint's slot so we
238
+ // do not throw away speculative blocks at later slots that belong to a pending proposed checkpoint.
176
239
  const lastCheckpointBlockNumber = checkpointBlocks.at(-1)!.number;
177
- const lastLocalBlockNumber = localBlocksInSlot.at(-1)?.number;
240
+ const localBlocksInSlot = uncheckpointedLocalBlocks.filter(b => b.header.getSlot() === slot);
241
+ const lastLocalBlockNumber = localBlocksInSlot.at(-1)?.header.getBlockNumber();
178
242
 
179
243
  if (lastLocalBlockNumber !== undefined && lastLocalBlockNumber > lastCheckpointBlockNumber) {
180
244
  this.log.warn(
181
245
  `Local chain for slot ${slot} ends at block ${lastLocalBlockNumber} but checkpoint ends at ${lastCheckpointBlockNumber}. Pruning blocks after block ${lastCheckpointBlockNumber}.`,
182
246
  );
183
247
  const prunedBlocks = await this.removeBlocksAfter(lastCheckpointBlockNumber);
248
+ await this.evictProposedCheckpointsForPrunedBlocks(prunedBlocks);
184
249
  return { prunedBlocks, lastAlreadyInsertedBlockNumber };
185
250
  }
186
251
  }
@@ -197,18 +262,62 @@ export class ArchiverDataStoreUpdater {
197
262
  * @returns The removed blocks.
198
263
  * @throws Error if any block to be removed is checkpointed.
199
264
  */
200
- public removeUncheckpointedBlocksAfter(blockNumber: BlockNumber): Promise<L2Block[]> {
201
- return this.store.transactionAsync(async () => {
265
+ public async removeUncheckpointedBlocksAfter(blockNumber: BlockNumber): Promise<L2Block[]> {
266
+ const result = await this.stores.db.transactionAsync(async () => {
202
267
  // Verify we're only removing uncheckpointed blocks
203
- const lastCheckpointedBlockNumber = await this.store.getCheckpointedL2BlockNumber();
268
+ const lastCheckpointedBlockNumber = await this.stores.blocks.getCheckpointedL2BlockNumber();
204
269
  if (blockNumber < lastCheckpointedBlockNumber) {
205
270
  throw new Error(
206
271
  `Cannot remove blocks after ${blockNumber} because checkpointed blocks exist up to ${lastCheckpointedBlockNumber}`,
207
272
  );
208
273
  }
209
274
 
275
+ const prunedBlocks = await this.removeBlocksAfter(blockNumber);
276
+ await this.evictProposedCheckpointsForPrunedBlocks(prunedBlocks);
277
+
278
+ return prunedBlocks;
279
+ });
280
+ await this.l2TipsCache?.refresh();
281
+ return result;
282
+ }
283
+
284
+ /**
285
+ * Removes all blocks without a proposed checkpoint strictly after the specified block number and cleans up associated contract data.
286
+ * This handles removal of provisionally added blocks along with their contract classes/instances.
287
+ * Verifies that each block being removed is not part of a stored checkpoint (proposed or not).
288
+ * This differs from `removeUncheckpointedBlocksAfter` in that it also checks proposed checkpoints.
289
+ *
290
+ * @param blockNumber - Remove all blocks with number greater than this.
291
+ * @returns The removed blocks.
292
+ * @throws Error if any block to be removed is checkpointed.
293
+ */
294
+ public async removeBlocksWithoutProposedCheckpointAfter(blockNumber: BlockNumber): Promise<L2Block[]> {
295
+ const result = await this.stores.db.transactionAsync(async () => {
296
+ // Verify we're only removing uncheckpointed blocks
297
+ const lastCheckpointedBlockNumber = await this.stores.blocks.getProposedCheckpointL2BlockNumber();
298
+ if (blockNumber < lastCheckpointedBlockNumber) {
299
+ throw new Error(
300
+ `Cannot remove blocks after ${blockNumber} because proposed checkpointed blocks exist up to ${lastCheckpointedBlockNumber}`,
301
+ );
302
+ }
303
+
210
304
  return await this.removeBlocksAfter(blockNumber);
211
305
  });
306
+ await this.l2TipsCache?.refresh();
307
+ return result;
308
+ }
309
+
310
+ /**
311
+ * Evicts pending proposed checkpoints that referenced any of the just-pruned blocks. Pruned
312
+ * blocks invalidate all proposed checkpoints from the lowest pruned block's checkpoint number
313
+ * onwards: those checkpoints either reference the pruned blocks directly or chain off them.
314
+ */
315
+ private async evictProposedCheckpointsForPrunedBlocks(prunedBlocks: L2Block[]): Promise<void> {
316
+ if (prunedBlocks.length === 0) {
317
+ return;
318
+ }
319
+ const fromCheckpointNumber = prunedBlocks[0].checkpointNumber;
320
+ await this.stores.blocks.evictProposedCheckpointsFrom(fromCheckpointNumber);
212
321
  }
213
322
 
214
323
  /**
@@ -217,11 +326,11 @@ export class ArchiverDataStoreUpdater {
217
326
  */
218
327
  private async removeBlocksAfter(blockNumber: BlockNumber): Promise<L2Block[]> {
219
328
  // First get the blocks to be removed so we can clean up contract data
220
- const removedBlocks = await this.store.removeBlocksAfter(blockNumber);
329
+ const removedBlocks = await this.stores.blocks.removeBlocksAfter(blockNumber);
221
330
 
222
331
  // Clean up contract data and logs for the removed blocks
223
332
  await Promise.all([
224
- this.store.deleteLogs(removedBlocks),
333
+ this.stores.logs.deleteLogs(removedBlocks),
225
334
  ...removedBlocks.map(block => this.removeContractDataFromDb(block)),
226
335
  ]);
227
336
 
@@ -238,17 +347,43 @@ export class ArchiverDataStoreUpdater {
238
347
  * @returns True if the operation is successful.
239
348
  */
240
349
  public async removeCheckpointsAfter(checkpointNumber: CheckpointNumber): Promise<boolean> {
241
- const { blocksRemoved = [] } = await this.store.removeCheckpointsAfter(checkpointNumber);
242
-
243
- const opResults = await Promise.all([
244
- // Prune rolls back to the last proven block, which is by definition valid
245
- this.store.setPendingChainValidationStatus({ valid: true }),
246
- // Remove contract data for all blocks being removed
247
- ...blocksRemoved.map(block => this.removeContractDataFromDb(block)),
248
- this.store.deleteLogs(blocksRemoved),
249
- ]);
350
+ const result = await this.stores.db.transactionAsync(async () => {
351
+ const { blocksRemoved = [] } = await this.stores.blocks.removeCheckpointsAfter(checkpointNumber);
352
+
353
+ const opResults = await Promise.all([
354
+ // Prune rolls back to the last proven block, which is by definition valid
355
+ this.stores.blocks.setPendingChainValidationStatus({ valid: true }),
356
+ // Remove contract data for all blocks being removed
357
+ ...blocksRemoved.map(block => this.removeContractDataFromDb(block)),
358
+ this.stores.logs.deleteLogs(blocksRemoved),
359
+ ]);
250
360
 
251
- return opResults.every(Boolean);
361
+ return opResults.every(Boolean);
362
+ });
363
+ await this.l2TipsCache?.refresh();
364
+ return result;
365
+ }
366
+
367
+ /**
368
+ * Updates the proven checkpoint number and refreshes the L2 tips cache.
369
+ * @param checkpointNumber - The checkpoint number to set as proven.
370
+ */
371
+ public async setProvenCheckpointNumber(checkpointNumber: CheckpointNumber): Promise<void> {
372
+ await this.stores.db.transactionAsync(async () => {
373
+ await this.stores.blocks.setProvenCheckpointNumber(checkpointNumber);
374
+ });
375
+ await this.l2TipsCache?.refresh();
376
+ }
377
+
378
+ /**
379
+ * Updates the finalized checkpoint number and refreshes the L2 tips cache.
380
+ * @param checkpointNumber - The checkpoint number to set as finalized.
381
+ */
382
+ public async setFinalizedCheckpointNumber(checkpointNumber: CheckpointNumber): Promise<void> {
383
+ await this.stores.db.transactionAsync(async () => {
384
+ await this.stores.blocks.setFinalizedCheckpointNumber(checkpointNumber);
385
+ });
386
+ await this.l2TipsCache?.refresh();
252
387
  }
253
388
 
254
389
  /** Extracts and stores contract data from a single block. */
@@ -272,9 +407,6 @@ export class ArchiverDataStoreUpdater {
272
407
  this.updatePublishedContractClasses(contractClassLogs, block.number, operation),
273
408
  this.updateDeployedContractInstances(privateLogs, block.number, operation),
274
409
  this.updateUpdatedContractInstances(publicLogs, block.header.globalVariables.timestamp, operation),
275
- operation === Operation.Store
276
- ? this.storeBroadcastedIndividualFunctions(contractClassLogs, block.number)
277
- : Promise.resolve(true),
278
410
  ])
279
411
  ).every(Boolean);
280
412
  }
@@ -291,18 +423,37 @@ export class ArchiverDataStoreUpdater {
291
423
  .filter(log => ContractClassPublishedEvent.isContractClassPublishedEvent(log))
292
424
  .map(log => ContractClassPublishedEvent.fromLog(log));
293
425
 
294
- const contractClasses = await Promise.all(contractClassPublishedEvents.map(e => e.toContractClassPublic()));
295
- if (contractClasses.length > 0) {
296
- contractClasses.forEach(c => this.log.verbose(`${Operation[operation]} contract class ${c.id.toString()}`));
297
- if (operation == Operation.Store) {
298
- // TODO: Will probably want to create some worker threads to compute these bytecode commitments as they are expensive
299
- const commitments = await Promise.all(
300
- contractClasses.map(c => computePublicBytecodeCommitment(c.packedBytecode)),
426
+ if (operation == Operation.Delete) {
427
+ const contractClasses = contractClassPublishedEvents.map(e => e.toContractClassPublic());
428
+ if (contractClasses.length > 0) {
429
+ contractClasses.forEach(c => this.log.verbose(`${Operation[operation]} contract class ${c.id.toString()}`));
430
+ return await this.stores.contractClasses.deleteContractClasses(contractClasses, blockNum);
431
+ }
432
+ return true;
433
+ }
434
+
435
+ // Compute bytecode commitments and validate class IDs in a single pass.
436
+ const contractClasses: ContractClassPublicWithCommitment[] = [];
437
+ for (const event of contractClassPublishedEvents) {
438
+ const contractClass = await event.toContractClassPublicWithBytecodeCommitment();
439
+ const computedClassId = await computeContractClassId({
440
+ artifactHash: contractClass.artifactHash,
441
+ privateFunctionsRoot: contractClass.privateFunctionsRoot,
442
+ publicBytecodeCommitment: contractClass.publicBytecodeCommitment,
443
+ });
444
+ if (!computedClassId.equals(contractClass.id)) {
445
+ this.log.warn(
446
+ `Skipping contract class with mismatched id at block ${blockNum}. Claimed ${contractClass.id}, computed ${computedClassId}`,
447
+ { blockNum, contractClassId: event.contractClassId.toString() },
301
448
  );
302
- return await this.store.addContractClasses(contractClasses, commitments, blockNum);
303
- } else if (operation == Operation.Delete) {
304
- return await this.store.deleteContractClasses(contractClasses, blockNum);
449
+ continue;
305
450
  }
451
+ contractClasses.push(contractClass);
452
+ }
453
+
454
+ if (contractClasses.length > 0) {
455
+ contractClasses.forEach(c => this.log.verbose(`${Operation[operation]} contract class ${c.id.toString()}`));
456
+ return await this.stores.contractClasses.addContractClasses(contractClasses, blockNum);
306
457
  }
307
458
  return true;
308
459
  }
@@ -315,18 +466,35 @@ export class ArchiverDataStoreUpdater {
315
466
  blockNum: BlockNumber,
316
467
  operation: Operation,
317
468
  ): Promise<boolean> {
318
- const contractInstances = allLogs
469
+ const allInstances = allLogs
319
470
  .filter(log => ContractInstancePublishedEvent.isContractInstancePublishedEvent(log))
320
471
  .map(log => ContractInstancePublishedEvent.fromLog(log))
321
472
  .map(e => e.toContractInstance());
473
+
474
+ // Verify that each instance's address matches the one derived from its fields if we're adding
475
+ const contractInstances =
476
+ operation === Operation.Delete
477
+ ? allInstances
478
+ : await filterAsync(allInstances, async instance => {
479
+ const computedAddress = await computeContractAddressFromInstance(instance);
480
+ if (!computedAddress.equals(instance.address)) {
481
+ this.log.warn(
482
+ `Found contract instance with mismatched address at block ${blockNum}. Claimed ${instance.address} but computed ${computedAddress}.`,
483
+ { instanceAddress: instance.address.toString(), computedAddress: computedAddress.toString(), blockNum },
484
+ );
485
+ return false;
486
+ }
487
+ return true;
488
+ });
489
+
322
490
  if (contractInstances.length > 0) {
323
491
  contractInstances.forEach(c =>
324
492
  this.log.verbose(`${Operation[operation]} contract instance at ${c.address.toString()}`),
325
493
  );
326
494
  if (operation == Operation.Store) {
327
- return await this.store.addContractInstances(contractInstances, blockNum);
495
+ return await this.stores.contractInstances.addContractInstances(contractInstances, blockNum);
328
496
  } else if (operation == Operation.Delete) {
329
- return await this.store.deleteContractInstances(contractInstances, blockNum);
497
+ return await this.stores.contractInstances.deleteContractInstances(contractInstances);
330
498
  }
331
499
  }
332
500
  return true;
@@ -350,73 +518,10 @@ export class ArchiverDataStoreUpdater {
350
518
  this.log.verbose(`${Operation[operation]} contract instance update at ${c.address.toString()}`),
351
519
  );
352
520
  if (operation == Operation.Store) {
353
- return await this.store.addContractInstanceUpdates(contractUpdates, timestamp);
521
+ return await this.stores.contractInstances.addContractInstanceUpdates(contractUpdates, timestamp);
354
522
  } else if (operation == Operation.Delete) {
355
- return await this.store.deleteContractInstanceUpdates(contractUpdates, timestamp);
356
- }
357
- }
358
- return true;
359
- }
360
-
361
- /**
362
- * Stores the functions that were broadcasted individually.
363
- *
364
- * @dev Beware that there is not a delete variant of this, since they are added to contract classes
365
- * and will be deleted as part of the class if needed.
366
- */
367
- private async storeBroadcastedIndividualFunctions(
368
- allLogs: ContractClassLog[],
369
- _blockNum: BlockNumber,
370
- ): Promise<boolean> {
371
- // Filter out private and utility function broadcast events
372
- const privateFnEvents = allLogs
373
- .filter(log => PrivateFunctionBroadcastedEvent.isPrivateFunctionBroadcastedEvent(log))
374
- .map(log => PrivateFunctionBroadcastedEvent.fromLog(log));
375
- const utilityFnEvents = allLogs
376
- .filter(log => UtilityFunctionBroadcastedEvent.isUtilityFunctionBroadcastedEvent(log))
377
- .map(log => UtilityFunctionBroadcastedEvent.fromLog(log));
378
-
379
- // Group all events by contract class id
380
- for (const [classIdString, classEvents] of Object.entries(
381
- groupBy([...privateFnEvents, ...utilityFnEvents], e => e.contractClassId.toString()),
382
- )) {
383
- const contractClassId = Fr.fromHexString(classIdString);
384
- const contractClass = await this.store.getContractClass(contractClassId);
385
- if (!contractClass) {
386
- this.log.warn(`Skipping broadcasted functions as contract class ${contractClassId.toString()} was not found`);
387
- continue;
388
- }
389
-
390
- // Split private and utility functions, and filter out invalid ones
391
- const allFns = classEvents.map(e => e.toFunctionWithMembershipProof());
392
- const privateFns = allFns.filter(
393
- (fn): fn is ExecutablePrivateFunctionWithMembershipProof => 'utilityFunctionsTreeRoot' in fn,
394
- );
395
- const utilityFns = allFns.filter(
396
- (fn): fn is UtilityFunctionWithMembershipProof => 'privateFunctionsArtifactTreeRoot' in fn,
397
- );
398
-
399
- const privateFunctionsWithValidity = await Promise.all(
400
- privateFns.map(async fn => ({ fn, valid: await isValidPrivateFunctionMembershipProof(fn, contractClass) })),
401
- );
402
- const validPrivateFns = privateFunctionsWithValidity.filter(({ valid }) => valid).map(({ fn }) => fn);
403
- const utilityFunctionsWithValidity = await Promise.all(
404
- utilityFns.map(async fn => ({
405
- fn,
406
- valid: await isValidUtilityFunctionMembershipProof(fn, contractClass),
407
- })),
408
- );
409
- const validUtilityFns = utilityFunctionsWithValidity.filter(({ valid }) => valid).map(({ fn }) => fn);
410
- const validFnCount = validPrivateFns.length + validUtilityFns.length;
411
- if (validFnCount !== allFns.length) {
412
- this.log.warn(`Skipping ${allFns.length - validFnCount} invalid functions`);
413
- }
414
-
415
- // Store the functions in the contract class in a single operation
416
- if (validFnCount > 0) {
417
- this.log.verbose(`Storing ${validFnCount} functions for contract class ${contractClassId.toString()}`);
523
+ return await this.stores.contractInstances.deleteContractInstanceUpdates(contractUpdates, timestamp);
418
524
  }
419
- return await this.store.addFunctions(contractClassId, validPrivateFns, validUtilityFns);
420
525
  }
421
526
  return true;
422
527
  }