@aztec/archiver 0.0.1-commit.9d2bcf6d → 0.0.1-commit.9ef841308
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.
- package/dest/archiver.d.ts +7 -5
- package/dest/archiver.d.ts.map +1 -1
- package/dest/archiver.js +73 -111
- package/dest/config.d.ts +3 -3
- package/dest/config.d.ts.map +1 -1
- package/dest/config.js +2 -1
- package/dest/errors.d.ts +21 -9
- package/dest/errors.d.ts.map +1 -1
- package/dest/errors.js +27 -14
- package/dest/factory.d.ts +4 -5
- package/dest/factory.d.ts.map +1 -1
- package/dest/factory.js +31 -26
- package/dest/index.d.ts +2 -1
- package/dest/index.d.ts.map +1 -1
- package/dest/index.js +1 -0
- package/dest/l1/bin/retrieve-calldata.js +36 -33
- package/dest/l1/calldata_retriever.d.ts +73 -50
- package/dest/l1/calldata_retriever.d.ts.map +1 -1
- package/dest/l1/calldata_retriever.js +191 -259
- package/dest/l1/data_retrieval.d.ts +9 -9
- package/dest/l1/data_retrieval.d.ts.map +1 -1
- package/dest/l1/data_retrieval.js +21 -19
- package/dest/l1/spire_proposer.d.ts +5 -5
- package/dest/l1/spire_proposer.d.ts.map +1 -1
- package/dest/l1/spire_proposer.js +9 -17
- package/dest/modules/data_source_base.d.ts +12 -7
- package/dest/modules/data_source_base.d.ts.map +1 -1
- package/dest/modules/data_source_base.js +33 -77
- package/dest/modules/data_store_updater.d.ts +24 -12
- package/dest/modules/data_store_updater.d.ts.map +1 -1
- package/dest/modules/data_store_updater.js +116 -94
- package/dest/modules/instrumentation.d.ts +15 -2
- package/dest/modules/instrumentation.d.ts.map +1 -1
- package/dest/modules/instrumentation.js +19 -2
- package/dest/modules/l1_synchronizer.d.ts +5 -8
- package/dest/modules/l1_synchronizer.d.ts.map +1 -1
- package/dest/modules/l1_synchronizer.js +50 -15
- package/dest/store/block_store.d.ts +29 -26
- package/dest/store/block_store.d.ts.map +1 -1
- package/dest/store/block_store.js +130 -78
- package/dest/store/contract_class_store.d.ts +2 -3
- package/dest/store/contract_class_store.d.ts.map +1 -1
- package/dest/store/contract_class_store.js +7 -67
- package/dest/store/contract_instance_store.d.ts +1 -1
- package/dest/store/contract_instance_store.d.ts.map +1 -1
- package/dest/store/contract_instance_store.js +6 -2
- package/dest/store/kv_archiver_store.d.ts +45 -21
- package/dest/store/kv_archiver_store.d.ts.map +1 -1
- package/dest/store/kv_archiver_store.js +52 -21
- package/dest/store/l2_tips_cache.d.ts +19 -0
- package/dest/store/l2_tips_cache.d.ts.map +1 -0
- package/dest/store/l2_tips_cache.js +89 -0
- package/dest/store/log_store.d.ts +6 -3
- package/dest/store/log_store.d.ts.map +1 -1
- package/dest/store/log_store.js +148 -51
- package/dest/store/message_store.d.ts +5 -1
- package/dest/store/message_store.d.ts.map +1 -1
- package/dest/store/message_store.js +14 -1
- package/dest/test/fake_l1_state.d.ts +13 -1
- package/dest/test/fake_l1_state.d.ts.map +1 -1
- package/dest/test/fake_l1_state.js +95 -23
- package/dest/test/mock_archiver.d.ts +1 -1
- package/dest/test/mock_archiver.d.ts.map +1 -1
- package/dest/test/mock_archiver.js +3 -2
- package/dest/test/mock_l2_block_source.d.ts +21 -5
- package/dest/test/mock_l2_block_source.d.ts.map +1 -1
- package/dest/test/mock_l2_block_source.js +132 -86
- package/dest/test/mock_structs.d.ts +4 -1
- package/dest/test/mock_structs.d.ts.map +1 -1
- package/dest/test/mock_structs.js +13 -1
- package/dest/test/noop_l1_archiver.d.ts +4 -1
- package/dest/test/noop_l1_archiver.d.ts.map +1 -1
- package/dest/test/noop_l1_archiver.js +5 -1
- package/package.json +13 -13
- package/src/archiver.ts +88 -131
- package/src/config.ts +8 -1
- package/src/errors.ts +40 -24
- package/src/factory.ts +46 -24
- package/src/index.ts +1 -0
- package/src/l1/README.md +25 -68
- package/src/l1/bin/retrieve-calldata.ts +46 -39
- package/src/l1/calldata_retriever.ts +250 -379
- package/src/l1/data_retrieval.ts +23 -25
- package/src/l1/spire_proposer.ts +7 -15
- package/src/modules/data_source_base.ts +64 -98
- package/src/modules/data_store_updater.ts +125 -124
- package/src/modules/instrumentation.ts +29 -2
- package/src/modules/l1_synchronizer.ts +61 -24
- package/src/store/block_store.ts +157 -105
- package/src/store/contract_class_store.ts +8 -106
- package/src/store/contract_instance_store.ts +8 -5
- package/src/store/kv_archiver_store.ts +78 -35
- package/src/store/l2_tips_cache.ts +89 -0
- package/src/store/log_store.ts +219 -58
- package/src/store/message_store.ts +20 -1
- package/src/test/fake_l1_state.ts +125 -26
- package/src/test/mock_archiver.ts +3 -2
- package/src/test/mock_l2_block_source.ts +173 -81
- package/src/test/mock_structs.ts +20 -6
- package/src/test/noop_l1_archiver.ts +7 -1
|
@@ -6,15 +6,20 @@ import { createLogger } from '@aztec/foundation/log';
|
|
|
6
6
|
import type { AztecAsyncKVStore, CustomRange, StoreSize } from '@aztec/kv-store';
|
|
7
7
|
import { FunctionSelector } from '@aztec/stdlib/abi';
|
|
8
8
|
import type { AztecAddress } from '@aztec/stdlib/aztec-address';
|
|
9
|
-
import {
|
|
10
|
-
|
|
9
|
+
import {
|
|
10
|
+
type BlockData,
|
|
11
|
+
BlockHash,
|
|
12
|
+
CheckpointedL2Block,
|
|
13
|
+
L2Block,
|
|
14
|
+
type ValidateCheckpointResult,
|
|
15
|
+
} from '@aztec/stdlib/block';
|
|
16
|
+
import type { CheckpointData, PublishedCheckpoint } from '@aztec/stdlib/checkpoint';
|
|
11
17
|
import type {
|
|
12
18
|
ContractClassPublic,
|
|
19
|
+
ContractClassPublicWithCommitment,
|
|
13
20
|
ContractDataSource,
|
|
14
21
|
ContractInstanceUpdateWithAddress,
|
|
15
22
|
ContractInstanceWithAddress,
|
|
16
|
-
ExecutablePrivateFunctionWithMembershipProof,
|
|
17
|
-
UtilityFunctionWithMembershipProof,
|
|
18
23
|
} from '@aztec/stdlib/contract';
|
|
19
24
|
import type { L1RollupConstants } from '@aztec/stdlib/epoch-helpers';
|
|
20
25
|
import type { GetContractClassLogsResponse, GetPublicLogsResponse } from '@aztec/stdlib/interfaces/client';
|
|
@@ -25,13 +30,13 @@ import type { UInt64 } from '@aztec/stdlib/types';
|
|
|
25
30
|
import { join } from 'path';
|
|
26
31
|
|
|
27
32
|
import type { InboxMessage } from '../structs/inbox_message.js';
|
|
28
|
-
import { BlockStore, type
|
|
33
|
+
import { BlockStore, type RemoveCheckpointsResult } from './block_store.js';
|
|
29
34
|
import { ContractClassStore } from './contract_class_store.js';
|
|
30
35
|
import { ContractInstanceStore } from './contract_instance_store.js';
|
|
31
36
|
import { LogStore } from './log_store.js';
|
|
32
37
|
import { MessageStore } from './message_store.js';
|
|
33
38
|
|
|
34
|
-
export const ARCHIVER_DB_VERSION =
|
|
39
|
+
export const ARCHIVER_DB_VERSION = 6;
|
|
35
40
|
export const MAX_FUNCTION_SIGNATURES = 1000;
|
|
36
41
|
export const MAX_FUNCTION_NAME_LEN = 256;
|
|
37
42
|
|
|
@@ -65,15 +70,19 @@ export class KVArchiverDataStore implements ContractDataSource {
|
|
|
65
70
|
constructor(
|
|
66
71
|
private db: AztecAsyncKVStore,
|
|
67
72
|
logsMaxPageSize: number = 1000,
|
|
68
|
-
l1Constants: Pick<L1RollupConstants, 'epochDuration'>,
|
|
69
73
|
) {
|
|
70
|
-
this.#blockStore = new BlockStore(db
|
|
74
|
+
this.#blockStore = new BlockStore(db);
|
|
71
75
|
this.#logStore = new LogStore(db, this.#blockStore, logsMaxPageSize);
|
|
72
76
|
this.#messageStore = new MessageStore(db);
|
|
73
77
|
this.#contractClassStore = new ContractClassStore(db);
|
|
74
78
|
this.#contractInstanceStore = new ContractInstanceStore(db);
|
|
75
79
|
}
|
|
76
80
|
|
|
81
|
+
/** Returns the underlying block store. Used by L2TipsCache. */
|
|
82
|
+
get blockStore(): BlockStore {
|
|
83
|
+
return this.#blockStore;
|
|
84
|
+
}
|
|
85
|
+
|
|
77
86
|
/** Opens a new transaction to the underlying store and runs all operations within it. */
|
|
78
87
|
public transactionAsync<T>(callback: () => Promise<T>): Promise<T> {
|
|
79
88
|
return this.db.transactionAsync(callback);
|
|
@@ -157,19 +166,14 @@ export class KVArchiverDataStore implements ContractDataSource {
|
|
|
157
166
|
|
|
158
167
|
/**
|
|
159
168
|
* Add new contract classes from an L2 block to the store's list.
|
|
160
|
-
* @param data - List of contract classes to be added.
|
|
161
|
-
* @param bytecodeCommitments - Bytecode commitments for the contract classes.
|
|
169
|
+
* @param data - List of contract classes (with bytecode commitments) to be added.
|
|
162
170
|
* @param blockNumber - Number of the L2 block the contracts were registered in.
|
|
163
171
|
* @returns True if the operation is successful.
|
|
164
172
|
*/
|
|
165
|
-
async addContractClasses(
|
|
166
|
-
data: ContractClassPublic[],
|
|
167
|
-
bytecodeCommitments: Fr[],
|
|
168
|
-
blockNumber: BlockNumber,
|
|
169
|
-
): Promise<boolean> {
|
|
173
|
+
async addContractClasses(data: ContractClassPublicWithCommitment[], blockNumber: BlockNumber): Promise<boolean> {
|
|
170
174
|
return (
|
|
171
175
|
await Promise.all(
|
|
172
|
-
data.map(
|
|
176
|
+
data.map(c => this.#contractClassStore.addContractClass(c, c.publicBytecodeCommitment, blockNumber)),
|
|
173
177
|
)
|
|
174
178
|
).every(Boolean);
|
|
175
179
|
}
|
|
@@ -184,15 +188,6 @@ export class KVArchiverDataStore implements ContractDataSource {
|
|
|
184
188
|
return this.#contractClassStore.getBytecodeCommitment(contractClassId);
|
|
185
189
|
}
|
|
186
190
|
|
|
187
|
-
/** Adds private functions to a contract class. */
|
|
188
|
-
addFunctions(
|
|
189
|
-
contractClassId: Fr,
|
|
190
|
-
privateFunctions: ExecutablePrivateFunctionWithMembershipProof[],
|
|
191
|
-
utilityFunctions: UtilityFunctionWithMembershipProof[],
|
|
192
|
-
): Promise<boolean> {
|
|
193
|
-
return this.#contractClassStore.addFunctions(contractClassId, privateFunctions, utilityFunctions);
|
|
194
|
-
}
|
|
195
|
-
|
|
196
191
|
/**
|
|
197
192
|
* Add new contract instances from an L2 block to the store's list.
|
|
198
193
|
* @param data - List of contract instances to be added.
|
|
@@ -235,14 +230,14 @@ export class KVArchiverDataStore implements ContractDataSource {
|
|
|
235
230
|
}
|
|
236
231
|
|
|
237
232
|
/**
|
|
238
|
-
* Append new proposed
|
|
239
|
-
*
|
|
233
|
+
* Append a new proposed block to the store.
|
|
234
|
+
* This is an uncheckpointed block that has been proposed by the sequencer but not yet included in a checkpoint on L1.
|
|
240
235
|
* For checkpointed blocks (already published to L1), use addCheckpoints() instead.
|
|
241
|
-
* @param
|
|
236
|
+
* @param block - The proposed L2 block to be added to the store.
|
|
242
237
|
* @returns True if the operation is successful.
|
|
243
238
|
*/
|
|
244
|
-
|
|
245
|
-
return this.#blockStore.
|
|
239
|
+
addProposedBlock(block: L2Block, opts: { force?: boolean } = {}): Promise<boolean> {
|
|
240
|
+
return this.#blockStore.addProposedBlock(block, opts);
|
|
246
241
|
}
|
|
247
242
|
|
|
248
243
|
/**
|
|
@@ -369,6 +364,22 @@ export class KVArchiverDataStore implements ContractDataSource {
|
|
|
369
364
|
return this.#blockStore.getBlockHeaderByArchive(archive);
|
|
370
365
|
}
|
|
371
366
|
|
|
367
|
+
/**
|
|
368
|
+
* Gets block metadata (without tx data) by block number.
|
|
369
|
+
* @param blockNumber - The block number to return.
|
|
370
|
+
*/
|
|
371
|
+
getBlockData(blockNumber: BlockNumber): Promise<BlockData | undefined> {
|
|
372
|
+
return this.#blockStore.getBlockData(blockNumber);
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
/**
|
|
376
|
+
* Gets block metadata (without tx data) by archive root.
|
|
377
|
+
* @param archive - The archive root to return.
|
|
378
|
+
*/
|
|
379
|
+
getBlockDataByArchive(archive: Fr): Promise<BlockData | undefined> {
|
|
380
|
+
return this.#blockStore.getBlockDataByArchive(archive);
|
|
381
|
+
}
|
|
382
|
+
|
|
372
383
|
/**
|
|
373
384
|
* Gets a tx effect.
|
|
374
385
|
* @param txHash - The hash of the tx corresponding to the tx effect.
|
|
@@ -383,8 +394,11 @@ export class KVArchiverDataStore implements ContractDataSource {
|
|
|
383
394
|
* @param txHash - The hash of a tx we try to get the receipt for.
|
|
384
395
|
* @returns The requested tx receipt (or undefined if not found).
|
|
385
396
|
*/
|
|
386
|
-
getSettledTxReceipt(
|
|
387
|
-
|
|
397
|
+
getSettledTxReceipt(
|
|
398
|
+
txHash: TxHash,
|
|
399
|
+
l1Constants?: Pick<L1RollupConstants, 'epochDuration'>,
|
|
400
|
+
): Promise<TxReceipt | undefined> {
|
|
401
|
+
return this.#blockStore.getSettledTxReceipt(txHash, l1Constants);
|
|
388
402
|
}
|
|
389
403
|
|
|
390
404
|
/**
|
|
@@ -445,10 +459,11 @@ export class KVArchiverDataStore implements ContractDataSource {
|
|
|
445
459
|
* array implies no logs match that tag.
|
|
446
460
|
* @param tags - The tags to search for.
|
|
447
461
|
* @param page - The page number (0-indexed) for pagination. Returns at most 10 logs per tag per page.
|
|
462
|
+
* @param upToBlockNumber - If set, only return logs from blocks up to and including this block number.
|
|
448
463
|
*/
|
|
449
|
-
getPrivateLogsByTags(tags: SiloedTag[], page?: number): Promise<TxScopedL2Log[][]> {
|
|
464
|
+
getPrivateLogsByTags(tags: SiloedTag[], page?: number, upToBlockNumber?: BlockNumber): Promise<TxScopedL2Log[][]> {
|
|
450
465
|
try {
|
|
451
|
-
return this.#logStore.getPrivateLogsByTags(tags, page);
|
|
466
|
+
return this.#logStore.getPrivateLogsByTags(tags, page, upToBlockNumber);
|
|
452
467
|
} catch (err) {
|
|
453
468
|
return Promise.reject(err);
|
|
454
469
|
}
|
|
@@ -460,14 +475,16 @@ export class KVArchiverDataStore implements ContractDataSource {
|
|
|
460
475
|
* @param contractAddress - The contract address to search logs for.
|
|
461
476
|
* @param tags - The tags to search for.
|
|
462
477
|
* @param page - The page number (0-indexed) for pagination. Returns at most 10 logs per tag per page.
|
|
478
|
+
* @param upToBlockNumber - If set, only return logs from blocks up to and including this block number.
|
|
463
479
|
*/
|
|
464
480
|
getPublicLogsByTagsFromContract(
|
|
465
481
|
contractAddress: AztecAddress,
|
|
466
482
|
tags: Tag[],
|
|
467
483
|
page?: number,
|
|
484
|
+
upToBlockNumber?: BlockNumber,
|
|
468
485
|
): Promise<TxScopedL2Log[][]> {
|
|
469
486
|
try {
|
|
470
|
-
return this.#logStore.getPublicLogsByTagsFromContract(contractAddress, tags, page);
|
|
487
|
+
return this.#logStore.getPublicLogsByTagsFromContract(contractAddress, tags, page, upToBlockNumber);
|
|
471
488
|
} catch (err) {
|
|
472
489
|
return Promise.reject(err);
|
|
473
490
|
}
|
|
@@ -515,6 +532,22 @@ export class KVArchiverDataStore implements ContractDataSource {
|
|
|
515
532
|
await this.#blockStore.setProvenCheckpointNumber(checkpointNumber);
|
|
516
533
|
}
|
|
517
534
|
|
|
535
|
+
/**
|
|
536
|
+
* Gets the number of the latest finalized checkpoint processed.
|
|
537
|
+
* @returns The number of the latest finalized checkpoint processed.
|
|
538
|
+
*/
|
|
539
|
+
getFinalizedCheckpointNumber(): Promise<CheckpointNumber> {
|
|
540
|
+
return this.#blockStore.getFinalizedCheckpointNumber();
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
/**
|
|
544
|
+
* Stores the number of the latest finalized checkpoint processed.
|
|
545
|
+
* @param checkpointNumber - The number of the latest finalized checkpoint processed.
|
|
546
|
+
*/
|
|
547
|
+
async setFinalizedCheckpointNumber(checkpointNumber: CheckpointNumber) {
|
|
548
|
+
await this.#blockStore.setFinalizedCheckpointNumber(checkpointNumber);
|
|
549
|
+
}
|
|
550
|
+
|
|
518
551
|
async setBlockSynchedL1BlockNumber(l1BlockNumber: bigint) {
|
|
519
552
|
await this.#blockStore.setSynchedL1BlockNumber(l1BlockNumber);
|
|
520
553
|
}
|
|
@@ -558,6 +591,11 @@ export class KVArchiverDataStore implements ContractDataSource {
|
|
|
558
591
|
return this.#messageStore.rollbackL1ToL2MessagesToCheckpoint(targetCheckpointNumber);
|
|
559
592
|
}
|
|
560
593
|
|
|
594
|
+
/** Persists the inbox tree-in-progress checkpoint number from L1 state. */
|
|
595
|
+
public setInboxTreeInProgress(value: bigint): Promise<void> {
|
|
596
|
+
return this.#messageStore.setInboxTreeInProgress(value);
|
|
597
|
+
}
|
|
598
|
+
|
|
561
599
|
/** Returns an async iterator to all L1 to L2 messages on the range. */
|
|
562
600
|
public iterateL1ToL2Messages(range: CustomRange<bigint> = {}): AsyncIterableIterator<InboxMessage> {
|
|
563
601
|
return this.#messageStore.iterateL1ToL2Messages(range);
|
|
@@ -618,6 +656,11 @@ export class KVArchiverDataStore implements ContractDataSource {
|
|
|
618
656
|
return this.#blockStore.getCheckpointData(checkpointNumber);
|
|
619
657
|
}
|
|
620
658
|
|
|
659
|
+
/** Returns checkpoint data for all checkpoints whose slot falls within the given range (inclusive). */
|
|
660
|
+
getCheckpointDataForSlotRange(startSlot: SlotNumber, endSlot: SlotNumber): Promise<CheckpointData[]> {
|
|
661
|
+
return this.#blockStore.getCheckpointDataForSlotRange(startSlot, endSlot);
|
|
662
|
+
}
|
|
663
|
+
|
|
621
664
|
/**
|
|
622
665
|
* Gets all blocks that have the given slot number.
|
|
623
666
|
* @param slotNumber - The slot number to search for.
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import { GENESIS_BLOCK_HEADER_HASH, INITIAL_L2_BLOCK_NUM } from '@aztec/constants';
|
|
2
|
+
import { BlockNumber, CheckpointNumber } from '@aztec/foundation/branded-types';
|
|
3
|
+
import { type BlockData, type CheckpointId, GENESIS_CHECKPOINT_HEADER_HASH, type L2Tips } from '@aztec/stdlib/block';
|
|
4
|
+
|
|
5
|
+
import type { BlockStore } from './block_store.js';
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* In-memory cache for L2 chain tips (proposed, checkpointed, proven, finalized).
|
|
9
|
+
* Populated from the BlockStore on first access, then kept up-to-date by the ArchiverDataStoreUpdater.
|
|
10
|
+
* Refresh calls should happen within the store transaction that mutates block data to ensure consistency.
|
|
11
|
+
*/
|
|
12
|
+
export class L2TipsCache {
|
|
13
|
+
#tipsPromise: Promise<L2Tips> | undefined;
|
|
14
|
+
|
|
15
|
+
constructor(private blockStore: BlockStore) {}
|
|
16
|
+
|
|
17
|
+
/** Returns the cached L2 tips. Loads from the block store on first call. */
|
|
18
|
+
public getL2Tips(): Promise<L2Tips> {
|
|
19
|
+
return (this.#tipsPromise ??= this.loadFromStore());
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
/** Reloads the L2 tips from the block store. Should be called within the store transaction that mutates data. */
|
|
23
|
+
public async refresh(): Promise<void> {
|
|
24
|
+
this.#tipsPromise = this.loadFromStore();
|
|
25
|
+
await this.#tipsPromise;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
private async loadFromStore(): Promise<L2Tips> {
|
|
29
|
+
const [latestBlockNumber, provenBlockNumber, checkpointedBlockNumber, finalizedBlockNumber] = await Promise.all([
|
|
30
|
+
this.blockStore.getLatestBlockNumber(),
|
|
31
|
+
this.blockStore.getProvenBlockNumber(),
|
|
32
|
+
this.blockStore.getCheckpointedL2BlockNumber(),
|
|
33
|
+
this.blockStore.getFinalizedL2BlockNumber(),
|
|
34
|
+
]);
|
|
35
|
+
|
|
36
|
+
const genesisBlockHeader = {
|
|
37
|
+
blockHash: GENESIS_BLOCK_HEADER_HASH,
|
|
38
|
+
checkpointNumber: CheckpointNumber.ZERO,
|
|
39
|
+
} as const;
|
|
40
|
+
const beforeInitialBlockNumber = BlockNumber(INITIAL_L2_BLOCK_NUM - 1);
|
|
41
|
+
|
|
42
|
+
const getBlockData = (blockNumber: BlockNumber) =>
|
|
43
|
+
blockNumber > beforeInitialBlockNumber ? this.blockStore.getBlockData(blockNumber) : genesisBlockHeader;
|
|
44
|
+
|
|
45
|
+
const [latestBlockData, provenBlockData, checkpointedBlockData, finalizedBlockData] = await Promise.all(
|
|
46
|
+
[latestBlockNumber, provenBlockNumber, checkpointedBlockNumber, finalizedBlockNumber].map(getBlockData),
|
|
47
|
+
);
|
|
48
|
+
|
|
49
|
+
if (!latestBlockData || !provenBlockData || !finalizedBlockData || !checkpointedBlockData) {
|
|
50
|
+
throw new Error('Failed to load block data for L2 tips');
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
const [provenCheckpointId, finalizedCheckpointId, checkpointedCheckpointId] = await Promise.all([
|
|
54
|
+
this.getCheckpointIdForBlock(provenBlockData),
|
|
55
|
+
this.getCheckpointIdForBlock(finalizedBlockData),
|
|
56
|
+
this.getCheckpointIdForBlock(checkpointedBlockData),
|
|
57
|
+
]);
|
|
58
|
+
|
|
59
|
+
return {
|
|
60
|
+
proposed: { number: latestBlockNumber, hash: latestBlockData.blockHash.toString() },
|
|
61
|
+
proven: {
|
|
62
|
+
block: { number: provenBlockNumber, hash: provenBlockData.blockHash.toString() },
|
|
63
|
+
checkpoint: provenCheckpointId,
|
|
64
|
+
},
|
|
65
|
+
finalized: {
|
|
66
|
+
block: { number: finalizedBlockNumber, hash: finalizedBlockData.blockHash.toString() },
|
|
67
|
+
checkpoint: finalizedCheckpointId,
|
|
68
|
+
},
|
|
69
|
+
checkpointed: {
|
|
70
|
+
block: { number: checkpointedBlockNumber, hash: checkpointedBlockData.blockHash.toString() },
|
|
71
|
+
checkpoint: checkpointedCheckpointId,
|
|
72
|
+
},
|
|
73
|
+
};
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
private async getCheckpointIdForBlock(blockData: Pick<BlockData, 'checkpointNumber'>): Promise<CheckpointId> {
|
|
77
|
+
const checkpointData = await this.blockStore.getCheckpointData(blockData.checkpointNumber);
|
|
78
|
+
if (!checkpointData) {
|
|
79
|
+
return {
|
|
80
|
+
number: CheckpointNumber.ZERO,
|
|
81
|
+
hash: GENESIS_CHECKPOINT_HEADER_HASH.toString(),
|
|
82
|
+
};
|
|
83
|
+
}
|
|
84
|
+
return {
|
|
85
|
+
number: checkpointData.checkpointNumber,
|
|
86
|
+
hash: checkpointData.header.hash().toString(),
|
|
87
|
+
};
|
|
88
|
+
}
|
|
89
|
+
}
|