@aztec/validator-client 0.0.1-commit.03f7ef2 → 0.0.1-commit.04852196a

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.
Files changed (57) hide show
  1. package/README.md +327 -0
  2. package/dest/block_proposal_handler.d.ts +22 -12
  3. package/dest/block_proposal_handler.d.ts.map +1 -1
  4. package/dest/block_proposal_handler.js +364 -103
  5. package/dest/checkpoint_builder.d.ts +76 -0
  6. package/dest/checkpoint_builder.d.ts.map +1 -0
  7. package/dest/checkpoint_builder.js +228 -0
  8. package/dest/config.d.ts +1 -1
  9. package/dest/config.d.ts.map +1 -1
  10. package/dest/config.js +37 -8
  11. package/dest/duties/validation_service.d.ts +41 -12
  12. package/dest/duties/validation_service.d.ts.map +1 -1
  13. package/dest/duties/validation_service.js +103 -26
  14. package/dest/factory.d.ts +13 -10
  15. package/dest/factory.d.ts.map +1 -1
  16. package/dest/factory.js +4 -3
  17. package/dest/index.d.ts +2 -1
  18. package/dest/index.d.ts.map +1 -1
  19. package/dest/index.js +1 -0
  20. package/dest/key_store/ha_key_store.d.ts +99 -0
  21. package/dest/key_store/ha_key_store.d.ts.map +1 -0
  22. package/dest/key_store/ha_key_store.js +208 -0
  23. package/dest/key_store/index.d.ts +2 -1
  24. package/dest/key_store/index.d.ts.map +1 -1
  25. package/dest/key_store/index.js +1 -0
  26. package/dest/key_store/interface.d.ts +36 -6
  27. package/dest/key_store/interface.d.ts.map +1 -1
  28. package/dest/key_store/local_key_store.d.ts +10 -5
  29. package/dest/key_store/local_key_store.d.ts.map +1 -1
  30. package/dest/key_store/local_key_store.js +8 -4
  31. package/dest/key_store/node_keystore_adapter.d.ts +18 -5
  32. package/dest/key_store/node_keystore_adapter.d.ts.map +1 -1
  33. package/dest/key_store/node_keystore_adapter.js +18 -4
  34. package/dest/key_store/web3signer_key_store.d.ts +10 -5
  35. package/dest/key_store/web3signer_key_store.d.ts.map +1 -1
  36. package/dest/key_store/web3signer_key_store.js +8 -4
  37. package/dest/metrics.d.ts +12 -3
  38. package/dest/metrics.d.ts.map +1 -1
  39. package/dest/metrics.js +46 -30
  40. package/dest/validator.d.ts +75 -24
  41. package/dest/validator.d.ts.map +1 -1
  42. package/dest/validator.js +476 -78
  43. package/package.json +21 -13
  44. package/src/block_proposal_handler.ts +281 -73
  45. package/src/checkpoint_builder.ts +390 -0
  46. package/src/config.ts +36 -7
  47. package/src/duties/validation_service.ts +154 -31
  48. package/src/factory.ts +18 -11
  49. package/src/index.ts +1 -0
  50. package/src/key_store/ha_key_store.ts +269 -0
  51. package/src/key_store/index.ts +1 -0
  52. package/src/key_store/interface.ts +44 -5
  53. package/src/key_store/local_key_store.ts +13 -4
  54. package/src/key_store/node_keystore_adapter.ts +27 -4
  55. package/src/key_store/web3signer_key_store.ts +17 -4
  56. package/src/metrics.ts +63 -33
  57. package/src/validator.ts +633 -113
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/validator-client",
3
- "version": "0.0.1-commit.03f7ef2",
3
+ "version": "0.0.1-commit.04852196a",
4
4
  "main": "dest/index.js",
5
5
  "type": "module",
6
6
  "exports": {
@@ -64,27 +64,35 @@
64
64
  ]
65
65
  },
