@aztec/archiver 0.0.1-commit.42ee6df9b → 0.0.1-commit.431c48d
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 +7 -7
- package/dest/archiver.d.ts +70 -15
- package/dest/archiver.d.ts.map +1 -1
- package/dest/archiver.js +273 -71
- package/dest/config.d.ts +7 -3
- package/dest/config.d.ts.map +1 -1
- package/dest/config.js +44 -16
- package/dest/errors.d.ts +35 -13
- package/dest/errors.d.ts.map +1 -1
- package/dest/errors.js +54 -16
- package/dest/factory.d.ts +18 -6
- package/dest/factory.d.ts.map +1 -1
- package/dest/factory.js +66 -21
- package/dest/index.d.ts +11 -3
- package/dest/index.d.ts.map +1 -1
- package/dest/index.js +10 -2
- package/dest/l1/calldata_retriever.d.ts +9 -1
- package/dest/l1/calldata_retriever.d.ts.map +1 -1
- package/dest/l1/calldata_retriever.js +20 -10
- package/dest/l1/data_retrieval.d.ts +24 -10
- package/dest/l1/data_retrieval.d.ts.map +1 -1
- package/dest/l1/data_retrieval.js +13 -19
- package/dest/l1/trace_tx.d.ts +12 -66
- package/dest/l1/trace_tx.d.ts.map +1 -1
- package/dest/l1/validate_historical_logs.d.ts +23 -0
- package/dest/l1/validate_historical_logs.d.ts.map +1 -0
- package/dest/l1/validate_historical_logs.js +108 -0
- package/dest/modules/contract_data_source_adapter.d.ts +25 -0
- package/dest/modules/contract_data_source_adapter.d.ts.map +1 -0
- package/dest/modules/contract_data_source_adapter.js +32 -0
- package/dest/modules/data_source_base.d.ts +71 -50
- package/dest/modules/data_source_base.d.ts.map +1 -1
- package/dest/modules/data_source_base.js +250 -150
- package/dest/modules/data_store_updater.d.ts +28 -9
- package/dest/modules/data_store_updater.d.ts.map +1 -1
- package/dest/modules/data_store_updater.js +129 -64
- package/dest/modules/instrumentation.d.ts +15 -2
- package/dest/modules/instrumentation.d.ts.map +1 -1
- package/dest/modules/instrumentation.js +48 -9
- package/dest/modules/l1_synchronizer.d.ts +11 -7
- package/dest/modules/l1_synchronizer.d.ts.map +1 -1
- package/dest/modules/l1_synchronizer.js +347 -118
- package/dest/modules/outbox_trees_resolver.d.ts +64 -0
- package/dest/modules/outbox_trees_resolver.d.ts.map +1 -0
- package/dest/modules/outbox_trees_resolver.js +184 -0
- package/dest/modules/validation.d.ts +30 -7
- package/dest/modules/validation.d.ts.map +1 -1
- package/dest/modules/validation.js +33 -15
- package/dest/store/block_store.d.ts +169 -94
- package/dest/store/block_store.d.ts.map +1 -1
- package/dest/store/block_store.js +618 -270
- package/dest/store/contract_class_store.d.ts +17 -3
- package/dest/store/contract_class_store.d.ts.map +1 -1
- package/dest/store/contract_class_store.js +36 -2
- 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 +53 -5
- 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 -8
- package/dest/store/l2_tips_cache.d.ts.map +1 -1
- package/dest/store/l2_tips_cache.js +13 -96
- 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 +31 -1
- package/dest/test/fake_l1_state.d.ts +14 -3
- package/dest/test/fake_l1_state.d.ts.map +1 -1
- package/dest/test/fake_l1_state.js +58 -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 +1 -2
- package/dest/test/mock_l2_block_source.d.ts +47 -54
- package/dest/test/mock_l2_block_source.d.ts.map +1 -1
- package/dest/test/mock_l2_block_source.js +229 -205
- package/dest/test/mock_structs.d.ts +1 -1
- package/dest/test/mock_structs.d.ts.map +1 -1
- package/dest/test/mock_structs.js +2 -2
- package/dest/test/noop_l1_archiver.d.ts +14 -6
- package/dest/test/noop_l1_archiver.d.ts.map +1 -1
- package/dest/test/noop_l1_archiver.js +26 -10
- package/package.json +15 -14
- package/src/archiver.ts +355 -77
- package/src/config.ts +51 -20
- package/src/errors.ts +80 -23
- package/src/factory.ts +80 -19
- package/src/index.ts +18 -2
- package/src/l1/calldata_retriever.ts +27 -10
- package/src/l1/data_retrieval.ts +38 -36
- 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 +319 -200
- package/src/modules/data_store_updater.ts +156 -65
- package/src/modules/instrumentation.ts +43 -10
- package/src/modules/l1_synchronizer.ts +499 -136
- package/src/modules/outbox_trees_resolver.ts +220 -0
- package/src/modules/validation.ts +78 -21
- package/src/store/block_store.ts +741 -333
- package/src/store/contract_class_store.ts +47 -3
- package/src/store/contract_instance_store.ts +67 -7
- 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 -109
- package/src/store/log_store.ts +296 -652
- package/src/store/log_store_codec.ts +143 -0
- package/src/store/message_store.ts +35 -2
- package/src/test/fake_l1_state.ts +65 -27
- package/src/test/mock_l1_to_l2_message_source.ts +0 -1
- package/src/test/mock_l2_block_source.ts +276 -258
- package/src/test/mock_structs.ts +5 -2
- package/src/test/noop_l1_archiver.ts +54 -11
- package/dest/store/kv_archiver_store.d.ts +0 -377
- package/dest/store/kv_archiver_store.d.ts.map +0 -1
- package/dest/store/kv_archiver_store.js +0 -494
- package/src/store/kv_archiver_store.ts +0 -713
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
import { BlockNumber } from '@aztec/foundation/branded-types';
|
|
2
|
+
import { Fr } from '@aztec/foundation/curves/bn254';
|
|
3
|
+
import { BlockHash } from '@aztec/stdlib/block';
|
|
4
|
+
import { TxHash } from '@aztec/stdlib/tx';
|
|
5
|
+
|
|
6
|
+
export const NUMERIC_HEX_LEN = 8;
|
|
7
|
+
export const SEP = '-';
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Sentinel appended after a numeric hex segment to build an end bound strictly greater than any
|
|
11
|
+
* real key for that namespace. `'g'` sorts lexicographically after every hex digit (`0`-`9`, `a`-`f`),
|
|
12
|
+
* so `prefix + '-g'` is a clean exclusive upper bound.
|
|
13
|
+
*/
|
|
14
|
+
export const HEX_SENTINEL = 'g';
|
|
15
|
+
|
|
16
|
+
export type ParsedKeyTail = {
|
|
17
|
+
blockNumber: BlockNumber;
|
|
18
|
+
txIndexWithinBlock: number;
|
|
19
|
+
logIndexWithinTx: number;
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* Per-kind stored value layout (no msgpackr):
|
|
24
|
+
* txHash(32) ++ blockHash(32) ++ blockTimestamp(u64 BE = 8) ++ logDataLen(u32 BE = 4) ++ logData[i].toBuffer()...
|
|
25
|
+
* `blockNumber`, `txIndexWithinBlock`, and `logIndexWithinTx` are decoded from the composite key.
|
|
26
|
+
*/
|
|
27
|
+
export type StoredLogValue = {
|
|
28
|
+
txHash: TxHash;
|
|
29
|
+
blockHash: BlockHash;
|
|
30
|
+
blockTimestamp: bigint;
|
|
31
|
+
logData: Fr[];
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
/** Returns the 64-char lowercase hex representation of a field, stripping the `0x` prefix. */
|
|
35
|
+
export function fieldHex(value: Fr | { toString: () => string }): string {
|
|
36
|
+
// Fr.toString() and AztecAddress.toString() both return `0x` + 64 lowercase hex chars.
|
|
37
|
+
return value.toString().slice(2);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* Tag prefix for a log: the hex of its first field, or the empty string when the log carries no fields.
|
|
42
|
+
* A protocol-valid public log can have zero fields (e.g. a raw AVM `EMITPUBLICLOG` with `logSize = 0`),
|
|
43
|
+
* which has no tag to index by. Encoding it under the empty tag keeps it retrievable via the per-block
|
|
44
|
+
* read (and droppable on reorg) while never matching a real 64-hex-char tag query — instead of reading
|
|
45
|
+
* `fields[0]` off an empty array and aborting the whole block-ingestion transaction.
|
|
46
|
+
*/
|
|
47
|
+
export function tagHexForLog(fields: Fr[]): string {
|
|
48
|
+
return fields.length > 0 ? fieldHex(fields[0]) : '';
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/** Encodes a number as 8-char zero-padded lowercase hex (matches a u32 big-endian byte buffer's lex order). */
|
|
52
|
+
export function u32Hex(n: number): string {
|
|
53
|
+
return n.toString(16).padStart(NUMERIC_HEX_LEN, '0');
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* Encodes the composite primary key as `prefix-block-txIdx-logIdx` where `prefix` is the leading
|
|
58
|
+
* segment (`tag` for private; `contract-tag` for public) and the trailing triple is fixed-width
|
|
59
|
+
* 8-char zero-padded hex so byte-order matches `(blockNumber, txIndexWithinBlock, logIndexWithinTx)`.
|
|
60
|
+
*/
|
|
61
|
+
export function encodeKey(prefix: string, blockNumber: number, txIndex: number, logIndex: number): string {
|
|
62
|
+
return `${prefix}${SEP}${u32Hex(blockNumber)}${SEP}${u32Hex(txIndex)}${SEP}${u32Hex(logIndex)}`;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* Decodes the trailing `(blockNumber, txIndexWithinBlock, logIndexWithinTx)` triple from a composite
|
|
67
|
+
* key. The leading prefix segments are ignored — we only ever read them off the input query, never
|
|
68
|
+
* back off the key.
|
|
69
|
+
*/
|
|
70
|
+
export function decodeKeyTail(key: string): ParsedKeyTail {
|
|
71
|
+
const parts = key.split(SEP);
|
|
72
|
+
const len = parts.length;
|
|
73
|
+
return {
|
|
74
|
+
blockNumber: BlockNumber(parseInt(parts[len - 3], 16)),
|
|
75
|
+
txIndexWithinBlock: parseInt(parts[len - 2], 16),
|
|
76
|
+
logIndexWithinTx: parseInt(parts[len - 1], 16),
|
|
77
|
+
};
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
/**
|
|
81
|
+
* Exclusive end bound for a `(contract, tag)`-prefix scan. With an `upperBlockExclusive` we cut at
|
|
82
|
+
* `(prefix, upper, 0, 0)`. With no bound we use `prefix + '-' + HEX_SENTINEL`, which sorts strictly
|
|
83
|
+
* after every real key under `prefix` (`g` is greater than any hex digit).
|
|
84
|
+
*/
|
|
85
|
+
export function endOfTagRange(prefix: string, upperBlockExclusive: number | undefined): string {
|
|
86
|
+
if (upperBlockExclusive === undefined) {
|
|
87
|
+
return `${prefix}${SEP}${HEX_SENTINEL}`;
|
|
88
|
+
}
|
|
89
|
+
return encodeKey(prefix, upperBlockExclusive, 0, 0);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* Exclusive end bound for a tx-strict scan: every key strictly inside `(prefix, txBlk, txIdx, *)`.
|
|
94
|
+
* `prefix-block-txIdx-` followed by the hex sentinel is the first key past every real logIndex for
|
|
95
|
+
* this tx and strictly less than the next tx's first key.
|
|
96
|
+
*/
|
|
97
|
+
export function endOfTxRange(prefix: string, txBlk: number, txIdx: number): string {
|
|
98
|
+
return `${prefix}${SEP}${u32Hex(txBlk)}${SEP}${u32Hex(txIdx)}${SEP}${HEX_SENTINEL}`;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
/**
|
|
102
|
+
* Returns the smallest string strictly greater than a fully-encoded composite key. The encoded key
|
|
103
|
+
* ends in a hex digit, and `'g'` sorts strictly after any hex digit, so appending `'g'` is the
|
|
104
|
+
* smallest possible successor in our key alphabet. Used to turn an inclusive cursor into an
|
|
105
|
+
* exclusive `start`.
|
|
106
|
+
*/
|
|
107
|
+
export function incKey(key: string): string {
|
|
108
|
+
return key + HEX_SENTINEL;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
export function encodeValue(value: StoredLogValue): Buffer {
|
|
112
|
+
const head = Buffer.allocUnsafe(32 + 32 + 8 + 4);
|
|
113
|
+
value.txHash.toBuffer().copy(head, 0);
|
|
114
|
+
value.blockHash.toBuffer().copy(head, 32);
|
|
115
|
+
head.writeBigUInt64BE(value.blockTimestamp, 64);
|
|
116
|
+
head.writeUInt32BE(value.logData.length, 72);
|
|
117
|
+
const fieldBufs = value.logData.map(f => f.toBuffer());
|
|
118
|
+
return Buffer.concat([head, ...fieldBufs]);
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
export function decodeValue(buffer: Buffer | Uint8Array): StoredLogValue {
|
|
122
|
+
const buf = Buffer.isBuffer(buffer) ? buffer : Buffer.from(buffer.buffer, buffer.byteOffset, buffer.byteLength);
|
|
123
|
+
let off = 0;
|
|
124
|
+
const txHash = TxHash.fromBuffer(buf.subarray(off, off + 32));
|
|
125
|
+
off += 32;
|
|
126
|
+
const blockHash = BlockHash.fromBuffer(buf.subarray(off, off + 32));
|
|
127
|
+
off += 32;
|
|
128
|
+
const blockTimestamp = buf.readBigUInt64BE(off);
|
|
129
|
+
off += 8;
|
|
130
|
+
const logDataLen = buf.readUInt32BE(off);
|
|
131
|
+
off += 4;
|
|
132
|
+
const logData: Fr[] = new Array(logDataLen);
|
|
133
|
+
for (let i = 0; i < logDataLen; i++) {
|
|
134
|
+
logData[i] = Fr.fromBuffer(buf.subarray(off, off + 32));
|
|
135
|
+
off += 32;
|
|
136
|
+
}
|
|
137
|
+
return { txHash, blockHash, blockTimestamp, logData };
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
/** Encodes the public-log key prefix as `contractHex-tagHex`. */
|
|
141
|
+
export function encodePublicPrefix(contractHex: string, tagHex: string): string {
|
|
142
|
+
return `${contractHex}${SEP}${tagHex}`;
|
|
143
|
+
}
|
|
@@ -43,6 +43,8 @@ export class MessageStore {
|
|
|
43
43
|
#totalMessageCount: AztecAsyncSingleton<bigint>;
|
|
44
44
|
/** Stores the checkpoint number whose message tree is currently being filled on L1. */
|
|
45
45
|
#inboxTreeInProgress: AztecAsyncSingleton<bigint>;
|
|
46
|
+
/** Stores the L1 finalized block as of the last successful message sync. */
|
|
47
|
+
#messagesFinalizedL1Block: AztecAsyncSingleton<Buffer>;
|
|
46
48
|
|
|
47
49
|
#log = createLogger('archiver:message_store');
|
|
48
50
|
|
|
@@ -52,6 +54,7 @@ export class MessageStore {
|
|
|
52
54
|
this.#lastSynchedL1Block = db.openSingleton('archiver_last_l1_block_id');
|
|
53
55
|
this.#totalMessageCount = db.openSingleton('archiver_l1_to_l2_message_count');
|
|
54
56
|
this.#inboxTreeInProgress = db.openSingleton('archiver_inbox_tree_in_progress');
|
|
57
|
+
this.#messagesFinalizedL1Block = db.openSingleton('archiver_messages_finalized_l1_block');
|
|
55
58
|
}
|
|
56
59
|
|
|
57
60
|
public async getTotalL1ToL2MessageCount(): Promise<bigint> {
|
|
@@ -75,6 +78,26 @@ export class MessageStore {
|
|
|
75
78
|
await this.#lastSynchedL1Block.set(buffer);
|
|
76
79
|
}
|
|
77
80
|
|
|
81
|
+
/** Gets the L1 finalized block as of the last successful message sync. */
|
|
82
|
+
public async getMessagesFinalizedL1Block(): Promise<L1BlockId | undefined> {
|
|
83
|
+
const buffer = await this.#messagesFinalizedL1Block.getAsync();
|
|
84
|
+
if (!buffer) {
|
|
85
|
+
return undefined;
|
|
86
|
+
}
|
|
87
|
+
const reader = BufferReader.asReader(buffer);
|
|
88
|
+
return { l1BlockNumber: reader.readUInt256(), l1BlockHash: Buffer32.fromBuffer(reader.readBytes(Buffer32.SIZE)) };
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
/** Monotonically advances the persisted L1 finalized block for message sync. Never regresses. */
|
|
92
|
+
private async maybeAdvanceFinalizedL1Block(l1Block: L1BlockId): Promise<void> {
|
|
93
|
+
const existing = await this.getMessagesFinalizedL1Block();
|
|
94
|
+
if (existing && l1Block.l1BlockNumber <= existing.l1BlockNumber) {
|
|
95
|
+
return;
|
|
96
|
+
}
|
|
97
|
+
const buffer = serializeToBuffer([l1Block.l1BlockNumber, l1Block.l1BlockHash]);
|
|
98
|
+
await this.#messagesFinalizedL1Block.set(buffer);
|
|
99
|
+
}
|
|
100
|
+
|
|
78
101
|
/**
|
|
79
102
|
* Append L1 to L2 messages to the store.
|
|
80
103
|
* Requires new messages to be in order and strictly after the last message added.
|
|
@@ -185,8 +208,15 @@ export class MessageStore {
|
|
|
185
208
|
return this.#inboxTreeInProgress.getAsync();
|
|
186
209
|
}
|
|
187
210
|
|
|
188
|
-
/**
|
|
189
|
-
|
|
211
|
+
/**
|
|
212
|
+
* Atomically updates the message sync state: the L1 sync point, the inbox tree-in-progress marker, and
|
|
213
|
+
* (optionally) the L1 finalized block as of this sync. The finalized block is advanced monotonically.
|
|
214
|
+
*/
|
|
215
|
+
public setMessageSyncState(
|
|
216
|
+
l1Block: L1BlockId,
|
|
217
|
+
treeInProgress: bigint | undefined,
|
|
218
|
+
finalizedL1Block?: L1BlockId,
|
|
219
|
+
): Promise<void> {
|
|
190
220
|
return this.db.transactionAsync(async () => {
|
|
191
221
|
await this.setSynchedL1Block(l1Block);
|
|
192
222
|
if (treeInProgress !== undefined) {
|
|
@@ -194,6 +224,9 @@ export class MessageStore {
|
|
|
194
224
|
} else {
|
|
195
225
|
await this.#inboxTreeInProgress.delete();
|
|
196
226
|
}
|
|
227
|
+
if (finalizedL1Block !== undefined) {
|
|
228
|
+
await this.maybeAdvanceFinalizedL1Block(finalizedL1Block);
|
|
229
|
+
}
|
|
197
230
|
});
|
|
198
231
|
}
|
|
199
232
|
|
|
@@ -15,12 +15,8 @@ import { CommitteeAttestation, CommitteeAttestationsAndSigners, L2Block } from '
|
|
|
15
15
|
import { Checkpoint } from '@aztec/stdlib/checkpoint';
|
|
16
16
|
import { getSlotAtTimestamp } from '@aztec/stdlib/epoch-helpers';
|
|
17
17
|
import { InboxLeaf } from '@aztec/stdlib/messaging';
|
|
18
|
-
import { ConsensusPayload,
|
|
19
|
-
import {
|
|
20
|
-
makeAndSignCommitteeAttestationsAndSigners,
|
|
21
|
-
makeCheckpointAttestationFromCheckpoint,
|
|
22
|
-
mockCheckpointAndMessages,
|
|
23
|
-
} from '@aztec/stdlib/testing';
|
|
18
|
+
import { ConsensusPayload, getHashedSignaturePayloadTypedData } from '@aztec/stdlib/p2p';
|
|
19
|
+
import { mockCheckpointAndMessages } from '@aztec/stdlib/testing';
|
|
24
20
|
import { AppendOnlyTreeSnapshot } from '@aztec/stdlib/trees';
|
|
25
21
|
|
|
26
22
|
import { type MockProxy, mock } from 'jest-mock-extended';
|
|
@@ -151,8 +147,10 @@ export class FakeL1State {
|
|
|
151
147
|
// Computed from checkpoints based on L1 block visibility
|
|
152
148
|
private pendingCheckpointNumber: CheckpointNumber = CheckpointNumber(0);
|
|
153
149
|
|
|
154
|
-
// The L1 block number reported as "finalized" (defaults to the start block)
|
|
155
|
-
|
|
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;
|
|
156
154
|
|
|
157
155
|
constructor(private readonly config: FakeL1StateConfig) {
|
|
158
156
|
this.l1BlockNumber = config.l1StartBlock;
|
|
@@ -288,8 +286,11 @@ export class FakeL1State {
|
|
|
288
286
|
this.updatePendingCheckpointNumber();
|
|
289
287
|
}
|
|
290
288
|
|
|
291
|
-
/**
|
|
292
|
-
|
|
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 {
|
|
293
294
|
this.finalizedL1BlockNumber = blockNumber;
|
|
294
295
|
}
|
|
295
296
|
|
|
@@ -332,6 +333,21 @@ export class FakeL1State {
|
|
|
332
333
|
this.updatePendingCheckpointNumber();
|
|
333
334
|
}
|
|
334
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
|
+
|
|
335
351
|
/**
|
|
336
352
|
* Removes messages after a given total index (simulates L1 reorg).
|
|
337
353
|
* Auto-updates rolling hash.
|
|
@@ -487,8 +503,8 @@ export class FakeL1State {
|
|
|
487
503
|
Promise.resolve(this.getMessageSentLogs(fromBlock, toBlock)),
|
|
488
504
|
);
|
|
489
505
|
|
|
490
|
-
mockInbox.getMessageSentEventByHash.mockImplementation((msgHash: string,
|
|
491
|
-
Promise.resolve(this.getMessageSentLogByHash(msgHash,
|
|
506
|
+
mockInbox.getMessageSentEventByHash.mockImplementation((msgHash: string, aroundL1BlockNumber: bigint) =>
|
|
507
|
+
Promise.resolve(this.getMessageSentLogByHash(msgHash, aroundL1BlockNumber) as MessageSentLog),
|
|
492
508
|
);
|
|
493
509
|
|
|
494
510
|
return mockInbox;
|
|
@@ -499,11 +515,19 @@ export class FakeL1State {
|
|
|
499
515
|
const publicClient = mock<ViemPublicClient>();
|
|
500
516
|
|
|
501
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 };
|
|
502
521
|
publicClient.getBlockNumber.mockImplementation(() => Promise.resolve(this.l1BlockNumber));
|
|
503
522
|
|
|
504
523
|
publicClient.getBlock.mockImplementation((async (args: { blockNumber?: bigint; blockTag?: string } = {}) => {
|
|
505
524
|
let blockNum: bigint;
|
|
506
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
|
+
}
|
|
507
531
|
blockNum = this.finalizedL1BlockNumber;
|
|
508
532
|
} else {
|
|
509
533
|
blockNum = args.blockNumber ?? (await publicClient.getBlockNumber());
|
|
@@ -529,10 +553,10 @@ export class FakeL1State {
|
|
|
529
553
|
createMockBlobClient(): MockProxy<BlobClientInterface> {
|
|
530
554
|
const blobClient = mock<BlobClientInterface>();
|
|
531
555
|
|
|
532
|
-
// The blockId is the
|
|
556
|
+
// The blockId is the L1 block hash, which we derive from the L1 block number
|
|
533
557
|
blobClient.getBlobSidecar.mockImplementation((blockId: `0x${string}`) =>
|
|
534
558
|
Promise.resolve(
|
|
535
|
-
this.checkpoints.find(cpData => cpData.
|
|
559
|
+
this.checkpoints.find(cpData => Buffer32.fromBigInt(cpData.l1BlockNumber).toString() === blockId)?.blobs ?? [],
|
|
536
560
|
),
|
|
537
561
|
);
|
|
538
562
|
|
|
@@ -608,9 +632,12 @@ export class FakeL1State {
|
|
|
608
632
|
}));
|
|
609
633
|
}
|
|
610
634
|
|
|
611
|
-
private getMessageSentLogByHash(msgHash: string,
|
|
635
|
+
private getMessageSentLogByHash(msgHash: string, aroundL1BlockNumber: bigint): MessageSentLog | undefined {
|
|
612
636
|
const msg = this.messages.find(
|
|
613
|
-
msg =>
|
|
637
|
+
msg =>
|
|
638
|
+
msg.leaf.toString() === msgHash &&
|
|
639
|
+
msg.l1BlockNumber >= aroundL1BlockNumber - 5n &&
|
|
640
|
+
msg.l1BlockNumber <= aroundL1BlockNumber + 5n,
|
|
614
641
|
);
|
|
615
642
|
if (!msg) {
|
|
616
643
|
return undefined;
|
|
@@ -632,9 +659,11 @@ export class FakeL1State {
|
|
|
632
659
|
checkpoint: Checkpoint,
|
|
633
660
|
signers: Secp256k1Signer[],
|
|
634
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);
|
|
635
665
|
const attestations = signers
|
|
636
|
-
.map(signer =>
|
|
637
|
-
.map(attestation => CommitteeAttestation.fromSignature(attestation.signature))
|
|
666
|
+
.map(signer => CommitteeAttestation.fromSignature(signer.sign(attestationDigest)))
|
|
638
667
|
.map(committeeAttestation => committeeAttestation.toViem());
|
|
639
668
|
|
|
640
669
|
const header = checkpoint.header.toViem();
|
|
@@ -642,14 +671,18 @@ export class FakeL1State {
|
|
|
642
671
|
const archive = toHex(checkpoint.archive.root.toBuffer());
|
|
643
672
|
const attestationsAndSigners = new CommitteeAttestationsAndSigners(
|
|
644
673
|
attestations.map(attestation => CommitteeAttestation.fromViem(attestation)),
|
|
674
|
+
signatureContext,
|
|
645
675
|
);
|
|
646
676
|
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
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),
|
|
650
683
|
);
|
|
651
684
|
|
|
652
|
-
const
|
|
685
|
+
const verbatimAttestations = attestationsAndSigners.getPackedAttestations();
|
|
653
686
|
|
|
654
687
|
const rollupInput = encodeFunctionData({
|
|
655
688
|
abi: RollupAbi,
|
|
@@ -660,7 +693,7 @@ export class FakeL1State {
|
|
|
660
693
|
archive,
|
|
661
694
|
oracleInput: { feeAssetPriceModifier: 0n },
|
|
662
695
|
},
|
|
663
|
-
|
|
696
|
+
verbatimAttestations,
|
|
664
697
|
attestationsAndSigners.getSigners().map(signer => signer.toString()),
|
|
665
698
|
attestationsAndSignersSignature.toViemSignature(),
|
|
666
699
|
blobInput,
|
|
@@ -683,13 +716,11 @@ export class FakeL1State {
|
|
|
683
716
|
|
|
684
717
|
// Compute attestationsHash (same logic as CalldataRetriever)
|
|
685
718
|
const attestationsHash = Buffer32.fromString(
|
|
686
|
-
keccak256(encodeAbiParameters([this.getCommitteeAttestationsStructDef()], [
|
|
719
|
+
keccak256(encodeAbiParameters([this.getCommitteeAttestationsStructDef()], [verbatimAttestations])),
|
|
687
720
|
);
|
|
688
721
|
|
|
689
722
|
// Compute payloadDigest (same logic as CalldataRetriever)
|
|
690
|
-
const
|
|
691
|
-
const payloadToSign = consensusPayload.getPayloadToSign(SignatureDomainSeparator.checkpointAttestation);
|
|
692
|
-
const payloadDigest = Buffer32.fromString(keccak256(payloadToSign));
|
|
723
|
+
const payloadDigest = getHashedSignaturePayloadTypedData(consensusPayload);
|
|
693
724
|
|
|
694
725
|
const tx = {
|
|
695
726
|
input: multiCallInput,
|
|
@@ -701,6 +732,13 @@ export class FakeL1State {
|
|
|
701
732
|
return { tx, attestationsHash, payloadDigest };
|
|
702
733
|
}
|
|
703
734
|
|
|
735
|
+
private getSignatureContext() {
|
|
736
|
+
return {
|
|
737
|
+
chainId: 1,
|
|
738
|
+
rollupAddress: this.config.rollupAddress,
|
|
739
|
+
};
|
|
740
|
+
}
|
|
741
|
+
|
|
704
742
|
/** Extracts the CommitteeAttestations struct definition from RollupAbi for hash computation. */
|
|
705
743
|
private getCommitteeAttestationsStructDef(): AbiParameter {
|
|
706
744
|
const proposeFunction = RollupAbi.find(item => item.type === 'function' && item.name === 'propose') as
|