@aztec/archiver 0.0.1-commit.a89ec08 → 0.0.1-commit.aa0c64f
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/README.md +19 -11
- package/dest/archiver.d.ts +71 -16
- package/dest/archiver.d.ts.map +1 -1
- package/dest/archiver.js +276 -71
- package/dest/config.d.ts +7 -3
- package/dest/config.d.ts.map +1 -1
- package/dest/config.js +43 -14
- package/dest/errors.d.ts +50 -2
- package/dest/errors.d.ts.map +1 -1
- package/dest/errors.js +74 -2
- package/dest/factory.d.ts +19 -7
- package/dest/factory.d.ts.map +1 -1
- package/dest/factory.js +67 -24
- package/dest/index.d.ts +11 -3
- package/dest/index.d.ts.map +1 -1
- package/dest/index.js +10 -2
- package/dest/l1/calldata_retriever.d.ts +9 -1
- package/dest/l1/calldata_retriever.d.ts.map +1 -1
- package/dest/l1/calldata_retriever.js +22 -11
- package/dest/l1/data_retrieval.d.ts +30 -13
- package/dest/l1/data_retrieval.d.ts.map +1 -1
- package/dest/l1/data_retrieval.js +36 -37
- package/dest/l1/trace_tx.d.ts +12 -66
- package/dest/l1/trace_tx.d.ts.map +1 -1
- package/dest/l1/validate_historical_logs.d.ts +23 -0
- package/dest/l1/validate_historical_logs.d.ts.map +1 -0
- package/dest/l1/validate_historical_logs.js +108 -0
- package/dest/modules/contract_data_source_adapter.d.ts +25 -0
- package/dest/modules/contract_data_source_adapter.d.ts.map +1 -0
- package/dest/modules/contract_data_source_adapter.js +32 -0
- package/dest/modules/data_source_base.d.ts +71 -48
- package/dest/modules/data_source_base.d.ts.map +1 -1
- package/dest/modules/data_source_base.js +250 -144
- package/dest/modules/data_store_updater.d.ts +30 -13
- package/dest/modules/data_store_updater.d.ts.map +1 -1
- package/dest/modules/data_store_updater.js +129 -111
- package/dest/modules/instrumentation.d.ts +26 -2
- package/dest/modules/instrumentation.d.ts.map +1 -1
- package/dest/modules/instrumentation.js +58 -9
- package/dest/modules/l1_synchronizer.d.ts +13 -8
- package/dest/modules/l1_synchronizer.d.ts.map +1 -1
- package/dest/modules/l1_synchronizer.js +463 -224
- package/dest/modules/outbox_trees_resolver.d.ts +62 -0
- package/dest/modules/outbox_trees_resolver.d.ts.map +1 -0
- package/dest/modules/outbox_trees_resolver.js +162 -0
- package/dest/modules/validation.d.ts +30 -7
- package/dest/modules/validation.d.ts.map +1 -1
- package/dest/modules/validation.js +35 -17
- package/dest/store/block_store.d.ts +175 -68
- package/dest/store/block_store.d.ts.map +1 -1
- package/dest/store/block_store.js +627 -239
- package/dest/store/contract_class_store.d.ts +17 -4
- package/dest/store/contract_class_store.d.ts.map +1 -1
- package/dest/store/contract_class_store.js +37 -67
- package/dest/store/contract_instance_store.d.ts +28 -1
- package/dest/store/contract_instance_store.d.ts.map +1 -1
- package/dest/store/contract_instance_store.js +49 -1
- package/dest/store/data_stores.d.ts +68 -0
- package/dest/store/data_stores.d.ts.map +1 -0
- package/dest/store/data_stores.js +54 -0
- package/dest/store/function_names_cache.d.ts +17 -0
- package/dest/store/function_names_cache.d.ts.map +1 -0
- package/dest/store/function_names_cache.js +30 -0
- package/dest/store/l2_tips_cache.d.ts +13 -7
- package/dest/store/l2_tips_cache.d.ts.map +1 -1
- package/dest/store/l2_tips_cache.js +13 -76
- package/dest/store/log_store.d.ts +42 -37
- package/dest/store/log_store.d.ts.map +1 -1
- package/dest/store/log_store.js +259 -443
- package/dest/store/log_store_codec.d.ts +78 -0
- package/dest/store/log_store_codec.d.ts.map +1 -0
- package/dest/store/log_store_codec.js +110 -0
- package/dest/store/message_store.d.ts +11 -1
- package/dest/store/message_store.d.ts.map +1 -1
- package/dest/store/message_store.js +50 -8
- package/dest/test/fake_l1_state.d.ts +8 -3
- package/dest/test/fake_l1_state.d.ts.map +1 -1
- package/dest/test/fake_l1_state.js +78 -21
- package/dest/test/mock_l2_block_source.d.ts +48 -50
- package/dest/test/mock_l2_block_source.d.ts.map +1 -1
- package/dest/test/mock_l2_block_source.js +228 -179
- package/dest/test/mock_structs.d.ts +1 -1
- package/dest/test/mock_structs.d.ts.map +1 -1
- package/dest/test/mock_structs.js +2 -2
- package/dest/test/noop_l1_archiver.d.ts +14 -6
- package/dest/test/noop_l1_archiver.d.ts.map +1 -1
- package/dest/test/noop_l1_archiver.js +26 -10
- package/package.json +15 -14
- package/src/archiver.ts +361 -77
- package/src/config.ts +51 -13
- package/src/errors.ts +117 -2
- package/src/factory.ts +81 -22
- package/src/index.ts +18 -2
- package/src/l1/calldata_retriever.ts +29 -11
- package/src/l1/data_retrieval.ts +60 -54
- package/src/l1/validate_historical_logs.ts +140 -0
- package/src/modules/contract_data_source_adapter.ts +46 -0
- package/src/modules/data_source_base.ts +325 -187
- package/src/modules/data_store_updater.ts +155 -139
- package/src/modules/instrumentation.ts +63 -10
- package/src/modules/l1_synchronizer.ts +630 -273
- package/src/modules/outbox_trees_resolver.ts +199 -0
- package/src/modules/validation.ts +80 -23
- package/src/store/block_store.ts +766 -290
- package/src/store/contract_class_store.ts +43 -101
- package/src/store/contract_instance_store.ts +61 -1
- package/src/store/data_stores.ts +104 -0
- package/src/store/function_names_cache.ts +37 -0
- package/src/store/l2_tips_cache.ts +16 -70
- package/src/store/log_store.ts +298 -609
- package/src/store/log_store_codec.ts +143 -0
- package/src/store/message_store.ts +59 -9
- package/src/structs/inbox_message.ts +1 -1
- package/src/test/fake_l1_state.ts +99 -32
- package/src/test/mock_l2_block_source.ts +285 -232
- package/src/test/mock_structs.ts +5 -2
- package/src/test/noop_l1_archiver.ts +54 -11
- package/dest/store/kv_archiver_store.d.ts +0 -362
- package/dest/store/kv_archiver_store.d.ts.map +0 -1
- package/dest/store/kv_archiver_store.js +0 -475
- package/src/store/kv_archiver_store.ts +0 -685
|
@@ -1,33 +1,27 @@
|
|
|
1
1
|
import { BlockNumber, CheckpointNumber } from '@aztec/foundation/branded-types';
|
|
2
2
|
import { filterAsync } from '@aztec/foundation/collection';
|
|
3
|
-
import { Fr } from '@aztec/foundation/curves/bn254';
|
|
4
3
|
import { createLogger } from '@aztec/foundation/log';
|
|
5
|
-
import {
|
|
6
|
-
ContractClassPublishedEvent,
|
|
7
|
-
PrivateFunctionBroadcastedEvent,
|
|
8
|
-
UtilityFunctionBroadcastedEvent,
|
|
9
|
-
} from '@aztec/protocol-contracts/class-registry';
|
|
4
|
+
import { ContractClassPublishedEvent } from '@aztec/protocol-contracts/class-registry';
|
|
10
5
|
import {
|
|
11
6
|
ContractInstancePublishedEvent,
|
|
12
7
|
ContractInstanceUpdatedEvent,
|
|
13
8
|
} from '@aztec/protocol-contracts/instance-registry';
|
|
14
|
-
import type { L2Block, ValidateCheckpointResult } from '@aztec/stdlib/block';
|
|
15
|
-
import {
|
|
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';
|
|
16
16
|
import {
|
|
17
17
|
type ContractClassPublicWithCommitment,
|
|
18
|
-
type ExecutablePrivateFunctionWithMembershipProof,
|
|
19
|
-
type UtilityFunctionWithMembershipProof,
|
|
20
18
|
computeContractAddressFromInstance,
|
|
21
19
|
computeContractClassId,
|
|
22
|
-
isValidPrivateFunctionMembershipProof,
|
|
23
|
-
isValidUtilityFunctionMembershipProof,
|
|
24
20
|
} from '@aztec/stdlib/contract';
|
|
25
21
|
import type { ContractClassLog, PrivateLog, PublicLog } from '@aztec/stdlib/logs';
|
|
26
22
|
import type { UInt64 } from '@aztec/stdlib/types';
|
|
27
23
|
|
|
28
|
-
import
|
|
29
|
-
|
|
30
|
-
import type { KVArchiverDataStore } from '../store/kv_archiver_store.js';
|
|
24
|
+
import type { ArchiverDataStores } from '../store/data_stores.js';
|
|
31
25
|
import type { L2TipsCache } from '../store/l2_tips_cache.js';
|
|
32
26
|
|
|
33
27
|
/** Operation type for contract data updates. */
|
|
@@ -49,7 +43,7 @@ export class ArchiverDataStoreUpdater {
|
|
|
49
43
|
private readonly log = createLogger('archiver:store_updater');
|
|
50
44
|
|
|
51
45
|
constructor(
|
|
52
|
-
private
|
|
46
|
+
private stores: ArchiverDataStores,
|
|
53
47
|
private l2TipsCache?: L2TipsCache,
|
|
54
48
|
private opts: { rollupManaLimit?: number } = {},
|
|
55
49
|
) {}
|
|
@@ -57,8 +51,7 @@ export class ArchiverDataStoreUpdater {
|
|
|
57
51
|
/**
|
|
58
52
|
* Adds a proposed block to the store with contract class/instance extraction from logs.
|
|
59
53
|
* This is an uncheckpointed block that has been proposed by the sequencer but not yet included in a checkpoint on L1.
|
|
60
|
-
* Extracts ContractClassPublished, ContractInstancePublished, ContractInstanceUpdated events
|
|
61
|
-
* and individually broadcasted functions from the block logs.
|
|
54
|
+
* Extracts ContractClassPublished, ContractInstancePublished, ContractInstanceUpdated events from the block logs.
|
|
62
55
|
*
|
|
63
56
|
* @param block - The proposed L2 block to add.
|
|
64
57
|
* @param pendingChainValidationStatus - Optional validation status to set.
|
|
@@ -68,21 +61,22 @@ export class ArchiverDataStoreUpdater {
|
|
|
68
61
|
block: L2Block,
|
|
69
62
|
pendingChainValidationStatus?: ValidateCheckpointResult,
|
|
70
63
|
): Promise<boolean> {
|
|
71
|
-
const result = await this.
|
|
72
|
-
await this.
|
|
64
|
+
const result = await this.stores.db.transactionAsync(async () => {
|
|
65
|
+
await this.stores.blocks.addProposedBlock(block);
|
|
73
66
|
|
|
74
67
|
const opResults = await Promise.all([
|
|
75
68
|
// Update the pending chain validation status if provided
|
|
76
|
-
pendingChainValidationStatus &&
|
|
69
|
+
pendingChainValidationStatus &&
|
|
70
|
+
this.stores.blocks.setPendingChainValidationStatus(pendingChainValidationStatus),
|
|
77
71
|
// Add any logs emitted during the retrieved block
|
|
78
|
-
this.
|
|
72
|
+
this.stores.logs.addLogs([block]),
|
|
79
73
|
// Unroll all logs emitted during the retrieved block and extract any contract classes and instances from it
|
|
80
74
|
this.addContractDataToDb(block),
|
|
81
75
|
]);
|
|
82
76
|
|
|
83
|
-
await this.l2TipsCache?.refresh();
|
|
84
77
|
return opResults.every(Boolean);
|
|
85
78
|
});
|
|
79
|
+
await this.l2TipsCache?.refresh();
|
|
86
80
|
return result;
|
|
87
81
|
}
|
|
88
82
|
|
|
@@ -90,57 +84,99 @@ export class ArchiverDataStoreUpdater {
|
|
|
90
84
|
* Reconciles local blocks with incoming checkpoints from L1.
|
|
91
85
|
* Adds new checkpoints to the store with contract class/instance extraction from logs.
|
|
92
86
|
* Prunes any local blocks that conflict with checkpoint data (by comparing archive roots).
|
|
93
|
-
* Extracts ContractClassPublished, ContractInstancePublished, ContractInstanceUpdated events
|
|
94
|
-
*
|
|
87
|
+
* Extracts ContractClassPublished, ContractInstancePublished, ContractInstanceUpdated events from the checkpoint block logs.
|
|
88
|
+
* If `promoteProposed` is supplied, the proposed-checkpoint promotion runs inside the same transaction
|
|
89
|
+
* as the added checkpoints so both updates are applied atomically.
|
|
95
90
|
*
|
|
96
|
-
* @param checkpoints - The published checkpoints to add.
|
|
91
|
+
* @param checkpoints - The published checkpoints to add (excluding any being promoted from proposed).
|
|
97
92
|
* @param pendingChainValidationStatus - Optional validation status to set.
|
|
93
|
+
* @param promoteProposed - Optional promotion of the current proposed checkpoint (fast path when blocks are already local).
|
|
98
94
|
* @returns Result with information about any pruned blocks.
|
|
99
95
|
*/
|
|
100
96
|
public async addCheckpoints(
|
|
101
97
|
checkpoints: PublishedCheckpoint[],
|
|
102
98
|
pendingChainValidationStatus?: ValidateCheckpointResult,
|
|
99
|
+
promoteProposed?: {
|
|
100
|
+
l1: L1PublishedData;
|
|
101
|
+
attestations: CommitteeAttestation[];
|
|
102
|
+
checkpoint: PublishedCheckpoint;
|
|
103
|
+
},
|
|
104
|
+
evictProposedFrom?: CheckpointNumber,
|
|
103
105
|
): Promise<ReconcileCheckpointsResult> {
|
|
104
106
|
for (const checkpoint of checkpoints) {
|
|
105
107
|
validateCheckpoint(checkpoint.checkpoint, { rollupManaLimit: this.opts?.rollupManaLimit });
|
|
106
108
|
}
|
|
109
|
+
if (promoteProposed) {
|
|
110
|
+
validateCheckpoint(promoteProposed.checkpoint.checkpoint, { rollupManaLimit: this.opts?.rollupManaLimit });
|
|
111
|
+
}
|
|
107
112
|
|
|
108
|
-
const result = await this.
|
|
113
|
+
const result = await this.stores.db.transactionAsync(async () => {
|
|
109
114
|
// Before adding checkpoints, check for conflicts with local blocks if any
|
|
110
115
|
const { prunedBlocks, lastAlreadyInsertedBlockNumber } = await this.pruneMismatchingLocalBlocks(checkpoints);
|
|
111
116
|
|
|
112
|
-
await this.
|
|
117
|
+
const insertedCheckpoints = await this.stores.blocks.addCheckpoints(checkpoints);
|
|
113
118
|
|
|
114
|
-
//
|
|
115
|
-
|
|
119
|
+
// Skip blocks already inserted via addProposedBlock() and blocks of already-stored checkpoints
|
|
120
|
+
// re-included by an L1 reorg: their logs/contract data were extracted when first inserted.
|
|
121
|
+
const newBlocks = insertedCheckpoints
|
|
116
122
|
.flatMap((ch: PublishedCheckpoint) => ch.checkpoint.blocks)
|
|
117
123
|
.filter(b => lastAlreadyInsertedBlockNumber === undefined || b.number > lastAlreadyInsertedBlockNumber);
|
|
118
124
|
|
|
119
125
|
await Promise.all([
|
|
120
126
|
// Update the pending chain validation status if provided
|
|
121
|
-
pendingChainValidationStatus &&
|
|
127
|
+
pendingChainValidationStatus &&
|
|
128
|
+
this.stores.blocks.setPendingChainValidationStatus(pendingChainValidationStatus),
|
|
122
129
|
// Add any logs emitted during the retrieved blocks
|
|
123
|
-
this.
|
|
130
|
+
this.stores.logs.addLogs(newBlocks),
|
|
124
131
|
// Unroll all logs emitted during the retrieved blocks and extract any contract classes and instances from them
|
|
125
132
|
...newBlocks.map(block => this.addContractDataToDb(block)),
|
|
133
|
+
// Promote the proposed checkpoint if requested (uses explicit checkpoint number)
|
|
134
|
+
promoteProposed
|
|
135
|
+
? this.stores.blocks.promoteProposedToCheckpointed(
|
|
136
|
+
promoteProposed.checkpoint.checkpoint.number,
|
|
137
|
+
promoteProposed.l1,
|
|
138
|
+
promoteProposed.attestations,
|
|
139
|
+
promoteProposed.checkpoint.checkpoint.archive.root,
|
|
140
|
+
)
|
|
141
|
+
: undefined,
|
|
142
|
+
// Evict pending checkpoints that diverged from what L1 mined
|
|
143
|
+
evictProposedFrom !== undefined
|
|
144
|
+
? this.stores.blocks.evictProposedCheckpointsFrom(evictProposedFrom)
|
|
145
|
+
: undefined,
|
|
126
146
|
]);
|
|
127
147
|
|
|
128
|
-
await this.l2TipsCache?.refresh();
|
|
129
148
|
return { prunedBlocks, lastAlreadyInsertedBlockNumber };
|
|
130
149
|
});
|
|
150
|
+
await this.l2TipsCache?.refresh();
|
|
151
|
+
return result;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
public async addProposedCheckpoint(proposedCheckpoint: ProposedCheckpointInput) {
|
|
155
|
+
const result = await this.stores.db.transactionAsync(async () => {
|
|
156
|
+
await this.stores.blocks.addProposedCheckpoint(proposedCheckpoint);
|
|
157
|
+
});
|
|
158
|
+
await this.l2TipsCache?.refresh();
|
|
131
159
|
return result;
|
|
132
160
|
}
|
|
133
161
|
|
|
134
162
|
/**
|
|
135
163
|
* Checks for local proposed blocks that do not match the ones to be checkpointed and prunes them.
|
|
136
|
-
*
|
|
137
|
-
*
|
|
138
|
-
*
|
|
164
|
+
* Conflict detection is keyed on `blockNumber`: when a local proposed block and an L1
|
|
165
|
+
* checkpointed block share a block number but live at different slots (e.g. a different proposer
|
|
166
|
+
* mined the same block number one slot earlier), we still treat them as a conflict and prune.
|
|
167
|
+
* The trailing per-checkpoint prune that handles "local has extra trailing blocks within the
|
|
168
|
+
* same slot as the published checkpoint" remains scoped by slot to preserve pipelining: local
|
|
169
|
+
* blocks that live at a later slot than the checkpoint being processed represent speculation
|
|
170
|
+
* atop the just-confirmed tip (and may be referenced by a pending proposed checkpoint), so we
|
|
171
|
+
* leave them in place. This method handles multiple checkpoints but returns after pruning the
|
|
172
|
+
* first conflict found. This is correct because pruning from the first conflict point removes
|
|
173
|
+
* all subsequent blocks, and when checkpoints are added afterward, they include all the correct
|
|
174
|
+
* blocks.
|
|
139
175
|
*/
|
|
140
176
|
private async pruneMismatchingLocalBlocks(checkpoints: PublishedCheckpoint[]): Promise<ReconcileCheckpointsResult> {
|
|
141
177
|
const [lastCheckpointedBlockNumber, lastBlockNumber] = await Promise.all([
|
|
142
|
-
this.
|
|
143
|
-
this.
|
|
178
|
+
this.stores.blocks.getCheckpointedL2BlockNumber(),
|
|
179
|
+
this.stores.blocks.getLatestL2BlockNumber(),
|
|
144
180
|
]);
|
|
145
181
|
|
|
146
182
|
// Exit early if there are no local uncheckpointed blocks
|
|
@@ -149,29 +185,29 @@ export class ArchiverDataStoreUpdater {
|
|
|
149
185
|
}
|
|
150
186
|
|
|
151
187
|
// Get all uncheckpointed local blocks
|
|
152
|
-
const uncheckpointedLocalBlocks = await this.
|
|
153
|
-
BlockNumber.add(lastCheckpointedBlockNumber, 1),
|
|
154
|
-
lastBlockNumber - lastCheckpointedBlockNumber,
|
|
155
|
-
);
|
|
188
|
+
const uncheckpointedLocalBlocks = await this.stores.blocks.getBlocksData({
|
|
189
|
+
from: BlockNumber.add(lastCheckpointedBlockNumber, 1),
|
|
190
|
+
limit: lastBlockNumber - lastCheckpointedBlockNumber,
|
|
191
|
+
});
|
|
156
192
|
|
|
157
193
|
let lastAlreadyInsertedBlockNumber: BlockNumber | undefined;
|
|
158
194
|
|
|
159
195
|
for (const publishedCheckpoint of checkpoints) {
|
|
160
196
|
const checkpointBlocks = publishedCheckpoint.checkpoint.blocks;
|
|
161
197
|
const slot = publishedCheckpoint.checkpoint.slot;
|
|
162
|
-
const localBlocksInSlot = uncheckpointedLocalBlocks.filter(b => b.slot === slot);
|
|
163
198
|
|
|
164
199
|
if (checkpointBlocks.length === 0) {
|
|
165
200
|
this.log.warn(`Checkpoint ${publishedCheckpoint.checkpoint.number} for slot ${slot} has no blocks`);
|
|
166
201
|
continue;
|
|
167
202
|
}
|
|
168
203
|
|
|
169
|
-
// Find the first checkpoint block that conflicts with an existing local block and prune local afterwards
|
|
204
|
+
// Find the first checkpoint block that conflicts with an existing local block and prune local afterwards.
|
|
205
|
+
// Conflict detection joins on block number only — same block number at a different slot is still a conflict.
|
|
170
206
|
for (const checkpointBlock of checkpointBlocks) {
|
|
171
207
|
const blockNumber = checkpointBlock.number;
|
|
172
|
-
const existingBlock =
|
|
208
|
+
const existingBlock = uncheckpointedLocalBlocks.find(b => b.header.getBlockNumber() === blockNumber);
|
|
173
209
|
const blockInfos = {
|
|
174
|
-
existingBlock: existingBlock?.
|
|
210
|
+
existingBlock: existingBlock?.header.toInspect(),
|
|
175
211
|
checkpointBlock: checkpointBlock.toBlockInfo(),
|
|
176
212
|
};
|
|
177
213
|
|
|
@@ -183,20 +219,24 @@ export class ArchiverDataStoreUpdater {
|
|
|
183
219
|
} else {
|
|
184
220
|
this.log.info(`Conflict detected at block ${blockNumber} between checkpointed and local block`, blockInfos);
|
|
185
221
|
const prunedBlocks = await this.removeBlocksAfter(BlockNumber(blockNumber - 1));
|
|
222
|
+
await this.evictProposedCheckpointsForPrunedBlocks(prunedBlocks);
|
|
186
223
|
return { prunedBlocks, lastAlreadyInsertedBlockNumber };
|
|
187
224
|
}
|
|
188
225
|
}
|
|
189
226
|
|
|
190
|
-
// If
|
|
191
|
-
//
|
|
227
|
+
// If the sequencer locally proposed extra blocks within this checkpoint's slot (e.g. local has
|
|
228
|
+
// [N, N+1] but L1 confirmed just [N]), prune the extras. Scoped to the checkpoint's slot so we
|
|
229
|
+
// do not throw away speculative blocks at later slots that belong to a pending proposed checkpoint.
|
|
192
230
|
const lastCheckpointBlockNumber = checkpointBlocks.at(-1)!.number;
|
|
193
|
-
const
|
|
231
|
+
const localBlocksInSlot = uncheckpointedLocalBlocks.filter(b => b.header.getSlot() === slot);
|
|
232
|
+
const lastLocalBlockNumber = localBlocksInSlot.at(-1)?.header.getBlockNumber();
|
|
194
233
|
|
|
195
234
|
if (lastLocalBlockNumber !== undefined && lastLocalBlockNumber > lastCheckpointBlockNumber) {
|
|
196
235
|
this.log.warn(
|
|
197
236
|
`Local chain for slot ${slot} ends at block ${lastLocalBlockNumber} but checkpoint ends at ${lastCheckpointBlockNumber}. Pruning blocks after block ${lastCheckpointBlockNumber}.`,
|
|
198
237
|
);
|
|
199
238
|
const prunedBlocks = await this.removeBlocksAfter(lastCheckpointBlockNumber);
|
|
239
|
+
await this.evictProposedCheckpointsForPrunedBlocks(prunedBlocks);
|
|
200
240
|
return { prunedBlocks, lastAlreadyInsertedBlockNumber };
|
|
201
241
|
}
|
|
202
242
|
}
|
|
@@ -214,33 +254,74 @@ export class ArchiverDataStoreUpdater {
|
|
|
214
254
|
* @throws Error if any block to be removed is checkpointed.
|
|
215
255
|
*/
|
|
216
256
|
public async removeUncheckpointedBlocksAfter(blockNumber: BlockNumber): Promise<L2Block[]> {
|
|
217
|
-
const result = await this.
|
|
257
|
+
const result = await this.stores.db.transactionAsync(async () => {
|
|
218
258
|
// Verify we're only removing uncheckpointed blocks
|
|
219
|
-
const lastCheckpointedBlockNumber = await this.
|
|
259
|
+
const lastCheckpointedBlockNumber = await this.stores.blocks.getCheckpointedL2BlockNumber();
|
|
220
260
|
if (blockNumber < lastCheckpointedBlockNumber) {
|
|
221
261
|
throw new Error(
|
|
222
262
|
`Cannot remove blocks after ${blockNumber} because checkpointed blocks exist up to ${lastCheckpointedBlockNumber}`,
|
|
223
263
|
);
|
|
224
264
|
}
|
|
225
265
|
|
|
226
|
-
const
|
|
227
|
-
await this.
|
|
228
|
-
|
|
266
|
+
const prunedBlocks = await this.removeBlocksAfter(blockNumber);
|
|
267
|
+
await this.evictProposedCheckpointsForPrunedBlocks(prunedBlocks);
|
|
268
|
+
|
|
269
|
+
return prunedBlocks;
|
|
270
|
+
});
|
|
271
|
+
await this.l2TipsCache?.refresh();
|
|
272
|
+
return result;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
/**
|
|
276
|
+
* Removes all blocks without a proposed checkpoint strictly after the specified block number and cleans up associated contract data.
|
|
277
|
+
* This handles removal of provisionally added blocks along with their contract classes/instances.
|
|
278
|
+
* Verifies that each block being removed is not part of a stored checkpoint (proposed or not).
|
|
279
|
+
* This differs from `removeUncheckpointedBlocksAfter` in that it also checks proposed checkpoints.
|
|
280
|
+
*
|
|
281
|
+
* @param blockNumber - Remove all blocks with number greater than this.
|
|
282
|
+
* @returns The removed blocks.
|
|
283
|
+
* @throws Error if any block to be removed is checkpointed.
|
|
284
|
+
*/
|
|
285
|
+
public async removeBlocksWithoutProposedCheckpointAfter(blockNumber: BlockNumber): Promise<L2Block[]> {
|
|
286
|
+
const result = await this.stores.db.transactionAsync(async () => {
|
|
287
|
+
// Verify we're only removing uncheckpointed blocks
|
|
288
|
+
const lastCheckpointedBlockNumber = await this.stores.blocks.getProposedCheckpointL2BlockNumber();
|
|
289
|
+
if (blockNumber < lastCheckpointedBlockNumber) {
|
|
290
|
+
throw new Error(
|
|
291
|
+
`Cannot remove blocks after ${blockNumber} because proposed checkpointed blocks exist up to ${lastCheckpointedBlockNumber}`,
|
|
292
|
+
);
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
return await this.removeBlocksAfter(blockNumber);
|
|
229
296
|
});
|
|
297
|
+
await this.l2TipsCache?.refresh();
|
|
230
298
|
return result;
|
|
231
299
|
}
|
|
232
300
|
|
|
301
|
+
/**
|
|
302
|
+
* Evicts pending proposed checkpoints that referenced any of the just-pruned blocks. Pruned
|
|
303
|
+
* blocks invalidate all proposed checkpoints from the lowest pruned block's checkpoint number
|
|
304
|
+
* onwards: those checkpoints either reference the pruned blocks directly or chain off them.
|
|
305
|
+
*/
|
|
306
|
+
private async evictProposedCheckpointsForPrunedBlocks(prunedBlocks: L2Block[]): Promise<void> {
|
|
307
|
+
if (prunedBlocks.length === 0) {
|
|
308
|
+
return;
|
|
309
|
+
}
|
|
310
|
+
const fromCheckpointNumber = prunedBlocks[0].checkpointNumber;
|
|
311
|
+
await this.stores.blocks.evictProposedCheckpointsFrom(fromCheckpointNumber);
|
|
312
|
+
}
|
|
313
|
+
|
|
233
314
|
/**
|
|
234
315
|
* Removes all blocks strictly after the given block number along with any logs and contract data.
|
|
235
316
|
* Does not remove their checkpoints.
|
|
236
317
|
*/
|
|
237
318
|
private async removeBlocksAfter(blockNumber: BlockNumber): Promise<L2Block[]> {
|
|
238
319
|
// First get the blocks to be removed so we can clean up contract data
|
|
239
|
-
const removedBlocks = await this.
|
|
320
|
+
const removedBlocks = await this.stores.blocks.removeBlocksAfter(blockNumber);
|
|
240
321
|
|
|
241
322
|
// Clean up contract data and logs for the removed blocks
|
|
242
323
|
await Promise.all([
|
|
243
|
-
this.
|
|
324
|
+
this.stores.logs.deleteLogs(removedBlocks),
|
|
244
325
|
...removedBlocks.map(block => this.removeContractDataFromDb(block)),
|
|
245
326
|
]);
|
|
246
327
|
|
|
@@ -257,20 +338,21 @@ export class ArchiverDataStoreUpdater {
|
|
|
257
338
|
* @returns True if the operation is successful.
|
|
258
339
|
*/
|
|
259
340
|
public async removeCheckpointsAfter(checkpointNumber: CheckpointNumber): Promise<boolean> {
|
|
260
|
-
|
|
261
|
-
const { blocksRemoved = [] } = await this.
|
|
341
|
+
const result = await this.stores.db.transactionAsync(async () => {
|
|
342
|
+
const { blocksRemoved = [] } = await this.stores.blocks.removeCheckpointsAfter(checkpointNumber);
|
|
262
343
|
|
|
263
344
|
const opResults = await Promise.all([
|
|
264
345
|
// Prune rolls back to the last proven block, which is by definition valid
|
|
265
|
-
this.
|
|
346
|
+
this.stores.blocks.setPendingChainValidationStatus({ valid: true }),
|
|
266
347
|
// Remove contract data for all blocks being removed
|
|
267
348
|
...blocksRemoved.map(block => this.removeContractDataFromDb(block)),
|
|
268
|
-
this.
|
|
349
|
+
this.stores.logs.deleteLogs(blocksRemoved),
|
|
269
350
|
]);
|
|
270
351
|
|
|
271
|
-
await this.l2TipsCache?.refresh();
|
|
272
352
|
return opResults.every(Boolean);
|
|
273
353
|
});
|
|
354
|
+
await this.l2TipsCache?.refresh();
|
|
355
|
+
return result;
|
|
274
356
|
}
|
|
275
357
|
|
|
276
358
|
/**
|
|
@@ -278,10 +360,10 @@ export class ArchiverDataStoreUpdater {
|
|
|
278
360
|
* @param checkpointNumber - The checkpoint number to set as proven.
|
|
279
361
|
*/
|
|
280
362
|
public async setProvenCheckpointNumber(checkpointNumber: CheckpointNumber): Promise<void> {
|
|
281
|
-
await this.
|
|
282
|
-
await this.
|
|
283
|
-
await this.l2TipsCache?.refresh();
|
|
363
|
+
await this.stores.db.transactionAsync(async () => {
|
|
364
|
+
await this.stores.blocks.setProvenCheckpointNumber(checkpointNumber);
|
|
284
365
|
});
|
|
366
|
+
await this.l2TipsCache?.refresh();
|
|
285
367
|
}
|
|
286
368
|
|
|
287
369
|
/**
|
|
@@ -289,10 +371,10 @@ export class ArchiverDataStoreUpdater {
|
|
|
289
371
|
* @param checkpointNumber - The checkpoint number to set as finalized.
|
|
290
372
|
*/
|
|
291
373
|
public async setFinalizedCheckpointNumber(checkpointNumber: CheckpointNumber): Promise<void> {
|
|
292
|
-
await this.
|
|
293
|
-
await this.
|
|
294
|
-
await this.l2TipsCache?.refresh();
|
|
374
|
+
await this.stores.db.transactionAsync(async () => {
|
|
375
|
+
await this.stores.blocks.setFinalizedCheckpointNumber(checkpointNumber);
|
|
295
376
|
});
|
|
377
|
+
await this.l2TipsCache?.refresh();
|
|
296
378
|
}
|
|
297
379
|
|
|
298
380
|
/** Extracts and stores contract data from a single block. */
|
|
@@ -316,9 +398,6 @@ export class ArchiverDataStoreUpdater {
|
|
|
316
398
|
this.updatePublishedContractClasses(contractClassLogs, block.number, operation),
|
|
317
399
|
this.updateDeployedContractInstances(privateLogs, block.number, operation),
|
|
318
400
|
this.updateUpdatedContractInstances(publicLogs, block.header.globalVariables.timestamp, operation),
|
|
319
|
-
operation === Operation.Store
|
|
320
|
-
? this.storeBroadcastedIndividualFunctions(contractClassLogs, block.number)
|
|
321
|
-
: Promise.resolve(true),
|
|
322
401
|
])
|
|
323
402
|
).every(Boolean);
|
|
324
403
|
}
|
|
@@ -339,7 +418,7 @@ export class ArchiverDataStoreUpdater {
|
|
|
339
418
|
const contractClasses = contractClassPublishedEvents.map(e => e.toContractClassPublic());
|
|
340
419
|
if (contractClasses.length > 0) {
|
|
341
420
|
contractClasses.forEach(c => this.log.verbose(`${Operation[operation]} contract class ${c.id.toString()}`));
|
|
342
|
-
return await this.
|
|
421
|
+
return await this.stores.contractClasses.deleteContractClasses(contractClasses, blockNum);
|
|
343
422
|
}
|
|
344
423
|
return true;
|
|
345
424
|
}
|
|
@@ -365,7 +444,7 @@ export class ArchiverDataStoreUpdater {
|
|
|
365
444
|
|
|
366
445
|
if (contractClasses.length > 0) {
|
|
367
446
|
contractClasses.forEach(c => this.log.verbose(`${Operation[operation]} contract class ${c.id.toString()}`));
|
|
368
|
-
return await this.
|
|
447
|
+
return await this.stores.contractClasses.addContractClasses(contractClasses, blockNum);
|
|
369
448
|
}
|
|
370
449
|
return true;
|
|
371
450
|
}
|
|
@@ -404,9 +483,9 @@ export class ArchiverDataStoreUpdater {
|
|
|
404
483
|
this.log.verbose(`${Operation[operation]} contract instance at ${c.address.toString()}`),
|
|
405
484
|
);
|
|
406
485
|
if (operation == Operation.Store) {
|
|
407
|
-
return await this.
|
|
486
|
+
return await this.stores.contractInstances.addContractInstances(contractInstances, blockNum);
|
|
408
487
|
} else if (operation == Operation.Delete) {
|
|
409
|
-
return await this.
|
|
488
|
+
return await this.stores.contractInstances.deleteContractInstances(contractInstances);
|
|
410
489
|
}
|
|
411
490
|
}
|
|
412
491
|
return true;
|
|
@@ -430,73 +509,10 @@ export class ArchiverDataStoreUpdater {
|
|
|
430
509
|
this.log.verbose(`${Operation[operation]} contract instance update at ${c.address.toString()}`),
|
|
431
510
|
);
|
|
432
511
|
if (operation == Operation.Store) {
|
|
433
|
-
return await this.
|
|
512
|
+
return await this.stores.contractInstances.addContractInstanceUpdates(contractUpdates, timestamp);
|
|
434
513
|
} else if (operation == Operation.Delete) {
|
|
435
|
-
return await this.
|
|
436
|
-
}
|
|
437
|
-
}
|
|
438
|
-
return true;
|
|
439
|
-
}
|
|
440
|
-
|
|
441
|
-
/**
|
|
442
|
-
* Stores the functions that were broadcasted individually.
|
|
443
|
-
*
|
|
444
|
-
* @dev Beware that there is not a delete variant of this, since they are added to contract classes
|
|
445
|
-
* and will be deleted as part of the class if needed.
|
|
446
|
-
*/
|
|
447
|
-
private async storeBroadcastedIndividualFunctions(
|
|
448
|
-
allLogs: ContractClassLog[],
|
|
449
|
-
_blockNum: BlockNumber,
|
|
450
|
-
): Promise<boolean> {
|
|
451
|
-
// Filter out private and utility function broadcast events
|
|
452
|
-
const privateFnEvents = allLogs
|
|
453
|
-
.filter(log => PrivateFunctionBroadcastedEvent.isPrivateFunctionBroadcastedEvent(log))
|
|
454
|
-
.map(log => PrivateFunctionBroadcastedEvent.fromLog(log));
|
|
455
|
-
const utilityFnEvents = allLogs
|
|
456
|
-
.filter(log => UtilityFunctionBroadcastedEvent.isUtilityFunctionBroadcastedEvent(log))
|
|
457
|
-
.map(log => UtilityFunctionBroadcastedEvent.fromLog(log));
|
|
458
|
-
|
|
459
|
-
// Group all events by contract class id
|
|
460
|
-
for (const [classIdString, classEvents] of Object.entries(
|
|
461
|
-
groupBy([...privateFnEvents, ...utilityFnEvents], e => e.contractClassId.toString()),
|
|
462
|
-
)) {
|
|
463
|
-
const contractClassId = Fr.fromHexString(classIdString);
|
|
464
|
-
const contractClass = await this.store.getContractClass(contractClassId);
|
|
465
|
-
if (!contractClass) {
|
|
466
|
-
this.log.warn(`Skipping broadcasted functions as contract class ${contractClassId.toString()} was not found`);
|
|
467
|
-
continue;
|
|
468
|
-
}
|
|
469
|
-
|
|
470
|
-
// Split private and utility functions, and filter out invalid ones
|
|
471
|
-
const allFns = classEvents.map(e => e.toFunctionWithMembershipProof());
|
|
472
|
-
const privateFns = allFns.filter(
|
|
473
|
-
(fn): fn is ExecutablePrivateFunctionWithMembershipProof => 'utilityFunctionsTreeRoot' in fn,
|
|
474
|
-
);
|
|
475
|
-
const utilityFns = allFns.filter(
|
|
476
|
-
(fn): fn is UtilityFunctionWithMembershipProof => 'privateFunctionsArtifactTreeRoot' in fn,
|
|
477
|
-
);
|
|
478
|
-
|
|
479
|
-
const privateFunctionsWithValidity = await Promise.all(
|
|
480
|
-
privateFns.map(async fn => ({ fn, valid: await isValidPrivateFunctionMembershipProof(fn, contractClass) })),
|
|
481
|
-
);
|
|
482
|
-
const validPrivateFns = privateFunctionsWithValidity.filter(({ valid }) => valid).map(({ fn }) => fn);
|
|
483
|
-
const utilityFunctionsWithValidity = await Promise.all(
|
|
484
|
-
utilityFns.map(async fn => ({
|
|
485
|
-
fn,
|
|
486
|
-
valid: await isValidUtilityFunctionMembershipProof(fn, contractClass),
|
|
487
|
-
})),
|
|
488
|
-
);
|
|
489
|
-
const validUtilityFns = utilityFunctionsWithValidity.filter(({ valid }) => valid).map(({ fn }) => fn);
|
|
490
|
-
const validFnCount = validPrivateFns.length + validUtilityFns.length;
|
|
491
|
-
if (validFnCount !== allFns.length) {
|
|
492
|
-
this.log.warn(`Skipping ${allFns.length - validFnCount} invalid functions`);
|
|
493
|
-
}
|
|
494
|
-
|
|
495
|
-
// Store the functions in the contract class in a single operation
|
|
496
|
-
if (validFnCount > 0) {
|
|
497
|
-
this.log.verbose(`Storing ${validFnCount} functions for contract class ${contractClassId.toString()}`);
|
|
514
|
+
return await this.stores.contractInstances.deleteContractInstanceUpdates(contractUpdates, timestamp);
|
|
498
515
|
}
|
|
499
|
-
await this.store.addFunctions(contractClassId, validPrivateFns, validUtilityFns);
|
|
500
516
|
}
|
|
501
517
|
return true;
|
|
502
518
|
}
|
|
@@ -1,6 +1,9 @@
|
|
|
1
|
+
import type { SlotNumber } from '@aztec/foundation/branded-types';
|
|
1
2
|
import { createLogger } from '@aztec/foundation/log';
|
|
2
3
|
import type { L2Block } from '@aztec/stdlib/block';
|
|
3
4
|
import type { CheckpointData } from '@aztec/stdlib/checkpoint';
|
|
5
|
+
import type { L1RollupConstants } from '@aztec/stdlib/epoch-helpers';
|
|
6
|
+
import { getTimestampForSlot } from '@aztec/stdlib/epoch-helpers';
|
|
4
7
|
import {
|
|
5
8
|
Attributes,
|
|
6
9
|
type Gauge,
|
|
@@ -29,6 +32,7 @@ export class ArchiverInstrumentation {
|
|
|
29
32
|
private pruneCount: UpDownCounter;
|
|
30
33
|
|
|
31
34
|
private syncDurationPerBlock: Histogram;
|
|
35
|
+
private syncDurationPerCheckpoint: Histogram;
|
|
32
36
|
private syncBlockCount: UpDownCounter;
|
|
33
37
|
private manaPerBlock: Histogram;
|
|
34
38
|
private txsPerBlock: Histogram;
|
|
@@ -38,6 +42,9 @@ export class ArchiverInstrumentation {
|
|
|
38
42
|
|
|
39
43
|
private blockProposalTxTargetCount: UpDownCounter;
|
|
40
44
|
|
|
45
|
+
private checkpointL1InclusionDelay: Histogram;
|
|
46
|
+
private checkpointPromotedCount: UpDownCounter;
|
|
47
|
+
|
|
41
48
|
private log = createLogger('archiver:instrumentation');
|
|
42
49
|
|
|
43
50
|
private constructor(
|
|
@@ -63,6 +70,8 @@ export class ArchiverInstrumentation {
|
|
|
63
70
|
|
|
64
71
|
this.syncDurationPerBlock = meter.createHistogram(Metrics.ARCHIVER_SYNC_PER_BLOCK);
|
|
65
72
|
|
|
73
|
+
this.syncDurationPerCheckpoint = meter.createHistogram(Metrics.ARCHIVER_SYNC_PER_CHECKPOINT);
|
|
74
|
+
|
|
66
75
|
this.syncBlockCount = createUpDownCounterWithDefault(meter, Metrics.ARCHIVER_SYNC_BLOCK_COUNT);
|
|
67
76
|
|
|
68
77
|
this.manaPerBlock = meter.createHistogram(Metrics.ARCHIVER_MANA_PER_BLOCK);
|
|
@@ -75,7 +84,9 @@ export class ArchiverInstrumentation {
|
|
|
75
84
|
|
|
76
85
|
this.pruneDuration = meter.createHistogram(Metrics.ARCHIVER_PRUNE_DURATION);
|
|
77
86
|
|
|
78
|
-
this.pruneCount = createUpDownCounterWithDefault(meter, Metrics.ARCHIVER_PRUNE_COUNT
|
|
87
|
+
this.pruneCount = createUpDownCounterWithDefault(meter, Metrics.ARCHIVER_PRUNE_COUNT, {
|
|
88
|
+
[Attributes.PRUNE_TYPE]: ['unproven', 'uncheckpointed', 'l1_conflict', 'orphan', 'l1_mismatch'],
|
|
89
|
+
});
|
|
79
90
|
|
|
80
91
|
this.blockProposalTxTargetCount = createUpDownCounterWithDefault(
|
|
81
92
|
meter,
|
|
@@ -85,6 +96,10 @@ export class ArchiverInstrumentation {
|
|
|
85
96
|
},
|
|
86
97
|
);
|
|
87
98
|
|
|
99
|
+
this.checkpointL1InclusionDelay = meter.createHistogram(Metrics.ARCHIVER_CHECKPOINT_L1_INCLUSION_DELAY);
|
|
100
|
+
|
|
101
|
+
this.checkpointPromotedCount = createUpDownCounterWithDefault(meter, Metrics.ARCHIVER_CHECKPOINT_PROMOTED_COUNT);
|
|
102
|
+
|
|
88
103
|
this.dbMetrics = new LmdbMetrics(
|
|
89
104
|
meter,
|
|
90
105
|
{
|
|
@@ -106,17 +121,26 @@ export class ArchiverInstrumentation {
|
|
|
106
121
|
return this.telemetry.isEnabled();
|
|
107
122
|
}
|
|
108
123
|
|
|
109
|
-
public
|
|
124
|
+
public processNewProposedBlock(syncTimePerBlock: number, block: L2Block) {
|
|
125
|
+
const attrs = { [Attributes.STATUS]: 'proposed' };
|
|
126
|
+
this.blockHeight.record(block.number, attrs);
|
|
110
127
|
this.syncDurationPerBlock.record(Math.ceil(syncTimePerBlock));
|
|
111
|
-
this.blockHeight.record(Math.max(...blocks.map(b => b.number)));
|
|
112
|
-
this.checkpointHeight.record(Math.max(...blocks.map(b => b.checkpointNumber)));
|
|
113
|
-
this.syncBlockCount.add(blocks.length);
|
|
114
128
|
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
129
|
+
// Per block metrics
|
|
130
|
+
this.txCount.add(block.body.txEffects.length);
|
|
131
|
+
this.txsPerBlock.record(block.body.txEffects.length);
|
|
132
|
+
this.manaPerBlock.record(block.header.totalManaUsed.toNumber() / 1e6);
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
public processNewCheckpointedBlocks(syncTimePerCheckpoint: number, blocks: L2Block[]) {
|
|
136
|
+
if (blocks.length === 0) {
|
|
137
|
+
return;
|
|
119
138
|
}
|
|
139
|
+
|
|
140
|
+
this.syncDurationPerCheckpoint.record(Math.ceil(syncTimePerCheckpoint));
|
|
141
|
+
this.blockHeight.record(Math.max(...blocks.map(b => b.number)), { [Attributes.STATUS]: 'checkpointed' });
|
|
142
|
+
this.checkpointHeight.record(Math.max(...blocks.map(b => b.checkpointNumber)));
|
|
143
|
+
this.syncBlockCount.add(blocks.length);
|
|
120
144
|
}
|
|
121
145
|
|
|
122
146
|
public processNewMessages(count: number, syncPerMessageMs: number) {
|
|
@@ -128,10 +152,21 @@ export class ArchiverInstrumentation {
|
|
|
128
152
|
}
|
|
129
153
|
|
|
130
154
|
public processPrune(duration: number) {
|
|
131
|
-
this.pruneCount.add(1);
|
|
155
|
+
this.pruneCount.add(1, { [Attributes.PRUNE_TYPE]: 'unproven' });
|
|
132
156
|
this.pruneDuration.record(Math.ceil(duration));
|
|
133
157
|
}
|
|
134
158
|
|
|
159
|
+
/**
|
|
160
|
+
* Records a pending-chain reorg, where the archiver dropped proposed blocks (and world-state follows by pruning). The
|
|
161
|
+
* type distinguishes the cause: 'uncheckpointed' (slot ended without a checkpoint), 'l1_conflict' (proposed blocks
|
|
162
|
+
* conflicting with an L1 checkpoint), 'orphan' (no matching proposed checkpoint arrived before the deadline), or
|
|
163
|
+
* 'l1_mismatch' (the local checkpointed tip diverged from L1 — an L1 reorg or a pruned/missed-proof checkpoint — so
|
|
164
|
+
* already-checkpointed blocks were rewound).
|
|
165
|
+
*/
|
|
166
|
+
public recordPrune(pruneType: 'uncheckpointed' | 'l1_conflict' | 'orphan' | 'l1_mismatch') {
|
|
167
|
+
this.pruneCount.add(1, { [Attributes.PRUNE_TYPE]: pruneType });
|
|
168
|
+
}
|
|
169
|
+
|
|
135
170
|
public updateLastProvenCheckpoint(checkpoint: CheckpointData) {
|
|
136
171
|
const lastBlockNumberInCheckpoint = checkpoint.startBlock + checkpoint.blockCount - 1;
|
|
137
172
|
this.blockHeight.record(lastBlockNumberInCheckpoint, { [Attributes.STATUS]: 'proven' });
|
|
@@ -161,4 +196,22 @@ export class ArchiverInstrumentation {
|
|
|
161
196
|
[Attributes.L1_BLOCK_PROPOSAL_USED_TRACE]: usedTrace,
|
|
162
197
|
});
|
|
163
198
|
}
|
|
199
|
+
|
|
200
|
+
/** Records a checkpoint promoted from proposed (blob fetch skipped). */
|
|
201
|
+
public processCheckpointPromoted() {
|
|
202
|
+
this.checkpointPromotedCount.add(1);
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
/**
|
|
206
|
+
* Records L1 inclusion timing for a checkpoint observed on L1 (seconds into the L2 slot).
|
|
207
|
+
*/
|
|
208
|
+
public processCheckpointL1Timing(data: {
|
|
209
|
+
slotNumber: SlotNumber;
|
|
210
|
+
l1Timestamp: bigint;
|
|
211
|
+
l1Constants: Pick<L1RollupConstants, 'l1GenesisTime' | 'slotDuration'>;
|
|
212
|
+
}): void {
|
|
213
|
+
const slotStartTs = getTimestampForSlot(data.slotNumber, data.l1Constants);
|
|
214
|
+
const inclusionDelaySeconds = Number(data.l1Timestamp - slotStartTs);
|
|
215
|
+
this.checkpointL1InclusionDelay.record(inclusionDelaySeconds);
|
|
216
|
+
}
|
|
164
217
|
}
|