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