@aztec/validator-client 0.0.1-commit.9b94fc1 → 0.0.1-commit.9ee6fcc6

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 +326 -0
  2. package/dest/block_proposal_handler.d.ts +26 -14
  3. package/dest/block_proposal_handler.d.ts.map +1 -1
  4. package/dest/block_proposal_handler.js +433 -109
  5. package/dest/checkpoint_builder.d.ts +79 -0
  6. package/dest/checkpoint_builder.d.ts.map +1 -0
  7. package/dest/checkpoint_builder.js +251 -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 +42 -13
  12. package/dest/duties/validation_service.d.ts.map +1 -1
  13. package/dest/duties/validation_service.js +105 -28
  14. package/dest/factory.d.ts +15 -8
  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 +9 -5
  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 +9 -5
  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 +76 -21
  41. package/dest/validator.d.ts.map +1 -1
  42. package/dest/validator.js +483 -57
  43. package/package.json +23 -13
  44. package/src/block_proposal_handler.ts +370 -79
  45. package/src/checkpoint_builder.ts +417 -0
  46. package/src/config.ts +36 -7
  47. package/src/duties/validation_service.ts +156 -33
  48. package/src/factory.ts +21 -8
  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 +14 -5
  54. package/src/key_store/node_keystore_adapter.ts +28 -5
  55. package/src/key_store/web3signer_key_store.ts +18 -5
  56. package/src/metrics.ts +63 -33
  57. package/src/validator.ts +659 -90
@@ -1,33 +1,103 @@
1
+ function _ts_add_disposable_resource(env, value, async) {
2
+ if (value !== null && value !== void 0) {
3
+ if (typeof value !== "object" && typeof value !== "function") throw new TypeError("Object expected.");
4
+ var dispose, inner;
5
+ if (async) {
6
+ if (!Symbol.asyncDispose) throw new TypeError("Symbol.asyncDispose is not defined.");
7
+ dispose = value[Symbol.asyncDispose];
8
+ }
9
+ if (dispose === void 0) {
10
+ if (!Symbol.dispose) throw new TypeError("Symbol.dispose is not defined.");
11
+ dispose = value[Symbol.dispose];
12
+ if (async) inner = dispose;
13
+ }
14
+ if (typeof dispose !== "function") throw new TypeError("Object not disposable.");
15
+ if (inner) dispose = function() {
16
+ try {
17
+ inner.call(this);
18
+ } catch (e) {
19
+ return Promise.reject(e);
20
+ }
21
+ };
22
+ env.stack.push({
23
+ value: value,
24
+ dispose: dispose,
25
+ async: async
26
+ });
27
+ } else if (async) {
28
+ env.stack.push({
29
+ async: true
30
+ });
31
+ }
32
+ return value;
33
+ }
34
+ function _ts_dispose_resources(env) {
35
+ var _SuppressedError = typeof SuppressedError === "function" ? SuppressedError : function(error, suppressed, message) {
36
+ var e = new Error(message);
37
+ return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
38
+ };
39
+ return (_ts_dispose_resources = function _ts_dispose_resources(env) {
40
+ function fail(e) {
41
+ env.error = env.hasError ? new _SuppressedError(e, env.error, "An error was suppressed during disposal.") : e;
42
+ env.hasError = true;
43
+ }
44
+ var r, s = 0;
45
+ function next() {
46
+ while(r = env.stack.pop()){
47
+ try {
48
+ if (!r.async && s === 1) return s = 0, env.stack.push(r), Promise.resolve().then(next);
49
+ if (r.dispose) {
50
+ var result = r.dispose.call(r.value);
51
+ if (r.async) return s |= 2, Promise.resolve(result).then(next, function(e) {
52
+ fail(e);
53
+ return next();
54
+ });
55
+ } else s |= 1;
56
+ } catch (e) {
57
+ fail(e);
58
+ }
59
+ }
60
+ if (s === 1) return env.hasError ? Promise.reject(env.error) : Promise.resolve();
61
+ if (env.hasError) throw env.error;
62
+ }
63
+ return next();
64
+ })(env);
65
+ }
1
66
  import { INITIAL_L2_BLOCK_NUM } from '@aztec/constants';
2
- import { SlotNumber } from '@aztec/foundation/branded-types';
67
+ import { BlockNumber, CheckpointNumber, SlotNumber } from '@aztec/foundation/branded-types';
68
+ import { pick } from '@aztec/foundation/collection';
69
+ import { Fr } from '@aztec/foundation/curves/bn254';
3
70
  import { TimeoutError } from '@aztec/foundation/error';
4
- import { Fr } from '@aztec/foundation/fields';
5
71
  import { createLogger } from '@aztec/foundation/log';
6
72
  import { retryUntil } from '@aztec/foundation/retry';
7
73
  import { DateProvider, Timer } from '@aztec/foundation/timer';
