@aztec/validator-client 0.0.1-commit.fcb71a6 → 0.0.1-commit.fffb133c

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 (69) hide show
  1. package/README.md +282 -0
  2. package/dest/block_proposal_handler.d.ts +20 -9
  3. package/dest/block_proposal_handler.d.ts.map +1 -1
  4. package/dest/block_proposal_handler.js +333 -78
  5. package/dest/checkpoint_builder.d.ts +67 -0
  6. package/dest/checkpoint_builder.d.ts.map +1 -0
  7. package/dest/checkpoint_builder.js +160 -0
  8. package/dest/config.d.ts +1 -1
  9. package/dest/config.d.ts.map +1 -1
  10. package/dest/config.js +13 -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 +109 -26
  14. package/dest/factory.d.ts +13 -10
  15. package/dest/factory.d.ts.map +1 -1
  16. package/dest/factory.js +2 -2
  17. package/dest/index.d.ts +3 -1
  18. package/dest/index.d.ts.map +1 -1
  19. package/dest/index.js +2 -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 +1 -1
  38. package/dest/metrics.d.ts.map +1 -1
  39. package/dest/metrics.js +8 -33
  40. package/dest/tx_validator/index.d.ts +3 -0
  41. package/dest/tx_validator/index.d.ts.map +1 -0
  42. package/dest/tx_validator/index.js +2 -0
  43. package/dest/tx_validator/nullifier_cache.d.ts +14 -0
  44. package/dest/tx_validator/nullifier_cache.d.ts.map +1 -0
  45. package/dest/tx_validator/nullifier_cache.js +24 -0
  46. package/dest/tx_validator/tx_validator_factory.d.ts +18 -0
  47. package/dest/tx_validator/tx_validator_factory.d.ts.map +1 -0
  48. package/dest/tx_validator/tx_validator_factory.js +54 -0
  49. package/dest/validator.d.ts +45 -20
  50. package/dest/validator.d.ts.map +1 -1
  51. package/dest/validator.js +314 -84
  52. package/package.json +19 -13
  53. package/src/block_proposal_handler.ts +252 -44
  54. package/src/checkpoint_builder.ts +284 -0
  55. package/src/config.ts +12 -7
  56. package/src/duties/validation_service.ts +153 -31
  57. package/src/factory.ts +17 -11
  58. package/src/index.ts +2 -0
  59. package/src/key_store/ha_key_store.ts +269 -0
  60. package/src/key_store/index.ts +1 -0
  61. package/src/key_store/interface.ts +44 -5
  62. package/src/key_store/local_key_store.ts +13 -4
  63. package/src/key_store/node_keystore_adapter.ts +27 -4
  64. package/src/key_store/web3signer_key_store.ts +17 -4
  65. package/src/metrics.ts +7 -34
  66. package/src/tx_validator/index.ts +2 -0
  67. package/src/tx_validator/nullifier_cache.ts +30 -0
  68. package/src/tx_validator/tx_validator_factory.ts +135 -0
  69. package/src/validator.ts +429 -107
@@ -1,33 +1,101 @@
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
67
  import { BlockNumber, CheckpointNumber, SlotNumber } from '@aztec/foundation/branded-types';
68
+ import { chunkBy } from '@aztec/foundation/collection';
3
69
  import { Fr } from '@aztec/foundation/curves/bn254';
4
70
  import { TimeoutError } from '@aztec/foundation/error';
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';
9
- import { computeInHashFromL1ToL2Messages } from '@aztec/stdlib/messaging';
10
- import { ConsensusPayload } from '@aztec/stdlib/p2p';
11
- import { GlobalVariables } from '@aztec/stdlib/tx';
74
+ import { getEpochAtSlot, getTimestampForSlot } from '@aztec/stdlib/epoch-helpers';
75
+ import { computeCheckpointOutHash, computeInHashFromL1ToL2Messages } from '@aztec/stdlib/messaging';
12
76
  import { ReExFailedTxsError, ReExStateMismatchError, ReExTimeoutError, TransactionsNotAvailableError } from '@aztec/stdlib/validators';
