@aztec/validator-client 0.0.1-commit.b655e406 → 0.0.1-commit.c0b82b2

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 +285 -0
  2. package/dest/block_proposal_handler.d.ts +25 -14
  3. package/dest/block_proposal_handler.d.ts.map +1 -1
  4. package/dest/block_proposal_handler.js +339 -93
  5. package/dest/checkpoint_builder.d.ts +69 -0
  6. package/dest/checkpoint_builder.d.ts.map +1 -0
  7. package/dest/checkpoint_builder.js +180 -0
  8. package/dest/config.d.ts +1 -1
  9. package/dest/config.d.ts.map +1 -1
  10. package/dest/config.js +20 -7
  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 +113 -31
  14. package/dest/factory.d.ts +13 -8
  15. package/dest/factory.d.ts.map +1 -1
  16. package/dest/factory.js +2 -2
  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 -11
  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 +4 -3
  38. package/dest/metrics.d.ts.map +1 -1
  39. package/dest/metrics.js +34 -30
  40. package/dest/validator.d.ts +75 -22
  41. package/dest/validator.d.ts.map +1 -1
  42. package/dest/validator.js +498 -65
  43. package/package.json +24 -14
  44. package/src/block_proposal_handler.ts +265 -73
  45. package/src/checkpoint_builder.ts +328 -0
  46. package/src/config.ts +20 -6
  47. package/src/duties/validation_service.ts +164 -38
  48. package/src/factory.ts +17 -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 +45 -33
  57. package/src/validator.ts +669 -97
@@ -1,67 +1,142 @@
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';
67
+ import { BlockNumber, CheckpointNumber, SlotNumber } from '@aztec/foundation/branded-types';
68
+ import { Fr } from '@aztec/foundation/curves/bn254';
2
69
  import { TimeoutError } from '@aztec/foundation/error';
3
- import { Fr } from '@aztec/foundation/fields';
4
70
  import { createLogger } from '@aztec/foundation/log';
5
71
  import { retryUntil } from '@aztec/foundation/retry';
6
72
  import { DateProvider, Timer } from '@aztec/foundation/timer';
7
- import { computeInHashFromL1ToL2Messages } from '@aztec/prover-client/helpers';
8
- import { getTimestampForSlot } from '@aztec/stdlib/epoch-helpers';
9
- import { ConsensusPayload } from '@aztec/stdlib/p2p';
10
- import { GlobalVariables } from '@aztec/stdlib/tx';
73
+ import { getEpochAtSlot, getTimestampForSlot } from '@aztec/stdlib/epoch-helpers';
74
+ import { computeInHashFromL1ToL2Messages } from '@aztec/stdlib/messaging';
11
75
  import { ReExFailedTxsError, ReExStateMismatchError, ReExTimeoutError, TransactionsNotAvailableError } from '@aztec/stdlib/validators';
12
76
  import { getTelemetryClient } from '@aztec/telemetry-client';