66
66
  "dependencies": {
67
- "@aztec/blob-client": "0.0.1-commit.03f7ef2",
68
- "@aztec/blob-lib": "0.0.1-commit.03f7ef2",
69
- "@aztec/constants": "0.0.1-commit.03f7ef2",
70
- "@aztec/epoch-cache": "0.0.1-commit.03f7ef2",
71
- "@aztec/ethereum": "0.0.1-commit.03f7ef2",
72
- "@aztec/foundation": "0.0.1-commit.03f7ef2",
73
- "@aztec/node-keystore": "0.0.1-commit.03f7ef2",
74
- "@aztec/p2p": "0.0.1-commit.03f7ef2",
75
- "@aztec/slasher": "0.0.1-commit.03f7ef2",
76
- "@aztec/stdlib": "0.0.1-commit.03f7ef2",
77
- "@aztec/telemetry-client": "0.0.1-commit.03f7ef2",
67
+ "@aztec/blob-client": "0.0.1-commit.04852196a",
68
+ "@aztec/blob-lib": "0.0.1-commit.04852196a",
69
+ "@aztec/constants": "0.0.1-commit.04852196a",
70
+ "@aztec/epoch-cache": "0.0.1-commit.04852196a",
71
+ "@aztec/ethereum": "0.0.1-commit.04852196a",
72
+ "@aztec/foundation": "0.0.1-commit.04852196a",
73
+ "@aztec/node-keystore": "0.0.1-commit.04852196a",
74
+ "@aztec/noir-protocol-circuits-types": "0.0.1-commit.04852196a",
75
+ "@aztec/p2p": "0.0.1-commit.04852196a",
76
+ "@aztec/protocol-contracts": "0.0.1-commit.04852196a",
77
+ "@aztec/prover-client": "0.0.1-commit.04852196a",
78
+ "@aztec/simulator": "0.0.1-commit.04852196a",
79
+ "@aztec/slasher": "0.0.1-commit.04852196a",
80
+ "@aztec/stdlib": "0.0.1-commit.04852196a",
81
+ "@aztec/telemetry-client": "0.0.1-commit.04852196a",
82
+ "@aztec/validator-ha-signer": "0.0.1-commit.04852196a",
78
83
  "koa": "^2.16.1",
79
84
  "koa-router": "^13.1.1",
80
85
  "tslib": "^2.4.0",
81
86
  "viem": "npm:@aztec/viem@2.38.2"
82
87
  },