13
77
  import { getTelemetryClient } from '@aztec/telemetry-client';
14
78
  export class BlockProposalHandler {
15
- blockBuilder;
79
+ checkpointsBuilder;
80
+ worldState;
16
81
  blockSource;
17
82
  l1ToL2MessageSource;
18
83
  txProvider;
19
84
  blockProposalValidator;
85
+ epochCache;
20
86
  config;
21
87
  metrics;
22
88
  dateProvider;
23
89
  log;
24
90
  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;
91
+ constructor(checkpointsBuilder, worldState, blockSource, l1ToL2MessageSource, txProvider, blockProposalValidator, epochCache, config, metrics, dateProvider = new DateProvider(), telemetry = getTelemetryClient(), log = createLogger('validator:block-proposal-handler')){
92
+ this.checkpointsBuilder = checkpointsBuilder;
93
+ this.worldState = worldState;
27
94
  this.blockSource = blockSource;
28
95
  this.l1ToL2MessageSource = l1ToL2MessageSource;
29
96
  this.txProvider = txProvider;
30
97
  this.blockProposalValidator = blockProposalValidator;
98
+ this.epochCache = epochCache;
31
99
  this.config = config;
32
100
  this.metrics = metrics;
33
101
  this.dateProvider = dateProvider;
@@ -38,6 +106,8 @@ export class BlockProposalHandler {
38
106
  this.tracer = telemetry.getTracer('BlockProposalHandler');
39
107
  }
40
108
  registerForReexecution(p2pClient) {
109
+ // Non-validator handler that re-executes for monitoring but does not attest.
110
+ // Returns boolean indicating whether the proposal was valid.
41
111
  const handler = async (proposal, proposalSender)=>{
42
112
  try {
43
113
  const result = await this.handleBlockProposal(proposal, proposalSender, true);
@@ -48,16 +118,18 @@ export class BlockProposalHandler {
48
118
  totalManaUsed: result.reexecutionResult?.totalManaUsed,
49
119
  numTxs: result.reexecutionResult?.block?.body?.txEffects?.length ?? 0
50
120
  });
121
+ return true;
51
122
  } else {
52
123
  this.log.warn(`Non-validator reexecution failed for slot ${proposal.slotNumber}`, {
53
124
  blockNumber: result.blockNumber,
54
125
  reason: result.reason
55
126
  });
127
+ return false;
56
128
  }
57
129
  } catch (error) {
58
130
  this.log.error('Error processing block proposal in non-validator handler', error);
131
+ return false;
59
132
  }
60
- return undefined; // Non-validator nodes don't return attestations
61
133
  };
62
134
  p2pClient.registerBlockProposalHandler(handler);
63
135
  return this;
@@ -65,7 +137,7 @@ export class BlockProposalHandler {
65
137
  async handleBlockProposal(proposal, proposalSender, shouldReexecute) {
66
138
  const slotNumber = proposal.slotNumber;
67
139
  const proposer = proposal.getSender();
68
- const config = this.blockBuilder.getConfig();
140
+ const config = this.checkpointsBuilder.getConfig();
69
141
  // Reject proposals with invalid signatures
70
142
  if (!proposer) {
71
143
  this.log.warn(`Received proposal with invalid signature for slot ${slotNumber}`);
@@ -84,8 +156,8 @@ export class BlockProposalHandler {
84
156
  });
85
157
  // Check that the proposal is from the current proposer, or the next proposer
86
158
  // 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) {
159
+ const validationResult = await this.blockProposalValidator.validate(proposal);
160
+ if (validationResult.result !== 'accept') {
89
161
  this.log.warn(`Proposal is not valid, skipping processing`, proposalInfo);
90
162
  return {
91
163
  isValid: false,
@@ -131,10 +203,20 @@ export class BlockProposalHandler {
131
203
  pinnedPeer: proposalSender,
132
204
  deadline: this.getReexecutionDeadline(slotNumber, config)
133
205
  });
206
+ // Compute the checkpoint number for this block and validate checkpoint consistency
207
+ const checkpointResult = await this.computeCheckpointNumber(proposal, parentBlockHeader, proposalInfo);
208
+ if (checkpointResult.reason) {
209
+ return {
210
+ isValid: false,
211
+ blockNumber,
212
+ reason: checkpointResult.reason
213
+ };
214
+ }
215
+ const checkpointNumber = checkpointResult.checkpointNumber;
134
216
  // Check that I have the same set of l1ToL2Messages as the proposal
135
- const l1ToL2Messages = await this.l1ToL2MessageSource.getL1ToL2Messages(CheckpointNumber.fromBlockNumber(blockNumber));
217
+ const l1ToL2Messages = await this.l1ToL2MessageSource.getL1ToL2Messages(checkpointNumber);
136
218
  const computedInHash = computeInHashFromL1ToL2Messages(l1ToL2Messages);
137
- const proposalInHash = proposal.payload.header.contentCommitment.inHash;
219
+ const proposalInHash = proposal.inHash;
138
220
  if (!computedInHash.equals(proposalInHash)) {
139
221
  this.log.warn(`L1 to L2 messages in hash mismatch, skipping processing`, {
140
222
  proposalInHash: proposalInHash.toString(),
@@ -162,9 +244,16 @@ export class BlockProposalHandler {
162
244
  // Try re-executing the transactions in the proposal if needed
163
245
  let reexecutionResult;
164
246
  if (shouldReexecute) {
247
+ // Compute the previous checkpoint out hashes for the epoch.
248
+ // TODO(leila/mbps): There can be a more efficient way to get the previous checkpoint out
249
+ // hashes without having to fetch all the blocks.
250
+ const epoch = getEpochAtSlot(slotNumber, this.epochCache.getL1Constants());
251
+ const checkpointedBlocks = (await this.blockSource.getCheckpointedBlocksForEpoch(epoch)).filter((b)=>b.block.number < blockNumber).sort((a, b)=>a.block.number - b.block.number);
252
+ const blocksByCheckpoint = chunkBy(checkpointedBlocks, (b)=>b.checkpointNumber);
253
+ const previousCheckpointOutHashes = blocksByCheckpoint.map((checkpointBlocks)=>computeCheckpointOutHash(checkpointBlocks.map((b)=>b.block.body.txEffects.map((tx)=>tx.l2ToL1Msgs))));
165
254
  try {
166
255
  this.log.verbose(`Re-executing transactions in the proposal`, proposalInfo);
167
- reexecutionResult = await this.reexecuteTransactions(proposal, blockNumber, txs, l1ToL2Messages);
256
+ reexecutionResult = await this.reexecuteTransactions(proposal, blockNumber, checkpointNumber, txs, l1ToL2Messages, previousCheckpointOutHashes);
168
257
  } catch (error) {
169
258
  this.log.error(`Error reexecuting txs while processing block proposal`, error, proposalInfo);
170
259
  const reason = this.getReexecuteFailureReason(error);
@@ -176,7 +265,11 @@ export class BlockProposalHandler {
176
265
  };
177
266
  }
178
267
  }
179
- this.log.info(`Successfully processed proposal for slot ${slotNumber}`, proposalInfo);
268
+ // If we succeeded, push this block into the archiver (unless disabled)
269
+ if (reexecutionResult?.block && this.config.skipPushProposedBlocksToArchiver === false) {
270
+ await this.blockSource.addBlock(reexecutionResult?.block);
271
+ }
272
+ this.log.info(`Successfully processed block ${blockNumber} proposal at index ${proposal.indexWithinCheckpoint} on slot ${slotNumber}`, proposalInfo);
180
273
  return {
181
274
  isValid: true,
182
275
  blockNumber,
@@ -184,9 +277,9 @@ export class BlockProposalHandler {
184
277
  };
185
278
  }
186
279
  async getParentBlock(proposal) {
187
- const parentArchive = proposal.payload.header.lastArchiveRoot;
280
+ const parentArchive = proposal.blockHeader.lastArchive.root;
188
281
  const slot = proposal.slotNumber;
189
- const config = this.blockBuilder.getConfig();
282
+ const config = this.checkpointsBuilder.getConfig();
190
283
  const { genesisArchiveRoot } = await this.blockSource.getGenesisValues();
191
284
  if (parentArchive.equals(genesisArchiveRoot)) {
192
285
  return 'genesis';
@@ -209,10 +302,148 @@ export class BlockProposalHandler {
209
302
  return undefined;
210
303
  }
211
304
  }
305
+ async computeCheckpointNumber(proposal, parentBlockHeader, proposalInfo) {
306
+ if (parentBlockHeader === 'genesis') {
307
+ // First block is in checkpoint 1
308
+ if (proposal.indexWithinCheckpoint !== 0) {
309
+ this.log.warn(`First block proposal has non-zero indexWithinCheckpoint`, proposalInfo);
310
+ return {
311
+ reason: 'invalid_proposal'
312
+ };
313
+ }
314
+ return {
315
+ checkpointNumber: CheckpointNumber.INITIAL
316
+ };
317
+ }
318
+ // Get the parent block to find its checkpoint number
319
+ // TODO(palla/mbps): The block header should include the checkpoint number to avoid this lookup,
320
+ // or at least the L2BlockSource should return a different struct that includes it.
321
+ const parentBlockNumber = parentBlockHeader.getBlockNumber();
322
+ const parentBlock = await this.blockSource.getL2Block(parentBlockNumber);
323
+ if (!parentBlock) {
324
+ this.log.warn(`Parent block ${parentBlockNumber} not found in archiver`, proposalInfo);
325
+ return {
326
+ reason: 'invalid_proposal'
327
+ };
328
+ }
329
+ if (proposal.indexWithinCheckpoint === 0) {
330
+ // If this is the first block in a new checkpoint, increment the checkpoint number
331
+ if (!(proposal.blockHeader.getSlot() > parentBlockHeader.getSlot())) {
332
+ this.log.warn(`Slot should be greater than parent block slot for first block in checkpoint`, proposalInfo);
333
+ return {
334
+ reason: 'invalid_proposal'
335
+ };
336
+ }
337
+ return {
338
+ checkpointNumber: CheckpointNumber(parentBlock.checkpointNumber + 1)
339
+ };
340
+ }
341
+ // Otherwise it should follow the previous block in the same checkpoint
342
+ if (proposal.indexWithinCheckpoint !== parentBlock.indexWithinCheckpoint + 1) {
343
+ this.log.warn(`Non-sequential indexWithinCheckpoint`, proposalInfo);
344
+ return {
345
+ reason: 'invalid_proposal'
346
+ };
347
+ }
348
+ if (proposal.blockHeader.getSlot() !== parentBlockHeader.getSlot()) {
349
+ this.log.warn(`Slot should be equal to parent block slot for non-first block in checkpoint`, proposalInfo);
350
+ return {
351
+ reason: 'invalid_proposal'
352
+ };
353
+ }
354
+ // For non-first blocks in a checkpoint, validate global variables match parent (except blockNumber)
355
+ const validationResult = this.validateNonFirstBlockInCheckpoint(proposal, parentBlock, proposalInfo);
356
+ if (validationResult) {
357
+ return validationResult;
358
+ }
359
+ return {
360
+ checkpointNumber: parentBlock.checkpointNumber
361
+ };
362
+ }
363
+ /**
364
+ * Validates that a non-first block in a checkpoint has consistent global variables with its parent.
365
+ * For blocks with indexWithinCheckpoint > 0, all global variables except blockNumber must match the parent.
366
+ * @returns A failure result if validation fails, undefined if validation passes
367
+ */ validateNonFirstBlockInCheckpoint(proposal, parentBlock, proposalInfo) {
368
+ const proposalGlobals = proposal.blockHeader.globalVariables;
369
+ const parentGlobals = parentBlock.header.globalVariables;
370
+ // All global variables except blockNumber should match the parent
371
+ // blockNumber naturally increments between blocks
372
+ if (!proposalGlobals.chainId.equals(parentGlobals.chainId)) {
373
+ this.log.warn(`Non-first block in checkpoint has mismatched chainId`, {
374
+ ...proposalInfo,
375
+ proposalChainId: proposalGlobals.chainId.toString(),
376
+ parentChainId: parentGlobals.chainId.toString()
377
+ });
378
+ return {
379
+ reason: 'global_variables_mismatch'
380
+ };
381
+ }
382
+ if (!proposalGlobals.version.equals(parentGlobals.version)) {
383
+ this.log.warn(`Non-first block in checkpoint has mismatched version`, {
384
+ ...proposalInfo,
385
+ proposalVersion: proposalGlobals.version.toString(),
386
+ parentVersion: parentGlobals.version.toString()
387
+ });
388
+ return {
389
+ reason: 'global_variables_mismatch'
390
+ };
391
+ }
392
+ if (proposalGlobals.slotNumber !== parentGlobals.slotNumber) {
393
+ this.log.warn(`Non-first block in checkpoint has mismatched slotNumber`, {
394
+ ...proposalInfo,
395
+ proposalSlotNumber: proposalGlobals.slotNumber,
396
+ parentSlotNumber: parentGlobals.slotNumber
397
+ });
398
+ return {
399
+ reason: 'global_variables_mismatch'
400
+ };
401
+ }
402
+ if (proposalGlobals.timestamp !== parentGlobals.timestamp) {
403
+ this.log.warn(`Non-first block in checkpoint has mismatched timestamp`, {
404
+ ...proposalInfo,
405
+ proposalTimestamp: proposalGlobals.timestamp.toString(),
406
+ parentTimestamp: parentGlobals.timestamp.toString()
407
+ });
408
+ return {
409
+ reason: 'global_variables_mismatch'
410
+ };
411
+ }
412
+ if (!proposalGlobals.coinbase.equals(parentGlobals.coinbase)) {
413
+ this.log.warn(`Non-first block in checkpoint has mismatched coinbase`, {
414
+ ...proposalInfo,
415
+ proposalCoinbase: proposalGlobals.coinbase.toString(),
416
+ parentCoinbase: parentGlobals.coinbase.toString()
417
+ });
418
+ return {
419
+ reason: 'global_variables_mismatch'
420
+ };
421
+ }
422
+ if (!proposalGlobals.feeRecipient.equals(parentGlobals.feeRecipient)) {
423
+ this.log.warn(`Non-first block in checkpoint has mismatched feeRecipient`, {
424
+ ...proposalInfo,
425
+ proposalFeeRecipient: proposalGlobals.feeRecipient.toString(),
426
+ parentFeeRecipient: parentGlobals.feeRecipient.toString()
427
+ });
428
+ return {
429
+ reason: 'global_variables_mismatch'
430
+ };
431
+ }
432
+ if (!proposalGlobals.gasFees.equals(parentGlobals.gasFees)) {
433
+ this.log.warn(`Non-first block in checkpoint has mismatched gasFees`, {
434
+ ...proposalInfo,
435
+ proposalGasFees: proposalGlobals.gasFees.toInspect(),
436
+ parentGasFees: parentGlobals.gasFees.toInspect()
437
+ });
438
+ return {
439
+ reason: 'global_variables_mismatch'
440
+ };
441
+ }
442
+ return undefined;
443
+ }
212
444
  getReexecutionDeadline(slot, config) {
213
445
  const nextSlotTimestampSeconds = Number(getTimestampForSlot(SlotNumber(slot + 1), config));
214
- const msNeededForPropagationAndPublishing = this.config.validatorReexecuteDeadlineMs;
215
- return new Date(nextSlotTimestampSeconds * 1000 - msNeededForPropagationAndPublishing);
446
+ return new Date(nextSlotTimestampSeconds * 1000);
216
447
  }
217
448
  getReexecuteFailureReason(err) {
218
449
  if (err instanceof ReExStateMismatchError) {
@@ -225,66 +456,90 @@ export class BlockProposalHandler {
225
456
  return 'unknown_error';
226
457
  }
227
458
  }
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()
459
+ async reexecuteTransactions(proposal, blockNumber, checkpointNumber, txs, l1ToL2Messages, previousCheckpointOutHashes) {
460
+ const env = {
461
+ stack: [],
462
+ error: void 0,
463
+ hasError: false
464
+ };
465
+ try {
466
+ const { blockHeader, txHashes } = proposal;
467
+ // If we do not have all of the transactions, then we should fail
468
+ if (txs.length !== txHashes.length) {
469
+ const foundTxHashes = txs.map((tx)=>tx.getTxHash());
470
+ const missingTxHashes = txHashes.filter((txHash)=>!foundTxHashes.includes(txHash));
471
+ throw new TransactionsNotAvailableError(missingTxHashes);
472
+ }
473
+ const timer = new Timer();
474
+ const slot = proposal.slotNumber;
475
+ const config = this.checkpointsBuilder.getConfig();
476
+ // Get prior blocks in this checkpoint (same slot before current block)
477
+ const allBlocksInSlot = await this.blockSource.getBlocksForSlot(slot);
478
+ const priorBlocks = allBlocksInSlot.filter((b)=>b.number < blockNumber && b.header.getSlot() === slot);
479
+ // Fork before the block to be built
480
+ const parentBlockNumber = BlockNumber(blockNumber - 1);
481
+ const fork = _ts_add_disposable_resource(env, await this.worldState.fork(parentBlockNumber), false);
482
+ // Build checkpoint constants from proposal (excludes blockNumber and timestamp which are per-block)
483
+ const constants = {
484
+ chainId: new Fr(config.l1ChainId),
485
+ version: new Fr(config.rollupVersion),
486
+ slotNumber: slot,
487
+ coinbase: blockHeader.globalVariables.coinbase,
488
+ feeRecipient: blockHeader.globalVariables.feeRecipient,
489
+ gasFees: blockHeader.globalVariables.gasFees
490
+ };
491
+ // Create checkpoint builder with prior blocks
492
+ const checkpointBuilder = await this.checkpointsBuilder.openCheckpoint(checkpointNumber, constants, l1ToL2Messages, previousCheckpointOutHashes, fork, priorBlocks);
493
+ // Build the new block
494
+ const deadline = this.getReexecutionDeadline(slot, config);
495
+ const result = await checkpointBuilder.buildBlock(txs, blockNumber, blockHeader.globalVariables.timestamp, {
496
+ deadline,
497
+ expectedEndState: blockHeader.state
276
498
  });
277
- this.metrics?.recordFailedReexecution(proposal);
278
- throw new ReExStateMismatchError(proposal.archive, block.archive.root);
499
+ const { block, failedTxs } = result;
500
+ const numFailedTxs = failedTxs.length;
501
+ this.log.verbose(`Transaction re-execution complete for slot ${slot}`, {
502
+ numFailedTxs,
503
+ numProposalTxs: txHashes.length,
504
+ numProcessedTxs: block.body.txEffects.length,
505
+ slot
506
+ });
507
+ if (numFailedTxs > 0) {
508
+ this.metrics?.recordFailedReexecution(proposal);
509
+ throw new ReExFailedTxsError(numFailedTxs);
510
+ }
511
+ if (block.body.txEffects.length !== txHashes.length) {
512
+ this.metrics?.recordFailedReexecution(proposal);
513
+ throw new ReExTimeoutError();
514
+ }
515
+ // Throw a ReExStateMismatchError error if state updates do not match
516
+ // Compare the full block structure (archive and header) from the built block with the proposal
517
+ const archiveMatches = proposal.archive.equals(block.archive.root);
518
+ const headerMatches = proposal.blockHeader.equals(block.header);
519
+ if (!archiveMatches || !headerMatches) {
520
+ this.log.warn(`Re-execution state mismatch for slot ${slot}`, {
521
+ expectedArchive: block.archive.root.toString(),
522
+ actualArchive: proposal.archive.toString(),
523
+ expectedHeader: block.header.toInspect(),
524
+ actualHeader: proposal.blockHeader.toInspect()
525
+ });
526
+ this.metrics?.recordFailedReexecution(proposal);
527
+ throw new ReExStateMismatchError(proposal.archive, block.archive.root);
528
+ }
529
+ const reexecutionTimeMs = timer.ms();
530
+ const totalManaUsed = block.header.totalManaUsed.toNumber() / 1e6;
531
+ this.metrics?.recordReex(reexecutionTimeMs, txs.length, totalManaUsed);
532
+ return {
533
+ block,
534
+ failedTxs,
535
+ reexecutionTimeMs,
536
+ totalManaUsed
537
+ };
538
+ } catch (e) {
539
+ env.error = e;
540
+ env.hasError = true;
541
+ } finally{
542
+ _ts_dispose_resources(env);
279
543
  }
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
544
  }
290
545
  }
@@ -0,0 +1,67 @@
1
+ import { BlockNumber, CheckpointNumber } from '@aztec/foundation/branded-types';
2
+ import { Fr } from '@aztec/foundation/curves/bn254';
3
+ import { DateProvider, Timer } from '@aztec/foundation/timer';
4
+ import { LightweightCheckpointBuilder } from '@aztec/prover-client/light';
5
+ import { PublicProcessor } from '@aztec/simulator/server';
6
+ import { L2Block } from '@aztec/stdlib/block';
7
+ import { Checkpoint } from '@aztec/stdlib/checkpoint';
8
+ import type { ContractDataSource } from '@aztec/stdlib/contract';
9
+ import type { L1RollupConstants } from '@aztec/stdlib/epoch-helpers';
10
+ import { type BuildBlockInCheckpointResult, type FullNodeBlockBuilderConfig, type ICheckpointBlockBuilder, type ICheckpointsBuilder, type MerkleTreeWriteOperations, type PublicProcessorLimits, type WorldStateSynchronizer } from '@aztec/stdlib/interfaces/server';
11
+ import { type CheckpointGlobalVariables, GlobalVariables, StateReference, Tx } from '@aztec/stdlib/tx';
12
+ import { type TelemetryClient } from '@aztec/telemetry-client';
13
+ export type { BuildBlockInCheckpointResult } from '@aztec/stdlib/interfaces/server';
14
+ /** Result of building a block within a checkpoint. Extends the base interface with timer. */
15
+ export interface BuildBlockInCheckpointResultWithTimer extends BuildBlockInCheckpointResult {
16
+ blockBuildingTimer: Timer;
17
+ }
18
+ /**
19
+ * Builder for a single checkpoint. Handles building blocks within the checkpoint
20
+ * and completing it.
21
+ */
22
+ export declare class CheckpointBuilder implements ICheckpointBlockBuilder {
23
+ private checkpointBuilder;
24
+ private fork;
25
+ private config;
26
+ private contractDataSource;
27
+ private dateProvider;
28
+ private telemetryClient;
29
+ constructor(checkpointBuilder: LightweightCheckpointBuilder, fork: MerkleTreeWriteOperations, config: FullNodeBlockBuilderConfig, contractDataSource: ContractDataSource, dateProvider: DateProvider, telemetryClient: TelemetryClient);
30
+ getConstantData(): CheckpointGlobalVariables;
31
+ /**
32
+ * Builds a single block within this checkpoint.
33
+ */
34
+ buildBlock(pendingTxs: Iterable<Tx> | AsyncIterable<Tx>, blockNumber: BlockNumber, timestamp: bigint, opts: PublicProcessorLimits & {
35
+ expectedEndState?: StateReference;
36
+ }): Promise<BuildBlockInCheckpointResultWithTimer>;
37
+ /** Completes the checkpoint and returns it. */
38
+ completeCheckpoint(): Promise<Checkpoint>;
39
+ /** Gets the checkpoint currently in progress. */
40
+ getCheckpoint(): Promise<Checkpoint>;
41
+ protected makeBlockBuilderDeps(globalVariables: GlobalVariables, fork: MerkleTreeWriteOperations): Promise<{
42
+ processor: PublicProcessor;
43
+ validator: import("@aztec/stdlib/interfaces/server").PublicProcessorValidator;
44
+ }>;
45
+ }
46
+ /** Factory for creating checkpoint builders. */
47
+ export declare class FullNodeCheckpointsBuilder implements ICheckpointsBuilder {
48
+ private config;
49
+ private worldState;
50
+ private contractDataSource;
51
+ private dateProvider;
52
+ private telemetryClient;
53
+ constructor(config: FullNodeBlockBuilderConfig & Pick<L1RollupConstants, 'l1GenesisTime' | 'slotDuration'>, worldState: WorldStateSynchronizer, contractDataSource: ContractDataSource, dateProvider: DateProvider, telemetryClient?: TelemetryClient);
54
+ getConfig(): FullNodeBlockBuilderConfig;
55
+ updateConfig(config: Partial<FullNodeBlockBuilderConfig>): void;
56
+ /**
57
+ * Starts a new checkpoint and returns a CheckpointBuilder to build blocks within it.
58
+ */
59
+ startCheckpoint(checkpointNumber: CheckpointNumber, constants: CheckpointGlobalVariables, l1ToL2Messages: Fr[], previousCheckpointOutHashes: Fr[], fork: MerkleTreeWriteOperations): Promise<CheckpointBuilder>;
60
+ /**
61
+ * Opens a checkpoint, either starting fresh or resuming from existing blocks.
62
+ */
63
+ openCheckpoint(checkpointNumber: CheckpointNumber, constants: CheckpointGlobalVariables, l1ToL2Messages: Fr[], previousCheckpointOutHashes: Fr[], fork: MerkleTreeWriteOperations, existingBlocks?: L2Block[]): Promise<CheckpointBuilder>;
64
+ /** Returns a fork of the world state at the given block number. */
65
+ getFork(blockNumber: BlockNumber): Promise<MerkleTreeWriteOperations>;
66
+ }
67
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hlY2twb2ludF9idWlsZGVyLmQudHMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvY2hlY2twb2ludF9idWlsZGVyLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxXQUFXLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQztBQUVoRixPQUFPLEVBQUUsRUFBRSxFQUFFLE1BQU0sZ0NBQWdDLENBQUM7QUFHcEQsT0FBTyxFQUFFLFlBQVksRUFBRSxLQUFLLEVBQVcsTUFBTSx5QkFBeUIsQ0FBQztBQUV2RSxPQUFPLEVBQUUsNEJBQTRCLEVBQUUsTUFBTSw0QkFBNEIsQ0FBQztBQUMxRSxPQUFPLEVBR0wsZUFBZSxFQUVoQixNQUFNLHlCQUF5QixDQUFDO0FBQ2pDLE9BQU8sRUFBRSxPQUFPLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUM5QyxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sMEJBQTBCLENBQUM7QUFDdEQsT0FBTyxLQUFLLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUNqRSxPQUFPLEtBQUssRUFBRSxpQkFBaUIsRUFBRSxNQUFNLDZCQUE2QixDQUFDO0FBRXJFLE9BQU8sRUFDTCxLQUFLLDRCQUE0QixFQUNqQyxLQUFLLDBCQUEwQixFQUUvQixLQUFLLHVCQUF1QixFQUM1QixLQUFLLG1CQUFtQixFQUN4QixLQUFLLHlCQUF5QixFQUM5QixLQUFLLHFCQUFxQixFQUMxQixLQUFLLHNCQUFzQixFQUM1QixNQUFNLGlDQUFpQyxDQUFDO0FBRXpDLE9BQU8sRUFBRSxLQUFLLHlCQUF5QixFQUFFLGVBQWUsRUFBRSxjQUFjLEVBQUUsRUFBRSxFQUFFLE1BQU0sa0JBQWtCLENBQUM7QUFDdkcsT0FBTyxFQUFFLEtBQUssZUFBZSxFQUFzQixNQUFNLHlCQUF5QixDQUFDO0FBS25GLFlBQVksRUFBRSw0QkFBNEIsRUFBRSxNQUFNLGlDQUFpQyxDQUFDO0FBSXBGLDZGQUE2RjtB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
@@ -0,0 +1 @@
1
+ {"version":3,"file":"checkpoint_builder.d.ts","sourceRoot":"","sources":["../src/checkpoint_builder.ts"],"names":[],"mappings":"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"}