8
- import { getTimestampForSlot } from '@aztec/stdlib/epoch-helpers';
74
+ import { getEpochAtSlot, getTimestampForSlot } from '@aztec/stdlib/epoch-helpers';
75
+ import { Gas } from '@aztec/stdlib/gas';
9
76
  import { computeInHashFromL1ToL2Messages } from '@aztec/stdlib/messaging';
10
- import { ConsensusPayload } from '@aztec/stdlib/p2p';
11
- import { GlobalVariables } from '@aztec/stdlib/tx';
12
- import { ReExFailedTxsError, ReExStateMismatchError, ReExTimeoutError, TransactionsNotAvailableError } from '@aztec/stdlib/validators';
77
+ import { MerkleTreeId } from '@aztec/stdlib/trees';
78
+ import { ReExFailedTxsError, ReExInitialStateMismatchError, ReExStateMismatchError, ReExTimeoutError, TransactionsNotAvailableError } from '@aztec/stdlib/validators';
13
79
  import { getTelemetryClient } from '@aztec/telemetry-client';
14
80
  export class BlockProposalHandler {
15
- blockBuilder;
81
+ checkpointsBuilder;
82
+ worldState;
16
83
  blockSource;
17
84
  l1ToL2MessageSource;
18
85
  txProvider;
19
86
  blockProposalValidator;
87
+ epochCache;
20
88
  config;
21
89
  metrics;
22
90
  dateProvider;
23
91
  log;
24
92
  tracer;
25
- constructor(blockBuilder, blockSource, l1ToL2MessageSource, txProvider, blockProposalValidator, config, metrics, dateProvider = new DateProvider(), telemetry = getTelemetryClient(), log = createLogger('validator:block-proposal-handler')){
26
- this.blockBuilder = blockBuilder;
93
+ constructor(checkpointsBuilder, worldState, blockSource, l1ToL2MessageSource, txProvider, blockProposalValidator, epochCache, config, metrics, dateProvider = new DateProvider(), telemetry = getTelemetryClient(), log = createLogger('validator:block-proposal-handler')){
94
+ this.checkpointsBuilder = checkpointsBuilder;
95
+ this.worldState = worldState;
27
96
  this.blockSource = blockSource;
28
97
  this.l1ToL2MessageSource = l1ToL2MessageSource;
29
98
  this.txProvider = txProvider;
30
99
  this.blockProposalValidator = blockProposalValidator;
100
+ this.epochCache = epochCache;
31
101
  this.config = config;
32
102
  this.metrics = metrics;
33
103
  this.dateProvider = dateProvider;
@@ -37,27 +107,35 @@ export class BlockProposalHandler {
37
107
  }
38
108
  this.tracer = telemetry.getTracer('BlockProposalHandler');
39
109
  }
40
- registerForReexecution(p2pClient) {
110
+ register(p2pClient, shouldReexecute) {
111
+ // Non-validator handler that processes or re-executes for monitoring but does not attest.
112
+ // Returns boolean indicating whether the proposal was valid.
41
113
  const handler = async (proposal, proposalSender)=>{
42
114
  try {
43
- const result = await this.handleBlockProposal(proposal, proposalSender, true);
115
+ const { slotNumber, blockNumber } = proposal;
116
+ const result = await this.handleBlockProposal(proposal, proposalSender, shouldReexecute);
44
117
  if (result.isValid) {
45
- this.log.info(`Non-validator reexecution completed for slot ${proposal.slotNumber}`, {
118
+ this.log.info(`Non-validator block proposal ${blockNumber} at slot ${slotNumber} handled`, {
46
119
  blockNumber: result.blockNumber,
120
+ slotNumber,
47
121
  reexecutionTimeMs: result.reexecutionResult?.reexecutionTimeMs,
48
122
  totalManaUsed: result.reexecutionResult?.totalManaUsed,
49
- numTxs: result.reexecutionResult?.block?.body?.txEffects?.length ?? 0
123
+ numTxs: result.reexecutionResult?.block?.body?.txEffects?.length ?? 0,
124
+ reexecuted: shouldReexecute
50
125
  });
126
+ return true;
51
127
  } else {
52
- this.log.warn(`Non-validator reexecution failed for slot ${proposal.slotNumber}`, {
128
+ this.log.warn(`Non-validator block proposal ${blockNumber} at slot ${slotNumber} failed processing with ${result.reason}`, {
53
129
  blockNumber: result.blockNumber,
130
+ slotNumber,
54
131
  reason: result.reason
55
132
  });
133
+ return false;
56
134
  }
57
135
  } catch (error) {
58
136
  this.log.error('Error processing block proposal in non-validator handler', error);
137
+ return false;
59
138
  }
60
- return undefined; // Non-validator nodes don't return attestations
61
139
  };
62
140
  p2pClient.registerBlockProposalHandler(handler);
63
141
  return this;
@@ -65,7 +143,7 @@ export class BlockProposalHandler {
65
143
  async handleBlockProposal(proposal, proposalSender, shouldReexecute) {
66
144
  const slotNumber = proposal.slotNumber;
67
145
  const proposer = proposal.getSender();
68
- const config = this.blockBuilder.getConfig();
146
+ const config = this.checkpointsBuilder.getConfig();
69
147
  // Reject proposals with invalid signatures
70
148
  if (!proposer) {
71
149
  this.log.warn(`Received proposal with invalid signature for slot ${slotNumber}`);
@@ -76,7 +154,9 @@ export class BlockProposalHandler {
76
154
  }
77
155
  const proposalInfo = {
78
156
  ...proposal.toBlockInfo(),
79
- proposer: proposer.toString()
157
+ proposer: proposer.toString(),
158
+ blockNumber: undefined,
159
+ checkpointNumber: undefined
80
160
  };
81
161
  this.log.info(`Processing proposal for slot ${slotNumber}`, {
82
162
  ...proposalInfo,
@@ -84,27 +164,46 @@ export class BlockProposalHandler {
84
164
  });
85
165
  // Check that the proposal is from the current proposer, or the next proposer
86
166
  // This should have been handled by the p2p layer, but we double check here out of caution
87
- const invalidProposal = await this.blockProposalValidator.validate(proposal);
88
- if (invalidProposal) {
167
+ const validationResult = await this.blockProposalValidator.validate(proposal);
168
+ if (validationResult.result !== 'accept') {
89
169
  this.log.warn(`Proposal is not valid, skipping processing`, proposalInfo);
90
170
  return {
91
171
  isValid: false,
92
172
  reason: 'invalid_proposal'
93
173
  };
94
174
  }
95
- // Check that the parent proposal is a block we know, otherwise reexecution would fail
96
- const parentBlockHeader = await this.getParentBlock(proposal);
97
- if (parentBlockHeader === undefined) {
175
+ // Ensure the block source is synced before checking for existing blocks,
176
+ // since a pending checkpoint prune may remove blocks we'd otherwise find.
177
+ // This affects mostly the block_number_already_exists check, since a pending
178
+ // checkpoint prune could remove a block that would conflict with this proposal.
179
+ // When pipelining is enabled, the proposer builds ahead of L1 submission, so the
180
+ // block source won't have synced to the proposed slot yet. Skip the sync wait to
181
+ // avoid eating into the attestation window.
182
+ if (!this.epochCache.isProposerPipeliningEnabled()) {
183
+ const blockSourceSync = await this.waitForBlockSourceSync(slotNumber);
184
+ if (!blockSourceSync) {
185
+ this.log.warn(`Block source is not synced, skipping processing`, proposalInfo);
186
+ return {
187
+ isValid: false,
188
+ reason: 'block_source_not_synced'
189
+ };
190
+ }
191
+ }
192
+ // Check that the parent proposal is a block we know, otherwise reexecution would fail.
193
+ // If we don't find it immediately, we keep retrying for a while; it may be we still
194
+ // need to process other block proposals to get to it.
195
+ const parentBlock = await this.getParentBlock(proposal);
196
+ if (parentBlock === undefined) {
98
197
  this.log.warn(`Parent block for proposal not found, skipping processing`, proposalInfo);
99
198
  return {
100
199
  isValid: false,
101
200
  reason: 'parent_block_not_found'
102
201
  };
103
202
  }
104
- // Check that the parent block's slot is less than the proposal's slot (should not happen, but we check anyway)
105
- if (parentBlockHeader !== 'genesis' && parentBlockHeader.getSlot() >= slotNumber) {
106
- this.log.warn(`Parent block slot is greater than or equal to proposal slot, skipping processing`, {
107
- parentBlockSlot: parentBlockHeader.getSlot().toString(),
203
+ // Check that the parent block's slot is not greater than the proposal's slot.
204
+ if (parentBlock !== 'genesis' && parentBlock.header.getSlot() > slotNumber) {
205
+ this.log.warn(`Parent block slot is greater than proposal slot, skipping processing`, {
206
+ parentBlockSlot: parentBlock.header.getSlot().toString(),
108
207
  proposalSlot: slotNumber.toString(),
109
208
  ...proposalInfo
110
209
  });
@@ -114,7 +213,8 @@ export class BlockProposalHandler {
114
213
  };
115
214
  }
116
215
  // Compute the block number based on the parent block
117
- const blockNumber = parentBlockHeader === 'genesis' ? INITIAL_L2_BLOCK_NUM : parentBlockHeader.getBlockNumber() + 1;
216
+ const blockNumber = parentBlock === 'genesis' ? BlockNumber(INITIAL_L2_BLOCK_NUM) : BlockNumber(parentBlock.header.getBlockNumber() + 1);
217
+ proposalInfo.blockNumber = blockNumber;
118
218
  // Check that this block number does not exist already
119
219
  const existingBlock = await this.blockSource.getBlockHeader(blockNumber);
120
220
  if (existingBlock) {
@@ -131,10 +231,29 @@ export class BlockProposalHandler {
131
231
  pinnedPeer: proposalSender,
132
232
  deadline: this.getReexecutionDeadline(slotNumber, config)
133
233
  });
234
+ // If reexecution is disabled, bail. We were just interested in triggering tx collection.
235
+ if (!shouldReexecute) {
236
+ this.log.info(`Received valid block ${blockNumber} proposal at index ${proposal.indexWithinCheckpoint} on slot ${slotNumber}`, proposalInfo);
237
+ return {
238
+ isValid: true,
239
+ blockNumber
240
+ };
241
+ }
242
+ // Compute the checkpoint number for this block and validate checkpoint consistency
243
+ const checkpointResult = this.computeCheckpointNumber(proposal, parentBlock, proposalInfo);
244
+ if (checkpointResult.reason) {
245
+ return {
246
+ isValid: false,
247
+ blockNumber,
248
+ reason: checkpointResult.reason
249
+ };
250
+ }
251
+ const checkpointNumber = checkpointResult.checkpointNumber;
252
+ proposalInfo.checkpointNumber = checkpointNumber;
134
253
  // Check that I have the same set of l1ToL2Messages as the proposal
135
- const l1ToL2Messages = await this.l1ToL2MessageSource.getL1ToL2Messages(blockNumber);
254
+ const l1ToL2Messages = await this.l1ToL2MessageSource.getL1ToL2Messages(checkpointNumber);
136
255
  const computedInHash = computeInHashFromL1ToL2Messages(l1ToL2Messages);
137
- const proposalInHash = proposal.payload.header.contentCommitment.inHash;
256
+ const proposalInHash = proposal.inHash;
138
257
  if (!computedInHash.equals(proposalInHash)) {
139
258
  this.log.warn(`L1 to L2 messages in hash mismatch, skipping processing`, {
140
259
  proposalInHash: proposalInHash.toString(),
@@ -159,24 +278,32 @@ export class BlockProposalHandler {
159
278
  reason: 'txs_not_available'
160
279
  };
161
280
  }
281
+ // Collect the out hashes of all the checkpoints before this one in the same epoch
282
+ const epoch = getEpochAtSlot(slotNumber, this.epochCache.getL1Constants());
283
+ const previousCheckpointOutHashes = (await this.blockSource.getCheckpointsDataForEpoch(epoch)).filter((c)=>c.checkpointNumber < checkpointNumber).map((c)=>c.checkpointOutHash);
162
284
  // Try re-executing the transactions in the proposal if needed
163
285
  let reexecutionResult;
164
- if (shouldReexecute) {
165
- try {
166
- this.log.verbose(`Re-executing transactions in the proposal`, proposalInfo);
167
- reexecutionResult = await this.reexecuteTransactions(proposal, blockNumber, txs, l1ToL2Messages);
168
- } catch (error) {
169
- this.log.error(`Error reexecuting txs while processing block proposal`, error, proposalInfo);
170
- const reason = this.getReexecuteFailureReason(error);
171
- return {
172
- isValid: false,
173
- blockNumber,
174
- reason,
175
- reexecutionResult
176
- };
177
- }
286
+ try {
287
+ this.log.verbose(`Re-executing transactions in the proposal`, proposalInfo);
288
+ reexecutionResult = await this.reexecuteTransactions(proposal, blockNumber, checkpointNumber, txs, l1ToL2Messages, previousCheckpointOutHashes);
289
+ } catch (error) {
290
+ this.log.error(`Error reexecuting txs while processing block proposal`, error, proposalInfo);
291
+ const reason = this.getReexecuteFailureReason(error);
292
+ return {
293
+ isValid: false,
294
+ blockNumber,
295
+ reason,
296
+ reexecutionResult
297
+ };
298
+ }
299
+ // If we succeeded, push this block into the archiver (unless disabled)
300
+ if (reexecutionResult?.block && this.config.skipPushProposedBlocksToArchiver === false) {
301
+ await this.blockSource.addBlock(reexecutionResult?.block);
178
302
  }
179
- this.log.info(`Successfully processed proposal for slot ${slotNumber}`, proposalInfo);
303
+ this.log.info(`Successfully re-executed block ${blockNumber} proposal at index ${proposal.indexWithinCheckpoint} on slot ${slotNumber}`, {
304
+ ...proposalInfo,
305
+ ...pick(reexecutionResult, 'reexecutionTimeMs', 'totalManaUsed')
306
+ });
180
307
  return {
181
308
  isValid: true,
182
309
  blockNumber,
@@ -184,9 +311,9 @@ export class BlockProposalHandler {
184
311
  };
185
312
  }
186
313
  async getParentBlock(proposal) {
187
- const parentArchive = proposal.payload.header.lastArchiveRoot;
314
+ const parentArchive = proposal.blockHeader.lastArchive.root;
188
315
  const slot = proposal.slotNumber;
189
- const config = this.blockBuilder.getConfig();
316
+ const config = this.checkpointsBuilder.getConfig();
190
317
  const { genesisArchiveRoot } = await this.blockSource.getGenesisValues();
191
318
  if (parentArchive.equals(genesisArchiveRoot)) {
192
319
  return 'genesis';
@@ -195,7 +322,7 @@ export class BlockProposalHandler {
195
322
  const currentTime = this.dateProvider.now();
196
323
  const timeoutDurationMs = deadline.getTime() - currentTime;
197
324
  try {
198
- return await this.blockSource.getBlockHeaderByArchive(parentArchive) ?? (timeoutDurationMs <= 0 ? undefined : await retryUntil(()=>this.blockSource.syncImmediate().then(()=>this.blockSource.getBlockHeaderByArchive(parentArchive)), 'force archiver sync', timeoutDurationMs / 1000, 0.5));
325
+ return await this.blockSource.getBlockDataByArchive(parentArchive) ?? (timeoutDurationMs <= 0 ? undefined : await retryUntil(()=>this.blockSource.syncImmediate().then(()=>this.blockSource.getBlockDataByArchive(parentArchive)), 'force archiver sync', timeoutDurationMs / 1000, 0.5));
199
326
  } catch (err) {
200
327
  if (err instanceof TimeoutError) {
201
328
  this.log.debug(`Timed out getting parent block by archive root`, {
@@ -209,13 +336,171 @@ export class BlockProposalHandler {
209
336
  return undefined;
210
337
  }
211
338
  }
339
+ computeCheckpointNumber(proposal, parentBlock, proposalInfo) {
340
+ if (parentBlock === 'genesis') {
341
+ // First block is in checkpoint 1
342
+ if (proposal.indexWithinCheckpoint !== 0) {
343
+ this.log.warn(`First block proposal has non-zero indexWithinCheckpoint`, proposalInfo);
344
+ return {
345
+ reason: 'invalid_proposal'
346
+ };
347
+ }
348
+ return {
349
+ checkpointNumber: CheckpointNumber.INITIAL
350
+ };
351
+ }
352
+ if (proposal.indexWithinCheckpoint === 0) {
353
+ // If this is the first block in a new checkpoint, increment the checkpoint number
354
+ if (!(proposal.blockHeader.getSlot() > parentBlock.header.getSlot())) {
355
+ this.log.warn(`Slot should be greater than parent block slot for first block in checkpoint`, proposalInfo);
356
+ return {
357
+ reason: 'invalid_proposal'
358
+ };
359
+ }
360
+ return {
361
+ checkpointNumber: CheckpointNumber(parentBlock.checkpointNumber + 1)
362
+ };
363
+ }
364
+ // Otherwise it should follow the previous block in the same checkpoint
365
+ if (proposal.indexWithinCheckpoint !== parentBlock.indexWithinCheckpoint + 1) {
366
+ this.log.warn(`Non-sequential indexWithinCheckpoint`, proposalInfo);
367
+ return {
368
+ reason: 'invalid_proposal'
369
+ };
370
+ }
371
+ if (proposal.blockHeader.getSlot() !== parentBlock.header.getSlot()) {
372
+ this.log.warn(`Slot should be equal to parent block slot for non-first block in checkpoint`, proposalInfo);
373
+ return {
374
+ reason: 'invalid_proposal'
375
+ };
376
+ }
377
+ // For non-first blocks in a checkpoint, validate global variables match parent (except blockNumber)
378
+ const validationResult = this.validateNonFirstBlockInCheckpoint(proposal, parentBlock, proposalInfo);
379
+ if (validationResult) {
380
+ return validationResult;
381
+ }
382
+ return {
383
+ checkpointNumber: parentBlock.checkpointNumber
384
+ };
385
+ }
386
+ /**
387
+ * Validates that a non-first block in a checkpoint has consistent global variables with its parent.
388
+ * For blocks with indexWithinCheckpoint > 0, all global variables except blockNumber must match the parent.
389
+ * @returns A failure result if validation fails, undefined if validation passes
390
+ */ validateNonFirstBlockInCheckpoint(proposal, parentBlock, proposalInfo) {
391
+ const proposalGlobals = proposal.blockHeader.globalVariables;
392
+ const parentGlobals = parentBlock.header.globalVariables;
393
+ // All global variables except blockNumber should match the parent
394
+ // blockNumber naturally increments between blocks
395
+ if (!proposalGlobals.chainId.equals(parentGlobals.chainId)) {
396
+ this.log.warn(`Non-first block in checkpoint has mismatched chainId`, {
397
+ ...proposalInfo,
398
+ proposalChainId: proposalGlobals.chainId.toString(),
399
+ parentChainId: parentGlobals.chainId.toString()
400
+ });
401
+ return {
402
+ reason: 'global_variables_mismatch'
403
+ };
404
+ }
405
+ if (!proposalGlobals.version.equals(parentGlobals.version)) {
406
+ this.log.warn(`Non-first block in checkpoint has mismatched version`, {
407
+ ...proposalInfo,
408
+ proposalVersion: proposalGlobals.version.toString(),
409
+ parentVersion: parentGlobals.version.toString()
410
+ });
411
+ return {
412
+ reason: 'global_variables_mismatch'
413
+ };
414
+ }
415
+ if (proposalGlobals.slotNumber !== parentGlobals.slotNumber) {
416
+ this.log.warn(`Non-first block in checkpoint has mismatched slotNumber`, {
417
+ ...proposalInfo,
418
+ proposalSlotNumber: proposalGlobals.slotNumber,
419
+ parentSlotNumber: parentGlobals.slotNumber
420
+ });
421
+ return {
422
+ reason: 'global_variables_mismatch'
423
+ };
424
+ }
425
+ if (proposalGlobals.timestamp !== parentGlobals.timestamp) {
426
+ this.log.warn(`Non-first block in checkpoint has mismatched timestamp`, {
427
+ ...proposalInfo,
428
+ proposalTimestamp: proposalGlobals.timestamp.toString(),
429
+ parentTimestamp: parentGlobals.timestamp.toString()
430
+ });
431
+ return {
432
+ reason: 'global_variables_mismatch'
433
+ };
434
+ }
435
+ if (!proposalGlobals.coinbase.equals(parentGlobals.coinbase)) {
436
+ this.log.warn(`Non-first block in checkpoint has mismatched coinbase`, {
437
+ ...proposalInfo,
438
+ proposalCoinbase: proposalGlobals.coinbase.toString(),
439
+ parentCoinbase: parentGlobals.coinbase.toString()
440
+ });
441
+ return {
442
+ reason: 'global_variables_mismatch'
443
+ };
444
+ }
445
+ if (!proposalGlobals.feeRecipient.equals(parentGlobals.feeRecipient)) {
446
+ this.log.warn(`Non-first block in checkpoint has mismatched feeRecipient`, {
447
+ ...proposalInfo,
448
+ proposalFeeRecipient: proposalGlobals.feeRecipient.toString(),
449
+ parentFeeRecipient: parentGlobals.feeRecipient.toString()
450
+ });
451
+ return {
452
+ reason: 'global_variables_mismatch'
453
+ };
454
+ }
455
+ if (!proposalGlobals.gasFees.equals(parentGlobals.gasFees)) {
456
+ this.log.warn(`Non-first block in checkpoint has mismatched gasFees`, {
457
+ ...proposalInfo,
458
+ proposalGasFees: proposalGlobals.gasFees.toInspect(),
459
+ parentGasFees: parentGlobals.gasFees.toInspect()
460
+ });
461
+ return {
462
+ reason: 'global_variables_mismatch'
463
+ };
464
+ }
465
+ return undefined;
466
+ }
212
467
  getReexecutionDeadline(slot, config) {
213
468
  const nextSlotTimestampSeconds = Number(getTimestampForSlot(SlotNumber(slot + 1), config));
214
- const msNeededForPropagationAndPublishing = this.config.validatorReexecuteDeadlineMs;
215
- return new Date(nextSlotTimestampSeconds * 1000 - msNeededForPropagationAndPublishing);
469
+ return new Date(nextSlotTimestampSeconds * 1000);
470
+ }
471
+ /** Waits for the block source to sync L1 data up to at least the slot before the given one. */ async waitForBlockSourceSync(slot) {
472
+ const deadline = this.getReexecutionDeadline(slot, this.checkpointsBuilder.getConfig());
473
+ const timeoutMs = deadline.getTime() - this.dateProvider.now();
474
+ if (slot === 0) {
475
+ return true;
476
+ }
477
+ // Make a quick check before triggering an archiver sync
478
+ const syncedSlot = await this.blockSource.getSyncedL2SlotNumber();
479
+ if (syncedSlot !== undefined && syncedSlot + 1 >= slot) {
480
+ return true;
481
+ }
482
+ try {
483
+ // Trigger an immediate sync of the block source, and wait until it reports being synced to the required slot
484
+ return await retryUntil(async ()=>{
485
+ await this.blockSource.syncImmediate();
486
+ const syncedSlot = await this.blockSource.getSyncedL2SlotNumber();
487
+ return syncedSlot !== undefined && syncedSlot + 1 >= slot;
488
+ }, 'wait for block source sync', timeoutMs / 1000, 0.5);
489
+ } catch (err) {
490
+ if (err instanceof TimeoutError) {
491
+ this.log.warn(`Timed out waiting for block source to sync to slot ${slot}`);
492
+ return false;
493
+ } else {
494
+ throw err;
495
+ }
496
+ }
216
497
  }
217
498
  getReexecuteFailureReason(err) {
218
- if (err instanceof ReExStateMismatchError) {
499
+ if (err instanceof TransactionsNotAvailableError) {
500
+ return 'txs_not_available';
501
+ } else if (err instanceof ReExInitialStateMismatchError) {
502
+ return 'initial_state_mismatch';
503
+ } else if (err instanceof ReExStateMismatchError) {
219
504
  return 'state_mismatch';
220
505
  } else if (err instanceof ReExFailedTxsError) {
221
506
  return 'failed_txs';
@@ -225,66 +510,105 @@ export class BlockProposalHandler {
225
510
  return 'unknown_error';
226
511
  }
227
512
  }
228
- async reexecuteTransactions(proposal, blockNumber, txs, l1ToL2Messages) {
229
- const { header } = proposal.payload;
230
- const { txHashes } = proposal;
231
- // If we do not have all of the transactions, then we should fail
232
- if (txs.length !== txHashes.length) {
233
- const foundTxHashes = txs.map((tx)=>tx.getTxHash());
234
- const missingTxHashes = txHashes.filter((txHash)=>!foundTxHashes.includes(txHash));
235
- throw new TransactionsNotAvailableError(missingTxHashes);
236
- }
237
- // Use the sequencer's block building logic to re-execute the transactions
238
- const timer = new Timer();
239
- const config = this.blockBuilder.getConfig();
240
- // We source most global variables from the proposal
241
- const globalVariables = GlobalVariables.from({
242
- slotNumber: proposal.payload.header.slotNumber,
243
- coinbase: proposal.payload.header.coinbase,
244
- feeRecipient: proposal.payload.header.feeRecipient,
245
- gasFees: proposal.payload.header.gasFees,
246
- blockNumber,
247
- timestamp: header.timestamp,
248
- chainId: new Fr(config.l1ChainId),
249
- version: new Fr(config.rollupVersion)
250
- });
251
- const { block, failedTxs } = await this.blockBuilder.buildBlock(txs, l1ToL2Messages, globalVariables, {
252
- deadline: this.getReexecutionDeadline(proposal.payload.header.slotNumber, config)
253
- });
254
- const numFailedTxs = failedTxs.length;
255
- const slot = proposal.slotNumber;
256
- this.log.verbose(`Transaction re-execution complete for slot ${slot}`, {
257
- numFailedTxs,
258
- numProposalTxs: txHashes.length,
259
- numProcessedTxs: block.body.txEffects.length,
260
- slot
261
- });
262
- if (numFailedTxs > 0) {
263
- this.metrics?.recordFailedReexecution(proposal);
264
- throw new ReExFailedTxsError(numFailedTxs);
265
- }
266
- if (block.body.txEffects.length !== txHashes.length) {
267
- this.metrics?.recordFailedReexecution(proposal);
268
- throw new ReExTimeoutError();
269
- }
270
- // Throw a ReExStateMismatchError error if state updates do not match
271
- const blockPayload = ConsensusPayload.fromBlock(block);
272
- if (!blockPayload.equals(proposal.payload)) {
273
- this.log.warn(`Re-execution state mismatch for slot ${slot}`, {
274
- expected: blockPayload.toInspect(),
275
- actual: proposal.payload.toInspect()
513
+ async reexecuteTransactions(proposal, blockNumber, checkpointNumber, txs, l1ToL2Messages, previousCheckpointOutHashes) {
514
+ const env = {
515
+ stack: [],
516
+ error: void 0,
517
+ hasError: false
518
+ };
519
+ try {
520
+ const { blockHeader, txHashes } = proposal;
521
+ // If we do not have all of the transactions, then we should fail
522
+ if (txs.length !== txHashes.length) {
523
+ const foundTxHashes = txs.map((tx)=>tx.getTxHash());
524
+ const missingTxHashes = txHashes.filter((txHash)=>!foundTxHashes.includes(txHash));
525
+ throw new TransactionsNotAvailableError(missingTxHashes);
526
+ }
527
+ const timer = new Timer();
528
+ const slot = proposal.slotNumber;
529
+ const config = this.checkpointsBuilder.getConfig();
530
+ // Get prior blocks in this checkpoint (same slot before current block)
531
+ const allBlocksInSlot = await this.blockSource.getBlocksForSlot(slot);
532
+ const priorBlocks = allBlocksInSlot.filter((b)=>b.number < blockNumber && b.header.getSlot() === slot);
533
+ // Fork before the block to be built
534
+ const parentBlockNumber = BlockNumber(blockNumber - 1);
535
+ await this.worldState.syncImmediate(parentBlockNumber);
536
+ const fork = _ts_add_disposable_resource(env, await this.worldState.fork(parentBlockNumber), true);
537
+ // Verify the fork's archive root matches the proposal's expected last archive.
538
+ // If they don't match, our world state synced to a different chain and reexecution would fail.
539
+ const forkArchiveRoot = new Fr((await fork.getTreeInfo(MerkleTreeId.ARCHIVE)).root);
540
+ if (!forkArchiveRoot.equals(proposal.blockHeader.lastArchive.root)) {
541
+ throw new ReExInitialStateMismatchError(proposal.blockHeader.lastArchive.root, forkArchiveRoot);
542
+ }
543
+ // Build checkpoint constants from proposal (excludes blockNumber which is per-block)
544
+ const constants = {
545
+ chainId: new Fr(config.l1ChainId),
546
+ version: new Fr(config.rollupVersion),
547
+ slotNumber: slot,
548
+ timestamp: blockHeader.globalVariables.timestamp,
549
+ coinbase: blockHeader.globalVariables.coinbase,
550
+ feeRecipient: blockHeader.globalVariables.feeRecipient,
551
+ gasFees: blockHeader.globalVariables.gasFees
552
+ };
553
+ // Create checkpoint builder with prior blocks
554
+ const checkpointBuilder = await this.checkpointsBuilder.openCheckpoint(checkpointNumber, constants, 0n, l1ToL2Messages, previousCheckpointOutHashes, fork, priorBlocks, this.log.getBindings());
555
+ // Build the new block
556
+ const deadline = this.getReexecutionDeadline(slot, config);
557
+ const maxBlockGas = this.config.validateMaxL2BlockGas !== undefined || this.config.validateMaxDABlockGas !== undefined ? new Gas(this.config.validateMaxDABlockGas ?? Infinity, this.config.validateMaxL2BlockGas ?? Infinity) : undefined;
558
+ const result = await checkpointBuilder.buildBlock(txs, blockNumber, blockHeader.globalVariables.timestamp, {
559
+ isBuildingProposal: false,
560
+ minValidTxs: 0,
561
+ deadline,
562
+ expectedEndState: blockHeader.state,
563
+ maxTransactions: this.config.validateMaxTxsPerBlock,
564
+ maxBlockGas
565
+ });
566
+ const { block, failedTxs } = result;
567
+ const numFailedTxs = failedTxs.length;
568
+ this.log.verbose(`Block proposal ${blockNumber} at slot ${slot} transaction re-execution complete`, {
569
+ numFailedTxs,
570
+ numProposalTxs: txHashes.length,
571
+ numProcessedTxs: block.body.txEffects.length,
572
+ blockNumber,
573
+ slot
276
574
  });
277
- this.metrics?.recordFailedReexecution(proposal);
278
- throw new ReExStateMismatchError(proposal.archive, block.archive.root);
575
+ if (numFailedTxs > 0) {
576
+ this.metrics?.recordFailedReexecution(proposal);
577
+ throw new ReExFailedTxsError(numFailedTxs);
578
+ }
579
+ if (block.body.txEffects.length !== txHashes.length) {
580
+ this.metrics?.recordFailedReexecution(proposal);
581
+ throw new ReExTimeoutError();
582
+ }
583
+ // Throw a ReExStateMismatchError error if state updates do not match
584
+ // Compare the full block structure (archive and header) from the built block with the proposal
585
+ const archiveMatches = proposal.archive.equals(block.archive.root);
586
+ const headerMatches = proposal.blockHeader.equals(block.header);
587
+ if (!archiveMatches || !headerMatches) {
588
+ this.log.warn(`Re-execution state mismatch for slot ${slot}`, {
589
+ expectedArchive: block.archive.root.toString(),
590
+ actualArchive: proposal.archive.toString(),
591
+ expectedHeader: block.header.toInspect(),
592
+ actualHeader: proposal.blockHeader.toInspect()
593
+ });
594
+ this.metrics?.recordFailedReexecution(proposal);
595
+ throw new ReExStateMismatchError(proposal.archive, block.archive.root);
596
+ }
597
+ const reexecutionTimeMs = timer.ms();
598
+ const totalManaUsed = block.header.totalManaUsed.toNumber() / 1e6;
599
+ this.metrics?.recordReex(reexecutionTimeMs, txs.length, totalManaUsed);
600
+ return {
601
+ block,
602
+ failedTxs,
603
+ reexecutionTimeMs,
604
+ totalManaUsed
605
+ };
606
+ } catch (e) {
607
+ env.error = e;
608
+ env.hasError = true;
609
+ } finally{
610
+ const result = _ts_dispose_resources(env);
611
+ if (result) await result;
279
612
  }
280
- const reexecutionTimeMs = timer.ms();
281
- const totalManaUsed = block.header.totalManaUsed.toNumber() / 1e6;
282
- this.metrics?.recordReex(reexecutionTimeMs, txs.length, totalManaUsed);
283
- return {
284
- block,
285
- failedTxs,
286
- reexecutionTimeMs,
287
- totalManaUsed
288
- };
289
613
  }
290
614
  }