@aztec/archiver 0.0.1-commit.4d79d1f2d → 0.0.1-commit.4d9804df
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 +76 -18
- package/dest/archiver.d.ts.map +1 -1
- package/dest/archiver.js +330 -162
- package/dest/config.d.ts +7 -3
- package/dest/config.d.ts.map +1 -1
- package/dest/config.js +38 -14
- package/dest/errors.d.ts +55 -9
- package/dest/errors.d.ts.map +1 -1
- package/dest/errors.js +81 -14
- package/dest/factory.d.ts +13 -9
- package/dest/factory.d.ts.map +1 -1
- package/dest/factory.js +56 -39
- package/dest/index.d.ts +12 -3
- package/dest/index.d.ts.map +1 -1
- package/dest/index.js +11 -2
- package/dest/l1/bin/retrieve-calldata.js +32 -28
- package/dest/l1/calldata_retriever.d.ts +81 -50
- package/dest/l1/calldata_retriever.d.ts.map +1 -1
- package/dest/l1/calldata_retriever.js +202 -260
- package/dest/l1/data_retrieval.d.ts +32 -18
- package/dest/l1/data_retrieval.d.ts.map +1 -1
- package/dest/l1/data_retrieval.js +42 -47
- 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/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 +74 -46
- package/dest/modules/data_source_base.d.ts.map +1 -1
- package/dest/modules/data_source_base.js +252 -190
- package/dest/modules/data_store_updater.d.ts +49 -17
- package/dest/modules/data_store_updater.d.ts.map +1 -1
- package/dest/modules/data_store_updater.js +213 -122
- package/dest/modules/instrumentation.d.ts +29 -3
- package/dest/modules/instrumentation.d.ts.map +1 -1
- package/dest/modules/instrumentation.js +67 -11
- package/dest/modules/l1_synchronizer.d.ts +16 -14
- package/dest/modules/l1_synchronizer.d.ts.map +1 -1
- package/dest/modules/l1_synchronizer.js +488 -219
- 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 +185 -74
- package/dest/store/block_store.d.ts.map +1 -1
- package/dest/store/block_store.js +760 -275
- 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 +42 -68
- 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 +54 -2
- 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 +25 -0
- package/dest/store/l2_tips_cache.d.ts.map +1 -0
- package/dest/store/l2_tips_cache.js +26 -0
- 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 +262 -408
- 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 +51 -9
- package/dest/test/fake_l1_state.d.ts +25 -1
- package/dest/test/fake_l1_state.d.ts.map +1 -1
- package/dest/test/fake_l1_state.js +166 -32
- 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 +61 -47
- package/dest/test/mock_l2_block_source.d.ts.map +1 -1
- package/dest/test/mock_l2_block_source.js +306 -211
- 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 +15 -3
- package/dest/test/noop_l1_archiver.d.ts +17 -6
- package/dest/test/noop_l1_archiver.d.ts.map +1 -1
- package/dest/test/noop_l1_archiver.js +31 -11
- package/package.json +14 -14
- package/src/archiver.ts +427 -185
- package/src/config.ts +43 -13
- package/src/errors.ts +122 -21
- package/src/factory.ts +70 -29
- package/src/index.ts +19 -2
- package/src/l1/README.md +25 -68
- package/src/l1/bin/retrieve-calldata.ts +40 -27
- package/src/l1/calldata_retriever.ts +267 -379
- package/src/l1/data_retrieval.ts +66 -70
- package/src/l1/spire_proposer.ts +7 -15
- 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 +337 -238
- package/src/modules/data_store_updater.ts +250 -154
- package/src/modules/instrumentation.ts +71 -11
- package/src/modules/l1_synchronizer.ts +659 -269
- package/src/modules/outbox_trees_resolver.ts +199 -0
- package/src/modules/validation.ts +80 -23
- package/src/store/block_store.ts +932 -347
- package/src/store/contract_class_store.ts +49 -103
- package/src/store/contract_instance_store.ts +68 -5
- package/src/store/data_stores.ts +104 -0
- package/src/store/function_names_cache.ts +37 -0
- package/src/store/l2_tips_cache.ts +35 -0
- package/src/store/log_store.ts +302 -559
- package/src/store/log_store_codec.ts +143 -0
- package/src/store/message_store.ts +60 -10
- package/src/structs/inbox_message.ts +1 -1
- package/src/test/fake_l1_state.ts +213 -42
- package/src/test/mock_archiver.ts +3 -2
- package/src/test/mock_l2_block_source.ts +378 -233
- package/src/test/mock_structs.ts +25 -8
- package/src/test/noop_l1_archiver.ts +61 -12
- package/dest/store/kv_archiver_store.d.ts +0 -340
- package/dest/store/kv_archiver_store.d.ts.map +0 -1
- package/dest/store/kv_archiver_store.js +0 -446
- package/src/store/kv_archiver_store.ts +0 -639
|
@@ -1,30 +1,28 @@
|
|
|
1
1
|
import { BlockNumber, CheckpointNumber } from '@aztec/foundation/branded-types';
|
|
2
|
-
import {
|
|
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
|
|
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
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
isValidPrivateFunctionMembershipProof,
|
|
20
|
-
isValidUtilityFunctionMembershipProof,
|
|
17
|
+
type ContractClassPublicWithCommitment,
|
|
18
|
+
computeContractAddressFromInstance,
|
|
19
|
+
computeContractClassId,
|
|
21
20
|
} from '@aztec/stdlib/contract';
|
|
22
21
|
import type { ContractClassLog, PrivateLog, PublicLog } from '@aztec/stdlib/logs';
|
|
23
22
|
import type { UInt64 } from '@aztec/stdlib/types';
|
|
24
23
|
|
|
25
|
-
import
|
|
26
|
-
|
|
27
|
-
import type { KVArchiverDataStore } from '../store/kv_archiver_store.js';
|
|
24
|
+
import type { ArchiverDataStores } from '../store/data_stores.js';
|
|
25
|
+
import type { L2TipsCache } from '../store/l2_tips_cache.js';
|
|
28
26
|
|
|
29
27
|
/** Operation type for contract data updates. */
|
|
30
28
|
enum Operation {
|
|
@@ -44,87 +42,141 @@ type ReconcileCheckpointsResult = {
|
|
|
44
42
|
export class ArchiverDataStoreUpdater {
|
|
45
43
|
private readonly log = createLogger('archiver:store_updater');
|
|
46
44
|
|
|
47
|
-
constructor(
|
|
45
|
+
constructor(
|
|
46
|
+
private stores: ArchiverDataStores,
|
|
47
|
+
private l2TipsCache?: L2TipsCache,
|
|
48
|
+
private opts: { rollupManaLimit?: number } = {},
|
|
49
|
+
) {}
|
|
48
50
|
|
|
49
51
|
/**
|
|
50
|
-
* Adds proposed
|
|
51
|
-
*
|
|
52
|
-
* Extracts ContractClassPublished, ContractInstancePublished, ContractInstanceUpdated events
|
|
53
|
-
* and individually broadcasted functions from the block logs.
|
|
52
|
+
* Adds a proposed block to the store with contract class/instance extraction from logs.
|
|
53
|
+
* This is an uncheckpointed block that has been proposed by the sequencer but not yet included in a checkpoint on L1.
|
|
54
|
+
* Extracts ContractClassPublished, ContractInstancePublished, ContractInstanceUpdated events from the block logs.
|
|
54
55
|
*
|
|
55
|
-
* @param
|
|
56
|
+
* @param block - The proposed L2 block to add.
|
|
56
57
|
* @param pendingChainValidationStatus - Optional validation status to set.
|
|
57
58
|
* @returns True if the operation is successful.
|
|
58
59
|
*/
|
|
59
|
-
public
|
|
60
|
-
|
|
60
|
+
public async addProposedBlock(
|
|
61
|
+
block: L2Block,
|
|
61
62
|
pendingChainValidationStatus?: ValidateCheckpointResult,
|
|
62
63
|
): Promise<boolean> {
|
|
63
|
-
|
|
64
|
-
await this.
|
|
64
|
+
const result = await this.stores.db.transactionAsync(async () => {
|
|
65
|
+
await this.stores.blocks.addProposedBlock(block);
|
|
65
66
|
|
|
66
67
|
const opResults = await Promise.all([
|
|
67
68
|
// Update the pending chain validation status if provided
|
|
68
|
-
pendingChainValidationStatus &&
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
69
|
+
pendingChainValidationStatus &&
|
|
70
|
+
this.stores.blocks.setPendingChainValidationStatus(pendingChainValidationStatus),
|
|
71
|
+
// Add any logs emitted during the retrieved block
|
|
72
|
+
this.stores.logs.addLogs([block]),
|
|
73
|
+
// Unroll all logs emitted during the retrieved block and extract any contract classes and instances from it
|
|
74
|
+
this.addContractDataToDb(block),
|
|
73
75
|
]);
|
|
74
76
|
|
|
75
77
|
return opResults.every(Boolean);
|
|
76
78
|
});
|
|
79
|
+
await this.l2TipsCache?.refresh();
|
|
80
|
+
return result;
|
|
77
81
|
}
|
|
78
82
|
|
|
79
83
|
/**
|
|
80
84
|
* Reconciles local blocks with incoming checkpoints from L1.
|
|
81
85
|
* Adds new checkpoints to the store with contract class/instance extraction from logs.
|
|
82
86
|
* Prunes any local blocks that conflict with checkpoint data (by comparing archive roots).
|
|
83
|
-
* Extracts ContractClassPublished, ContractInstancePublished, ContractInstanceUpdated events
|
|
84
|
-
*
|
|
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.
|
|
85
90
|
*
|
|
86
|
-
* @param checkpoints - The published checkpoints to add.
|
|
91
|
+
* @param checkpoints - The published checkpoints to add (excluding any being promoted from proposed).
|
|
87
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).
|
|
88
94
|
* @returns Result with information about any pruned blocks.
|
|
89
95
|
*/
|
|
90
|
-
public addCheckpoints(
|
|
96
|
+
public async addCheckpoints(
|
|
91
97
|
checkpoints: PublishedCheckpoint[],
|
|
92
98
|
pendingChainValidationStatus?: ValidateCheckpointResult,
|
|
99
|
+
promoteProposed?: {
|
|
100
|
+
l1: L1PublishedData;
|
|
101
|
+
attestations: CommitteeAttestation[];
|
|
102
|
+
checkpoint: PublishedCheckpoint;
|
|
103
|
+
},
|
|
104
|
+
evictProposedFrom?: CheckpointNumber,
|
|
93
105
|
): Promise<ReconcileCheckpointsResult> {
|
|
94
|
-
|
|
106
|
+
for (const checkpoint of checkpoints) {
|
|
107
|
+
validateCheckpoint(checkpoint.checkpoint, { rollupManaLimit: this.opts?.rollupManaLimit });
|
|
108
|
+
}
|
|
109
|
+
if (promoteProposed) {
|
|
110
|
+
validateCheckpoint(promoteProposed.checkpoint.checkpoint, { rollupManaLimit: this.opts?.rollupManaLimit });
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
const result = await this.stores.db.transactionAsync(async () => {
|
|
95
114
|
// Before adding checkpoints, check for conflicts with local blocks if any
|
|
96
115
|
const { prunedBlocks, lastAlreadyInsertedBlockNumber } = await this.pruneMismatchingLocalBlocks(checkpoints);
|
|
97
116
|
|
|
98
|
-
await this.
|
|
117
|
+
const insertedCheckpoints = await this.stores.blocks.addCheckpoints(checkpoints);
|
|
99
118
|
|
|
100
|
-
//
|
|
101
|
-
|
|
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
|
|
102
122
|
.flatMap((ch: PublishedCheckpoint) => ch.checkpoint.blocks)
|
|
103
123
|
.filter(b => lastAlreadyInsertedBlockNumber === undefined || b.number > lastAlreadyInsertedBlockNumber);
|
|
104
124
|
|
|
105
125
|
await Promise.all([
|
|
106
126
|
// Update the pending chain validation status if provided
|
|
107
|
-
pendingChainValidationStatus &&
|
|
127
|
+
pendingChainValidationStatus &&
|
|
128
|
+
this.stores.blocks.setPendingChainValidationStatus(pendingChainValidationStatus),
|
|
108
129
|
// Add any logs emitted during the retrieved blocks
|
|
109
|
-
this.
|
|
130
|
+
this.stores.logs.addLogs(newBlocks),
|
|
110
131
|
// Unroll all logs emitted during the retrieved blocks and extract any contract classes and instances from them
|
|
111
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,
|
|
112
146
|
]);
|
|
113
147
|
|
|
114
148
|
return { prunedBlocks, lastAlreadyInsertedBlockNumber };
|
|
115
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();
|
|
159
|
+
return result;
|
|
116
160
|
}
|
|
117
161
|
|
|
118
162
|
/**
|
|
119
163
|
* Checks for local proposed blocks that do not match the ones to be checkpointed and prunes them.
|
|
120
|
-
*
|
|
121
|
-
*
|
|
122
|
-
*
|
|
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.
|
|
123
175
|
*/
|
|
124
176
|
private async pruneMismatchingLocalBlocks(checkpoints: PublishedCheckpoint[]): Promise<ReconcileCheckpointsResult> {
|
|
125
177
|
const [lastCheckpointedBlockNumber, lastBlockNumber] = await Promise.all([
|
|
126
|
-
this.
|
|
127
|
-
this.
|
|
178
|
+
this.stores.blocks.getCheckpointedL2BlockNumber(),
|
|
179
|
+
this.stores.blocks.getLatestL2BlockNumber(),
|
|
128
180
|
]);
|
|
129
181
|
|
|
130
182
|
// Exit early if there are no local uncheckpointed blocks
|
|
@@ -133,29 +185,29 @@ export class ArchiverDataStoreUpdater {
|
|
|
133
185
|
}
|
|
134
186
|
|
|
135
187
|
// Get all uncheckpointed local blocks
|
|
136
|
-
const uncheckpointedLocalBlocks = await this.
|
|
137
|
-
BlockNumber.add(lastCheckpointedBlockNumber, 1),
|
|
138
|
-
lastBlockNumber - lastCheckpointedBlockNumber,
|
|
139
|
-
);
|
|
188
|
+
const uncheckpointedLocalBlocks = await this.stores.blocks.getBlocksData({
|
|
189
|
+
from: BlockNumber.add(lastCheckpointedBlockNumber, 1),
|
|
190
|
+
limit: lastBlockNumber - lastCheckpointedBlockNumber,
|
|
191
|
+
});
|
|
140
192
|
|
|
141
193
|
let lastAlreadyInsertedBlockNumber: BlockNumber | undefined;
|
|
142
194
|
|
|
143
195
|
for (const publishedCheckpoint of checkpoints) {
|
|
144
196
|
const checkpointBlocks = publishedCheckpoint.checkpoint.blocks;
|
|
145
197
|
const slot = publishedCheckpoint.checkpoint.slot;
|
|
146
|
-
const localBlocksInSlot = uncheckpointedLocalBlocks.filter(b => b.slot === slot);
|
|
147
198
|
|
|
148
199
|
if (checkpointBlocks.length === 0) {
|
|
149
200
|
this.log.warn(`Checkpoint ${publishedCheckpoint.checkpoint.number} for slot ${slot} has no blocks`);
|
|
150
201
|
continue;
|
|
151
202
|
}
|
|
152
203
|
|
|
153
|
-
// 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.
|
|
154
206
|
for (const checkpointBlock of checkpointBlocks) {
|
|
155
207
|
const blockNumber = checkpointBlock.number;
|
|
156
|
-
const existingBlock =
|
|
208
|
+
const existingBlock = uncheckpointedLocalBlocks.find(b => b.header.getBlockNumber() === blockNumber);
|
|
157
209
|
const blockInfos = {
|
|
158
|
-
existingBlock: existingBlock?.
|
|
210
|
+
existingBlock: existingBlock?.header.toInspect(),
|
|
159
211
|
checkpointBlock: checkpointBlock.toBlockInfo(),
|
|
160
212
|
};
|
|
161
213
|
|
|
@@ -165,22 +217,26 @@ export class ArchiverDataStoreUpdater {
|
|
|
165
217
|
this.log.verbose(`Block number ${blockNumber} already inserted and matches checkpoint`, blockInfos);
|
|
166
218
|
lastAlreadyInsertedBlockNumber = blockNumber;
|
|
167
219
|
} else {
|
|
168
|
-
this.log.
|
|
220
|
+
this.log.info(`Conflict detected at block ${blockNumber} between checkpointed and local block`, blockInfos);
|
|
169
221
|
const prunedBlocks = await this.removeBlocksAfter(BlockNumber(blockNumber - 1));
|
|
222
|
+
await this.evictProposedCheckpointsForPrunedBlocks(prunedBlocks);
|
|
170
223
|
return { prunedBlocks, lastAlreadyInsertedBlockNumber };
|
|
171
224
|
}
|
|
172
225
|
}
|
|
173
226
|
|
|
174
|
-
// If
|
|
175
|
-
//
|
|
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.
|
|
176
230
|
const lastCheckpointBlockNumber = checkpointBlocks.at(-1)!.number;
|
|
177
|
-
const
|
|
231
|
+
const localBlocksInSlot = uncheckpointedLocalBlocks.filter(b => b.header.getSlot() === slot);
|
|
232
|
+
const lastLocalBlockNumber = localBlocksInSlot.at(-1)?.header.getBlockNumber();
|
|
178
233
|
|
|
179
234
|
if (lastLocalBlockNumber !== undefined && lastLocalBlockNumber > lastCheckpointBlockNumber) {
|
|
180
235
|
this.log.warn(
|
|
181
236
|
`Local chain for slot ${slot} ends at block ${lastLocalBlockNumber} but checkpoint ends at ${lastCheckpointBlockNumber}. Pruning blocks after block ${lastCheckpointBlockNumber}.`,
|
|
182
237
|
);
|
|
183
238
|
const prunedBlocks = await this.removeBlocksAfter(lastCheckpointBlockNumber);
|
|
239
|
+
await this.evictProposedCheckpointsForPrunedBlocks(prunedBlocks);
|
|
184
240
|
return { prunedBlocks, lastAlreadyInsertedBlockNumber };
|
|
185
241
|
}
|
|
186
242
|
}
|
|
@@ -197,18 +253,62 @@ export class ArchiverDataStoreUpdater {
|
|
|
197
253
|
* @returns The removed blocks.
|
|
198
254
|
* @throws Error if any block to be removed is checkpointed.
|
|
199
255
|
*/
|
|
200
|
-
public removeUncheckpointedBlocksAfter(blockNumber: BlockNumber): Promise<L2Block[]> {
|
|
201
|
-
|
|
256
|
+
public async removeUncheckpointedBlocksAfter(blockNumber: BlockNumber): Promise<L2Block[]> {
|
|
257
|
+
const result = await this.stores.db.transactionAsync(async () => {
|
|
202
258
|
// Verify we're only removing uncheckpointed blocks
|
|
203
|
-
const lastCheckpointedBlockNumber = await this.
|
|
259
|
+
const lastCheckpointedBlockNumber = await this.stores.blocks.getCheckpointedL2BlockNumber();
|
|
204
260
|
if (blockNumber < lastCheckpointedBlockNumber) {
|
|
205
261
|
throw new Error(
|
|
206
262
|
`Cannot remove blocks after ${blockNumber} because checkpointed blocks exist up to ${lastCheckpointedBlockNumber}`,
|
|
207
263
|
);
|
|
208
264
|
}
|
|
209
265
|
|
|
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
|
+
|
|
210
295
|
return await this.removeBlocksAfter(blockNumber);
|
|
211
296
|
});
|
|
297
|
+
await this.l2TipsCache?.refresh();
|
|
298
|
+
return result;
|
|
299
|
+
}
|
|
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);
|
|
212
312
|
}
|
|
213
313
|
|
|
214
314
|
/**
|
|
@@ -217,11 +317,11 @@ export class ArchiverDataStoreUpdater {
|
|
|
217
317
|
*/
|
|
218
318
|
private async removeBlocksAfter(blockNumber: BlockNumber): Promise<L2Block[]> {
|
|
219
319
|
// First get the blocks to be removed so we can clean up contract data
|
|
220
|
-
const removedBlocks = await this.
|
|
320
|
+
const removedBlocks = await this.stores.blocks.removeBlocksAfter(blockNumber);
|
|
221
321
|
|
|
222
322
|
// Clean up contract data and logs for the removed blocks
|
|
223
323
|
await Promise.all([
|
|
224
|
-
this.
|
|
324
|
+
this.stores.logs.deleteLogs(removedBlocks),
|
|
225
325
|
...removedBlocks.map(block => this.removeContractDataFromDb(block)),
|
|
226
326
|
]);
|
|
227
327
|
|
|
@@ -238,17 +338,43 @@ export class ArchiverDataStoreUpdater {
|
|
|
238
338
|
* @returns True if the operation is successful.
|
|
239
339
|
*/
|
|
240
340
|
public async removeCheckpointsAfter(checkpointNumber: CheckpointNumber): Promise<boolean> {
|
|
241
|
-
const
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
341
|
+
const result = await this.stores.db.transactionAsync(async () => {
|
|
342
|
+
const { blocksRemoved = [] } = await this.stores.blocks.removeCheckpointsAfter(checkpointNumber);
|
|
343
|
+
|
|
344
|
+
const opResults = await Promise.all([
|
|
345
|
+
// Prune rolls back to the last proven block, which is by definition valid
|
|
346
|
+
this.stores.blocks.setPendingChainValidationStatus({ valid: true }),
|
|
347
|
+
// Remove contract data for all blocks being removed
|
|
348
|
+
...blocksRemoved.map(block => this.removeContractDataFromDb(block)),
|
|
349
|
+
this.stores.logs.deleteLogs(blocksRemoved),
|
|
350
|
+
]);
|
|
250
351
|
|
|
251
|
-
|
|
352
|
+
return opResults.every(Boolean);
|
|
353
|
+
});
|
|
354
|
+
await this.l2TipsCache?.refresh();
|
|
355
|
+
return result;
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
/**
|
|
359
|
+
* Updates the proven checkpoint number and refreshes the L2 tips cache.
|
|
360
|
+
* @param checkpointNumber - The checkpoint number to set as proven.
|
|
361
|
+
*/
|
|
362
|
+
public async setProvenCheckpointNumber(checkpointNumber: CheckpointNumber): Promise<void> {
|
|
363
|
+
await this.stores.db.transactionAsync(async () => {
|
|
364
|
+
await this.stores.blocks.setProvenCheckpointNumber(checkpointNumber);
|
|
365
|
+
});
|
|
366
|
+
await this.l2TipsCache?.refresh();
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
/**
|
|
370
|
+
* Updates the finalized checkpoint number and refreshes the L2 tips cache.
|
|
371
|
+
* @param checkpointNumber - The checkpoint number to set as finalized.
|
|
372
|
+
*/
|
|
373
|
+
public async setFinalizedCheckpointNumber(checkpointNumber: CheckpointNumber): Promise<void> {
|
|
374
|
+
await this.stores.db.transactionAsync(async () => {
|
|
375
|
+
await this.stores.blocks.setFinalizedCheckpointNumber(checkpointNumber);
|
|
376
|
+
});
|
|
377
|
+
await this.l2TipsCache?.refresh();
|
|
252
378
|
}
|
|
253
379
|
|
|
254
380
|
/** Extracts and stores contract data from a single block. */
|
|
@@ -272,9 +398,6 @@ export class ArchiverDataStoreUpdater {
|
|
|
272
398
|
this.updatePublishedContractClasses(contractClassLogs, block.number, operation),
|
|
273
399
|
this.updateDeployedContractInstances(privateLogs, block.number, operation),
|
|
274
400
|
this.updateUpdatedContractInstances(publicLogs, block.header.globalVariables.timestamp, operation),
|
|
275
|
-
operation === Operation.Store
|
|
276
|
-
? this.storeBroadcastedIndividualFunctions(contractClassLogs, block.number)
|
|
277
|
-
: Promise.resolve(true),
|
|
278
401
|
])
|
|
279
402
|
).every(Boolean);
|
|
280
403
|
}
|
|
@@ -291,18 +414,37 @@ export class ArchiverDataStoreUpdater {
|
|
|
291
414
|
.filter(log => ContractClassPublishedEvent.isContractClassPublishedEvent(log))
|
|
292
415
|
.map(log => ContractClassPublishedEvent.fromLog(log));
|
|
293
416
|
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
contractClasses.
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
417
|
+
if (operation == Operation.Delete) {
|
|
418
|
+
const contractClasses = contractClassPublishedEvents.map(e => e.toContractClassPublic());
|
|
419
|
+
if (contractClasses.length > 0) {
|
|
420
|
+
contractClasses.forEach(c => this.log.verbose(`${Operation[operation]} contract class ${c.id.toString()}`));
|
|
421
|
+
return await this.stores.contractClasses.deleteContractClasses(contractClasses, blockNum);
|
|
422
|
+
}
|
|
423
|
+
return true;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
// Compute bytecode commitments and validate class IDs in a single pass.
|
|
427
|
+
const contractClasses: ContractClassPublicWithCommitment[] = [];
|
|
428
|
+
for (const event of contractClassPublishedEvents) {
|
|
429
|
+
const contractClass = await event.toContractClassPublicWithBytecodeCommitment();
|
|
430
|
+
const computedClassId = await computeContractClassId({
|
|
431
|
+
artifactHash: contractClass.artifactHash,
|
|
432
|
+
privateFunctionsRoot: contractClass.privateFunctionsRoot,
|
|
433
|
+
publicBytecodeCommitment: contractClass.publicBytecodeCommitment,
|
|
434
|
+
});
|
|
435
|
+
if (!computedClassId.equals(contractClass.id)) {
|
|
436
|
+
this.log.warn(
|
|
437
|
+
`Skipping contract class with mismatched id at block ${blockNum}. Claimed ${contractClass.id}, computed ${computedClassId}`,
|
|
438
|
+
{ blockNum, contractClassId: event.contractClassId.toString() },
|
|
301
439
|
);
|
|
302
|
-
|
|
303
|
-
} else if (operation == Operation.Delete) {
|
|
304
|
-
return await this.store.deleteContractClasses(contractClasses, blockNum);
|
|
440
|
+
continue;
|
|
305
441
|
}
|
|
442
|
+
contractClasses.push(contractClass);
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
if (contractClasses.length > 0) {
|
|
446
|
+
contractClasses.forEach(c => this.log.verbose(`${Operation[operation]} contract class ${c.id.toString()}`));
|
|
447
|
+
return await this.stores.contractClasses.addContractClasses(contractClasses, blockNum);
|
|
306
448
|
}
|
|
307
449
|
return true;
|
|
308
450
|
}
|
|
@@ -315,18 +457,35 @@ export class ArchiverDataStoreUpdater {
|
|
|
315
457
|
blockNum: BlockNumber,
|
|
316
458
|
operation: Operation,
|
|
317
459
|
): Promise<boolean> {
|
|
318
|
-
const
|
|
460
|
+
const allInstances = allLogs
|
|
319
461
|
.filter(log => ContractInstancePublishedEvent.isContractInstancePublishedEvent(log))
|
|
320
462
|
.map(log => ContractInstancePublishedEvent.fromLog(log))
|
|
321
463
|
.map(e => e.toContractInstance());
|
|
464
|
+
|
|
465
|
+
// Verify that each instance's address matches the one derived from its fields if we're adding
|
|
466
|
+
const contractInstances =
|
|
467
|
+
operation === Operation.Delete
|
|
468
|
+
? allInstances
|
|
469
|
+
: await filterAsync(allInstances, async instance => {
|
|
470
|
+
const computedAddress = await computeContractAddressFromInstance(instance);
|
|
471
|
+
if (!computedAddress.equals(instance.address)) {
|
|
472
|
+
this.log.warn(
|
|
473
|
+
`Found contract instance with mismatched address at block ${blockNum}. Claimed ${instance.address} but computed ${computedAddress}.`,
|
|
474
|
+
{ instanceAddress: instance.address.toString(), computedAddress: computedAddress.toString(), blockNum },
|
|
475
|
+
);
|
|
476
|
+
return false;
|
|
477
|
+
}
|
|
478
|
+
return true;
|
|
479
|
+
});
|
|
480
|
+
|
|
322
481
|
if (contractInstances.length > 0) {
|
|
323
482
|
contractInstances.forEach(c =>
|
|
324
483
|
this.log.verbose(`${Operation[operation]} contract instance at ${c.address.toString()}`),
|
|
325
484
|
);
|
|
326
485
|
if (operation == Operation.Store) {
|
|
327
|
-
return await this.
|
|
486
|
+
return await this.stores.contractInstances.addContractInstances(contractInstances, blockNum);
|
|
328
487
|
} else if (operation == Operation.Delete) {
|
|
329
|
-
return await this.
|
|
488
|
+
return await this.stores.contractInstances.deleteContractInstances(contractInstances);
|
|
330
489
|
}
|
|
331
490
|
}
|
|
332
491
|
return true;
|
|
@@ -350,73 +509,10 @@ export class ArchiverDataStoreUpdater {
|
|
|
350
509
|
this.log.verbose(`${Operation[operation]} contract instance update at ${c.address.toString()}`),
|
|
351
510
|
);
|
|
352
511
|
if (operation == Operation.Store) {
|
|
353
|
-
return await this.
|
|
512
|
+
return await this.stores.contractInstances.addContractInstanceUpdates(contractUpdates, timestamp);
|
|
354
513
|
} else if (operation == Operation.Delete) {
|
|
355
|
-
return await this.
|
|
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()}`);
|
|
514
|
+
return await this.stores.contractInstances.deleteContractInstanceUpdates(contractUpdates, timestamp);
|
|
418
515
|
}
|
|
419
|
-
return await this.store.addFunctions(contractClassId, validPrivateFns, validUtilityFns);
|
|
420
516
|
}
|
|
421
517
|
return true;
|
|
422
518
|
}
|