13
77
  export class BlockProposalHandler {
14
- blockBuilder;
78
+ checkpointsBuilder;
79
+ worldState;
15
80
  blockSource;
16
81
  l1ToL2MessageSource;
17
82
  txProvider;
18
83
  blockProposalValidator;
84
+ epochCache;
19
85
  config;
20
86
  metrics;
21
87
  dateProvider;
22
88
  log;
23
89
  tracer;
24
- constructor(blockBuilder, blockSource, l1ToL2MessageSource, txProvider, blockProposalValidator, config, metrics, dateProvider = new DateProvider(), telemetry = getTelemetryClient(), log = createLogger('validator:block-proposal-handler')){
25
- this.blockBuilder = blockBuilder;
90
+ constructor(checkpointsBuilder, worldState, blockSource, l1ToL2MessageSource, txProvider, blockProposalValidator, epochCache, config, metrics, dateProvider = new DateProvider(), telemetry = getTelemetryClient(), log = createLogger('validator:block-proposal-handler')){
91
+ this.checkpointsBuilder = checkpointsBuilder;
92
+ this.worldState = worldState;
26
93
  this.blockSource = blockSource;
27
94
  this.l1ToL2MessageSource = l1ToL2MessageSource;
28
95
  this.txProvider = txProvider;
29
96
  this.blockProposalValidator = blockProposalValidator;
97
+ this.epochCache = epochCache;
30
98
  this.config = config;
31
99
  this.metrics = metrics;
32
100
  this.dateProvider = dateProvider;
33
101
  this.log = log;
102
+ if (config.fishermanMode) {
103
+ this.log = this.log.createChild('[FISHERMAN]');
104
+ }
34
105
  this.tracer = telemetry.getTracer('BlockProposalHandler');
35
106
  }
36
107
  registerForReexecution(p2pClient) {
108
+ // Non-validator handler that re-executes for monitoring but does not attest.
109
+ // Returns boolean indicating whether the proposal was valid.
37
110
  const handler = async (proposal, proposalSender)=>{
38
111
  try {
39
112
  const result = await this.handleBlockProposal(proposal, proposalSender, true);
40
113
  if (result.isValid) {
41
- this.log.info(`Non-validator reexecution completed for slot ${proposal.slotNumber.toBigInt()}`, {
114
+ this.log.info(`Non-validator reexecution completed for slot ${proposal.slotNumber}`, {
42
115
  blockNumber: result.blockNumber,
43
116
  reexecutionTimeMs: result.reexecutionResult?.reexecutionTimeMs,
44
117
  totalManaUsed: result.reexecutionResult?.totalManaUsed,
45
118
  numTxs: result.reexecutionResult?.block?.body?.txEffects?.length ?? 0
46
119
  });
120
+ return true;
47
121
  } else {
48
- this.log.warn(`Non-validator reexecution failed for slot ${proposal.slotNumber.toBigInt()}`, {
122
+ this.log.warn(`Non-validator reexecution failed for slot ${proposal.slotNumber}`, {
49
123
  blockNumber: result.blockNumber,
50
124
  reason: result.reason
51
125
  });
126
+ return false;
52
127
  }
53
128
  } catch (error) {
54
129
  this.log.error('Error processing block proposal in non-validator handler', error);
130
+ return false;
55
131
  }
56
- return undefined; // Non-validator nodes don't return attestations
57
132
  };
58
133
  p2pClient.registerBlockProposalHandler(handler);
59
134
  return this;
60
135
  }
61
136
  async handleBlockProposal(proposal, proposalSender, shouldReexecute) {
62
- const slotNumber = proposal.slotNumber.toBigInt();
137
+ const slotNumber = proposal.slotNumber;
63
138
  const proposer = proposal.getSender();
64
- const config = this.blockBuilder.getConfig();
139
+ const config = this.checkpointsBuilder.getConfig();
65
140
  // Reject proposals with invalid signatures
66
141
  if (!proposer) {
67
142
  this.log.warn(`Received proposal with invalid signature for slot ${slotNumber}`);
@@ -80,8 +155,8 @@ export class BlockProposalHandler {
80
155
  });
81
156
  // Check that the proposal is from the current proposer, or the next proposer
82
157
  // This should have been handled by the p2p layer, but we double check here out of caution
83
- const invalidProposal = await this.blockProposalValidator.validate(proposal);
84
- if (invalidProposal) {
158
+ const validationResult = await this.blockProposalValidator.validate(proposal);
159
+ if (validationResult.result !== 'accept') {
85
160
  this.log.warn(`Proposal is not valid, skipping processing`, proposalInfo);
86
161
  return {
87
162
  isValid: false,
@@ -89,18 +164,18 @@ export class BlockProposalHandler {
89
164
  };
90
165
  }
91
166
  // Check that the parent proposal is a block we know, otherwise reexecution would fail
92
- const parentBlockHeader = await this.getParentBlock(proposal);
93
- if (parentBlockHeader === undefined) {
167
+ const parentBlock = await this.getParentBlock(proposal);
168
+ if (parentBlock === undefined) {
94
169
  this.log.warn(`Parent block for proposal not found, skipping processing`, proposalInfo);
95
170
  return {
96
171
  isValid: false,
97
172
  reason: 'parent_block_not_found'
98
173
  };
99
174
  }
100
- // Check that the parent block's slot is less than the proposal's slot (should not happen, but we check anyway)
101
- if (parentBlockHeader !== 'genesis' && parentBlockHeader.getSlot() >= slotNumber) {
102
- this.log.warn(`Parent block slot is greater than or equal to proposal slot, skipping processing`, {
103
- parentBlockSlot: parentBlockHeader.getSlot().toString(),
175
+ // Check that the parent block's slot is not greater than the proposal's slot.
176
+ if (parentBlock !== 'genesis' && parentBlock.header.getSlot() > slotNumber) {
177
+ this.log.warn(`Parent block slot is greater than proposal slot, skipping processing`, {
178
+ parentBlockSlot: parentBlock.header.getSlot().toString(),
104
179
  proposalSlot: slotNumber.toString(),
105
180
  ...proposalInfo
106
181
  });
@@ -110,7 +185,7 @@ export class BlockProposalHandler {
110
185
  };
111
186
  }
112
187
  // Compute the block number based on the parent block
113
- const blockNumber = parentBlockHeader === 'genesis' ? INITIAL_L2_BLOCK_NUM : parentBlockHeader.getBlockNumber() + 1;
188
+ const blockNumber = parentBlock === 'genesis' ? BlockNumber(INITIAL_L2_BLOCK_NUM) : BlockNumber(parentBlock.header.getBlockNumber() + 1);
114
189
  // Check that this block number does not exist already
115
190
  const existingBlock = await this.blockSource.getBlockHeader(blockNumber);
116
191
  if (existingBlock) {
@@ -127,10 +202,20 @@ export class BlockProposalHandler {
127
202
  pinnedPeer: proposalSender,
128
203
  deadline: this.getReexecutionDeadline(slotNumber, config)
129
204
  });
205
+ // Compute the checkpoint number for this block and validate checkpoint consistency
206
+ const checkpointResult = this.computeCheckpointNumber(proposal, parentBlock, proposalInfo);
207
+ if (checkpointResult.reason) {
208
+ return {
209
+ isValid: false,
210
+ blockNumber,
211
+ reason: checkpointResult.reason
212
+ };
213
+ }
214
+ const checkpointNumber = checkpointResult.checkpointNumber;
130
215
  // Check that I have the same set of l1ToL2Messages as the proposal
131
- const l1ToL2Messages = await this.l1ToL2MessageSource.getL1ToL2Messages(blockNumber);
132
- const computedInHash = await computeInHashFromL1ToL2Messages(l1ToL2Messages);
133
- const proposalInHash = proposal.payload.header.contentCommitment.inHash;
216
+ const l1ToL2Messages = await this.l1ToL2MessageSource.getL1ToL2Messages(checkpointNumber);
217
+ const computedInHash = computeInHashFromL1ToL2Messages(l1ToL2Messages);
218
+ const proposalInHash = proposal.inHash;
134
219
  if (!computedInHash.equals(proposalInHash)) {
135
220
  this.log.warn(`L1 to L2 messages in hash mismatch, skipping processing`, {
136
221
  proposalInHash: proposalInHash.toString(),
@@ -158,9 +243,12 @@ export class BlockProposalHandler {
158
243
  // Try re-executing the transactions in the proposal if needed
159
244
  let reexecutionResult;
160
245
  if (shouldReexecute) {
246
+ // Collect the out hashes of all the checkpoints before this one in the same epoch
247
+ const epoch = getEpochAtSlot(slotNumber, this.epochCache.getL1Constants());
248
+ const previousCheckpointOutHashes = (await this.blockSource.getCheckpointsDataForEpoch(epoch)).filter((c)=>c.checkpointNumber < checkpointNumber).map((c)=>c.checkpointOutHash);
161
249
  try {
162
250
  this.log.verbose(`Re-executing transactions in the proposal`, proposalInfo);
163
- reexecutionResult = await this.reexecuteTransactions(proposal, blockNumber, txs, l1ToL2Messages);
251
+ reexecutionResult = await this.reexecuteTransactions(proposal, blockNumber, checkpointNumber, txs, l1ToL2Messages, previousCheckpointOutHashes);
164
252
  } catch (error) {
165
253
  this.log.error(`Error reexecuting txs while processing block proposal`, error, proposalInfo);
166
254
  const reason = this.getReexecuteFailureReason(error);
@@ -172,7 +260,11 @@ export class BlockProposalHandler {
172
260
  };
173
261
  }
174
262
  }
175
- this.log.info(`Successfully processed proposal for slot ${slotNumber}`, proposalInfo);
263
+ // If we succeeded, push this block into the archiver (unless disabled)
264
+ if (reexecutionResult?.block && this.config.skipPushProposedBlocksToArchiver === false) {
265
+ await this.blockSource.addBlock(reexecutionResult?.block);
266
+ }
267
+ this.log.info(`Successfully processed block ${blockNumber} proposal at index ${proposal.indexWithinCheckpoint} on slot ${slotNumber}`, proposalInfo);
176
268
  return {
177
269
  isValid: true,
178
270
  blockNumber,
@@ -180,9 +272,9 @@ export class BlockProposalHandler {
180
272
  };
181
273
  }
182
274
  async getParentBlock(proposal) {
183
- const parentArchive = proposal.payload.header.lastArchiveRoot;
184
- const slot = proposal.slotNumber.toBigInt();
185
- const config = this.blockBuilder.getConfig();
275
+ const parentArchive = proposal.blockHeader.lastArchive.root;
276
+ const slot = proposal.slotNumber;
277
+ const config = this.checkpointsBuilder.getConfig();
186
278
  const { genesisArchiveRoot } = await this.blockSource.getGenesisValues();
187
279
  if (parentArchive.equals(genesisArchiveRoot)) {
188
280
  return 'genesis';
@@ -191,7 +283,7 @@ export class BlockProposalHandler {
191
283
  const currentTime = this.dateProvider.now();
192
284
  const timeoutDurationMs = deadline.getTime() - currentTime;
193
285
  try {
194
- 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));
286
+ 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));
195
287
  } catch (err) {
196
288
  if (err instanceof TimeoutError) {
197
289
  this.log.debug(`Timed out getting parent block by archive root`, {
@@ -205,10 +297,137 @@ export class BlockProposalHandler {
205
297
  return undefined;
206
298
  }
207
299
  }
300
+ computeCheckpointNumber(proposal, parentBlock, proposalInfo) {
301
+ if (parentBlock === 'genesis') {
302
+ // First block is in checkpoint 1
303
+ if (proposal.indexWithinCheckpoint !== 0) {
304
+ this.log.warn(`First block proposal has non-zero indexWithinCheckpoint`, proposalInfo);
305
+ return {
306
+ reason: 'invalid_proposal'
307
+ };
308
+ }
309
+ return {
310
+ checkpointNumber: CheckpointNumber.INITIAL
311
+ };
312
+ }
313
+ if (proposal.indexWithinCheckpoint === 0) {
314
+ // If this is the first block in a new checkpoint, increment the checkpoint number
315
+ if (!(proposal.blockHeader.getSlot() > parentBlock.header.getSlot())) {
316
+ this.log.warn(`Slot should be greater than parent block slot for first block in checkpoint`, proposalInfo);
317
+ return {
318
+ reason: 'invalid_proposal'
319
+ };
320
+ }
321
+ return {
322
+ checkpointNumber: CheckpointNumber(parentBlock.checkpointNumber + 1)
323
+ };
324
+ }
325
+ // Otherwise it should follow the previous block in the same checkpoint
326
+ if (proposal.indexWithinCheckpoint !== parentBlock.indexWithinCheckpoint + 1) {
327
+ this.log.warn(`Non-sequential indexWithinCheckpoint`, proposalInfo);
328
+ return {
329
+ reason: 'invalid_proposal'
330
+ };
331
+ }
332
+ if (proposal.blockHeader.getSlot() !== parentBlock.header.getSlot()) {
333
+ this.log.warn(`Slot should be equal to parent block slot for non-first block in checkpoint`, proposalInfo);
334
+ return {
335
+ reason: 'invalid_proposal'
336
+ };
337
+ }
338
+ // For non-first blocks in a checkpoint, validate global variables match parent (except blockNumber)
339
+ const validationResult = this.validateNonFirstBlockInCheckpoint(proposal, parentBlock, proposalInfo);
340
+ if (validationResult) {
341
+ return validationResult;
342
+ }
343
+ return {
344
+ checkpointNumber: parentBlock.checkpointNumber
345
+ };
346
+ }
347
+ /**
348
+ * Validates that a non-first block in a checkpoint has consistent global variables with its parent.
349
+ * For blocks with indexWithinCheckpoint > 0, all global variables except blockNumber must match the parent.
350
+ * @returns A failure result if validation fails, undefined if validation passes
351
+ */ validateNonFirstBlockInCheckpoint(proposal, parentBlock, proposalInfo) {
352
+ const proposalGlobals = proposal.blockHeader.globalVariables;
353
+ const parentGlobals = parentBlock.header.globalVariables;
354
+ // All global variables except blockNumber should match the parent
355
+ // blockNumber naturally increments between blocks
356
+ if (!proposalGlobals.chainId.equals(parentGlobals.chainId)) {
357
+ this.log.warn(`Non-first block in checkpoint has mismatched chainId`, {
358
+ ...proposalInfo,
359
+ proposalChainId: proposalGlobals.chainId.toString(),
360
+ parentChainId: parentGlobals.chainId.toString()
361
+ });
362
+ return {
363
+ 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 {
373
+ reason: 'global_variables_mismatch'
374
+ };
375
+ }
376
+ if (proposalGlobals.slotNumber !== parentGlobals.slotNumber) {
377
+ this.log.warn(`Non-first block in checkpoint has mismatched slotNumber`, {
378
+ ...proposalInfo,
379
+ proposalSlotNumber: proposalGlobals.slotNumber,
380
+ parentSlotNumber: parentGlobals.slotNumber
381
+ });
382
+ return {
383
+ reason: 'global_variables_mismatch'
384
+ };
385
+ }
386
+ if (proposalGlobals.timestamp !== parentGlobals.timestamp) {
387
+ this.log.warn(`Non-first block in checkpoint has mismatched timestamp`, {
388
+ ...proposalInfo,
389
+ proposalTimestamp: proposalGlobals.timestamp.toString(),
390
+ parentTimestamp: parentGlobals.timestamp.toString()
391
+ });
392
+ return {
393
+ reason: 'global_variables_mismatch'
394
+ };
395
+ }
396
+ if (!proposalGlobals.coinbase.equals(parentGlobals.coinbase)) {
397
+ this.log.warn(`Non-first block in checkpoint has mismatched coinbase`, {
398
+ ...proposalInfo,
399
+ proposalCoinbase: proposalGlobals.coinbase.toString(),
400
+ parentCoinbase: parentGlobals.coinbase.toString()
401
+ });
402
+ return {
403
+ reason: 'global_variables_mismatch'
404
+ };
405
+ }
406
+ if (!proposalGlobals.feeRecipient.equals(parentGlobals.feeRecipient)) {
407
+ this.log.warn(`Non-first block in checkpoint has mismatched feeRecipient`, {
408
+ ...proposalInfo,
409
+ proposalFeeRecipient: proposalGlobals.feeRecipient.toString(),
410
+ parentFeeRecipient: parentGlobals.feeRecipient.toString()
411
+ });
412
+ return {
413
+ reason: 'global_variables_mismatch'
414
+ };
415
+ }
416
+ if (!proposalGlobals.gasFees.equals(parentGlobals.gasFees)) {
417
+ this.log.warn(`Non-first block in checkpoint has mismatched gasFees`, {
418
+ ...proposalInfo,
419
+ proposalGasFees: proposalGlobals.gasFees.toInspect(),
420
+ parentGasFees: parentGlobals.gasFees.toInspect()
421
+ });
422
+ return {
423
+ reason: 'global_variables_mismatch'
424
+ };
425
+ }
426
+ return undefined;
427
+ }
208
428
  getReexecutionDeadline(slot, config) {
209
- const nextSlotTimestampSeconds = Number(getTimestampForSlot(slot + 1n, config));
210
- const msNeededForPropagationAndPublishing = this.config.validatorReexecuteDeadlineMs;
211
- return new Date(nextSlotTimestampSeconds * 1000 - msNeededForPropagationAndPublishing);
429
+ const nextSlotTimestampSeconds = Number(getTimestampForSlot(SlotNumber(slot + 1), config));
430
+ return new Date(nextSlotTimestampSeconds * 1000);
212
431
  }
213
432
  getReexecuteFailureReason(err) {
214
433
  if (err instanceof ReExStateMismatchError) {
@@ -221,66 +440,93 @@ export class BlockProposalHandler {
221
440
  return 'unknown_error';
222
441
  }
223
442
  }
224
- async reexecuteTransactions(proposal, blockNumber, txs, l1ToL2Messages) {
225
- const { header } = proposal.payload;
226
- const { txHashes } = proposal;
227
- // If we do not have all of the transactions, then we should fail
228
- if (txs.length !== txHashes.length) {
229
- const foundTxHashes = txs.map((tx)=>tx.getTxHash());
230
- const missingTxHashes = txHashes.filter((txHash)=>!foundTxHashes.includes(txHash));
231
- throw new TransactionsNotAvailableError(missingTxHashes);
232
- }
233
- // Use the sequencer's block building logic to re-execute the transactions
234
- const timer = new Timer();
235
- const config = this.blockBuilder.getConfig();
236
- // We source most global variables from the proposal
237
- const globalVariables = GlobalVariables.from({
238
- slotNumber: proposal.payload.header.slotNumber,
239
- coinbase: proposal.payload.header.coinbase,
240
- feeRecipient: proposal.payload.header.feeRecipient,
241
- gasFees: proposal.payload.header.gasFees,
242
- blockNumber,
243
- timestamp: header.timestamp,
244
- chainId: new Fr(config.l1ChainId),
245
- version: new Fr(config.rollupVersion)
246
- });
247
- const { block, failedTxs } = await this.blockBuilder.buildBlock(txs, l1ToL2Messages, globalVariables, {
248
- deadline: this.getReexecutionDeadline(proposal.payload.header.slotNumber.toBigInt(), config)
249
- });
250
- const numFailedTxs = failedTxs.length;
251
- const slot = proposal.slotNumber.toBigInt();
252
- this.log.verbose(`Transaction re-execution complete for slot ${slot}`, {
253
- numFailedTxs,
254
- numProposalTxs: txHashes.length,
255
- numProcessedTxs: block.body.txEffects.length,
256
- slot
257
- });
258
- if (numFailedTxs > 0) {
259
- this.metrics?.recordFailedReexecution(proposal);
260
- throw new ReExFailedTxsError(numFailedTxs);
261
- }
262
- if (block.body.txEffects.length !== txHashes.length) {
263
- this.metrics?.recordFailedReexecution(proposal);
264
- throw new ReExTimeoutError();
265
- }
266
- // Throw a ReExStateMismatchError error if state updates do not match
267
- const blockPayload = ConsensusPayload.fromBlock(block);
268
- if (!blockPayload.equals(proposal.payload)) {
269
- this.log.warn(`Re-execution state mismatch for slot ${slot}`, {
270
- expected: blockPayload.toInspect(),
271
- actual: proposal.payload.toInspect()
443
+ async reexecuteTransactions(proposal, blockNumber, checkpointNumber, txs, l1ToL2Messages, previousCheckpointOutHashes) {
444
+ const env = {
445
+ stack: [],
446
+ error: void 0,
447
+ hasError: false
448
+ };
449
+ try {
450
+ const { blockHeader, txHashes } = proposal;
451
+ // If we do not have all of the transactions, then we should fail
452
+ if (txs.length !== txHashes.length) {
453
+ const foundTxHashes = txs.map((tx)=>tx.getTxHash());
454
+ const missingTxHashes = txHashes.filter((txHash)=>!foundTxHashes.includes(txHash));
455
+ throw new TransactionsNotAvailableError(missingTxHashes);
456
+ }
457
+ const timer = new Timer();
458
+ const slot = proposal.slotNumber;
459
+ const config = this.checkpointsBuilder.getConfig();
460
+ // Get prior blocks in this checkpoint (same slot before current block)
461
+ const allBlocksInSlot = await this.blockSource.getBlocksForSlot(slot);
462
+ const priorBlocks = allBlocksInSlot.filter((b)=>b.number < blockNumber && b.header.getSlot() === slot);
463
+ // Fork before the block to be built
464
+ const parentBlockNumber = BlockNumber(blockNumber - 1);
465
+ await this.worldState.syncImmediate(parentBlockNumber);
466
+ const fork = _ts_add_disposable_resource(env, await this.worldState.fork(parentBlockNumber), true);
467
+ // Build checkpoint constants from proposal (excludes blockNumber which is per-block)
468
+ const constants = {
469
+ chainId: new Fr(config.l1ChainId),
470
+ version: new Fr(config.rollupVersion),
471
+ slotNumber: slot,
472
+ timestamp: blockHeader.globalVariables.timestamp,
473
+ coinbase: blockHeader.globalVariables.coinbase,
474
+ feeRecipient: blockHeader.globalVariables.feeRecipient,
475
+ gasFees: blockHeader.globalVariables.gasFees
476
+ };
477
+ // Create checkpoint builder with prior blocks
478
+ const checkpointBuilder = await this.checkpointsBuilder.openCheckpoint(checkpointNumber, constants, 0n, l1ToL2Messages, previousCheckpointOutHashes, fork, priorBlocks, this.log.getBindings());
479
+ // Build the new block
480
+ const deadline = this.getReexecutionDeadline(slot, config);
481
+ const result = await checkpointBuilder.buildBlock(txs, blockNumber, blockHeader.globalVariables.timestamp, {
482
+ deadline,
483
+ expectedEndState: blockHeader.state
272
484
  });
273
- this.metrics?.recordFailedReexecution(proposal);
274
- throw new ReExStateMismatchError(proposal.archive, block.archive.root, proposal.payload.stateReference, block.header.state);
485
+ const { block, failedTxs } = result;
486
+ const numFailedTxs = failedTxs.length;
487
+ this.log.verbose(`Transaction re-execution complete for slot ${slot}`, {
488
+ numFailedTxs,
489
+ numProposalTxs: txHashes.length,
490
+ numProcessedTxs: block.body.txEffects.length,
491
+ slot
492
+ });
493
+ if (numFailedTxs > 0) {
494
+ this.metrics?.recordFailedReexecution(proposal);
495
+ throw new ReExFailedTxsError(numFailedTxs);
496
+ }
497
+ if (block.body.txEffects.length !== txHashes.length) {
498
+ this.metrics?.recordFailedReexecution(proposal);
499
+ throw new ReExTimeoutError();
500
+ }
501
+ // Throw a ReExStateMismatchError error if state updates do not match
502
+ // Compare the full block structure (archive and header) from the built block with the proposal
503
+ const archiveMatches = proposal.archive.equals(block.archive.root);
504
+ const headerMatches = proposal.blockHeader.equals(block.header);
505
+ if (!archiveMatches || !headerMatches) {
506
+ this.log.warn(`Re-execution state mismatch for slot ${slot}`, {
507
+ expectedArchive: block.archive.root.toString(),
508
+ actualArchive: proposal.archive.toString(),
509
+ expectedHeader: block.header.toInspect(),
510
+ actualHeader: proposal.blockHeader.toInspect()
511
+ });
512
+ this.metrics?.recordFailedReexecution(proposal);
513
+ throw new ReExStateMismatchError(proposal.archive, block.archive.root);
514
+ }
515
+ const reexecutionTimeMs = timer.ms();
516
+ const totalManaUsed = block.header.totalManaUsed.toNumber() / 1e6;
517
+ this.metrics?.recordReex(reexecutionTimeMs, txs.length, totalManaUsed);
518
+ return {
519
+ block,
520
+ failedTxs,
521
+ reexecutionTimeMs,
522
+ totalManaUsed
523
+ };
524
+ } catch (e) {
525
+ env.error = e;
526
+ env.hasError = true;
527
+ } finally{
528
+ const result = _ts_dispose_resources(env);
529
+ if (result) await result;
275
530
  }
276
- const reexecutionTimeMs = timer.ms();
277
- const totalManaUsed = block.header.totalManaUsed.toNumber() / 1e6;
278
- this.metrics?.recordReex(reexecutionTimeMs, txs.length, totalManaUsed);
279
- return {
280
- block,
281
- failedTxs,
282
- reexecutionTimeMs,
283
- totalManaUsed
284
- };
285
531
  }
286
532
  }
@@ -0,0 +1,69 @@
1
+ import { BlockNumber, CheckpointNumber } from '@aztec/foundation/branded-types';
2
+ import { Fr } from '@aztec/foundation/curves/bn254';
3
+ import { type LoggerBindings } from '@aztec/foundation/log';
4
+ import { DateProvider } from '@aztec/foundation/timer';
5
+ import { LightweightCheckpointBuilder } from '@aztec/prover-client/light';
6
+ import { PublicProcessor } from '@aztec/simulator/server';
7
+ import { L2Block } from '@aztec/stdlib/block';
8
+ import { Checkpoint } from '@aztec/stdlib/checkpoint';
9
+ import type { ContractDataSource } from '@aztec/stdlib/contract';
10
+ import type { L1RollupConstants } from '@aztec/stdlib/epoch-helpers';
11
+ import { type BuildBlockInCheckpointResult, type FullNodeBlockBuilderConfig, type ICheckpointBlockBuilder, type ICheckpointsBuilder, type MerkleTreeWriteOperations, type PublicProcessorLimits, type WorldStateSynchronizer } from '@aztec/stdlib/interfaces/server';
12
+ import { type DebugLogStore } from '@aztec/stdlib/logs';
13
+ import { type CheckpointGlobalVariables, GlobalVariables, StateReference, Tx } from '@aztec/stdlib/tx';
14
+ import { type TelemetryClient } from '@aztec/telemetry-client';
15
+ export type { BuildBlockInCheckpointResult } from '@aztec/stdlib/interfaces/server';
16
+ /**
17
+ * Builder for a single checkpoint. Handles building blocks within the checkpoint
18
+ * and completing it.
19
+ */
20
+ export declare class CheckpointBuilder implements ICheckpointBlockBuilder {
21
+ private checkpointBuilder;
22
+ private fork;
23
+ private config;
24
+ private contractDataSource;
25
+ private dateProvider;
26
+ private telemetryClient;
27
+ private debugLogStore;
28
+ private log;
29
+ constructor(checkpointBuilder: LightweightCheckpointBuilder, fork: MerkleTreeWriteOperations, config: FullNodeBlockBuilderConfig, contractDataSource: ContractDataSource, dateProvider: DateProvider, telemetryClient: TelemetryClient, bindings?: LoggerBindings, debugLogStore?: DebugLogStore);
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<BuildBlockInCheckpointResult>;
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
+ private debugLogStore;
54
+ private log;
55
+ constructor(config: FullNodeBlockBuilderConfig & Pick<L1RollupConstants, 'l1GenesisTime' | 'slotDuration'>, worldState: WorldStateSynchronizer, contractDataSource: ContractDataSource, dateProvider: DateProvider, telemetryClient?: TelemetryClient, debugLogStore?: DebugLogStore);
56
+ getConfig(): FullNodeBlockBuilderConfig;
57
+ updateConfig(config: Partial<FullNodeBlockBuilderConfig>): void;
58
+ /**
59
+ * Starts a new checkpoint and returns a CheckpointBuilder to build blocks within it.
60
+ */
61
+ startCheckpoint(checkpointNumber: CheckpointNumber, constants: CheckpointGlobalVariables, feeAssetPriceModifier: bigint, l1ToL2Messages: Fr[], previousCheckpointOutHashes: Fr[], fork: MerkleTreeWriteOperations, bindings?: LoggerBindings): Promise<CheckpointBuilder>;
62
+ /**
63
+ * Opens a checkpoint, either starting fresh or resuming from existing blocks.
64
+ */
65
+ openCheckpoint(checkpointNumber: CheckpointNumber, constants: CheckpointGlobalVariables, feeAssetPriceModifier: bigint, l1ToL2Messages: Fr[], previousCheckpointOutHashes: Fr[], fork: MerkleTreeWriteOperations, existingBlocks?: L2Block[], bindings?: LoggerBindings): Promise<CheckpointBuilder>;
66
+ /** Returns a fork of the world state at the given block number. */
67
+ getFork(blockNumber: BlockNumber): Promise<MerkleTreeWriteOperations>;
68
+ }
69
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hlY2twb2ludF9idWlsZGVyLmQudHMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvY2hlY2twb2ludF9idWlsZGVyLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxXQUFXLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQztBQUVoRixPQUFPLEVBQUUsRUFBRSxFQUFFLE1BQU0sZ0NBQWdDLENBQUM7QUFDcEQsT0FBTyxFQUFlLEtBQUssY0FBYyxFQUFnQixNQUFNLHVCQUF1QixDQUFDO0FBRXZGLE9BQU8sRUFBRSxZQUFZLEVBQVcsTUFBTSx5QkFBeUIsQ0FBQztBQUVoRSxPQUFPLEVBQUUsNEJBQTRCLEVBQUUsTUFBTSw0QkFBNEIsQ0FBQztBQUMxRSxPQUFPLEVBR0wsZUFBZSxFQUVoQixNQUFNLHlCQUF5QixDQUFDO0FBQ2pDLE9BQU8sRUFBRSxPQUFPLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUM5QyxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sMEJBQTBCLENBQUM7QUFDdEQsT0FBTyxLQUFLLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUNqRSxPQUFPLEtBQUssRUFBRSxpQkFBaUIsRUFBRSxNQUFNLDZCQUE2QixDQUFDO0FBRXJFLE9BQU8sRUFDTCxLQUFLLDRCQUE0QixFQUNqQyxLQUFLLDBCQUEwQixFQUUvQixLQUFLLHVCQUF1QixFQUM1QixLQUFLLG1CQUFtQixFQUN4QixLQUFLLHlCQUF5QixFQUU5QixLQUFLLHFCQUFxQixFQUMxQixLQUFLLHNCQUFzQixFQUM1QixNQUFNLGlDQUFpQyxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxLQUFLLGFBQWEsRUFBcUIsTUFBTSxvQkFBb0IsQ0FBQztBQUUzRSxPQUFPLEVBQUUsS0FBSyx5QkFBeUIsRUFBRSxlQUFlLEVBQUUsY0FBYyxFQUFFLEVBQUUsRUFBRSxNQUFNLGtCQUFrQixDQUFDO0FBQ3ZHLE9BQU8sRUFBRSxLQUFL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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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"}