@aztec/archiver 5.0.0-private.20260319 → 5.0.0-rc.2
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 -13
- package/dest/archiver.d.ts +71 -15
- package/dest/archiver.d.ts.map +1 -1
- package/dest/archiver.js +268 -74
- package/dest/config.d.ts +7 -3
- package/dest/config.d.ts.map +1 -1
- package/dest/config.js +39 -16
- package/dest/errors.d.ts +44 -10
- package/dest/errors.d.ts.map +1 -1
- package/dest/errors.js +66 -12
- package/dest/factory.d.ts +12 -7
- package/dest/factory.d.ts.map +1 -1
- package/dest/factory.js +40 -25
- 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 +32 -0
- package/dest/modules/data_source_base.d.ts +72 -48
- package/dest/modules/data_source_base.d.ts.map +1 -1
- package/dest/modules/data_source_base.js +266 -143
- 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 +172 -117
- 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 +11 -6
- package/dest/modules/l1_synchronizer.d.ts.map +1 -1
- package/dest/modules/l1_synchronizer.js +437 -217
- 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 +24 -5
- package/dest/modules/validation.d.ts.map +1 -1
- package/dest/modules/validation.js +40 -15
- package/dest/store/block_store.d.ts +164 -66
- package/dest/store/block_store.d.ts.map +1 -1
- package/dest/store/block_store.js +638 -233
- 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 +36 -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 +48 -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 -40
- package/dest/store/log_store.d.ts.map +1 -1
- package/dest/store/log_store.js +257 -480
- 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 +9 -3
- package/dest/store/message_store.d.ts.map +1 -1
- package/dest/store/message_store.js +39 -10
- package/dest/test/fake_l1_state.d.ts +15 -3
- package/dest/test/fake_l1_state.d.ts.map +1 -1
- package/dest/test/fake_l1_state.js +80 -18
- 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 +223 -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 +25 -9
- package/package.json +14 -14
- package/src/archiver.ts +353 -80
- package/src/config.ts +43 -20
- package/src/errors.ts +103 -18
- package/src/factory.ts +56 -24
- package/src/index.ts +18 -2
- package/src/l1/calldata_retriever.ts +16 -5
- package/src/l1/data_retrieval.ts +38 -46
- 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 +340 -189
- package/src/modules/data_store_updater.ts +211 -148
- package/src/modules/instrumentation.ts +28 -8
- package/src/modules/l1_synchronizer.ts +583 -255
- package/src/modules/outbox_trees_resolver.ts +199 -0
- package/src/modules/validation.ts +81 -21
- package/src/store/block_store.ts +792 -285
- package/src/store/contract_class_store.ts +43 -103
- package/src/store/contract_instance_store.ts +62 -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 +296 -652
- package/src/store/log_store_codec.ts +143 -0
- package/src/store/message_store.ts +43 -12
- package/src/structs/inbox_message.ts +1 -1
- package/src/test/fake_l1_state.ts +99 -27
- package/src/test/mock_l2_block_source.ts +279 -233
- package/src/test/mock_structs.ts +5 -2
- package/src/test/noop_l1_archiver.ts +52 -9
- package/dest/store/kv_archiver_store.d.ts +0 -367
- package/dest/store/kv_archiver_store.d.ts.map +0 -1
- package/dest/store/kv_archiver_store.js +0 -481
- package/src/store/kv_archiver_store.ts +0 -697
package/src/l1/data_retrieval.ts
CHANGED
|
@@ -12,6 +12,7 @@ import type {
|
|
|
12
12
|
InboxContract,
|
|
13
13
|
MessageSentLog,
|
|
14
14
|
RollupContract,
|
|
15
|
+
ViemHeader,
|
|
15
16
|
} from '@aztec/ethereum/contracts';
|
|
16
17
|
import type { ViemPublicClient, ViemPublicDebugClient } from '@aztec/ethereum/types';
|
|
17
18
|
import { asyncPool } from '@aztec/foundation/async-pool';
|
|
@@ -35,18 +36,28 @@ import type { DataRetrieval } from '../structs/data_retrieval.js';
|
|
|
35
36
|
import type { InboxMessage } from '../structs/inbox_message.js';
|
|
36
37
|
import { CalldataRetriever } from './calldata_retriever.js';
|
|
37
38
|
|
|
38
|
-
|
|
39
|
+
type RetrievedCheckpointBase = {
|
|
39
40
|
checkpointNumber: CheckpointNumber;
|
|
40
41
|
archiveRoot: Fr;
|
|
41
42
|
feeAssetPriceModifier: bigint;
|
|
42
43
|
header: CheckpointHeader;
|
|
43
|
-
checkpointBlobData: CheckpointBlobData;
|
|
44
44
|
l1: L1PublishedData;
|
|
45
45
|
chainId: Fr;
|
|
46
46
|
version: Fr;
|
|
47
47
|
attestations: CommitteeAttestation[];
|
|
48
48
|
};
|
|
49
49
|
|
|
50
|
+
/** Checkpoint data as retrieved from L1 calldata and blob data. */
|
|
51
|
+
export type RetrievedCheckpoint = RetrievedCheckpointBase & { checkpointBlobData: CheckpointBlobData };
|
|
52
|
+
|
|
53
|
+
/** Checkpoint data retrieved from L1 calldata only, without blob data. */
|
|
54
|
+
export type RetrievedCheckpointFromCalldata = RetrievedCheckpointBase & {
|
|
55
|
+
/** Versioned blob hashes from the checkpoint proposed event. */
|
|
56
|
+
blobHashes: Buffer[];
|
|
57
|
+
/** Parent beacon block root from the L1 block, used for blob fetching. */
|
|
58
|
+
parentBeaconBlockRoot: string | undefined;
|
|
59
|
+
};
|
|
60
|
+
|
|
50
61
|
export async function retrievedToPublishedCheckpoint({
|
|
51
62
|
checkpointNumber,
|
|
52
63
|
archiveRoot,
|
|
@@ -137,31 +148,27 @@ export async function retrievedToPublishedCheckpoint({
|
|
|
137
148
|
}
|
|
138
149
|
|
|
139
150
|
/**
|
|
140
|
-
* Fetches
|
|
151
|
+
* Fetches checkpoint calldata from the rollup contract without fetching blob data.
|
|
152
|
+
* Returns RetrievedCheckpointFromCalldata objects that preserve the information needed for deferred blob fetching.
|
|
141
153
|
* @param rollup - The rollup contract wrapper.
|
|
142
154
|
* @param publicClient - The viem public client to use for transaction retrieval.
|
|
143
155
|
* @param debugClient - The viem debug client to use for trace/debug RPC methods (optional).
|
|
144
|
-
* @param blobClient - The blob client client for fetching blob data.
|
|
145
156
|
* @param searchStartBlock - The block number to use for starting the search.
|
|
146
157
|
* @param searchEndBlock - The highest block number that we should search up to.
|
|
147
|
-
* @param contractAddresses - The contract addresses (governanceProposerAddress, slashFactoryAddress, slashingProposerAddress).
|
|
148
158
|
* @param instrumentation - The archiver instrumentation instance.
|
|
149
159
|
* @param logger - The logger instance.
|
|
150
|
-
* @
|
|
151
|
-
* @returns An array of retrieved checkpoints.
|
|
160
|
+
* @returns An array of calldata-only checkpoints.
|
|
152
161
|
*/
|
|
153
|
-
export async function
|
|
162
|
+
export async function retrieveCheckpointCalldataFromRollup(
|
|
154
163
|
rollup: RollupContract,
|
|
155
164
|
publicClient: ViemPublicClient,
|
|
156
165
|
debugClient: ViemPublicDebugClient,
|
|
157
|
-
blobClient: BlobClientInterface,
|
|
158
166
|
searchStartBlock: bigint,
|
|
159
167
|
searchEndBlock: bigint,
|
|
160
168
|
instrumentation: ArchiverInstrumentation,
|
|
161
169
|
logger: Logger = createLogger('archiver'),
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
const retrievedCheckpoints: RetrievedCheckpoint[] = [];
|
|
170
|
+
): Promise<RetrievedCheckpointFromCalldata[]> {
|
|
171
|
+
const retrievedCheckpoints: RetrievedCheckpointFromCalldata[] = [];
|
|
165
172
|
|
|
166
173
|
let rollupConstants: { chainId: Fr; version: Fr; targetCommitteeSize: number } | undefined;
|
|
167
174
|
|
|
@@ -197,46 +204,39 @@ export async function retrieveCheckpointsFromRollup(
|
|
|
197
204
|
rollup,
|
|
198
205
|
publicClient,
|
|
199
206
|
debugClient,
|
|
200
|
-
blobClient,
|
|
201
207
|
checkpointProposedLogs,
|
|
202
208
|
rollupConstants,
|
|
203
209
|
instrumentation,
|
|
204
210
|
logger,
|
|
205
|
-
isHistoricalSync,
|
|
206
211
|
);
|
|
207
212
|
retrievedCheckpoints.push(...newCheckpoints);
|
|
208
213
|
searchStartBlock = lastLog.l1BlockNumber + 1n;
|
|
209
214
|
} while (searchStartBlock <= searchEndBlock);
|
|
210
215
|
|
|
211
|
-
// The asyncPool from processCheckpointProposedLogs will not necessarily return the checkpoints in order, so we sort them before returning.
|
|
212
216
|
return retrievedCheckpoints.sort((a, b) => Number(a.l1.blockNumber - b.l1.blockNumber));
|
|
213
217
|
}
|
|
214
218
|
|
|
215
219
|
/**
|
|
216
|
-
* Processes
|
|
220
|
+
* Processes CheckpointProposed logs, fetching only calldata (no blobs).
|
|
217
221
|
* @param rollup - The rollup contract wrapper.
|
|
218
222
|
* @param publicClient - The viem public client to use for transaction retrieval.
|
|
219
223
|
* @param debugClient - The viem debug client to use for trace/debug RPC methods (optional).
|
|
220
|
-
* @param blobClient - The blob client client for fetching blob data.
|
|
221
224
|
* @param logs - CheckpointProposed logs.
|
|
222
225
|
* @param rollupConstants - The rollup constants (chainId, version, targetCommitteeSize).
|
|
223
226
|
* @param instrumentation - The archiver instrumentation instance.
|
|
224
227
|
* @param logger - The logger instance.
|
|
225
|
-
* @
|
|
226
|
-
* @returns An array of retrieved checkpoints.
|
|
228
|
+
* @returns An array of calldata-only checkpoints.
|
|
227
229
|
*/
|
|
228
230
|
async function processCheckpointProposedLogs(
|
|
229
231
|
rollup: RollupContract,
|
|
230
232
|
publicClient: ViemPublicClient,
|
|
231
233
|
debugClient: ViemPublicDebugClient,
|
|
232
|
-
blobClient: BlobClientInterface,
|
|
233
234
|
logs: CheckpointProposedLog[],
|
|
234
235
|
{ chainId, version, targetCommitteeSize }: { chainId: Fr; version: Fr; targetCommitteeSize: number },
|
|
235
236
|
instrumentation: ArchiverInstrumentation,
|
|
236
237
|
logger: Logger,
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
const retrievedCheckpoints: RetrievedCheckpoint[] = [];
|
|
238
|
+
): Promise<RetrievedCheckpointFromCalldata[]> {
|
|
239
|
+
const retrievedCheckpoints: RetrievedCheckpointFromCalldata[] = [];
|
|
240
240
|
const calldataRetriever = new CalldataRetriever(
|
|
241
241
|
publicClient,
|
|
242
242
|
debugClient,
|
|
@@ -252,7 +252,6 @@ async function processCheckpointProposedLogs(
|
|
|
252
252
|
const archiveFromChain = await rollup.archiveAt(checkpointNumber);
|
|
253
253
|
const blobHashes = log.args.versionedBlobHashes;
|
|
254
254
|
|
|
255
|
-
// The value from the event and contract will match only if the checkpoint is in the chain.
|
|
256
255
|
if (archive.equals(archiveFromChain)) {
|
|
257
256
|
const expectedHashes = {
|
|
258
257
|
attestationsHash: log.args.attestationsHash.toString() as Hex,
|
|
@@ -268,19 +267,16 @@ async function processCheckpointProposedLogs(
|
|
|
268
267
|
const { timestamp, parentBeaconBlockRoot } = await getL1Block(publicClient, log.l1BlockNumber);
|
|
269
268
|
const l1 = new L1PublishedData(log.l1BlockNumber, timestamp, log.l1BlockHash.toString());
|
|
270
269
|
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
270
|
+
retrievedCheckpoints.push({
|
|
271
|
+
...checkpoint,
|
|
272
|
+
l1,
|
|
273
|
+
chainId,
|
|
274
|
+
version,
|
|
274
275
|
blobHashes,
|
|
275
|
-
checkpointNumber,
|
|
276
|
-
logger,
|
|
277
|
-
isHistoricalSync,
|
|
278
276
|
parentBeaconBlockRoot,
|
|
279
|
-
|
|
280
|
-
);
|
|
277
|
+
});
|
|
281
278
|
|
|
282
|
-
|
|
283
|
-
logger.trace(`Retrieved checkpoint ${checkpointNumber} from L1 tx ${log.l1TransactionHash}`, {
|
|
279
|
+
logger.trace(`Retrieved checkpoint calldata ${checkpointNumber} from L1 tx ${log.l1TransactionHash}`, {
|
|
284
280
|
l1BlockNumber: log.l1BlockNumber,
|
|
285
281
|
checkpointNumber,
|
|
286
282
|
archive: archive.toString(),
|
|
@@ -344,14 +340,10 @@ export async function getCheckpointBlobDataFromBlobs(
|
|
|
344
340
|
/** Given an L1 to L2 message, retrieves its corresponding event from the Inbox within a specific block range. */
|
|
345
341
|
export async function retrieveL1ToL2Message(
|
|
346
342
|
inbox: InboxContract,
|
|
347
|
-
|
|
348
|
-
fromBlock: bigint,
|
|
349
|
-
toBlock: bigint,
|
|
343
|
+
message: InboxMessage,
|
|
350
344
|
): Promise<InboxMessage | undefined> {
|
|
351
|
-
const
|
|
352
|
-
|
|
353
|
-
const messages = mapLogsInboxMessage(logs);
|
|
354
|
-
return messages.length > 0 ? messages[0] : undefined;
|
|
345
|
+
const log = await inbox.getMessageSentEventByHash(message.leaf.toString(), message.l1BlockNumber);
|
|
346
|
+
return log && mapLogInboxMessage(log);
|
|
355
347
|
}
|
|
356
348
|
|
|
357
349
|
/**
|
|
@@ -374,22 +366,22 @@ export async function retrieveL1ToL2Messages(
|
|
|
374
366
|
break;
|
|
375
367
|
}
|
|
376
368
|
|
|
377
|
-
retrievedL1ToL2Messages.push(...
|
|
369
|
+
retrievedL1ToL2Messages.push(...messageSentLogs.map(mapLogInboxMessage));
|
|
378
370
|
searchStartBlock = messageSentLogs.at(-1)!.l1BlockNumber + 1n;
|
|
379
371
|
}
|
|
380
372
|
|
|
381
373
|
return retrievedL1ToL2Messages;
|
|
382
374
|
}
|
|
383
375
|
|
|
384
|
-
function
|
|
385
|
-
return
|
|
376
|
+
function mapLogInboxMessage(log: MessageSentLog): InboxMessage {
|
|
377
|
+
return {
|
|
386
378
|
index: log.args.index,
|
|
387
379
|
leaf: log.args.leaf,
|
|
388
380
|
l1BlockNumber: log.l1BlockNumber,
|
|
389
381
|
l1BlockHash: log.l1BlockHash,
|
|
390
382
|
checkpointNumber: log.args.checkpointNumber,
|
|
391
383
|
rollingHash: log.args.rollingHash,
|
|
392
|
-
}
|
|
384
|
+
};
|
|
393
385
|
}
|
|
394
386
|
|
|
395
387
|
/** Retrieves L2ProofVerified events from the rollup contract. */
|
|
@@ -469,7 +461,7 @@ export async function getProofFromSubmitProofTx(
|
|
|
469
461
|
start: bigint;
|
|
470
462
|
end: bigint;
|
|
471
463
|
args: EpochProofPublicInputArgs;
|
|
472
|
-
|
|
464
|
+
headers: readonly ViemHeader[];
|
|
473
465
|
proof: Hex;
|
|
474
466
|
},
|
|
475
467
|
];
|
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
import { getPublicClient, getRpcUrlsFromClient } from '@aztec/ethereum/client';
|
|
2
|
+
import { RollupContract } from '@aztec/ethereum/contracts';
|
|
3
|
+
import type { L1ContractAddresses } from '@aztec/ethereum/l1-contract-addresses';
|
|
4
|
+
import type { ViemPublicClient } from '@aztec/ethereum/types';
|
|
5
|
+
import { type Logger, type LoggerBindings, createLogger } from '@aztec/foundation/log';
|
|
6
|
+
|
|
7
|
+
/** Subset of L1 contract addresses whose historical logs the Aztec node relies on. */
|
|
8
|
+
export type HistoricalLogsContractAddresses = Pick<
|
|
9
|
+
L1ContractAddresses,
|
|
10
|
+
'rollupAddress' | 'inboxAddress' | 'registryAddress' | 'governanceProposerAddress'
|
|
11
|
+
>;
|
|
12
|
+
|
|
13
|
+
/** Result of probing a single RPC URL. */
|
|
14
|
+
type ProbeResult = { ok: true } | { ok: false; reason: string; clientVersion: string | undefined };
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* Validates that every configured L1 RPC URL returns historical logs for the Rollup contract.
|
|
18
|
+
*
|
|
19
|
+
* Some RPC providers prune old logs, which would cause L1 syncing to silently fail. To detect this,
|
|
20
|
+
* we query for the `OwnershipTransferred` event which every Rollup emits in its constructor (via
|
|
21
|
+
* Ownable) on the block it was deployed (`l1StartBlock`). The `client` is typically a viem fallback
|
|
22
|
+
* transport over several user-configured RPC URLs — checking only the first URL would miss a bad
|
|
23
|
+
* secondary, so we probe each URL independently. The first URL that fails aborts startup, unless
|
|
24
|
+
* the operator has explicitly opted out.
|
|
25
|
+
*
|
|
26
|
+
* @param client - The L1 public client built from the user-configured RPC URLs.
|
|
27
|
+
* @param addresses - The subset of L1 contract addresses we rely on for historical log retrieval.
|
|
28
|
+
* @param skipCheck - If true, log warnings instead of throwing.
|
|
29
|
+
* @param bindings - Optional logger bindings for context.
|
|
30
|
+
* @throws Error if any URL fails the probe and skipCheck is false.
|
|
31
|
+
*/
|
|
32
|
+
export async function validateAndLogHistoricalLogsAvailability(
|
|
33
|
+
client: ViemPublicClient,
|
|
34
|
+
addresses: HistoricalLogsContractAddresses,
|
|
35
|
+
skipCheck: boolean,
|
|
36
|
+
bindings?: LoggerBindings,
|
|
37
|
+
): Promise<void> {
|
|
38
|
+
const logger = createLogger('archiver:validate_historical_logs', bindings);
|
|
39
|
+
logger.debug('Validating historical log availability on L1 RPCs');
|
|
40
|
+
|
|
41
|
+
const urls = getRpcUrlsFromClient(client);
|
|
42
|
+
if (urls.length === 0) {
|
|
43
|
+
logger.warn('Could not determine L1 RPC URLs from the public client; skipping historical logs check.');
|
|
44
|
+
return;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
const chainId = client.chain?.id;
|
|
48
|
+
if (chainId === undefined) {
|
|
49
|
+
logger.warn('Could not determine L1 chain ID from the public client; skipping historical logs check.');
|
|
50
|
+
return;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
for (const url of urls) {
|
|
54
|
+
const probeClient = getPublicClient({ l1RpcUrls: [url], l1ChainId: chainId });
|
|
55
|
+
const rollup = new RollupContract(probeClient, addresses.rollupAddress.toString());
|
|
56
|
+
const result = await probeRpcUrl(rollup, probeClient, logger);
|
|
57
|
+
|
|
58
|
+
if (result.ok) {
|
|
59
|
+
logger.debug(`L1 RPC ${url} returned historical OwnershipTransferred log for the Rollup contract.`);
|
|
60
|
+
continue;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
const errorMessage = buildErrorMessage(url, result, addresses);
|
|
64
|
+
if (skipCheck) {
|
|
65
|
+
logger.warn(`${errorMessage}\nContinuing because ARCHIVER_SKIP_HISTORICAL_LOGS_CHECK is true.`);
|
|
66
|
+
continue;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
logger.error(errorMessage);
|
|
70
|
+
throw new Error(errorMessage);
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
/** Runs the OwnershipTransferred probe against a single RPC and queries its client version. */
|
|
75
|
+
async function probeRpcUrl(rollup: RollupContract, client: ViemPublicClient, logger: Logger): Promise<ProbeResult> {
|
|
76
|
+
let queryError: unknown;
|
|
77
|
+
try {
|
|
78
|
+
const logs = await rollup.getOwnershipTransferredEventsAtDeploy();
|
|
79
|
+
if (logs.length > 0) {
|
|
80
|
+
return { ok: true };
|
|
81
|
+
}
|
|
82
|
+
} catch (err) {
|
|
83
|
+
queryError = err;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
const clientVersion = await getClientVersion(client, logger);
|
|
87
|
+
|
|
88
|
+
let reason: string;
|
|
89
|
+
if (queryError instanceof Error) {
|
|
90
|
+
reason = `Query for historical logs failed: ${queryError.message}`;
|
|
91
|
+
} else if (queryError !== undefined) {
|
|
92
|
+
reason = 'Query for historical logs failed with a non-Error value.';
|
|
93
|
+
} else {
|
|
94
|
+
reason = 'No OwnershipTransferred event was returned by the L1 RPC for the Rollup deploy block.';
|
|
95
|
+
}
|
|
96
|
+
return { ok: false, reason, clientVersion };
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
/** Builds the operator-facing error message for a failing RPC URL. */
|
|
100
|
+
function buildErrorMessage(
|
|
101
|
+
url: string,
|
|
102
|
+
result: Extract<ProbeResult, { ok: false }>,
|
|
103
|
+
addresses: HistoricalLogsContractAddresses,
|
|
104
|
+
): string {
|
|
105
|
+
return [
|
|
106
|
+
`L1 RPC at ${url} does not return historical logs for the Rollup contract. ${result.reason}`,
|
|
107
|
+
`This likely means this Ethereum RPC node prunes old logs, which would cause the archiver ` +
|
|
108
|
+
`to silently miss data during L1 sync.`,
|
|
109
|
+
result.clientVersion
|
|
110
|
+
? `Detected L1 client version for ${url}: ${result.clientVersion}.`
|
|
111
|
+
: `Could not determine L1 client version for ${url}.`,
|
|
112
|
+
`The following L1 contract addresses must have their historical logs retained by the RPC node:`,
|
|
113
|
+
` - Rollup: ${addresses.rollupAddress.toString()}`,
|
|
114
|
+
` - Inbox: ${addresses.inboxAddress.toString()}`,
|
|
115
|
+
` - Registry: ${addresses.registryAddress.toString()}`,
|
|
116
|
+
` - GovernanceProposer: ${addresses.governanceProposerAddress.toString()}`,
|
|
117
|
+
isReth(result.clientVersion)
|
|
118
|
+
? `To retain logs for these contracts, configure reth with a ` +
|
|
119
|
+
`prune.segments.receipts_log_filter entry for each address above ` +
|
|
120
|
+
`so reth does not prune their receipts/logs. See https://reth.rs/run/pruning.html for details.`
|
|
121
|
+
: `Point this RPC endpoint at a node that retains full log history for the addresses above.`,
|
|
122
|
+
`Set ARCHIVER_SKIP_HISTORICAL_LOGS_CHECK=true to bypass this check at your own risk.`,
|
|
123
|
+
].join('\n');
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
/** Queries `web3_clientVersion` on the L1 RPC. Returns undefined if the call fails or returns a non-string. */
|
|
127
|
+
async function getClientVersion(client: ViemPublicClient, logger: Logger): Promise<string | undefined> {
|
|
128
|
+
try {
|
|
129
|
+
const result = await client.request({ method: 'web3_clientVersion' });
|
|
130
|
+
return typeof result === 'string' ? result : undefined;
|
|
131
|
+
} catch (err) {
|
|
132
|
+
logger.debug(`Failed to query web3_clientVersion: ${err instanceof Error ? err.message : err}`);
|
|
133
|
+
return undefined;
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
/** Heuristic check for reth based on the web3_clientVersion string (reth returns e.g. "reth/v1.0.0-..."). */
|
|
138
|
+
function isReth(clientVersion: string | undefined): boolean {
|
|
139
|
+
return !!clientVersion && /reth/i.test(clientVersion);
|
|
140
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import type { BlockNumber } from '@aztec/foundation/branded-types';
|
|
2
|
+
import type { Fr } from '@aztec/foundation/curves/bn254';
|
|
3
|
+
import type { FunctionSelector } from '@aztec/stdlib/abi';
|
|
4
|
+
import type { AztecAddress } from '@aztec/stdlib/aztec-address';
|
|
5
|
+
import type { ContractClassPublic, ContractDataSource, ContractInstanceWithAddress } from '@aztec/stdlib/contract';
|
|
6
|
+
import type { UInt64 } from '@aztec/stdlib/types';
|
|
7
|
+
|
|
8
|
+
import type { ArchiverDataStores } from '../store/data_stores.js';
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* Thin {@link ContractDataSource} adapter over {@link ArchiverDataStores}.
|
|
12
|
+
*
|
|
13
|
+
* Used by contexts (e.g. offline epoch re-prover tools) that need a ContractDataSource
|
|
14
|
+
* but do not need a full archiver instance.
|
|
15
|
+
*/
|
|
16
|
+
export class ArchiverContractDataSourceAdapter implements ContractDataSource {
|
|
17
|
+
constructor(private readonly stores: ArchiverDataStores) {}
|
|
18
|
+
|
|
19
|
+
public getBlockNumber(): Promise<BlockNumber> {
|
|
20
|
+
return this.stores.blocks.getLatestL2BlockNumber();
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
public getContractClass(id: Fr): Promise<ContractClassPublic | undefined> {
|
|
24
|
+
return this.stores.contractClasses.getContractClass(id);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
public getBytecodeCommitment(id: Fr): Promise<Fr | undefined> {
|
|
28
|
+
return this.stores.contractClasses.getBytecodeCommitment(id);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
public getContract(address: AztecAddress, timestamp: UInt64): Promise<ContractInstanceWithAddress | undefined> {
|
|
32
|
+
return this.stores.contractInstances.getContractInstance(address, timestamp);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
public getContractClassIds(): Promise<Fr[]> {
|
|
36
|
+
return this.stores.contractClasses.getContractClassIds();
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
public getDebugFunctionName(_address: AztecAddress, selector: FunctionSelector): Promise<string | undefined> {
|
|
40
|
+
return Promise.resolve(this.stores.functionNames.get(selector));
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
public registerContractFunctionSignatures(signatures: string[]): Promise<void> {
|
|
44
|
+
return this.stores.functionNames.register(signatures);
|
|
45
|
+
}
|
|
46
|
+
}
|