@aztec/archiver 0.0.1-commit.10bd49492 → 0.0.1-commit.125b3452

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.
@@ -22,6 +22,7 @@ import {
22
22
  } from '@aztec/stdlib/logs';
23
23
  import { TxHash } from '@aztec/stdlib/tx';
24
24
 
25
+ import { OutOfOrderLogInsertionError } from '../errors.js';
25
26
  import type { BlockStore } from './block_store.js';
26
27
 
27
28
  /**
@@ -165,10 +166,21 @@ export class LogStore {
165
166
 
166
167
  for (const taggedLogBuffer of currentPrivateTaggedLogs) {
167
168
  if (taggedLogBuffer.logBuffers && taggedLogBuffer.logBuffers.length > 0) {
168
- privateTaggedLogs.set(
169
- taggedLogBuffer.tag,
170
- taggedLogBuffer.logBuffers!.concat(privateTaggedLogs.get(taggedLogBuffer.tag)!),
171
- );
169
+ const newLogs = privateTaggedLogs.get(taggedLogBuffer.tag)!;
170
+ if (newLogs.length === 0) {
171
+ continue;
172
+ }
173
+ const lastExisting = TxScopedL2Log.fromBuffer(taggedLogBuffer.logBuffers.at(-1)!);
174
+ const firstNew = TxScopedL2Log.fromBuffer(newLogs[0]);
175
+ if (lastExisting.blockNumber > firstNew.blockNumber) {
176
+ throw new OutOfOrderLogInsertionError(
177
+ 'private',
178
+ taggedLogBuffer.tag,
179
+ lastExisting.blockNumber,
180
+ firstNew.blockNumber,
181
+ );
182
+ }
183
+ privateTaggedLogs.set(taggedLogBuffer.tag, taggedLogBuffer.logBuffers.concat(newLogs));
172
184
  }
173
185
  }
174
186
 
@@ -200,10 +212,21 @@ export class LogStore {
200
212
 
201
213
  for (const taggedLogBuffer of currentPublicTaggedLogs) {
202
214
  if (taggedLogBuffer.logBuffers && taggedLogBuffer.logBuffers.length > 0) {
203
- publicTaggedLogs.set(
204
- taggedLogBuffer.tag,
205
- taggedLogBuffer.logBuffers!.concat(publicTaggedLogs.get(taggedLogBuffer.tag)!),
206
- );
215
+ const newLogs = publicTaggedLogs.get(taggedLogBuffer.tag)!;
216
+ if (newLogs.length === 0) {
217
+ continue;
218
+ }
219
+ const lastExisting = TxScopedL2Log.fromBuffer(taggedLogBuffer.logBuffers.at(-1)!);
220
+ const firstNew = TxScopedL2Log.fromBuffer(newLogs[0]);
221
+ if (lastExisting.blockNumber > firstNew.blockNumber) {
222
+ throw new OutOfOrderLogInsertionError(
223
+ 'public',
224
+ taggedLogBuffer.tag,
225
+ lastExisting.blockNumber,
226
+ firstNew.blockNumber,
227
+ );
228
+ }
229
+ publicTaggedLogs.set(taggedLogBuffer.tag, taggedLogBuffer.logBuffers.concat(newLogs));
207
230
  }
208
231
  }
209
232
 
@@ -322,17 +345,30 @@ export class LogStore {
322
345
  * array implies no logs match that tag.
323
346
  * @param tags - The tags to search for.
324
347
  * @param page - The page number (0-indexed) for pagination.
348
+ * @param upToBlockNumber - If set, only return logs from blocks up to and including this block number.
325
349
  * @returns An array of log arrays, one per tag. Returns at most MAX_LOGS_PER_TAG logs per tag per page. If
326
350
  * MAX_LOGS_PER_TAG logs are returned for a tag, the caller should fetch the next page to check for more logs.
327
351
  */