83
88
  "devDependencies": {
89
+ "@aztec/archiver": "0.0.1-commit.04852196a",
90
+ "@aztec/world-state": "0.0.1-commit.04852196a",
91
+ "@electric-sql/pglite": "^0.3.14",
84
92
  "@jest/globals": "^30.0.0",
85
93
  "@types/jest": "^30.0.0",
86
94
  "@types/node": "^22.15.17",
87
- "@typescript/native-preview": "7.0.0-dev.20251126.1",
95
+ "@typescript/native-preview": "7.0.0-dev.20260113.1",
88
96
  "jest": "^30.0.0",
89
97
  "jest-mock-extended": "^4.0.0",
90
98
  "ts-node": "^10.9.1",
@@ -1,19 +1,21 @@
1
1
  import { INITIAL_L2_BLOCK_NUM } from '@aztec/constants';
2
+ import type { EpochCache } from '@aztec/epoch-cache';
2
3
  import { BlockNumber, CheckpointNumber, SlotNumber } from '@aztec/foundation/branded-types';
4
+ import { pick } from '@aztec/foundation/collection';
3
5
  import { Fr } from '@aztec/foundation/curves/bn254';
4
6
  import { TimeoutError } from '@aztec/foundation/error';
5
7
  import { createLogger } from '@aztec/foundation/log';
6
8
  import { retryUntil } from '@aztec/foundation/retry';
7
9
  import { DateProvider, Timer } from '@aztec/foundation/timer';
8
10
  import type { P2P, PeerId } from '@aztec/p2p';
9
- import { TxProvider } from '@aztec/p2p';
10
11
  import { BlockProposalValidator } from '@aztec/p2p/msg_validators';
11
- import type { L2Block, L2BlockSource } from '@aztec/stdlib/block';
12
- import { getTimestampForSlot } from '@aztec/stdlib/epoch-helpers';
13
- import type { IFullNodeBlockBuilder, ValidatorClientFullConfig } from '@aztec/stdlib/interfaces/server';
12
+ import type { BlockData, L2Block, L2BlockSink, L2BlockSource } from '@aztec/stdlib/block';
13
+ import { getEpochAtSlot, getTimestampForSlot } from '@aztec/stdlib/epoch-helpers';
14
+ import { Gas } from '@aztec/stdlib/gas';
15
+ import type { ITxProvider, ValidatorClientFullConfig, WorldStateSynchronizer } from '@aztec/stdlib/interfaces/server';
14
16
  import { type L1ToL2MessageSource, computeInHashFromL1ToL2Messages } from '@aztec/stdlib/messaging';
15
- import { type BlockProposal, ConsensusPayload } from '@aztec/stdlib/p2p';
16
- import { BlockHeader, type FailedTx, GlobalVariables, type Tx } from '@aztec/stdlib/tx';
17
+ import type { BlockProposal } from '@aztec/stdlib/p2p';
18
+ import type { CheckpointGlobalVariables, FailedTx, Tx } from '@aztec/stdlib/tx';
17
19
  import {
18
20
  ReExFailedTxsError,
19
21
  ReExStateMismatchError,
@@ -22,6 +24,7 @@ import {
22
24
  } from '@aztec/stdlib/validators';
23
25
  import { type TelemetryClient, type Tracer, getTelemetryClient } from '@aztec/telemetry-client';
24
26
 
27
+ import type { FullNodeCheckpointsBuilder } from './checkpoint_builder.js';
25
28
  import type { ValidatorMetrics } from './metrics.js';
26
29
 
27
30
  export type BlockProposalValidationFailureReason =
@@ -29,6 +32,7 @@ export type BlockProposalValidationFailureReason =
29
32
  | 'parent_block_not_found'
30
33
  | 'parent_block_wrong_slot'
31
34
  | 'in_hash_mismatch'
35
+ | 'global_variables_mismatch'
32
36
  | 'block_number_already_exists'
33
37
  | 'txs_not_available'
34
38
  | 'state_mismatch'
@@ -58,15 +62,21 @@ export type BlockProposalValidationFailureResult = {
58
62
 
59
63
  export type BlockProposalValidationResult = BlockProposalValidationSuccessResult | BlockProposalValidationFailureResult;
60
64
 
65
+ type CheckpointComputationResult =
66
+ | { checkpointNumber: CheckpointNumber; reason?: undefined }
67
+ | { checkpointNumber?: undefined; reason: 'invalid_proposal' | 'global_variables_mismatch' };
68
+
61
69
  export class BlockProposalHandler {
62
70
  public readonly tracer: Tracer;
63
71
 
64
72
  constructor(
65
- private blockBuilder: IFullNodeBlockBuilder,
66
- private blockSource: L2BlockSource,
73
+ private checkpointsBuilder: FullNodeCheckpointsBuilder,
74
+ private worldState: WorldStateSynchronizer,
75
+ private blockSource: L2BlockSource & L2BlockSink,
67
76
  private l1ToL2MessageSource: L1ToL2MessageSource,
68
- private txProvider: TxProvider,
77
+ private txProvider: ITxProvider,
69
78
  private blockProposalValidator: BlockProposalValidator,
79
+ private epochCache: EpochCache,
70
80
  private config: ValidatorClientFullConfig,
71
81
  private metrics?: ValidatorMetrics,
72
82
  private dateProvider: DateProvider = new DateProvider(),
@@ -79,27 +89,34 @@ export class BlockProposalHandler {
79
89
  this.tracer = telemetry.getTracer('BlockProposalHandler');
80
90
  }
81
91
 
82
- registerForReexecution(p2pClient: P2P): BlockProposalHandler {
83
- const handler = async (proposal: BlockProposal, proposalSender: PeerId) => {
92
+ register(p2pClient: P2P, shouldReexecute: boolean): BlockProposalHandler {
93
+ // Non-validator handler that processes or re-executes for monitoring but does not attest.
94
+ // Returns boolean indicating whether the proposal was valid.
95
+ const handler = async (proposal: BlockProposal, proposalSender: PeerId): Promise<boolean> => {
84
96
  try {
85
- const result = await this.handleBlockProposal(proposal, proposalSender, true);
97
+ const { slotNumber, blockNumber } = proposal;
98
+ const result = await this.handleBlockProposal(proposal, proposalSender, shouldReexecute);
86
99
  if (result.isValid) {
87
- this.log.info(`Non-validator reexecution completed for slot ${proposal.slotNumber}`, {
100
+ this.log.info(`Non-validator block proposal ${blockNumber} at slot ${slotNumber} handled`, {
88
101
  blockNumber: result.blockNumber,
102
+ slotNumber,
89
103
  reexecutionTimeMs: result.reexecutionResult?.reexecutionTimeMs,
90
104
  totalManaUsed: result.reexecutionResult?.totalManaUsed,
91
105
  numTxs: result.reexecutionResult?.block?.body?.txEffects?.length ?? 0,
106
+ reexecuted: shouldReexecute,
92
107
  });
108
+ return true;
93
109
  } else {
94
- this.log.warn(`Non-validator reexecution failed for slot ${proposal.slotNumber}`, {
95
- blockNumber: result.blockNumber,
96
- reason: result.reason,
97
- });
110
+ this.log.warn(
111
+ `Non-validator block proposal ${blockNumber} at slot ${slotNumber} failed processing with ${result.reason}`,
112
+ { blockNumber: result.blockNumber, slotNumber, reason: result.reason },
113
+ );
114
+ return false;
98
115
  }
99
116
  } catch (error) {
100
117
  this.log.error('Error processing block proposal in non-validator handler', error);
118
+ return false;
101
119
  }
102
- return undefined; // Non-validator nodes don't return attestations
103
120
  };
104
121
 
105
122
  p2pClient.registerBlockProposalHandler(handler);
@@ -113,7 +130,7 @@ export class BlockProposalHandler {
113
130
  ): Promise<BlockProposalValidationResult> {
114
131
  const slotNumber = proposal.slotNumber;
115
132
  const proposer = proposal.getSender();
116
- const config = this.blockBuilder.getConfig();
133
+ const config = this.checkpointsBuilder.getConfig();
117
134
 
118
135
  // Reject proposals with invalid signatures
119
136
  if (!proposer) {
@@ -129,23 +146,23 @@ export class BlockProposalHandler {
129
146
 
130
147
  // Check that the proposal is from the current proposer, or the next proposer
131
148
  // This should have been handled by the p2p layer, but we double check here out of caution
132
- const invalidProposal = await this.blockProposalValidator.validate(proposal);
133
- if (invalidProposal) {
149
+ const validationResult = await this.blockProposalValidator.validate(proposal);
150
+ if (validationResult.result !== 'accept') {
134
151
  this.log.warn(`Proposal is not valid, skipping processing`, proposalInfo);
135
152
  return { isValid: false, reason: 'invalid_proposal' };
136
153
  }
137
154
 
138
155
  // Check that the parent proposal is a block we know, otherwise reexecution would fail
139
- const parentBlockHeader = await this.getParentBlock(proposal);
140
- if (parentBlockHeader === undefined) {
156
+ const parentBlock = await this.getParentBlock(proposal);
157
+ if (parentBlock === undefined) {
141
158
  this.log.warn(`Parent block for proposal not found, skipping processing`, proposalInfo);
142
159
  return { isValid: false, reason: 'parent_block_not_found' };
143
160
  }
144
161
 
145
- // Check that the parent block's slot is less than the proposal's slot (should not happen, but we check anyway)
146
- if (parentBlockHeader !== 'genesis' && parentBlockHeader.getSlot() >= slotNumber) {
147
- this.log.warn(`Parent block slot is greater than or equal to proposal slot, skipping processing`, {
148
- parentBlockSlot: parentBlockHeader.getSlot().toString(),
162
+ // Check that the parent block's slot is not greater than the proposal's slot.
163
+ if (parentBlock !== 'genesis' && parentBlock.header.getSlot() > slotNumber) {
164
+ this.log.warn(`Parent block slot is greater than proposal slot, skipping processing`, {
165
+ parentBlockSlot: parentBlock.header.getSlot().toString(),
149
166
  proposalSlot: slotNumber.toString(),
150
167
  ...proposalInfo,
151
168
  });
@@ -154,9 +171,9 @@ export class BlockProposalHandler {
154
171
 
155
172
  // Compute the block number based on the parent block
156
173
  const blockNumber =
157
- parentBlockHeader === 'genesis'
174
+ parentBlock === 'genesis'
158
175
  ? BlockNumber(INITIAL_L2_BLOCK_NUM)
159
- : BlockNumber(parentBlockHeader.getBlockNumber() + 1);
176
+ : BlockNumber(parentBlock.header.getBlockNumber() + 1);
160
177
 
161
178
  // Check that this block number does not exist already
162
179
  const existingBlock = await this.blockSource.getBlockHeader(blockNumber);
@@ -172,12 +189,26 @@ export class BlockProposalHandler {
172
189
  deadline: this.getReexecutionDeadline(slotNumber, config),
173
190
  });
174
191
 
192
+ // If reexecution is disabled, bail. We are just interested in triggering tx collection.
193
+ if (!shouldReexecute) {
194
+ this.log.info(
195
+ `Received valid block ${blockNumber} proposal at index ${proposal.indexWithinCheckpoint} on slot ${slotNumber}`,
196
+ proposalInfo,
197
+ );
198
+ return { isValid: true, blockNumber };
199
+ }
200
+
201
+ // Compute the checkpoint number for this block and validate checkpoint consistency
202
+ const checkpointResult = this.computeCheckpointNumber(proposal, parentBlock, proposalInfo);
203
+ if (checkpointResult.reason) {
204
+ return { isValid: false, blockNumber, reason: checkpointResult.reason };
205
+ }
206
+ const checkpointNumber = checkpointResult.checkpointNumber;
207
+
175
208
  // Check that I have the same set of l1ToL2Messages as the proposal
176
- const l1ToL2Messages = await this.l1ToL2MessageSource.getL1ToL2Messages(
177
- CheckpointNumber.fromBlockNumber(blockNumber),
178
- );
209
+ const l1ToL2Messages = await this.l1ToL2MessageSource.getL1ToL2Messages(checkpointNumber);
179
210
  const computedInHash = computeInHashFromL1ToL2Messages(l1ToL2Messages);
180
- const proposalInHash = proposal.payload.header.contentCommitment.inHash;
211
+ const proposalInHash = proposal.inHash;
181
212
  if (!computedInHash.equals(proposalInHash)) {
182
213
  this.log.warn(`L1 to L2 messages in hash mismatch, skipping processing`, {
183
214
  proposalInHash: proposalInHash.toString(),
@@ -193,27 +224,47 @@ export class BlockProposalHandler {
193
224
  return { isValid: false, blockNumber, reason: 'txs_not_available' };
194
225
  }
195
226
 
227
+ // Collect the out hashes of all the checkpoints before this one in the same epoch
228
+ const epoch = getEpochAtSlot(slotNumber, this.epochCache.getL1Constants());
229
+ const previousCheckpointOutHashes = (await this.blockSource.getCheckpointsDataForEpoch(epoch))
230
+ .filter(c => c.checkpointNumber < checkpointNumber)
231
+ .map(c => c.checkpointOutHash);
232
+
196
233
  // Try re-executing the transactions in the proposal if needed
197
234
  let reexecutionResult;
198
- if (shouldReexecute) {
199
- try {
200
- this.log.verbose(`Re-executing transactions in the proposal`, proposalInfo);
201
- reexecutionResult = await this.reexecuteTransactions(proposal, blockNumber, txs, l1ToL2Messages);
202
- } catch (error) {
203
- this.log.error(`Error reexecuting txs while processing block proposal`, error, proposalInfo);
204
- const reason = this.getReexecuteFailureReason(error);
205
- return { isValid: false, blockNumber, reason, reexecutionResult };
206
- }
235
+ try {
236
+ this.log.verbose(`Re-executing transactions in the proposal`, proposalInfo);
237
+ reexecutionResult = await this.reexecuteTransactions(
238
+ proposal,
239
+ blockNumber,
240
+ checkpointNumber,
241
+ txs,
242
+ l1ToL2Messages,
243
+ previousCheckpointOutHashes,
244
+ );
245
+ } catch (error) {
246
+ this.log.error(`Error reexecuting txs while processing block proposal`, error, proposalInfo);
247
+ const reason = this.getReexecuteFailureReason(error);
248
+ return { isValid: false, blockNumber, reason, reexecutionResult };
207
249
  }
208
250
 
209
- this.log.info(`Successfully processed proposal for slot ${slotNumber}`, proposalInfo);
251
+ // If we succeeded, push this block into the archiver (unless disabled)
252
+ if (reexecutionResult?.block && this.config.skipPushProposedBlocksToArchiver === false) {
253
+ await this.blockSource.addBlock(reexecutionResult?.block);
254
+ }
255
+
256
+ this.log.info(
257
+ `Successfully re-executed block ${blockNumber} proposal at index ${proposal.indexWithinCheckpoint} on slot ${slotNumber}`,
258
+ { ...proposalInfo, ...pick(reexecutionResult, 'reexecutionTimeMs', 'totalManaUsed') },
259
+ );
260
+
210
261
  return { isValid: true, blockNumber, reexecutionResult };
211
262
  }
212
263
 
213
- private async getParentBlock(proposal: BlockProposal): Promise<'genesis' | BlockHeader | undefined> {
214
- const parentArchive = proposal.payload.header.lastArchiveRoot;
264
+ private async getParentBlock(proposal: BlockProposal): Promise<'genesis' | BlockData | undefined> {
265
+ const parentArchive = proposal.blockHeader.lastArchive.root;
215
266
  const slot = proposal.slotNumber;
216
- const config = this.blockBuilder.getConfig();
267
+ const config = this.checkpointsBuilder.getConfig();
217
268
  const { genesisArchiveRoot } = await this.blockSource.getGenesisValues();
218
269
 
219
270
  if (parentArchive.equals(genesisArchiveRoot)) {
@@ -226,12 +277,11 @@ export class BlockProposalHandler {
226
277
 
227
278
  try {
228
279
  return (
229
- (await this.blockSource.getBlockHeaderByArchive(parentArchive)) ??
280
+ (await this.blockSource.getBlockDataByArchive(parentArchive)) ??
230
281
  (timeoutDurationMs <= 0
231
282
  ? undefined
232
283
  : await retryUntil(
233
- () =>
234
- this.blockSource.syncImmediate().then(() => this.blockSource.getBlockHeaderByArchive(parentArchive)),
284
+ () => this.blockSource.syncImmediate().then(() => this.blockSource.getBlockDataByArchive(parentArchive)),
235
285
  'force archiver sync',
236
286
  timeoutDurationMs / 1000,
237
287
  0.5,
@@ -247,10 +297,132 @@ export class BlockProposalHandler {
247
297
  }
248
298
  }
249
299
 
300
+ private computeCheckpointNumber(
301
+ proposal: BlockProposal,
302
+ parentBlock: 'genesis' | BlockData,
303
+ proposalInfo: object,
304
+ ): CheckpointComputationResult {
305
+ if (parentBlock === 'genesis') {
306
+ // First block is in checkpoint 1
307
+ if (proposal.indexWithinCheckpoint !== 0) {
308
+ this.log.warn(`First block proposal has non-zero indexWithinCheckpoint`, proposalInfo);
309
+ return { reason: 'invalid_proposal' };
310
+ }
311
+ return { checkpointNumber: CheckpointNumber.INITIAL };
312
+ }
313
+
314
+ if (proposal.indexWithinCheckpoint === 0) {
315
+ // If this is the first block in a new checkpoint, increment the checkpoint number
316
+ if (!(proposal.blockHeader.getSlot() > parentBlock.header.getSlot())) {
317
+ this.log.warn(`Slot should be greater than parent block slot for first block in checkpoint`, proposalInfo);
318
+ return { reason: 'invalid_proposal' };
319
+ }
320
+ return { checkpointNumber: CheckpointNumber(parentBlock.checkpointNumber + 1) };
321
+ }
322
+
323
+ // Otherwise it should follow the previous block in the same checkpoint
324
+ if (proposal.indexWithinCheckpoint !== parentBlock.indexWithinCheckpoint + 1) {
325
+ this.log.warn(`Non-sequential indexWithinCheckpoint`, proposalInfo);
326
+ return { reason: 'invalid_proposal' };
327
+ }
328
+ if (proposal.blockHeader.getSlot() !== parentBlock.header.getSlot()) {
329
+ this.log.warn(`Slot should be equal to parent block slot for non-first block in checkpoint`, proposalInfo);
330
+ return { reason: 'invalid_proposal' };
331
+ }
332
+
333
+ // For non-first blocks in a checkpoint, validate global variables match parent (except blockNumber)
334
+ const validationResult = this.validateNonFirstBlockInCheckpoint(proposal, parentBlock, proposalInfo);
335
+ if (validationResult) {
336
+ return validationResult;
337
+ }
338
+
339
+ return { checkpointNumber: parentBlock.checkpointNumber };
340
+ }
341
+
342
+ /**
343
+ * Validates that a non-first block in a checkpoint has consistent global variables with its parent.
344
+ * For blocks with indexWithinCheckpoint > 0, all global variables except blockNumber must match the parent.
345
+ * @returns A failure result if validation fails, undefined if validation passes
346
+ */
347
+ private validateNonFirstBlockInCheckpoint(
348
+ proposal: BlockProposal,
349
+ parentBlock: BlockData,
350
+ proposalInfo: object,
351
+ ): CheckpointComputationResult | undefined {
352
+ const proposalGlobals = proposal.blockHeader.globalVariables;
353
+ const parentGlobals = parentBlock.header.globalVariables;
354
+
355
+ // All global variables except blockNumber should match the parent
356
+ // blockNumber naturally increments between blocks
357
+ if (!proposalGlobals.chainId.equals(parentGlobals.chainId)) {
358
+ this.log.warn(`Non-first block in checkpoint has mismatched chainId`, {
359
+ ...proposalInfo,
360
+ proposalChainId: proposalGlobals.chainId.toString(),
361
+ parentChainId: parentGlobals.chainId.toString(),
362
+ });
363
+ return { reason: 'global_variables_mismatch' };
364
+ }
365
+
366
+ if (!proposalGlobals.version.equals(parentGlobals.version)) {
367
+ this.log.warn(`Non-first block in checkpoint has mismatched version`, {
368
+ ...proposalInfo,
369
+ proposalVersion: proposalGlobals.version.toString(),
370
+ parentVersion: parentGlobals.version.toString(),
371
+ });
372
+ return { reason: 'global_variables_mismatch' };
373
+ }
374
+
375
+ if (proposalGlobals.slotNumber !== parentGlobals.slotNumber) {
376
+ this.log.warn(`Non-first block in checkpoint has mismatched slotNumber`, {
377
+ ...proposalInfo,
378
+ proposalSlotNumber: proposalGlobals.slotNumber,
379
+ parentSlotNumber: parentGlobals.slotNumber,
380
+ });
381
+ return { reason: 'global_variables_mismatch' };
382
+ }
383
+
384
+ if (proposalGlobals.timestamp !== parentGlobals.timestamp) {
385
+ this.log.warn(`Non-first block in checkpoint has mismatched timestamp`, {
386
+ ...proposalInfo,
387
+ proposalTimestamp: proposalGlobals.timestamp.toString(),
388
+ parentTimestamp: parentGlobals.timestamp.toString(),
389
+ });
390
+ return { reason: 'global_variables_mismatch' };
391
+ }
392
+
393
+ if (!proposalGlobals.coinbase.equals(parentGlobals.coinbase)) {
394
+ this.log.warn(`Non-first block in checkpoint has mismatched coinbase`, {
395
+ ...proposalInfo,
396
+ proposalCoinbase: proposalGlobals.coinbase.toString(),
397
+ parentCoinbase: parentGlobals.coinbase.toString(),
398
+ });
399
+ return { reason: 'global_variables_mismatch' };
400
+ }
401
+
402
+ if (!proposalGlobals.feeRecipient.equals(parentGlobals.feeRecipient)) {
403
+ this.log.warn(`Non-first block in checkpoint has mismatched feeRecipient`, {
404
+ ...proposalInfo,
405
+ proposalFeeRecipient: proposalGlobals.feeRecipient.toString(),
406
+ parentFeeRecipient: parentGlobals.feeRecipient.toString(),
407
+ });
408
+ return { reason: 'global_variables_mismatch' };
409
+ }
410
+
411
+ if (!proposalGlobals.gasFees.equals(parentGlobals.gasFees)) {
412
+ this.log.warn(`Non-first block in checkpoint has mismatched gasFees`, {
413
+ ...proposalInfo,
414
+ proposalGasFees: proposalGlobals.gasFees.toInspect(),
415
+ parentGasFees: parentGlobals.gasFees.toInspect(),
416
+ });
417
+ return { reason: 'global_variables_mismatch' };
418
+ }
419
+
420
+ return undefined;
421
+ }
422
+
250
423
  private getReexecutionDeadline(slot: SlotNumber, config: { l1GenesisTime: bigint; slotDuration: number }): Date {
251
424
  const nextSlotTimestampSeconds = Number(getTimestampForSlot(SlotNumber(slot + 1), config));
252
- const msNeededForPropagationAndPublishing = this.config.validatorReexecuteDeadlineMs;
253
- return new Date(nextSlotTimestampSeconds * 1000 - msNeededForPropagationAndPublishing);
425
+ return new Date(nextSlotTimestampSeconds * 1000);
254
426
  }
255
427
 
256
428
  private getReexecuteFailureReason(err: any) {
@@ -268,11 +440,12 @@ export class BlockProposalHandler {
268
440
  async reexecuteTransactions(
269
441
  proposal: BlockProposal,
270
442
  blockNumber: BlockNumber,
443
+ checkpointNumber: CheckpointNumber,
271
444
  txs: Tx[],
272
445
  l1ToL2Messages: Fr[],
446
+ previousCheckpointOutHashes: Fr[],
273
447
  ): Promise<ReexecuteTransactionsResult> {
274
- const { header } = proposal.payload;
275
- const { txHashes } = proposal;
448
+ const { blockHeader, txHashes } = proposal;
276
449
 
277
450
  // If we do not have all of the transactions, then we should fail
278
451
  if (txs.length !== txHashes.length) {
@@ -281,32 +454,63 @@ export class BlockProposalHandler {
281
454
  throw new TransactionsNotAvailableError(missingTxHashes);
282
455
  }
283
456
 
284
- // Use the sequencer's block building logic to re-execute the transactions
285
457
  const timer = new Timer();
286
- const config = this.blockBuilder.getConfig();
287
-
288
- // We source most global variables from the proposal
289
- const globalVariables = GlobalVariables.from({
290
- slotNumber: proposal.payload.header.slotNumber, // checked in the block proposal validator
291
- coinbase: proposal.payload.header.coinbase, // set arbitrarily by the proposer
292
- feeRecipient: proposal.payload.header.feeRecipient, // set arbitrarily by the proposer
293
- gasFees: proposal.payload.header.gasFees, // validated by the rollup contract
294
- blockNumber, // computed from the parent block and checked it does not exist in archiver
295
- timestamp: header.timestamp, // checked in the rollup contract against the slot number
458
+ const slot = proposal.slotNumber;
459
+ const config = this.checkpointsBuilder.getConfig();
460
+
461
+ // Get prior blocks in this checkpoint (same slot before current block)
462
+ const allBlocksInSlot = await this.blockSource.getBlocksForSlot(slot);
463
+ const priorBlocks = allBlocksInSlot.filter(b => b.number < blockNumber && b.header.getSlot() === slot);
464
+
465
+ // Fork before the block to be built
466
+ const parentBlockNumber = BlockNumber(blockNumber - 1);
467
+ await this.worldState.syncImmediate(parentBlockNumber);
468
+ await using fork = await this.worldState.fork(parentBlockNumber);
469
+
470
+ // Build checkpoint constants from proposal (excludes blockNumber which is per-block)
471
+ const constants: CheckpointGlobalVariables = {
296
472
  chainId: new Fr(config.l1ChainId),
297
473
  version: new Fr(config.rollupVersion),
298
- });
474
+ slotNumber: slot,
475
+ timestamp: blockHeader.globalVariables.timestamp,
476
+ coinbase: blockHeader.globalVariables.coinbase,
477
+ feeRecipient: blockHeader.globalVariables.feeRecipient,
478
+ gasFees: blockHeader.globalVariables.gasFees,
479
+ };
299
480
 
300
- const { block, failedTxs } = await this.blockBuilder.buildBlock(txs, l1ToL2Messages, globalVariables, {
301
- deadline: this.getReexecutionDeadline(proposal.payload.header.slotNumber, config),
481
+ // Create checkpoint builder with prior blocks
482
+ const checkpointBuilder = await this.checkpointsBuilder.openCheckpoint(
483
+ checkpointNumber,
484
+ constants,
485
+ 0n, // only takes effect in the following checkpoint.
486
+ l1ToL2Messages,
487
+ previousCheckpointOutHashes,
488
+ fork,
489
+ priorBlocks,
490
+ this.log.getBindings(),
491
+ );
492
+
493
+ // Build the new block
494
+ const deadline = this.getReexecutionDeadline(slot, config);
495
+ const maxBlockGas =
496
+ this.config.validateMaxL2BlockGas !== undefined || this.config.validateMaxDABlockGas !== undefined
497
+ ? new Gas(this.config.validateMaxDABlockGas ?? Infinity, this.config.validateMaxL2BlockGas ?? Infinity)
498
+ : undefined;
499
+ const result = await checkpointBuilder.buildBlock(txs, blockNumber, blockHeader.globalVariables.timestamp, {
500
+ deadline,
501
+ expectedEndState: blockHeader.state,
502
+ maxTransactions: this.config.validateMaxTxsPerBlock,
503
+ maxBlockGas,
302
504
  });
303
505
 
506
+ const { block, failedTxs } = result;
304
507
  const numFailedTxs = failedTxs.length;
305
- const slot = proposal.slotNumber;
306
- this.log.verbose(`Transaction re-execution complete for slot ${slot}`, {
508
+
509
+ this.log.verbose(`Block proposal ${blockNumber} at slot ${slot} transaction re-execution complete`, {
307
510
  numFailedTxs,
308
511
  numProposalTxs: txHashes.length,
309
512
  numProcessedTxs: block.body.txEffects.length,
513
+ blockNumber,
310
514
  slot,
311
515
  });
312
516
 
@@ -321,11 +525,15 @@ export class BlockProposalHandler {
321
525
  }
322
526
 
323
527
  // Throw a ReExStateMismatchError error if state updates do not match
324
- const blockPayload = ConsensusPayload.fromBlock(block);
325
- if (!blockPayload.equals(proposal.payload)) {
528
+ // Compare the full block structure (archive and header) from the built block with the proposal
529
+ const archiveMatches = proposal.archive.equals(block.archive.root);
530
+ const headerMatches = proposal.blockHeader.equals(block.header);
531
+ if (!archiveMatches || !headerMatches) {
326
532
  this.log.warn(`Re-execution state mismatch for slot ${slot}`, {
327
- expected: blockPayload.toInspect(),
328
- actual: proposal.payload.toInspect(),
533
+ expectedArchive: block.archive.root.toString(),
534
+ actualArchive: proposal.archive.toString(),
535
+ expectedHeader: block.header.toInspect(),
536
+ actualHeader: proposal.blockHeader.toInspect(),
329
537
  });
330
538
  this.metrics?.recordFailedReexecution(proposal);
331
539
  throw new ReExStateMismatchError(proposal.archive, block.archive.root);