@aztec/archiver 0.0.1-commit.e558bd1c → 0.0.1-commit.e5a3663dd
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 +12 -6
- package/dest/archiver.d.ts +26 -15
- package/dest/archiver.d.ts.map +1 -1
- package/dest/archiver.js +161 -153
- package/dest/config.d.ts +5 -3
- package/dest/config.d.ts.map +1 -1
- package/dest/config.js +16 -4
- package/dest/errors.d.ts +61 -10
- package/dest/errors.d.ts.map +1 -1
- package/dest/errors.js +88 -14
- package/dest/factory.d.ts +6 -7
- package/dest/factory.d.ts.map +1 -1
- package/dest/factory.js +40 -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/bin/retrieve-calldata.js +32 -28
- package/dest/l1/calldata_retriever.d.ts +74 -50
- package/dest/l1/calldata_retriever.d.ts.map +1 -1
- package/dest/l1/calldata_retriever.js +197 -260
- package/dest/l1/data_retrieval.d.ts +26 -17
- 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/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 +42 -0
- package/dest/modules/data_source_base.d.ts +27 -14
- package/dest/modules/data_source_base.d.ts.map +1 -1
- package/dest/modules/data_source_base.js +98 -125
- package/dest/modules/data_store_updater.d.ts +37 -17
- package/dest/modules/data_store_updater.d.ts.map +1 -1
- package/dest/modules/data_store_updater.js +155 -112
- package/dest/modules/instrumentation.d.ts +21 -3
- package/dest/modules/instrumentation.d.ts.map +1 -1
- package/dest/modules/instrumentation.js +41 -8
- package/dest/modules/l1_synchronizer.d.ts +13 -11
- package/dest/modules/l1_synchronizer.d.ts.map +1 -1
- package/dest/modules/l1_synchronizer.js +355 -182
- 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 +107 -31
- package/dest/store/block_store.d.ts.map +1 -1
- package/dest/store/block_store.js +477 -141
- 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 +50 -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 +20 -0
- package/dest/store/l2_tips_cache.d.ts.map +1 -0
- package/dest/store/l2_tips_cache.js +109 -0
- package/dest/store/log_store.d.ts +6 -3
- package/dest/store/log_store.d.ts.map +1 -1
- package/dest/store/log_store.js +95 -20
- 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_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 +35 -5
- package/dest/test/mock_l2_block_source.d.ts.map +1 -1
- package/dest/test/mock_l2_block_source.js +182 -89
- package/dest/test/mock_structs.d.ts +4 -1
- package/dest/test/mock_structs.d.ts.map +1 -1
- package/dest/test/mock_structs.js +13 -1
- package/dest/test/noop_l1_archiver.d.ts +7 -4
- package/dest/test/noop_l1_archiver.d.ts.map +1 -1
- package/dest/test/noop_l1_archiver.js +14 -8
- package/package.json +13 -13
- package/src/archiver.ts +199 -174
- package/src/config.ts +23 -2
- package/src/errors.ts +133 -22
- package/src/factory.ts +53 -30
- package/src/index.ts +18 -2
- package/src/l1/README.md +25 -68
- package/src/l1/bin/retrieve-calldata.ts +40 -27
- package/src/l1/calldata_retriever.ts +261 -379
- package/src/l1/data_retrieval.ts +58 -69
- 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 +59 -0
- package/src/modules/data_source_base.ts +142 -144
- package/src/modules/data_store_updater.ts +187 -141
- package/src/modules/instrumentation.ts +56 -9
- package/src/modules/l1_synchronizer.ts +463 -218
- package/src/modules/validation.ts +10 -9
- package/src/store/block_store.ts +587 -177
- package/src/store/contract_class_store.ts +31 -103
- package/src/store/contract_instance_store.ts +51 -5
- package/src/store/data_stores.ts +108 -0
- package/src/store/function_names_cache.ts +37 -0
- package/src/store/l2_tips_cache.ts +134 -0
- package/src/store/log_store.ts +128 -32
- 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_l1_to_l2_message_source.ts +1 -0
- package/src/test/mock_l2_block_source.ts +230 -82
- package/src/test/mock_structs.ts +20 -6
- package/src/test/noop_l1_archiver.ts +16 -8
- 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,5 +1,6 @@
|
|
|
1
1
|
import type { BlobClientInterface } from '@aztec/blob-client/client';
|
|
2
2
|
import { type Blob, getBlobsPerL1Block, getPrefixedEthBlobCommitments } from '@aztec/blob-lib';
|
|
3
|
+
import { INITIAL_CHECKPOINT_NUMBER } from '@aztec/constants';
|
|
3
4
|
import type { CheckpointProposedLog, InboxContract, MessageSentLog, RollupContract } from '@aztec/ethereum/contracts';
|
|
4
5
|
import { MULTI_CALL_3_ADDRESS } from '@aztec/ethereum/contracts';
|
|
5
6
|
import type { ViemPublicClient } from '@aztec/ethereum/types';
|
|
@@ -14,15 +15,21 @@ import { CommitteeAttestation, CommitteeAttestationsAndSigners, L2Block } from '
|
|
|
14
15
|
import { Checkpoint } from '@aztec/stdlib/checkpoint';
|
|
15
16
|
import { getSlotAtTimestamp } from '@aztec/stdlib/epoch-helpers';
|
|
16
17
|
import { InboxLeaf } from '@aztec/stdlib/messaging';
|
|
17
|
-
import {
|
|
18
|
-
|
|
19
|
-
makeCheckpointAttestationFromCheckpoint,
|
|
20
|
-
mockCheckpointAndMessages,
|
|
21
|
-
} from '@aztec/stdlib/testing';
|
|
18
|
+
import { ConsensusPayload, getHashedSignaturePayloadTypedData } from '@aztec/stdlib/p2p';
|
|
19
|
+
import { mockCheckpointAndMessages } from '@aztec/stdlib/testing';
|
|
22
20
|
import { AppendOnlyTreeSnapshot } from '@aztec/stdlib/trees';
|
|
23
21
|
|
|
24
22
|
import { type MockProxy, mock } from 'jest-mock-extended';
|
|
25
|
-
import {
|
|
23
|
+
import {
|
|
24
|
+
type AbiParameter,
|
|
25
|
+
type FormattedBlock,
|
|
26
|
+
type Transaction,
|
|
27
|
+
encodeAbiParameters,
|
|
28
|
+
encodeFunctionData,
|
|
29
|
+
keccak256,
|
|
30
|
+
multicall3Abi,
|
|
31
|
+
toHex,
|
|
32
|
+
} from 'viem';
|
|
26
33
|
|
|
27
34
|
import { updateRollingHash } from '../structs/inbox_message.js';
|
|
28
35
|
|
|
@@ -87,6 +94,10 @@ type CheckpointData = {
|
|
|
87
94
|
blobHashes: `0x${string}`[];
|
|
88
95
|
blobs: Blob[];
|
|
89
96
|
signers: Secp256k1Signer[];
|
|
97
|
+
/** Hash of the packed attestations, matching what the L1 event emits. */
|
|
98
|
+
attestationsHash: Buffer32;
|
|
99
|
+
/** Payload digest, matching what the L1 event emits. */
|
|
100
|
+
payloadDigest: Buffer32;
|
|
90
101
|
/** If true, archiveAt will ignore it */
|
|
91
102
|
pruned?: boolean;
|
|
92
103
|
};
|
|
@@ -131,12 +142,19 @@ export class FakeL1State {
|
|
|
131
142
|
private provenCheckpointNumber: CheckpointNumber = CheckpointNumber(0);
|
|
132
143
|
private targetCommitteeSize: number = 0;
|
|
133
144
|
private version: bigint = 1n;
|
|
145
|
+
private canPruneResult: boolean = false;
|
|
134
146
|
|
|
135
147
|
// Computed from checkpoints based on L1 block visibility
|
|
136
148
|
private pendingCheckpointNumber: CheckpointNumber = CheckpointNumber(0);
|
|
137
149
|
|
|
150
|
+
// The L1 block number reported as "finalized" (defaults to the start block).
|
|
151
|
+
// `undefined` simulates the startup window on a fresh devnet where
|
|
152
|
+
// `getBlock({ blockTag: 'finalized' })` fails with "finalized block not found".
|
|
153
|
+
private finalizedL1BlockNumber: bigint | undefined;
|
|
154
|
+
|
|
138
155
|
constructor(private readonly config: FakeL1StateConfig) {
|
|
139
156
|
this.l1BlockNumber = config.l1StartBlock;
|
|
157
|
+
this.finalizedL1BlockNumber = config.l1StartBlock;
|
|
140
158
|
this.lastArchive = new AppendOnlyTreeSnapshot(config.genesisArchiveRoot, 1);
|
|
141
159
|
}
|
|
142
160
|
|
|
@@ -193,10 +211,10 @@ export class FakeL1State {
|
|
|
193
211
|
// Store the messages internally so they match the checkpoint's inHash
|
|
194
212
|
this.addMessages(checkpointNumber, messagesL1BlockNumber, messages);
|
|
195
213
|
|
|
196
|
-
// Create the transaction and
|
|
197
|
-
const tx = this.makeRollupTx(checkpoint, signers);
|
|
198
|
-
const blobHashes = this.makeVersionedBlobHashes(checkpoint);
|
|
199
|
-
const blobs = this.makeBlobsFromCheckpoint(checkpoint);
|
|
214
|
+
// Create the transaction, blobs, and event hashes
|
|
215
|
+
const { tx, attestationsHash, payloadDigest } = await this.makeRollupTx(checkpoint, signers);
|
|
216
|
+
const blobHashes = await this.makeVersionedBlobHashes(checkpoint);
|
|
217
|
+
const blobs = await this.makeBlobsFromCheckpoint(checkpoint);
|
|
200
218
|
|
|
201
219
|
// Store the checkpoint data
|
|
202
220
|
this.checkpoints.push({
|
|
@@ -207,6 +225,8 @@ export class FakeL1State {
|
|
|
207
225
|
blobHashes,
|
|
208
226
|
blobs,
|
|
209
227
|
signers,
|
|
228
|
+
attestationsHash,
|
|
229
|
+
payloadDigest,
|
|
210
230
|
});
|
|
211
231
|
|
|
212
232
|
// Update last archive for auto-chaining
|
|
@@ -266,16 +286,43 @@ export class FakeL1State {
|
|
|
266
286
|
this.updatePendingCheckpointNumber();
|
|
267
287
|
}
|
|
268
288
|
|
|
289
|
+
/**
|
|
290
|
+
* Sets the L1 block number that will be reported as "finalized". Pass `undefined` to
|
|
291
|
+
* simulate a chain that does not yet have a finalized block (devnet startup).
|
|
292
|
+
*/
|
|
293
|
+
setFinalizedL1BlockNumber(blockNumber: bigint | undefined): void {
|
|
294
|
+
this.finalizedL1BlockNumber = blockNumber;
|
|
295
|
+
}
|
|
296
|
+
|
|
269
297
|
/** Marks a checkpoint as proven. Updates provenCheckpointNumber. */
|
|
270
298
|
markCheckpointAsProven(checkpointNumber: CheckpointNumber): void {
|
|
271
299
|
this.provenCheckpointNumber = checkpointNumber;
|
|
272
300
|
}
|
|
273
301
|
|
|
302
|
+
/**
|
|
303
|
+
* Simulates what `rollup.getProvenCheckpointNumber({ blockNumber: atL1Block })` would return.
|
|
304
|
+
*/
|
|
305
|
+
getProvenCheckpointNumberAtL1Block(atL1Block: bigint): CheckpointNumber {
|
|
306
|
+
if (this.provenCheckpointNumber === 0) {
|
|
307
|
+
return CheckpointNumber(0);
|
|
308
|
+
}
|
|
309
|
+
const checkpoint = this.checkpoints.find(cp => cp.checkpointNumber === this.provenCheckpointNumber);
|
|
310
|
+
if (checkpoint && checkpoint.l1BlockNumber <= atL1Block) {
|
|
311
|
+
return this.provenCheckpointNumber;
|
|
312
|
+
}
|
|
313
|
+
return CheckpointNumber(0);
|
|
314
|
+
}
|
|
315
|
+
|
|
274
316
|
/** Sets the target committee size for attestation validation. */
|
|
275
317
|
setTargetCommitteeSize(size: number): void {
|
|
276
318
|
this.targetCommitteeSize = size;
|
|
277
319
|
}
|
|
278
320
|
|
|
321
|
+
/** Sets whether the rollup contract would allow pruning at the next block. */
|
|
322
|
+
setCanPrune(value: boolean): void {
|
|
323
|
+
this.canPruneResult = value;
|
|
324
|
+
}
|
|
325
|
+
|
|
279
326
|
/**
|
|
280
327
|
* Removes all entries for a checkpoint number (simulates L1 reorg or prune).
|
|
281
328
|
* Note: Does NOT remove messages for this checkpoint (use numL1ToL2Messages: 0 when re-adding).
|
|
@@ -286,6 +333,21 @@ export class FakeL1State {
|
|
|
286
333
|
this.updatePendingCheckpointNumber();
|
|
287
334
|
}
|
|
288
335
|
|
|
336
|
+
/**
|
|
337
|
+
* Moves a checkpoint to a different L1 block number (simulates L1 reorg that
|
|
338
|
+
* re-includes the same checkpoint transaction in a different block).
|
|
339
|
+
* The checkpoint content stays the same — only the L1 metadata changes.
|
|
340
|
+
* Auto-updates pending status.
|
|
341
|
+
*/
|
|
342
|
+
moveCheckpointToL1Block(checkpointNumber: CheckpointNumber, newL1BlockNumber: bigint): void {
|
|
343
|
+
for (const cpData of this.checkpoints) {
|
|
344
|
+
if (cpData.checkpointNumber === checkpointNumber) {
|
|
345
|
+
cpData.l1BlockNumber = newL1BlockNumber;
|
|
346
|
+
}
|
|
347
|
+
}
|
|
348
|
+
this.updatePendingCheckpointNumber();
|
|
349
|
+
}
|
|
350
|
+
|
|
289
351
|
/**
|
|
290
352
|
* Removes messages after a given total index (simulates L1 reorg).
|
|
291
353
|
* Auto-updates rolling hash.
|
|
@@ -384,6 +446,13 @@ export class FakeL1State {
|
|
|
384
446
|
});
|
|
385
447
|
});
|
|
386
448
|
|
|
449
|
+
mockRollup.getProvenCheckpointNumber.mockImplementation((options?: { blockNumber?: bigint }) => {
|
|
450
|
+
const atBlock = options?.blockNumber ?? this.l1BlockNumber;
|
|
451
|
+
return Promise.resolve(this.getProvenCheckpointNumberAtL1Block(atBlock));
|
|
452
|
+
});
|
|
453
|
+
|
|
454
|
+
mockRollup.canPruneAtTime.mockImplementation(() => Promise.resolve(this.canPruneResult));
|
|
455
|
+
|
|
387
456
|
// Mock the wrapper method for fetching checkpoint events
|
|
388
457
|
mockRollup.getCheckpointProposedEvents.mockImplementation((fromBlock: bigint, toBlock: bigint) =>
|
|
389
458
|
Promise.resolve(this.getCheckpointProposedLogs(fromBlock, toBlock)),
|
|
@@ -398,21 +467,44 @@ export class FakeL1State {
|
|
|
398
467
|
createMockInboxContract(_publicClient: MockProxy<ViemPublicClient>): MockProxy<InboxContract> {
|
|
399
468
|
const mockInbox = mock<InboxContract>();
|
|
400
469
|
|
|
401
|
-
mockInbox.getState.mockImplementation(() =>
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
470
|
+
mockInbox.getState.mockImplementation((opts: { blockTag?: string; blockNumber?: bigint } = {}) => {
|
|
471
|
+
// Filter messages visible at the given block number (or all if not specified)
|
|
472
|
+
const blockNumber = opts.blockNumber ?? this.l1BlockNumber;
|
|
473
|
+
const visibleMessages = this.messages.filter(m => m.l1BlockNumber <= blockNumber);
|
|
474
|
+
|
|
475
|
+
// treeInProgress must be > any sealed checkpoint. On L1, a checkpoint can only be proposed
|
|
476
|
+
// after its messages are sealed, so treeInProgress > checkpointNumber for all published checkpoints.
|
|
477
|
+
const maxFromMessages =
|
|
478
|
+
visibleMessages.length > 0 ? Math.max(...visibleMessages.map(m => Number(m.checkpointNumber))) + 1 : 0;
|
|
479
|
+
const maxFromCheckpoints =
|
|
480
|
+
this.checkpoints.length > 0
|
|
481
|
+
? Math.max(
|
|
482
|
+
...this.checkpoints
|
|
483
|
+
.filter(cp => !cp.pruned && cp.l1BlockNumber <= blockNumber)
|
|
484
|
+
.map(cp => Number(cp.checkpointNumber)),
|
|
485
|
+
0,
|
|
486
|
+
) + 1
|
|
487
|
+
: 0;
|
|
488
|
+
const treeInProgress = Math.max(maxFromMessages, maxFromCheckpoints, INITIAL_CHECKPOINT_NUMBER);
|
|
489
|
+
|
|
490
|
+
// Compute rolling hash only for visible messages
|
|
491
|
+
const rollingHash =
|
|
492
|
+
visibleMessages.length > 0 ? visibleMessages[visibleMessages.length - 1].rollingHash : Buffer16.ZERO;
|
|
493
|
+
|
|
494
|
+
return Promise.resolve({
|
|
495
|
+
messagesRollingHash: rollingHash,
|
|
496
|
+
totalMessagesInserted: BigInt(visibleMessages.length),
|
|
497
|
+
treeInProgress: BigInt(treeInProgress),
|
|
498
|
+
});
|
|
499
|
+
});
|
|
408
500
|
|
|
409
501
|
// Mock the wrapper methods for fetching message events
|
|
410
502
|
mockInbox.getMessageSentEvents.mockImplementation((fromBlock: bigint, toBlock: bigint) =>
|
|
411
503
|
Promise.resolve(this.getMessageSentLogs(fromBlock, toBlock)),
|
|
412
504
|
);
|
|
413
505
|
|
|
414
|
-
mockInbox.getMessageSentEventByHash.mockImplementation((
|
|
415
|
-
Promise.resolve(this.
|
|
506
|
+
mockInbox.getMessageSentEventByHash.mockImplementation((msgHash: string, aroundL1BlockNumber: bigint) =>
|
|
507
|
+
Promise.resolve(this.getMessageSentLogByHash(msgHash, aroundL1BlockNumber) as MessageSentLog),
|
|
416
508
|
);
|
|
417
509
|
|
|
418
510
|
return mockInbox;
|
|
@@ -423,12 +515,23 @@ export class FakeL1State {
|
|
|
423
515
|
const publicClient = mock<ViemPublicClient>();
|
|
424
516
|
|
|
425
517
|
publicClient.getChainId.mockResolvedValue(1);
|
|
518
|
+
// Several consumers (CalldataRetriever, ArchiverL1Synchronizer) derive the EIP-712 signing
|
|
519
|
+
// context from `publicClient.chain.id`. Pin it so it matches `getSignatureContext()` below.
|
|
520
|
+
(publicClient as unknown as { chain: { id: number } }).chain = { id: 1 };
|
|
426
521
|
publicClient.getBlockNumber.mockImplementation(() => Promise.resolve(this.l1BlockNumber));
|
|
427
522
|
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
523
|
+
publicClient.getBlock.mockImplementation((async (args: { blockNumber?: bigint; blockTag?: string } = {}) => {
|
|
524
|
+
let blockNum: bigint;
|
|
525
|
+
if (args.blockTag === 'finalized') {
|
|
526
|
+
if (this.finalizedL1BlockNumber === undefined) {
|
|
527
|
+
throw Object.assign(new Error('finalized block not found'), {
|
|
528
|
+
details: 'finalized block not found',
|
|
529
|
+
});
|
|
530
|
+
}
|
|
531
|
+
blockNum = this.finalizedL1BlockNumber;
|
|
532
|
+
} else {
|
|
533
|
+
blockNum = args.blockNumber ?? (await publicClient.getBlockNumber());
|
|
534
|
+
}
|
|
432
535
|
return {
|
|
433
536
|
number: blockNum,
|
|
434
537
|
timestamp: BigInt(blockNum) * BigInt(this.config.ethereumSlotDuration) + this.config.l1GenesisTime,
|
|
@@ -450,10 +553,10 @@ export class FakeL1State {
|
|
|
450
553
|
createMockBlobClient(): MockProxy<BlobClientInterface> {
|
|
451
554
|
const blobClient = mock<BlobClientInterface>();
|
|
452
555
|
|
|
453
|
-
// The blockId is the
|
|
556
|
+
// The blockId is the L1 block hash, which we derive from the L1 block number
|
|
454
557
|
blobClient.getBlobSidecar.mockImplementation((blockId: `0x${string}`) =>
|
|
455
558
|
Promise.resolve(
|
|
456
|
-
this.checkpoints.find(cpData => cpData.
|
|
559
|
+
this.checkpoints.find(cpData => Buffer32.fromBigInt(cpData.l1BlockNumber).toString() === blockId)?.blobs ?? [],
|
|
457
560
|
),
|
|
458
561
|
);
|
|
459
562
|
|
|
@@ -502,10 +605,8 @@ export class FakeL1State {
|
|
|
502
605
|
checkpointNumber: cpData.checkpointNumber,
|
|
503
606
|
archive: cpData.checkpoint.archive.root,
|
|
504
607
|
versionedBlobHashes: cpData.blobHashes.map(h => Buffer.from(h.slice(2), 'hex')),
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
payloadDigest: undefined,
|
|
508
|
-
attestationsHash: undefined,
|
|
608
|
+
attestationsHash: cpData.attestationsHash,
|
|
609
|
+
payloadDigest: cpData.payloadDigest,
|
|
509
610
|
},
|
|
510
611
|
}));
|
|
511
612
|
}
|
|
@@ -531,24 +632,58 @@ export class FakeL1State {
|
|
|
531
632
|
}));
|
|
532
633
|
}
|
|
533
634
|
|
|
534
|
-
private
|
|
635
|
+
private getMessageSentLogByHash(msgHash: string, aroundL1BlockNumber: bigint): MessageSentLog | undefined {
|
|
636
|
+
const msg = this.messages.find(
|
|
637
|
+
msg =>
|
|
638
|
+
msg.leaf.toString() === msgHash &&
|
|
639
|
+
msg.l1BlockNumber >= aroundL1BlockNumber - 5n &&
|
|
640
|
+
msg.l1BlockNumber <= aroundL1BlockNumber + 5n,
|
|
641
|
+
);
|
|
642
|
+
if (!msg) {
|
|
643
|
+
return undefined;
|
|
644
|
+
}
|
|
645
|
+
return {
|
|
646
|
+
l1BlockNumber: msg.l1BlockNumber,
|
|
647
|
+
l1BlockHash: Buffer32.fromBigInt(msg.l1BlockNumber),
|
|
648
|
+
l1TransactionHash: `0x${msg.l1BlockNumber.toString(16)}` as `0x${string}`,
|
|
649
|
+
args: {
|
|
650
|
+
checkpointNumber: msg.checkpointNumber,
|
|
651
|
+
index: msg.index,
|
|
652
|
+
leaf: msg.leaf,
|
|
653
|
+
rollingHash: msg.rollingHash,
|
|
654
|
+
},
|
|
655
|
+
};
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
private async makeRollupTx(
|
|
659
|
+
checkpoint: Checkpoint,
|
|
660
|
+
signers: Secp256k1Signer[],
|
|
661
|
+
): Promise<{ tx: Transaction; attestationsHash: Buffer32; payloadDigest: Buffer32 }> {
|
|
662
|
+
const signatureContext = this.getSignatureContext();
|
|
663
|
+
const consensusPayload = ConsensusPayload.fromCheckpoint(checkpoint, signatureContext);
|
|
664
|
+
const attestationDigest = getHashedSignaturePayloadTypedData(consensusPayload);
|
|
535
665
|
const attestations = signers
|
|
536
|
-
.map(signer =>
|
|
537
|
-
.map(attestation => CommitteeAttestation.fromSignature(attestation.signature))
|
|
666
|
+
.map(signer => CommitteeAttestation.fromSignature(signer.sign(attestationDigest)))
|
|
538
667
|
.map(committeeAttestation => committeeAttestation.toViem());
|
|
539
668
|
|
|
540
669
|
const header = checkpoint.header.toViem();
|
|
541
|
-
const blobInput = getPrefixedEthBlobCommitments(getBlobsPerL1Block(checkpoint.toBlobFields()));
|
|
670
|
+
const blobInput = getPrefixedEthBlobCommitments(await getBlobsPerL1Block(checkpoint.toBlobFields()));
|
|
542
671
|
const archive = toHex(checkpoint.archive.root.toBuffer());
|
|
543
672
|
const attestationsAndSigners = new CommitteeAttestationsAndSigners(
|
|
544
673
|
attestations.map(attestation => CommitteeAttestation.fromViem(attestation)),
|
|
674
|
+
signatureContext,
|
|
545
675
|
);
|
|
546
676
|
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
677
|
+
// Fall back to a random signer when no attesters are provided, so tests that
|
|
678
|
+
// don't care about the proposer identity (e.g. sync tests) still produce a
|
|
679
|
+
// valid-looking signature for the attestationsAndSigners struct.
|
|
680
|
+
const proposerSigner = signers[0] ?? Secp256k1Signer.random();
|
|
681
|
+
const attestationsAndSignersSignature = proposerSigner.sign(
|
|
682
|
+
getHashedSignaturePayloadTypedData(attestationsAndSigners),
|
|
550
683
|
);
|
|
551
684
|
|
|
685
|
+
const packedAttestations = attestationsAndSigners.getPackedAttestations();
|
|
686
|
+
|
|
552
687
|
const rollupInput = encodeFunctionData({
|
|
553
688
|
abi: RollupAbi,
|
|
554
689
|
functionName: 'propose',
|
|
@@ -558,7 +693,7 @@ export class FakeL1State {
|
|
|
558
693
|
archive,
|
|
559
694
|
oracleInput: { feeAssetPriceModifier: 0n },
|
|
560
695
|
},
|
|
561
|
-
|
|
696
|
+
packedAttestations,
|
|
562
697
|
attestationsAndSigners.getSigners().map(signer => signer.toString()),
|
|
563
698
|
attestationsAndSignersSignature.toViemSignature(),
|
|
564
699
|
blobInput,
|
|
@@ -579,21 +714,57 @@ export class FakeL1State {
|
|
|
579
714
|
],
|
|
580
715
|
});
|
|
581
716
|
|
|
582
|
-
|
|
717
|
+
// Compute attestationsHash (same logic as CalldataRetriever)
|
|
718
|
+
const attestationsHash = Buffer32.fromString(
|
|
719
|
+
keccak256(encodeAbiParameters([this.getCommitteeAttestationsStructDef()], [packedAttestations])),
|
|
720
|
+
);
|
|
721
|
+
|
|
722
|
+
// Compute payloadDigest (same logic as CalldataRetriever)
|
|
723
|
+
const payloadDigest = getHashedSignaturePayloadTypedData(consensusPayload);
|
|
724
|
+
|
|
725
|
+
const tx = {
|
|
583
726
|
input: multiCallInput,
|
|
584
727
|
hash: archive,
|
|
585
728
|
blockHash: archive,
|
|
586
729
|
to: MULTI_CALL_3_ADDRESS as `0x${string}`,
|
|
587
730
|
} as Transaction<bigint, number>;
|
|
731
|
+
|
|
732
|
+
return { tx, attestationsHash, payloadDigest };
|
|
733
|
+
}
|
|
734
|
+
|
|
735
|
+
private getSignatureContext() {
|
|
736
|
+
return {
|
|
737
|
+
chainId: 1,
|
|
738
|
+
rollupAddress: this.config.rollupAddress,
|
|
739
|
+
};
|
|
740
|
+
}
|
|
741
|
+
|
|
742
|
+
/** Extracts the CommitteeAttestations struct definition from RollupAbi for hash computation. */
|
|
743
|
+
private getCommitteeAttestationsStructDef(): AbiParameter {
|
|
744
|
+
const proposeFunction = RollupAbi.find(item => item.type === 'function' && item.name === 'propose') as
|
|
745
|
+
| { type: 'function'; name: string; inputs: readonly AbiParameter[] }
|
|
746
|
+
| undefined;
|
|
747
|
+
|
|
748
|
+
if (!proposeFunction) {
|
|
749
|
+
throw new Error('propose function not found in RollupAbi');
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
const attestationsParam = proposeFunction.inputs.find(param => param.name === '_attestations');
|
|
753
|
+
if (!attestationsParam) {
|
|
754
|
+
throw new Error('_attestations parameter not found in propose function');
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
const tupleParam = attestationsParam as unknown as { type: 'tuple'; components?: readonly AbiParameter[] };
|
|
758
|
+
return { type: 'tuple', components: tupleParam.components || [] } as AbiParameter;
|
|
588
759
|
}
|
|
589
760
|
|
|
590
|
-
private makeVersionedBlobHashes(checkpoint: Checkpoint):
|
|
591
|
-
return getBlobsPerL1Block(checkpoint.toBlobFields()).map(
|
|
761
|
+
private async makeVersionedBlobHashes(checkpoint: Checkpoint): Promise<`0x${string}`[]> {
|
|
762
|
+
return (await getBlobsPerL1Block(checkpoint.toBlobFields())).map(
|
|
592
763
|
b => `0x${b.getEthVersionedBlobHash().toString('hex')}` as `0x${string}`,
|
|
593
764
|
);
|
|
594
765
|
}
|
|
595
766
|
|
|
596
|
-
private makeBlobsFromCheckpoint(checkpoint: Checkpoint): Blob[] {
|
|
597
|
-
return getBlobsPerL1Block(checkpoint.toBlobFields());
|
|
767
|
+
private async makeBlobsFromCheckpoint(checkpoint: Checkpoint): Promise<Blob[]> {
|
|
768
|
+
return await getBlobsPerL1Block(checkpoint.toBlobFields());
|
|
598
769
|
}
|
|
599
770
|
}
|
|
@@ -56,8 +56,9 @@ export class MockPrefilledArchiver extends MockArchiver {
|
|
|
56
56
|
}
|
|
57
57
|
|
|
58
58
|
const fromBlock = this.l2Blocks.length;
|
|
59
|
-
|
|
60
|
-
this.addProposedBlocks(
|
|
59
|
+
const checkpointsToAdd = this.prefilled.slice(fromBlock, fromBlock + numBlocks);
|
|
60
|
+
this.addProposedBlocks(checkpointsToAdd.flatMap(c => c.blocks));
|
|
61
|
+
this.checkpointList.push(...checkpointsToAdd);
|
|
61
62
|
return Promise.resolve();
|
|
62
63
|
}
|
|
63
64
|
}
|