328
- async getPrivateLogsByTags(tags: SiloedTag[], page: number = 0): Promise<TxScopedL2Log[][]> {
352
+ async getPrivateLogsByTags(
353
+ tags: SiloedTag[],
354
+ page: number = 0,
355
+ upToBlockNumber?: BlockNumber,
356
+ ): Promise<TxScopedL2Log[][]> {
329
357
  const logs = await Promise.all(tags.map(tag => this.#privateLogsByTag.getAsync(tag.toString())));
358
+
330
359
  const start = page * MAX_LOGS_PER_TAG;
331
360
  const end = start + MAX_LOGS_PER_TAG;
332
361
 
333
- return logs.map(
334
- logBuffers => logBuffers?.slice(start, end).map(logBuffer => TxScopedL2Log.fromBuffer(logBuffer)) ?? [],
335
- );
362
+ return logs.map(logBuffers => {
363
+ const deserialized = logBuffers?.slice(start, end).map(buf => TxScopedL2Log.fromBuffer(buf)) ?? [];
364
+ if (upToBlockNumber !== undefined) {
365
+ const cutoff = deserialized.findIndex(log => log.blockNumber > upToBlockNumber);
366
+ if (cutoff !== -1) {
367
+ return deserialized.slice(0, cutoff);
368
+ }
369
+ }
370
+ return deserialized;
371
+ });
336
372
  }
337
373
 
338
374
  /**
@@ -341,6 +377,7 @@ export class LogStore {
341
377
  * @param contractAddress - The contract address to search logs for.
342
378
  * @param tags - The tags to search for.
343
379
  * @param page - The page number (0-indexed) for pagination.
380
+ * @param upToBlockNumber - If set, only return logs from blocks up to and including this block number.
344
381
  * @returns An array of log arrays, one per tag. Returns at most MAX_LOGS_PER_TAG logs per tag per page. If
345
382
  * MAX_LOGS_PER_TAG logs are returned for a tag, the caller should fetch the next page to check for more logs.
346
383
  */
@@ -348,6 +385,7 @@ export class LogStore {
348
385
  contractAddress: AztecAddress,
349
386
  tags: Tag[],
350
387
  page: number = 0,
388
+ upToBlockNumber?: BlockNumber,
351
389
  ): Promise<TxScopedL2Log[][]> {
352
390
  const logs = await Promise.all(
353
391
  tags.map(tag => {
@@ -358,9 +396,16 @@ export class LogStore {
358
396
  const start = page * MAX_LOGS_PER_TAG;
359
397
  const end = start + MAX_LOGS_PER_TAG;
360
398
 
361
- return logs.map(
362
- logBuffers => logBuffers?.slice(start, end).map(logBuffer => TxScopedL2Log.fromBuffer(logBuffer)) ?? [],
363
- );
399
+ return logs.map(logBuffers => {
400
+ const deserialized = logBuffers?.slice(start, end).map(buf => TxScopedL2Log.fromBuffer(buf)) ?? [];
401
+ if (upToBlockNumber !== undefined) {
402
+ const cutoff = deserialized.findIndex(log => log.blockNumber > upToBlockNumber);
403
+ if (cutoff !== -1) {
404
+ return deserialized.slice(0, cutoff);
405
+ }
406
+ }
407
+ return deserialized;
408
+ });
364
409
  }
365
410
 
366
411
  /**
@@ -588,11 +633,24 @@ export class LogStore {
588
633
  txLogs: PublicLog[],
589
634
  filter: LogFilter = {},
590
635
  ): boolean {
636
+ if (filter.fromBlock && blockNumber < filter.fromBlock) {
637
+ return false;
638
+ }
639
+ if (filter.toBlock && blockNumber >= filter.toBlock) {
640
+ return false;
641
+ }
642
+ if (filter.txHash && !txHash.equals(filter.txHash)) {
643
+ return false;
644
+ }
645
+
591
646
  let maxLogsHit = false;
592
647
  let logIndex = typeof filter.afterLog?.logIndex === 'number' ? filter.afterLog.logIndex + 1 : 0;
593
648
  for (; logIndex < txLogs.length; logIndex++) {
594
649
  const log = txLogs[logIndex];
595
- if (!filter.contractAddress || log.contractAddress.equals(filter.contractAddress)) {
650
+ if (
651
+ (!filter.contractAddress || log.contractAddress.equals(filter.contractAddress)) &&
652
+ (!filter.tag || log.fields[0]?.equals(filter.tag))
653
+ ) {
596
654
  results.push(
597
655
  new ExtendedPublicLog(new LogId(BlockNumber(blockNumber), blockHash, txHash, txIndex, logIndex), log),
598
656
  );
@@ -616,6 +674,16 @@ export class LogStore {
616
674
  txLogs: ContractClassLog[],
617
675
  filter: LogFilter = {},
618
676
  ): boolean {
677
+ if (filter.fromBlock && blockNumber < filter.fromBlock) {
678
+ return false;
679
+ }
680
+ if (filter.toBlock && blockNumber >= filter.toBlock) {
681
+ return false;
682
+ }
683
+ if (filter.txHash && !txHash.equals(filter.txHash)) {
684
+ return false;
685
+ }
686
+
619
687
  let maxLogsHit = false;
620
688
  let logIndex = typeof filter.afterLog?.logIndex === 'number' ? filter.afterLog.logIndex + 1 : 0;
621
689
  for (; logIndex < txLogs.length; logIndex++) {
@@ -14,6 +14,7 @@ import {
14
14
  } from '@aztec/kv-store';
15
15
  import { InboxLeaf } from '@aztec/stdlib/messaging';
16
16
 
17
+ import { L1ToL2MessagesNotReadyError } from '../errors.js';
17
18
  import {
18
19
  type InboxMessage,
19
20
  deserializeInboxMessage,
@@ -40,6 +41,8 @@ export class MessageStore {
40
41
  #lastSynchedL1Block: AztecAsyncSingleton<Buffer>;
41
42
  /** Stores total messages stored */
42
43
  #totalMessageCount: AztecAsyncSingleton<bigint>;
44
+ /** Stores the checkpoint number whose message tree is currently being filled on L1. */
45
+ #inboxTreeInProgress: AztecAsyncSingleton<bigint>;
43
46
 
44
47
  #log = createLogger('archiver:message_store');
45
48
 
@@ -48,6 +51,7 @@ export class MessageStore {
48
51
  this.#l1ToL2MessageIndices = db.openMap('archiver_l1_to_l2_message_indices');
49
52
  this.#lastSynchedL1Block = db.openSingleton('archiver_last_l1_block_id');
50
53
  this.#totalMessageCount = db.openSingleton('archiver_l1_to_l2_message_count');
54
+ this.#inboxTreeInProgress = db.openSingleton('archiver_inbox_tree_in_progress');
51
55
  }
52
56
 
53
57
  public async getTotalL1ToL2MessageCount(): Promise<bigint> {
@@ -185,7 +189,22 @@ export class MessageStore {
185
189
  return msg ? deserializeInboxMessage(msg) : undefined;
186
190
  }
187
191
 
192
+ /** Returns the inbox tree-in-progress checkpoint number from L1, or undefined if not yet set. */
193
+ public getInboxTreeInProgress(): Promise<bigint | undefined> {
194
+ return this.#inboxTreeInProgress.getAsync();
195
+ }
196
+
197
+ /** Persists the inbox tree-in-progress checkpoint number from L1 state. */
198
+ public async setInboxTreeInProgress(value: bigint): Promise<void> {
199
+ await this.#inboxTreeInProgress.set(value);
200
+ }
201
+
188
202
  public async getL1ToL2Messages(checkpointNumber: CheckpointNumber): Promise<Fr[]> {
203
+ const treeInProgress = await this.#inboxTreeInProgress.getAsync();
204
+ if (treeInProgress !== undefined && BigInt(checkpointNumber) >= treeInProgress) {
205
+ throw new L1ToL2MessagesNotReadyError(checkpointNumber, treeInProgress);
206
+ }
207
+
189
208
  const messages: Fr[] = [];
190
209
 
191
210
  const [startIndex, endIndex] = InboxLeaf.indexRangeForCheckpoint(checkpointNumber);
@@ -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';
@@ -450,13 +451,22 @@ export class FakeL1State {
450
451
  createMockInboxContract(_publicClient: MockProxy<ViemPublicClient>): MockProxy<InboxContract> {
451
452
  const mockInbox = mock<InboxContract>();
452
453
 
453
- mockInbox.getState.mockImplementation(() =>
454
- Promise.resolve({
454
+ mockInbox.getState.mockImplementation(() => {
455
+ // treeInProgress must be > any sealed checkpoint. On L1, a checkpoint can only be proposed
456
+ // after its messages are sealed, so treeInProgress > checkpointNumber for all published checkpoints.
457
+ const maxFromMessages =
458
+ this.messages.length > 0 ? Math.max(...this.messages.map(m => Number(m.checkpointNumber))) + 1 : 0;
459
+ const maxFromCheckpoints =
460
+ this.checkpoints.length > 0
461
+ ? Math.max(...this.checkpoints.filter(cp => !cp.pruned).map(cp => Number(cp.checkpointNumber))) + 1
462
+ : 0;
463
+ const treeInProgress = Math.max(maxFromMessages, maxFromCheckpoints, INITIAL_CHECKPOINT_NUMBER);
464
+ return Promise.resolve({
455
465
  messagesRollingHash: this.messagesRollingHash,
456
466
  totalMessagesInserted: BigInt(this.messages.length),
457
- treeInProgress: 0n,
458
- }),
459
- );
467
+ treeInProgress: BigInt(treeInProgress),
468
+ });
469
+ });
460
470
 
461
471
  // Mock the wrapper methods for fetching message events
462
472
  mockInbox.getMessageSentEvents.mockImplementation((fromBlock: bigint, toBlock: bigint) =>