@aztec/aztec-node 5.0.0-rc.1 → 5.0.0-rc.2

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 (48) hide show
  1. package/dest/aztec-node/config.d.ts +3 -1
  2. package/dest/aztec-node/config.d.ts.map +1 -1
  3. package/dest/aztec-node/config.js +5 -0
  4. package/dest/aztec-node/node_public_calls_simulator.d.ts +90 -0
  5. package/dest/aztec-node/node_public_calls_simulator.d.ts.map +1 -0
  6. package/dest/aztec-node/node_public_calls_simulator.js +346 -0
  7. package/dest/aztec-node/server.d.ts +68 -65
  8. package/dest/aztec-node/server.d.ts.map +1 -1
  9. package/dest/aztec-node/server.js +153 -1161
  10. package/dest/bin/index.js +2 -2
  11. package/dest/factory.d.ts +33 -0
  12. package/dest/factory.d.ts.map +1 -0
  13. package/dest/factory.js +496 -0
  14. package/dest/index.d.ts +2 -1
  15. package/dest/index.d.ts.map +1 -1
  16. package/dest/index.js +1 -0
  17. package/dest/modules/block_parameter.d.ts +25 -0
  18. package/dest/modules/block_parameter.d.ts.map +1 -0
  19. package/dest/modules/block_parameter.js +100 -0
  20. package/dest/modules/node_block_provider.d.ts +19 -0
  21. package/dest/modules/node_block_provider.d.ts.map +1 -0
  22. package/dest/modules/node_block_provider.js +112 -0
  23. package/dest/modules/node_tx_receipt.d.ts +24 -0
  24. package/dest/modules/node_tx_receipt.d.ts.map +1 -0
  25. package/dest/modules/node_tx_receipt.js +70 -0
  26. package/dest/modules/node_world_state_queries.d.ts +61 -0
  27. package/dest/modules/node_world_state_queries.d.ts.map +1 -0
  28. package/dest/modules/node_world_state_queries.js +257 -0
  29. package/dest/sentinel/factory.d.ts +3 -3
  30. package/dest/sentinel/factory.d.ts.map +1 -1
  31. package/dest/sentinel/factory.js +8 -1
  32. package/dest/sentinel/sentinel.d.ts +21 -21
  33. package/dest/sentinel/sentinel.d.ts.map +1 -1
  34. package/dest/sentinel/sentinel.js +27 -47
  35. package/package.json +28 -27
  36. package/src/aztec-node/config.ts +7 -0
  37. package/src/aztec-node/node_public_calls_simulator.ts +383 -0
  38. package/src/aztec-node/server.ts +221 -1342
  39. package/src/bin/index.ts +7 -2
  40. package/src/factory.ts +656 -0
  41. package/src/index.ts +1 -0
  42. package/src/modules/block_parameter.ts +93 -0
  43. package/src/modules/node_block_provider.ts +149 -0
  44. package/src/modules/node_tx_receipt.ts +115 -0
  45. package/src/modules/node_world_state_queries.ts +360 -0
  46. package/src/sentinel/README.md +3 -3
  47. package/src/sentinel/factory.ts +15 -3
  48. package/src/sentinel/sentinel.ts +34 -72
@@ -1,68 +1,3 @@
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
- }
66
1
  function applyDecs2203RFactory() {
67
2
  function createAddInitializerMethod(initializers, decoratorFinishedRef) {
68
3
  return function addInitializer(initializer) {
@@ -436,68 +371,59 @@ function _apply_decs_2203_r(targetClass, memberDecs, classDecs, parentClass) {
436
371
  return (_apply_decs_2203_r = applyDecs2203RFactory())(targetClass, memberDecs, classDecs, parentClass);
437
372
  }
438
373
  var _dec, _initProto;
439
- import { L1ToL2MessagesNotReadyError, createArchiver } from '@aztec/archiver';
440
374
  import { BBCircuitVerifier, BatchChonkVerifier, QueuedIVCVerifier } from '@aztec/bb-prover';
441
375
  import { TestCircuitVerifier } from '@aztec/bb-prover/test';
442
- import { createBlobClientWithFileStores } from '@aztec/blob-client/client';
443
- import { Blob } from '@aztec/blob-lib';
444
- import { EpochCache } from '@aztec/epoch-cache';
445
- import { createEthereumChain } from '@aztec/ethereum/chain';
446
- import { getPublicClient, makeL1HttpTransport } from '@aztec/ethereum/client';
447
- import { RegistryContract, RollupContract } from '@aztec/ethereum/contracts';
448
376
  import { pickL1ContractAddresses } from '@aztec/ethereum/l1-contract-addresses';
449
- import { BlockNumber, CheckpointNumber, SlotNumber } from '@aztec/foundation/branded-types';
450
- import { chunkBy, compactArray, pick, unique } from '@aztec/foundation/collection';
451
- import { Fr } from '@aztec/foundation/curves/bn254';
377
+ import { BlockNumber } from '@aztec/foundation/branded-types';
378
+ import { compactArray, pick, unique } from '@aztec/foundation/collection';
452
379
  import { EthAddress } from '@aztec/foundation/eth-address';
453
380
  import { BadRequestError } from '@aztec/foundation/json-rpc';
454
381
  import { createLogger } from '@aztec/foundation/log';
455
382
  import { retryUntil } from '@aztec/foundation/retry';
456
383
  import { count } from '@aztec/foundation/string';
457
- import { DateProvider, Timer } from '@aztec/foundation/timer';
458
- import { MembershipWitness } from '@aztec/foundation/trees';
459
- import { isErrorClass } from '@aztec/foundation/types';
384
+ import { Timer } from '@aztec/foundation/timer';
460
385
  import { KeystoreManager, loadKeystores, mergeKeystores } from '@aztec/node-keystore';
461
- import { trySnapshotSync, uploadSnapshot } from '@aztec/node-lib/actions';
462
- import { createForwarderL1TxUtilsFromSigners, createL1TxUtilsFromSigners } from '@aztec/node-lib/factories';
463
- import { createP2PClient, createTxValidatorForAcceptingTxsOverRPC, getDefaultAllowedSetupFunctions } from '@aztec/p2p';
386
+ import { uploadSnapshot } from '@aztec/node-lib/actions';
387
+ import { createTxValidatorForAcceptingTxsOverRPC, getDefaultAllowedSetupFunctions } from '@aztec/p2p';
464
388
  import { ProtocolContractAddress } from '@aztec/protocol-contracts';
465
- import { createProverNode } from '@aztec/prover-node';
466
- import { createKeyStoreForProver } from '@aztec/prover-node/config';
467
- import { FeeProviderImpl, GlobalVariableBuilder, SequencerClient } from '@aztec/sequencer-client';
468
- import { createAutomineSequencer } from '@aztec/sequencer-client/automine';
469
- import { PublicContractsDB, PublicProcessorFactory } from '@aztec/simulator/server';
470
- import { AttestationsBlockWatcher, AttestedInvalidProposalWatcher, BroadcastedInvalidCheckpointProposalWatcher, CheckpointEquivocationWatcher, DataWithholdingWatcher, createSlasher } from '@aztec/slasher';
471
389
  import { STANDARD_MULTI_CALL_ENTRYPOINT_ADDRESS } from '@aztec/standard-contracts/multi-call-entrypoint';
472
- import { CollectionLimitsConfig, PublicSimulatorConfig } from '@aztec/stdlib/avm';
473
- import { AztecAddress } from '@aztec/stdlib/aztec-address';
474
- import { BlockHash, BlockTag, inspectBlockParameter } from '@aztec/stdlib/block';
475
- import { CheckpointReexecutionTracker } from '@aztec/stdlib/checkpoint';
476
- import { getEpochAtSlot } from '@aztec/stdlib/epoch-helpers';
390
+ import { inspectBlockParameter } from '@aztec/stdlib/block';
477
391
  import { GasFees, getNetworkTxGasLimits } from '@aztec/stdlib/gas';
478
- import { computePublicDataTreeLeafSlot } from '@aztec/stdlib/hash';
479
392
  import { AztecNodeAdminConfigSchema } from '@aztec/stdlib/interfaces/client';
480
393
  import { tryStop } from '@aztec/stdlib/interfaces/server';
481
- import { InMemoryDebugLogStore, NullDebugLogStore } from '@aztec/stdlib/logs';
482
- import { InboxLeaf, appendL1ToL2MessagesToTree } from '@aztec/stdlib/messaging';
483
- import { MerkleTreeId, NullifierMembershipWitness, PublicDataWitness } from '@aztec/stdlib/trees';
484
- import { DroppedTxReceipt, GlobalVariables, MinedTxReceipt, PendingTxReceipt, PublicSimulationOutput, TxStatus } from '@aztec/stdlib/tx';
485
- import { getPackageVersion } from '@aztec/stdlib/update-checker';
394
+ import { NullDebugLogStore } from '@aztec/stdlib/logs';
486
395
  import { Attributes, getTelemetryClient, trackSpan } from '@aztec/telemetry-client';
487
- import { FullNodeCheckpointsBuilder as CheckpointsBuilder, FullNodeCheckpointsBuilder, NodeKeystoreAdapter, ValidatorClient, createProposalHandler, createValidatorClient } from '@aztec/validator-client';
488
- import { createWorldState, createWorldStateSynchronizer } from '@aztec/world-state';
489
- import { createPublicClient } from 'viem';
490
- import { createSentinel } from '../sentinel/factory.js';
491
- import { blockResponseFromBlockData, blockResponseFromL2Block, checkpointResponseFromCheckpointData, checkpointResponseFromPublishedCheckpoint, projectProposedToCheckpointResponse } from './block_response_helpers.js';
492
- import { createKeyStoreForValidator } from './config.js';
396
+ import { NodeKeystoreAdapter, ValidatorClient } from '@aztec/validator-client';
397
+ import { NodeBlockProvider } from '../modules/node_block_provider.js';
398
+ import { NodeTxReceiptBuilder } from '../modules/node_tx_receipt.js';
399
+ import { NodeWorldStateQueries } from '../modules/node_world_state_queries.js';
493
400
  import { NodeMetrics } from './node_metrics.js';
494
- import { applyPublicDataOverrides } from './public_data_overrides.js';
401
+ import { NodePublicCallsSimulator } from './node_public_calls_simulator.js';
495
402
  _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
496
403
  [Attributes.TX_HASH]: tx.getTxHash().toString()
497
404
  }));
498
405
  /**
499
406
  * The aztec node.
500
407
  */ export class AztecNodeService {
408
+ static{
409
+ ({ e: [_initProto] } = _apply_decs_2203_r(this, [
410
+ [
411
+ _dec,
412
+ 2,
413
+ "simulatePublicCalls"
414
+ ]
415
+ ], []));
416
+ }
417
+ metrics;
418
+ // Prevent two snapshot operations to happen simultaneously
419
+ isUploadingSnapshot = (_initProto(this), false);
420
+ // Saved minTxsPerBlock used by `pauseSequencer` to restore production-sequencer config on resume.
421
+ sequencerPausedMinTxsPerBlock;
422
+ nodePublicCallsSimulator;
423
+ worldStateQueries;
424
+ blockProvider;
425
+ txReceiptBuilder;
426
+ tracer;
501
427
  config;
502
428
  p2pClient;
503
429
  blockSource;
@@ -513,6 +439,7 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
513
439
  l1ChainId;
514
440
  version;
515
441
  globalVariableBuilder;
442
+ rollupContract;
516
443
  feeProvider;
517
444
  epochCache;
518
445
  packageVersion;
@@ -525,58 +452,73 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
525
452
  keyStoreManager;
526
453
  debugLogStore;
527
454
  automineSequencer;
528
- static{
529
- ({ e: [_initProto] } = _apply_decs_2203_r(this, [
530
- [
531
- _dec,
532
- 2,
533
- "simulatePublicCalls"
534
- ]
535
- ], []));
536
- }
537
- metrics;
538
- // Prevent two snapshot operations to happen simultaneously
539
- isUploadingSnapshot;
540
- // Saved minTxsPerBlock used by `pauseSequencer` to restore production-sequencer config on resume.
541
- sequencerPausedMinTxsPerBlock;
542
- tracer;
543
- constructor(config, p2pClient, blockSource, logsSource, contractDataSource, l1ToL2MessageSource, worldStateSynchronizer, sequencer, proverNode, slasherClient, validatorsSentinel, stopStartedWatchers, l1ChainId, version, globalVariableBuilder, feeProvider, epochCache, packageVersion, peerProofVerifier, rpcProofVerifier, telemetry = getTelemetryClient(), log = createLogger('node'), blobClient, validatorClient, keyStoreManager, debugLogStore = new NullDebugLogStore(), automineSequencer){
544
- this.config = config;
545
- this.p2pClient = p2pClient;
546
- this.blockSource = blockSource;
547
- this.logsSource = logsSource;
548
- this.contractDataSource = contractDataSource;
549
- this.l1ToL2MessageSource = l1ToL2MessageSource;
550
- this.worldStateSynchronizer = worldStateSynchronizer;
551
- this.sequencer = sequencer;
552
- this.proverNode = proverNode;
553
- this.slasherClient = slasherClient;
554
- this.validatorsSentinel = validatorsSentinel;
555
- this.stopStartedWatchers = stopStartedWatchers;
556
- this.l1ChainId = l1ChainId;
557
- this.version = version;
558
- this.globalVariableBuilder = globalVariableBuilder;
559
- this.feeProvider = feeProvider;
560
- this.epochCache = epochCache;
561
- this.packageVersion = packageVersion;
562
- this.peerProofVerifier = peerProofVerifier;
563
- this.rpcProofVerifier = rpcProofVerifier;
564
- this.telemetry = telemetry;
565
- this.log = log;
566
- this.blobClient = blobClient;
567
- this.validatorClient = validatorClient;
568
- this.keyStoreManager = keyStoreManager;
569
- this.debugLogStore = debugLogStore;
570
- this.automineSequencer = automineSequencer;
571
- this.isUploadingSnapshot = (_initProto(this), false);
572
- this.metrics = new NodeMetrics(telemetry, 'AztecNodeService');
573
- this.tracer = telemetry.getTracer('AztecNodeService');
455
+ constructor(deps){
456
+ this.config = deps.config;
457
+ this.p2pClient = deps.p2pClient;
458
+ this.blockSource = deps.blockSource;
459
+ this.logsSource = deps.logsSource;
460
+ this.contractDataSource = deps.contractDataSource;
461
+ this.l1ToL2MessageSource = deps.l1ToL2MessageSource;
462
+ this.worldStateSynchronizer = deps.worldStateSynchronizer;
463
+ this.sequencer = deps.sequencer;
464
+ this.proverNode = deps.proverNode;
465
+ this.slasherClient = deps.slasherClient;
466
+ this.validatorsSentinel = deps.validatorsSentinel;
467
+ this.stopStartedWatchers = deps.stopStartedWatchers;
468
+ this.l1ChainId = deps.l1ChainId;
469
+ this.version = deps.version;
470
+ this.globalVariableBuilder = deps.globalVariableBuilder;
471
+ this.rollupContract = deps.rollupContract;
472
+ this.feeProvider = deps.feeProvider;
473
+ this.epochCache = deps.epochCache;
474
+ this.packageVersion = deps.packageVersion;
475
+ this.peerProofVerifier = deps.peerProofVerifier;
476
+ this.rpcProofVerifier = deps.rpcProofVerifier;
477
+ this.telemetry = deps.telemetry ?? getTelemetryClient();
478
+ this.log = deps.log ?? createLogger('node');
479
+ this.blobClient = deps.blobClient;
480
+ this.validatorClient = deps.validatorClient;
481
+ this.keyStoreManager = deps.keyStoreManager;
482
+ this.debugLogStore = deps.debugLogStore ?? new NullDebugLogStore();
483
+ this.automineSequencer = deps.automineSequencer;
484
+ this.metrics = new NodeMetrics(this.telemetry, 'AztecNodeService');
485
+ this.tracer = this.telemetry.getTracer('AztecNodeService');
486
+ // The node never represents a proposer's payout addresses, so the simulator zeroes coinbase and
487
+ // fee recipient. The signature context only needs chain id + rollup address (see signature_utils).
488
+ this.nodePublicCallsSimulator = new NodePublicCallsSimulator({
489
+ blockSource: this.blockSource,
490
+ worldStateSynchronizer: this.worldStateSynchronizer,
491
+ l1ToL2MessageSource: this.l1ToL2MessageSource,
492
+ contractDataSource: this.contractDataSource,
493
+ globalVariableBuilder: this.globalVariableBuilder,
494
+ rollupContract: this.rollupContract,
495
+ epochCache: this.epochCache,
496
+ signatureContext: {
497
+ chainId: this.l1ChainId,
498
+ rollupAddress: this.config.rollupAddress
499
+ },
500
+ config: this.config,
501
+ telemetry: this.telemetry,
502
+ log: this.log.createChild('public-calls-simulator')
503
+ });
504
+ this.worldStateQueries = new NodeWorldStateQueries({
505
+ worldStateSynchronizer: this.worldStateSynchronizer,
506
+ blockSource: this.blockSource,
507
+ l1ToL2MessageSource: this.l1ToL2MessageSource,
508
+ log: this.log.createChild('world-state-queries')
509
+ });
510
+ this.blockProvider = new NodeBlockProvider(this.blockSource);
511
+ this.txReceiptBuilder = new NodeTxReceiptBuilder({
512
+ p2pClient: this.p2pClient,
513
+ blockSource: this.blockSource,
514
+ debugLogStore: this.debugLogStore
515
+ });
574
516
  this.log.info(`Aztec Node version: ${this.packageVersion}`);
575
- this.log.info(`Aztec Node started on chain 0x${l1ChainId.toString(16)}`, pickL1ContractAddresses(config));
576
- // A defensive check that protects us against introducing a bug in the complex `createAndSync` function. We must
517
+ this.log.info(`Aztec Node started on chain 0x${this.l1ChainId.toString(16)}`, pickL1ContractAddresses(this.config));
518
+ // A defensive check that protects us against introducing a bug in the complex node creation flow. We must
577
519
  // never have debugLogStore enabled when not in test mode because then we would be accumulating debug logs in
578
520
  // memory which could be a DoS vector on the sequencer (since no fees are paid for debug logs).
579
- if (debugLogStore.isEnabled && config.realProofs) {
521
+ if (this.debugLogStore.isEnabled && this.config.realProofs) {
580
522
  throw new Error('debugLogStore should never be enabled when realProofs are set');
581
523
  }
582
524
  }
@@ -587,14 +529,8 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
587
529
  const status = await this.worldStateSynchronizer.status();
588
530
  return status.syncSummary;
589
531
  }
590
- async getChainTips() {
591
- const { proposed, checkpointed, proven, finalized } = await this.blockSource.getL2Tips();
592
- return {
593
- proposed,
594
- checkpointed,
595
- proven,
596
- finalized
597
- };
532
+ getChainTips() {
533
+ return this.blockSource.getL2Tips();
598
534
  }
599
535
  getL1Constants() {
600
536
  return this.blockSource.getL1Constants();
@@ -625,642 +561,26 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
625
561
  case undefined:
626
562
  case 'checkpointed':
627
563
  return tips.checkpointed.checkpoint.number;
628
- case 'proposed':
629
- return tips.proposedCheckpoint.checkpoint.number;
630
564
  case 'proven':
631
565
  return tips.proven.checkpoint.number;
632
566
  case 'finalized':
633
567
  return tips.finalized.checkpoint.number;
634
568
  }
635
569
  }
636
- isChainTip(value) {
637
- return value === 'proposed' || value === 'checkpointed' || value === 'proven' || value === 'finalized';
638
- }
639
- /**
640
- * Normalizes a {@link BlockParameter} (which may be a bare value) into a
641
- * {@link NormalizedBlockParameter} object form. Performs no chain-tip resolution — tag
642
- * lookups are deferred to the underlying block source.
643
- */ normalizeBlockParameter(param) {
644
- if (BlockHash.isBlockHash(param)) {
645
- return {
646
- hash: param
647
- };
648
- }
649
- if (typeof param === 'number') {
650
- return {
651
- number: param
652
- };
653
- }
654
- if (typeof param === 'string') {
655
- if (this.isBlockTag(param)) {
656
- return {
657
- tag: param === 'latest' ? 'proposed' : param
658
- };
659
- }
660
- throw new BadRequestError(`Invalid BlockParameter tag: ${param}`);
661
- }
662
- if (typeof param === 'object' && param !== null) {
663
- if ('number' in param) {
664
- return {
665
- number: param.number
666
- };
667
- }
668
- if ('hash' in param) {
669
- return {
670
- hash: param.hash
671
- };
672
- }
673
- if ('archive' in param) {
674
- return {
675
- archive: param.archive
676
- };
677
- }
678
- if ('tag' in param) {
679
- if (this.isBlockTag(param.tag)) {
680
- return {
681
- tag: param.tag
682
- };
683
- }
684
- throw new BadRequestError(`Invalid BlockParameter tag: ${param.tag}`);
685
- }
686
- }
687
- throw new BadRequestError(`Invalid BlockParameter: ${JSON.stringify(param)}`);
688
- }
689
- isBlockTag(value) {
690
- return BlockTag.includes(value);
691
- }
692
- /**
693
- * Resolves a {@link CheckpointParameter} into a concrete `{ number }` or `{ slot }` query.
694
- *
695
- * Tag-based parameters (`'proposed'`, `'checkpointed'`, `'proven'`, `'finalized'`) are
696
- * translated up-front to the corresponding tip's checkpoint number via {@link L2BlockSource.getL2Tips}.
697
- * After resolution the unified {@link getCheckpoint} flow can perform a single
698
- * confirmed→proposed lookup against either store.
699
- */ async resolveCheckpointParameter(param) {
700
- if (typeof param === 'number') {
701
- return {
702
- number: param
703
- };
704
- }
705
- if (this.isChainTip(param)) {
706
- const tips = await this.blockSource.getL2Tips();
707
- switch(param){
708
- case 'proposed':
709
- return {
710
- number: tips.proposedCheckpoint.checkpoint.number
711
- };
712
- case 'checkpointed':
713
- return {
714
- number: tips.checkpointed.checkpoint.number
715
- };
716
- case 'proven':
717
- return {
718
- number: tips.proven.checkpoint.number
719
- };
720
- case 'finalized':
721
- return {
722
- number: tips.finalized.checkpoint.number
723
- };
724
- }
725
- }
726
- if (typeof param === 'object' && param !== null) {
727
- if ('number' in param) {
728
- return {
729
- number: param.number
730
- };
731
- }
732
- if ('slot' in param) {
733
- return {
734
- slot: param.slot
735
- };
736
- }
737
- }
738
- throw new BadRequestError(`Invalid CheckpointParameter: ${JSON.stringify(param)}`);
739
- }
740
- /** Fetches checkpoint-level L1 and attestation data for use as block response context. */ async #getCheckpointContext(checkpointNumber) {
741
- const checkpoint = await this.blockSource.getCheckpointData({
742
- number: checkpointNumber
743
- });
744
- if (!checkpoint) {
745
- return undefined;
746
- }
747
- return {
748
- l1: checkpoint.l1,
749
- attestations: checkpoint.attestations
750
- };
751
- }
752
- async getBlock(param, options = {}) {
753
- const query = this.normalizeBlockParameter(param);
754
- const wantTxs = !!options.includeTransactions;
755
- const wantContext = !!options.includeL1PublishInfo || !!options.includeAttestations;
756
- if (wantTxs) {
757
- const block = await this.blockSource.getBlock(query);
758
- if (!block) {
759
- return undefined;
760
- }
761
- const ctx = wantContext ? await this.#getCheckpointContext(block.checkpointNumber) : undefined;
762
- return await blockResponseFromL2Block(block, options, ctx);
763
- }
764
- const data = await this.blockSource.getBlockData(query);
765
- if (!data) {
766
- return undefined;
767
- }
768
- const ctx = wantContext ? await this.#getCheckpointContext(data.checkpointNumber) : undefined;
769
- return blockResponseFromBlockData(data, options, ctx);
570
+ getBlock(param, options = {}) {
571
+ return this.blockProvider.getBlock(param, options);
770
572
  }
771
573
  getBlockData(param) {
772
- const query = this.normalizeBlockParameter(param);
773
- return this.blockSource.getBlockData(query);
774
- }
775
- async getBlocks(from, limit, options = {}) {
776
- const wantTxs = !!options.includeTransactions;
777
- const wantContext = !!options.includeL1PublishInfo || !!options.includeAttestations;
778
- const onlyCheckpointed = !!options.onlyCheckpointed;
779
- if (wantTxs) {
780
- const blocks = await this.blockSource.getBlocks({
781
- from,
782
- limit,
783
- onlyCheckpointed
784
- });
785
- const ctxByCheckpoint = await this.#getCheckpointContextsForBlocks(wantContext ? blocks : []);
786
- return await Promise.all(blocks.map((block)=>blockResponseFromL2Block(block, options, ctxByCheckpoint.get(block.checkpointNumber))));
787
- }
788
- const dataItems = await this.blockSource.getBlocksData({
789
- from,
790
- limit,
791
- onlyCheckpointed
792
- });
793
- const ctxByCheckpoint = await this.#getCheckpointContextsForBlocks(wantContext ? dataItems : []);
794
- return await Promise.all(dataItems.map((data)=>blockResponseFromBlockData(data, options, ctxByCheckpoint.get(data.checkpointNumber))));
795
- }
796
- /** Fetches checkpoint context for a set of blocks, deduplicating shared checkpoints. */ async #getCheckpointContextsForBlocks(blocks) {
797
- const unique = Array.from(new Set(blocks.map((b)=>b.checkpointNumber)));
798
- const entries = await Promise.all(unique.map(async (n)=>[
799
- n,
800
- await this.#getCheckpointContext(n)
801
- ]));
802
- return new Map(entries);
803
- }
804
- async getCheckpoint(param, options = {}) {
805
- const query = await this.resolveCheckpointParameter(param);
806
- // Try the confirmed store first.
807
- const confirmed = options.includeBlocks ? await this.blockSource.getCheckpoint(query) : await this.blockSource.getCheckpointData(query);
808
- if (confirmed) {
809
- return await (options.includeBlocks ? checkpointResponseFromPublishedCheckpoint(confirmed, options) : checkpointResponseFromCheckpointData(confirmed, options));
810
- }
811
- // Fall back to the proposed store.
812
- const proposed = await this.blockSource.getProposedCheckpointData(query);
813
- if (proposed) {
814
- if (options.includeAttestations || options.includeL1PublishInfo) {
815
- throw new BadRequestError(`Options includeL1PublishInfo or includeAttestations cannot be satisfied for a proposed checkpoint`);
816
- }
817
- const blocks = options.includeBlocks ? await this.blockSource.getBlocks({
818
- from: proposed.startBlock,
819
- limit: proposed.blockCount
820
- }) : undefined;
821
- return await projectProposedToCheckpointResponse(proposed, options, blocks);
822
- }
823
- return undefined;
574
+ return this.blockProvider.getBlockData(param);
824
575
  }
825
- async getCheckpoints(from, limit, options = {}) {
826
- if (options.includeBlocks) {
827
- const checkpoints = await this.blockSource.getCheckpoints({
828
- from,
829
- limit
830
- });
831
- return await Promise.all(checkpoints.map((cp)=>checkpointResponseFromPublishedCheckpoint(cp, options)));
832
- }
833
- const datas = await this.blockSource.getCheckpointsData({
834
- from,
835
- limit
836
- });
837
- return datas.map((d)=>checkpointResponseFromCheckpointData(d, options));
576
+ getBlocks(from, limit, options = {}) {
577
+ return this.blockProvider.getBlocks(from, limit, options);
838
578
  }
839
- /**
840
- * initializes the Aztec Node, wait for component to sync.
841
- * @param config - The configuration to be used by the aztec node.
842
- * @returns - A fully synced Aztec Node for use in development/testing.
843
- */ static async createAndSync(inputConfig, deps = {}, options = {}) {
844
- const config = {
845
- ...inputConfig
846
- }; // Copy the config so we dont mutate the input object
847
- const log = deps.logger ?? createLogger('node');
848
- const packageVersion = getPackageVersion();
849
- const telemetry = deps.telemetry ?? getTelemetryClient();
850
- const dateProvider = deps.dateProvider ?? new DateProvider();
851
- const ethereumChain = createEthereumChain(config.l1RpcUrls, config.l1ChainId);
852
- // Build a key store from file if given or from environment otherwise.
853
- // We keep the raw KeyStore available so we can merge with prover keys if enableProverNode is set.
854
- let keyStoreManager;
855
- const keyStoreProvided = config.keyStoreDirectory !== undefined && config.keyStoreDirectory.length > 0;
856
- if (keyStoreProvided) {
857
- const keyStores = loadKeystores(config.keyStoreDirectory);
858
- keyStoreManager = new KeystoreManager(mergeKeystores(keyStores));
859
- } else {
860
- const rawKeyStores = [];
861
- const validatorKeyStore = createKeyStoreForValidator(config);
862
- if (validatorKeyStore) {
863
- rawKeyStores.push(validatorKeyStore);
864
- }
865
- if (config.enableProverNode) {
866
- const proverKeyStore = createKeyStoreForProver(config);
867
- if (proverKeyStore) {
868
- rawKeyStores.push(proverKeyStore);
869
- }
870
- }
871
- if (rawKeyStores.length > 0) {
872
- keyStoreManager = new KeystoreManager(rawKeyStores.length === 1 ? rawKeyStores[0] : mergeKeystores(rawKeyStores));
873
- }
874
- }
875
- await keyStoreManager?.validateSigners();
876
- // If we are a validator, verify our configuration before doing too much more.
877
- if (!config.disableValidator) {
878
- if (keyStoreManager === undefined) {
879
- throw new Error('Failed to create key store, a requirement for running a validator');
880
- }
881
- if (!keyStoreProvided && process.env.NODE_ENV !== 'test') {
882
- log.warn("Keystore created from env: it's recommended to use a file-based key store for production");
883
- }
884
- ValidatorClient.validateKeyStoreConfiguration(keyStoreManager, log);
885
- }
886
- // validate that the actual chain id matches that specified in configuration
887
- if (config.l1ChainId !== ethereumChain.chainInfo.id) {
888
- throw new Error(`RPC URL configured for chain id ${ethereumChain.chainInfo.id} but expected id ${config.l1ChainId}`);
889
- }
890
- const publicClient = createPublicClient({
891
- chain: ethereumChain.chainInfo,
892
- transport: makeL1HttpTransport(config.l1RpcUrls, {
893
- timeout: config.l1HttpTimeoutMS
894
- }),
895
- pollingInterval: config.viemPollingIntervalMS
896
- });
897
- const l1ContractsAddresses = await RegistryContract.collectAddresses(publicClient, config.registryAddress, config.rollupVersion ?? 'canonical');
898
- Object.assign(config, l1ContractsAddresses);
899
- const rollupContract = new RollupContract(publicClient, config.rollupAddress.toString());
900
- const [l1GenesisTime, slotDuration, epochDuration, rollupVersionFromRollup, rollupManaLimit] = await Promise.all([
901
- rollupContract.getL1GenesisTime(),
902
- rollupContract.getSlotDuration(),
903
- rollupContract.getEpochDuration(),
904
- rollupContract.getVersion(),
905
- rollupContract.getManaLimit().then(Number)
906
- ]);
907
- config.rollupVersion ??= Number(rollupVersionFromRollup);
908
- if (config.rollupVersion !== Number(rollupVersionFromRollup)) {
909
- log.warn(`Registry looked up and returned a rollup with version (${config.rollupVersion}), but this does not match with version detected from the rollup directly: (${rollupVersionFromRollup}).`);
910
- }
911
- const blobClient = await createBlobClientWithFileStores(config, log.createChild('blob-client'));
912
- // attempt snapshot sync if possible
913
- await trySnapshotSync(config, log);
914
- const epochCache = await EpochCache.create(config.rollupAddress, config, {
915
- dateProvider
916
- });
917
- // Track started resources so we can clean up on partial failure during node creation.
918
- const started = [];
919
- try {
920
- config.skipOrphanProposedBlockPruning ||= !!config.useAutomineSequencer;
921
- AztecNodeService.checkConfigMatchesRollup(config, {
922
- slotDuration: Number(slotDuration),
923
- epochDuration: Number(epochDuration)
924
- });
925
- // Create world-state first so we can retrieve the initial header before constructing the archiver.
926
- const nativeWs = await createWorldState(config, options.genesis);
927
- const initialHeader = nativeWs.getInitialHeader();
928
- const initialBlockHash = await initialHeader.hash();
929
- const archiver = await createArchiver(config, {
930
- blobClient,
931
- epochCache,
932
- telemetry,
933
- dateProvider
934
- }, {
935
- blockUntilSync: !config.skipArchiverInitialSync
936
- }, initialHeader, initialBlockHash);
937
- started.push(archiver);
938
- // The synchronizer takes ownership of the native world-state from here
939
- const worldStateSynchronizer = await createWorldStateSynchronizer(config, archiver, nativeWs, telemetry);
940
- started.push(worldStateSynchronizer);
941
- const useRealVerifiers = config.realProofs || config.debugForceTxProofVerification;
942
- let peerProofVerifier;
943
- let rpcProofVerifier;
944
- if (useRealVerifiers) {
945
- peerProofVerifier = await BatchChonkVerifier.new(config, config.bbChonkVerifyMaxBatch, 'peer');
946
- const rpcVerifier = await BBCircuitVerifier.new(config);
947
- rpcProofVerifier = new QueuedIVCVerifier(rpcVerifier, config.numConcurrentIVCVerifiers);
948
- } else {
949
- peerProofVerifier = new TestCircuitVerifier(config.proverTestVerificationDelayMs);
950
- rpcProofVerifier = new TestCircuitVerifier(config.proverTestVerificationDelayMs);
951
- }
952
- started.push(peerProofVerifier, rpcProofVerifier);
953
- let debugLogStore;
954
- if (!config.realProofs) {
955
- log.warn(`Aztec node is accepting fake proofs`);
956
- debugLogStore = new InMemoryDebugLogStore();
957
- log.info('Aztec node started in test mode (realProofs set to false) hence debug logs from public functions will be collected and served');
958
- } else {
959
- debugLogStore = new NullDebugLogStore();
960
- }
961
- const globalVariableBuilderConfig = {
962
- rollupAddress: config.rollupAddress,
963
- ethereumSlotDuration: config.ethereumSlotDuration,
964
- rollupVersion: BigInt(config.rollupVersion),
965
- l1GenesisTime,
966
- slotDuration: Number(slotDuration)
967
- };
968
- const globalVariableBuilder = new GlobalVariableBuilder(dateProvider, publicClient, globalVariableBuilderConfig);
969
- const feeProvider = new FeeProviderImpl(dateProvider, publicClient, globalVariableBuilderConfig);
970
- const proverOnly = config.enableProverNode && config.disableValidator;
971
- if (proverOnly) {
972
- log.info('Starting in prover-only mode: skipping validator, sequencer, sentinel, and slasher subsystems');
973
- }
974
- // create the tx pool and the p2p client, which will need the l2 block source
975
- const p2pClient = await createP2PClient(config, archiver, peerProofVerifier, worldStateSynchronizer, epochCache, feeProvider, packageVersion, dateProvider, telemetry, deps.p2pClientDeps, initialBlockHash);
976
- started.push(p2pClient);
977
- archiver.setCheckpointProposalPresence(p2pClient);
978
- // We'll accumulate sentinel watchers here
979
- const watchers = [];
980
- // Create FullNodeCheckpointsBuilder for block proposal handling and tx validation.
981
- // Override maxTxsPerCheckpoint with the validator-specific limit if set.
982
- const validatorCheckpointsBuilder = new FullNodeCheckpointsBuilder({
983
- ...config,
984
- l1GenesisTime,
985
- slotDuration: Number(slotDuration),
986
- rollupManaLimit,
987
- maxTxsPerCheckpoint: config.validateMaxTxsPerCheckpoint
988
- }, worldStateSynchronizer, archiver, dateProvider, telemetry);
989
- let validatorClient;
990
- // Tracks successful checkpoint re-execution by a checkpoint proposal handler.
991
- const reexecutionTracker = new CheckpointReexecutionTracker();
992
- if (!config.disableValidator) {
993
- // Create validator client if required
994
- validatorClient = await createValidatorClient(config, {
995
- checkpointsBuilder: validatorCheckpointsBuilder,
996
- worldState: worldStateSynchronizer,
997
- p2pClient,
998
- telemetry,
999
- dateProvider,
1000
- epochCache,
1001
- blockSource: archiver,
1002
- l1ToL2MessageSource: archiver,
1003
- keyStoreManager,
1004
- blobClient,
1005
- reexecutionTracker,
1006
- slashingProtectionDb: deps.slashingProtectionDb
1007
- });
1008
- // If we have a validator client, register it as a source of offenses for the slasher,
1009
- // and have it register callbacks on the p2p client *before* we start it, otherwise messages
1010
- // like attestations or auths will fail.
1011
- if (validatorClient) {
1012
- watchers.push(validatorClient);
1013
- const vc = validatorClient;
1014
- const getValidatorAddresses = ()=>vc.getValidatorAddresses().map((a)=>a.toString());
1015
- validatorClient.getProposalHandler().register(p2pClient, true, archiver, getValidatorAddresses);
1016
- if (!options.dontStartSequencer) {
1017
- await validatorClient.registerHandlers();
1018
- }
1019
- }
1020
- }
1021
- // If there's no validator client, create a ProposalHandler to handle block and checkpoint proposals
1022
- // for monitoring or reexecution. Reexecution (default) allows us to follow the pending chain,
1023
- // while non-reexecution is used for validating the proposals and collecting their txs.
1024
- // Checkpoint proposals rebuild blobs if the blob client can upload blobs.
1025
- if (!validatorClient) {
1026
- const reexecute = !!config.alwaysReexecuteBlockProposals;
1027
- log.info(`Setting up proposal handler` + (reexecute ? ' with reexecution of proposals' : ''));
1028
- createProposalHandler(config, {
1029
- checkpointsBuilder: validatorCheckpointsBuilder,
1030
- worldState: worldStateSynchronizer,
1031
- epochCache,
1032
- blockSource: archiver,
1033
- l1ToL2MessageSource: archiver,
1034
- p2pClient,
1035
- blobClient,
1036
- dateProvider,
1037
- telemetry,
1038
- reexecutionTracker
1039
- }).register(p2pClient, reexecute, archiver);
1040
- }
1041
- // Start world state and wait for it to sync to the archiver.
1042
- await worldStateSynchronizer.start();
1043
- // Start p2p. Note that it depends on world state to be running.
1044
- await p2pClient.start();
1045
- let validatorsSentinel;
1046
- let dataWithholdingWatcher;
1047
- let attestationsBlockWatcher;
1048
- let attestedInvalidProposalWatcher;
1049
- let broadcastedInvalidCheckpointProposalWatcher;
1050
- let checkpointEquivocationWatcher;
1051
- if (!proverOnly) {
1052
- validatorsSentinel = await createSentinel(epochCache, archiver, p2pClient, reexecutionTracker, config);
1053
- if (validatorsSentinel) {
1054
- watchers.push(validatorsSentinel);
1055
- }
1056
- dataWithholdingWatcher = new DataWithholdingWatcher(epochCache, archiver, p2pClient.getTxProvider(), p2pClient, reexecutionTracker, {
1057
- chainId: config.l1ChainId,
1058
- rollupAddress: config.rollupAddress
1059
- }, config);
1060
- watchers.push(dataWithholdingWatcher);
1061
- broadcastedInvalidCheckpointProposalWatcher = new BroadcastedInvalidCheckpointProposalWatcher(p2pClient, archiver, epochCache, config);
1062
- watchers.push(broadcastedInvalidCheckpointProposalWatcher);
1063
- if (validatorClient) {
1064
- attestedInvalidProposalWatcher = new AttestedInvalidProposalWatcher(p2pClient, validatorClient, archiver, epochCache, config, {
1065
- log: log.createChild('attested-invalid-proposal-watcher')
1066
- });
1067
- watchers.push(attestedInvalidProposalWatcher);
1068
- }
1069
- checkpointEquivocationWatcher = new CheckpointEquivocationWatcher(archiver, epochCache, config);
1070
- watchers.push(checkpointEquivocationWatcher);
1071
- attestationsBlockWatcher = new AttestationsBlockWatcher(archiver, epochCache, config, log.getBindings());
1072
- watchers.push(attestationsBlockWatcher);
1073
- }
1074
- const watchersToStart = compactArray([
1075
- validatorsSentinel,
1076
- dataWithholdingWatcher,
1077
- attestationsBlockWatcher,
1078
- broadcastedInvalidCheckpointProposalWatcher,
1079
- attestedInvalidProposalWatcher,
1080
- checkpointEquivocationWatcher
1081
- ]);
1082
- const startedWatchers = [];
1083
- const stopStartedWatchers = async ()=>{
1084
- for (const watcher of startedWatchers){
1085
- await tryStop(watcher);
1086
- }
1087
- };
1088
- // Start p2p-related services once the archiver has completed sync
1089
- void archiver.waitForInitialSync().then(async ()=>{
1090
- for (const watcher of watchersToStart){
1091
- await watcher.start();
1092
- startedWatchers.push(watcher);
1093
- }
1094
- log.info(`All p2p services started`);
1095
- }).catch((err)=>log.error('Failed to start p2p services after archiver sync', err));
1096
- started.push({
1097
- stop: stopStartedWatchers
1098
- });
1099
- // Validator enabled, create/start relevant service
1100
- let sequencer;
1101
- let automineSequencer;
1102
- let slasherClient;
1103
- if (!config.disableValidator && validatorClient) {
1104
- // We create a slasher only if we have a sequencer, since all slashing actions go through the sequencer publisher
1105
- // as they are executed when the node is selected as proposer.
1106
- const validatorAddresses = keyStoreManager ? NodeKeystoreAdapter.fromKeyStoreManager(keyStoreManager).getAddresses() : [];
1107
- slasherClient = await createSlasher(config, pickL1ContractAddresses(config), getPublicClient(config), watchers, dateProvider, epochCache, validatorAddresses, undefined);
1108
- await slasherClient.start();
1109
- started.push(slasherClient);
1110
- const l1TxUtils = config.sequencerPublisherForwarderAddress ? await createForwarderL1TxUtilsFromSigners(publicClient, keyStoreManager.createAllValidatorPublisherSigners(), config.sequencerPublisherForwarderAddress, {
1111
- ...config,
1112
- scope: 'sequencer'
1113
- }, {
1114
- telemetry,
1115
- logger: log.createChild('l1-tx-utils'),
1116
- dateProvider,
1117
- kzg: Blob.getViemKzgInstance()
1118
- }) : await createL1TxUtilsFromSigners(publicClient, keyStoreManager.createAllValidatorPublisherSigners(), {
1119
- ...config,
1120
- scope: 'sequencer'
1121
- }, {
1122
- telemetry,
1123
- logger: log.createChild('l1-tx-utils'),
1124
- dateProvider,
1125
- kzg: Blob.getViemKzgInstance()
1126
- });
1127
- // Create a funder L1TxUtils from the keystore funding account (if configured)
1128
- const fundingSigner = keyStoreManager?.createFundingSigner();
1129
- let funderL1TxUtils;
1130
- if (fundingSigner) {
1131
- const [funder] = await createL1TxUtilsFromSigners(publicClient, [
1132
- fundingSigner
1133
- ], {
1134
- ...config,
1135
- scope: 'sequencer'
1136
- }, {
1137
- telemetry,
1138
- logger: log.createChild('l1-tx-utils:funder'),
1139
- dateProvider
1140
- });
1141
- funderL1TxUtils = funder;
1142
- }
1143
- // Create and start the sequencer client
1144
- const checkpointsBuilder = new CheckpointsBuilder({
1145
- ...config,
1146
- l1GenesisTime,
1147
- slotDuration: Number(slotDuration),
1148
- rollupManaLimit
1149
- }, worldStateSynchronizer, archiver, dateProvider, telemetry, debugLogStore);
1150
- if (config.useAutomineSequencer) {
1151
- // Test-only path: deterministic, queue-driven sequencer for non-block-building e2e tests.
1152
- // See `AUTOMINE_E2E_OPTS` in `end-to-end/src/fixtures/fixtures.ts`.
1153
- automineSequencer = await createAutomineSequencer({
1154
- config,
1155
- l1TxUtils,
1156
- funderL1TxUtils,
1157
- publicClient,
1158
- rollupContract,
1159
- epochCache,
1160
- blobClient,
1161
- telemetry,
1162
- dateProvider,
1163
- keyStoreManager: keyStoreManager,
1164
- validatorClient,
1165
- checkpointsBuilder,
1166
- globalVariableBuilder,
1167
- worldStateSynchronizer,
1168
- archiver,
1169
- p2pClient,
1170
- l1Constants: {
1171
- l1GenesisTime,
1172
- slotDuration: Number(slotDuration),
1173
- ethereumSlotDuration: config.ethereumSlotDuration,
1174
- rollupManaLimit
1175
- },
1176
- autoSettle: config.automineEnableProveEpoch,
1177
- log
1178
- });
1179
- } else {
1180
- sequencer = await SequencerClient.new(config, {
1181
- ...deps,
1182
- epochCache,
1183
- l1TxUtils,
1184
- funderL1TxUtils,
1185
- validatorClient,
1186
- p2pClient,
1187
- worldStateSynchronizer,
1188
- slasherClient,
1189
- checkpointsBuilder,
1190
- l2BlockSource: archiver,
1191
- l1ToL2MessageSource: archiver,
1192
- telemetry,
1193
- dateProvider,
1194
- blobClient,
1195
- nodeKeyStore: keyStoreManager,
1196
- globalVariableBuilder
1197
- });
1198
- }
1199
- }
1200
- if (!options.dontStartSequencer && sequencer) {
1201
- await sequencer.start();
1202
- started.push(sequencer);
1203
- log.verbose(`Sequencer started`);
1204
- } else if (sequencer) {
1205
- log.warn(`Sequencer created but not started`);
1206
- }
1207
- if (!options.dontStartSequencer && automineSequencer) {
1208
- await automineSequencer.start();
1209
- started.push({
1210
- stop: ()=>automineSequencer.stop()
1211
- });
1212
- log.verbose(`AutomineSequencer started`);
1213
- } else if (automineSequencer) {
1214
- log.warn(`AutomineSequencer created but not started`);
1215
- }
1216
- // Create prover node subsystem if enabled
1217
- let proverNode;
1218
- if (config.enableProverNode) {
1219
- proverNode = await createProverNode(config, {
1220
- ...deps.proverNodeDeps,
1221
- telemetry,
1222
- dateProvider,
1223
- archiver,
1224
- worldStateSynchronizer,
1225
- p2pClient,
1226
- epochCache,
1227
- blobClient,
1228
- keyStoreManager
1229
- });
1230
- if (!options.dontStartProverNode) {
1231
- await proverNode.start();
1232
- started.push(proverNode);
1233
- log.info(`Prover node subsystem started`);
1234
- } else {
1235
- log.info(`Prover node subsystem created but not started`);
1236
- }
1237
- }
1238
- const node = new AztecNodeService(config, p2pClient, archiver, archiver, archiver, archiver, worldStateSynchronizer, sequencer, proverNode, slasherClient, validatorsSentinel, stopStartedWatchers, ethereumChain.chainInfo.id, config.rollupVersion, globalVariableBuilder, feeProvider, epochCache, packageVersion, peerProofVerifier, rpcProofVerifier, telemetry, log, blobClient, validatorClient, keyStoreManager, debugLogStore, automineSequencer);
1239
- return node;
1240
- } catch (err) {
1241
- log.error('Failed during node creation, stopping started resources', err);
1242
- for (const resource of started.reverse()){
1243
- await tryStop(resource);
1244
- }
1245
- throw err;
1246
- }
579
+ getCheckpoint(param, options = {}) {
580
+ return this.blockProvider.getCheckpoint(param, options);
1247
581
  }
1248
- /**
1249
- * Verifies the node's configured L1 timing matches the rollup contract it is pointed at, for the fields the
1250
- * node's own config carries. Each comparison is guarded against an undefined config value, so a config that
1251
- * does not carry a field is not checked. Throws a single error listing every mismatch. Runs in the shared
1252
- * startup path for every node role.
1253
- */ static checkConfigMatchesRollup(config, rollup) {
1254
- const mismatches = [];
1255
- if (config.aztecSlotDuration !== undefined && config.aztecSlotDuration !== rollup.slotDuration) {
1256
- mismatches.push(`aztecSlotDuration is ${config.aztecSlotDuration} but the rollup reports ${rollup.slotDuration}`);
1257
- }
1258
- if (config.aztecEpochDuration !== undefined && config.aztecEpochDuration !== rollup.epochDuration) {
1259
- mismatches.push(`aztecEpochDuration is ${config.aztecEpochDuration} but the rollup reports ${rollup.epochDuration}`);
1260
- }
1261
- if (mismatches.length > 0) {
1262
- throw new Error(`The node's configured L1 timing does not match the rollup contract it is pointed at: ${mismatches.join('; ')}`);
1263
- }
582
+ getCheckpoints(from, limit, options = {}) {
583
+ return this.blockProvider.getCheckpoints(from, limit, options);
1264
584
  }
1265
585
  /**
1266
586
  * Returns the sequencer client instance.
@@ -1374,8 +694,12 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
1374
694
  getContractClass(id) {
1375
695
  return this.contractDataSource.getContractClass(id);
1376
696
  }
1377
- getContract(address) {
1378
- return this.contractDataSource.getContract(address);
697
+ async getContract(address, referenceBlock = 'latest') {
698
+ const blockData = await this.getBlockData(referenceBlock);
699
+ if (!blockData) {
700
+ throw new Error(`Reference block ${inspectBlockParameter(referenceBlock)} not found when querying contract ${address}. If the node API has been queried with an anchor block hash, possibly a reorg has occurred.`);
701
+ }
702
+ return this.contractDataSource.getContract(address, blockData.header.globalVariables.timestamp);
1379
703
  }
1380
704
  getPrivateLogsByTags(query) {
1381
705
  return this.logsSource.getPrivateLogsByTags(query);
@@ -1416,59 +740,8 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
1416
740
  txHash
1417
741
  });
1418
742
  }
1419
- async getTxReceipt(txHash, options) {
1420
- // Check the tx pool status first. If the tx is known to the pool (pending or mined), we'll use that
1421
- // as a fallback if we don't find a mined tx effect in the archiver.
1422
- const txPoolStatus = await this.p2pClient.getTxStatus(txHash);
1423
- const isKnownToPool = txPoolStatus === 'pending' || txPoolStatus === 'mined';
1424
- // Then get the raw tx effect from the archiver, which tracks every tx in a mined block.
1425
- const indexed = await this.blockSource.getTxEffect(txHash);
1426
- let receipt;
1427
- if (indexed) {
1428
- receipt = await this.#assembleMinedReceipt(indexed, options);
1429
- } else if (isKnownToPool) {
1430
- // If the tx is in the pool but not in the archiver, it's pending.
1431
- // This handles race conditions between archiver and p2p, where the archiver
1432
- // has pruned the block in which a tx was mined, but p2p has not caught up yet.
1433
- let tx;
1434
- if (options?.includePendingTx) {
1435
- // The tx may have left the pool since we checked its status (mined or dropped); in that case we
1436
- // leave `tx` unset and still return a pending receipt.
1437
- tx = await this.p2pClient.getTxByHashFromPool(txHash, {
1438
- includeProof: !!options.includeProof
1439
- });
1440
- }
1441
- receipt = new PendingTxReceipt(txHash, tx);
1442
- } else {
1443
- // Otherwise, if we don't know the tx, we consider it dropped.
1444
- receipt = new DroppedTxReceipt(txHash, 'Tx dropped by P2P node');
1445
- }
1446
- this.debugLogStore.decorateReceiptWithLogs(txHash.toString(), receipt);
1447
- return receipt;
1448
- }
1449
- /**
1450
- * Assembles a {@link MinedTxReceipt} from a raw {@link IndexedTxEffect}, deriving the finalization status from the
1451
- * cached L2 tips and the epoch from the block's slot number.
1452
- */ async #assembleMinedReceipt(indexed, options) {
1453
- const blockNumber = indexed.l2BlockNumber;
1454
- const [tips, l1Constants] = await Promise.all([
1455
- this.blockSource.getL2Tips(),
1456
- this.blockSource.getL1Constants()
1457
- ]);
1458
- const status = this.#deriveMinedStatus(blockNumber, tips);
1459
- const epochNumber = getEpochAtSlot(indexed.slotNumber, l1Constants);
1460
- return new MinedTxReceipt(indexed.data.txHash, status, MinedTxReceipt.executionResultFromRevertCode(indexed.data.revertCode), indexed.data.transactionFee.toBigInt(), indexed.l2BlockHash, blockNumber, indexed.slotNumber, indexed.txIndexInBlock, epochNumber, options?.includeTxEffect ? indexed.data : undefined, /*debugLogs=*/ undefined);
1461
- }
1462
- #deriveMinedStatus(blockNumber, tips) {
1463
- if (blockNumber <= tips.finalized.block.number) {
1464
- return TxStatus.FINALIZED;
1465
- } else if (blockNumber <= tips.proven.block.number) {
1466
- return TxStatus.PROVEN;
1467
- } else if (blockNumber <= tips.checkpointed.block.number) {
1468
- return TxStatus.CHECKPOINTED;
1469
- } else {
1470
- return TxStatus.PROPOSED;
1471
- }
743
+ getTxReceipt(txHash, options) {
744
+ return this.txReceiptBuilder.getTxReceipt(txHash, options);
1472
745
  }
1473
746
  getTxEffect(txHash) {
1474
747
  return this.blockSource.getTxEffect(txHash);
@@ -1542,98 +815,20 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
1542
815
  });
1543
816
  return compactArray(txs);
1544
817
  }
1545
- async findLeavesIndexes(referenceBlock, treeId, leafValues) {
1546
- const committedDb = await this.getWorldState(referenceBlock);
1547
- const maybeIndices = await committedDb.findLeafIndices(treeId, leafValues.map((x)=>x.toBuffer()));
1548
- // Filter out undefined values to query block numbers only for found leaves
1549
- const definedIndices = maybeIndices.filter((x)=>x !== undefined);
1550
- // Now we find the block numbers for the defined indices
1551
- const blockNumbers = await committedDb.getBlockNumbersForLeafIndices(treeId, definedIndices);
1552
- // Build a map from leaf index to block number
1553
- const indexToBlockNumber = new Map();
1554
- for(let i = 0; i < definedIndices.length; i++){
1555
- const blockNumber = blockNumbers[i];
1556
- if (blockNumber === undefined) {
1557
- throw new Error(`Block number is undefined for leaf index ${definedIndices[i]} in tree ${MerkleTreeId[treeId]}`);
1558
- }
1559
- indexToBlockNumber.set(definedIndices[i], blockNumber);
1560
- }
1561
- // Get unique block numbers in order to optimize num calls to getLeafValue function.
1562
- const uniqueBlockNumbers = [
1563
- ...new Set(indexToBlockNumber.values())
1564
- ];
1565
- // Now we obtain the block hashes from the archive tree (block number = leaf index in archive tree).
1566
- const blockHashes = await Promise.all(uniqueBlockNumbers.map((blockNumber)=>{
1567
- return committedDb.getLeafValue(MerkleTreeId.ARCHIVE, BigInt(blockNumber));
1568
- }));
1569
- // Build a map from block number to block hash
1570
- const blockNumberToHash = new Map();
1571
- for(let i = 0; i < uniqueBlockNumbers.length; i++){
1572
- const blockHash = blockHashes[i];
1573
- if (blockHash === undefined) {
1574
- throw new Error(`Block hash is undefined for block number ${uniqueBlockNumbers[i]}`);
1575
- }
1576
- blockNumberToHash.set(uniqueBlockNumbers[i], blockHash);
1577
- }
1578
- // Create DataInBlock objects by combining indices, blockNumbers and blockHashes and return them.
1579
- return maybeIndices.map((index)=>{
1580
- if (index === undefined) {
1581
- return undefined;
1582
- }
1583
- const blockNumber = indexToBlockNumber.get(index);
1584
- if (blockNumber === undefined) {
1585
- throw new Error(`Block number not found for leaf index ${index} in tree ${MerkleTreeId[treeId]}`);
1586
- }
1587
- const l2BlockHash = blockNumberToHash.get(blockNumber);
1588
- if (l2BlockHash === undefined) {
1589
- throw new Error(`Block hash not found for block number ${blockNumber}`);
1590
- }
1591
- return {
1592
- l2BlockNumber: blockNumber,
1593
- l2BlockHash,
1594
- data: index
1595
- };
1596
- });
818
+ findLeavesIndexes(referenceBlock, treeId, leafValues) {
819
+ return this.worldStateQueries.findLeavesIndexes(referenceBlock, treeId, leafValues);
1597
820
  }
1598
- async getBlockHashMembershipWitness(referenceBlock, blockHash) {
1599
- // The Noir circuit checks the archive membership proof against `anchor_block_header.last_archive.root`,
1600
- // which is the archive tree root BEFORE the anchor block was added (i.e. the state after block N-1).
1601
- // So we need the world state at block N-1, not block N, to produce a sibling path matching that root.
1602
- const referenceBlockNumber = await this.resolveBlockNumber(referenceBlock);
1603
- if (referenceBlockNumber === BlockNumber.ZERO) {
1604
- // Block 0 (the initial block) has an empty archive, so no membership witness can exist.
1605
- return undefined;
1606
- }
1607
- const committedDb = await this.getWorldState(BlockNumber(referenceBlockNumber - 1));
1608
- const [pathAndIndex] = await committedDb.findSiblingPaths(MerkleTreeId.ARCHIVE, [
1609
- blockHash
1610
- ]);
1611
- return pathAndIndex === undefined ? undefined : MembershipWitness.fromSiblingPath(pathAndIndex.index, pathAndIndex.path);
821
+ getBlockHashMembershipWitness(referenceBlock, blockHash) {
822
+ return this.worldStateQueries.getBlockHashMembershipWitness(referenceBlock, blockHash);
1612
823
  }
1613
- async getNoteHashMembershipWitness(referenceBlock, noteHash) {
1614
- const committedDb = await this.getWorldState(referenceBlock);
1615
- const [pathAndIndex] = await committedDb.findSiblingPaths(MerkleTreeId.NOTE_HASH_TREE, [
1616
- noteHash
1617
- ]);
1618
- return pathAndIndex === undefined ? undefined : MembershipWitness.fromSiblingPath(pathAndIndex.index, pathAndIndex.path);
824
+ getNoteHashMembershipWitness(referenceBlock, noteHash) {
825
+ return this.worldStateQueries.getNoteHashMembershipWitness(referenceBlock, noteHash);
1619
826
  }
1620
- async getL1ToL2MessageMembershipWitness(referenceBlock, l1ToL2Message) {
1621
- const db = await this.getWorldState(referenceBlock);
1622
- const [witness] = await db.findSiblingPaths(MerkleTreeId.L1_TO_L2_MESSAGE_TREE, [
1623
- l1ToL2Message
1624
- ]);
1625
- if (!witness) {
1626
- return undefined;
1627
- }
1628
- // REFACTOR: Return a MembershipWitness object
1629
- return [
1630
- witness.index,
1631
- witness.path
1632
- ];
827
+ getL1ToL2MessageMembershipWitness(referenceBlock, l1ToL2Message) {
828
+ return this.worldStateQueries.getL1ToL2MessageMembershipWitness(referenceBlock, l1ToL2Message);
1633
829
  }
1634
- async getL1ToL2MessageCheckpoint(l1ToL2Message) {
1635
- const messageIndex = await this.l1ToL2MessageSource.getL1ToL2MessageIndex(l1ToL2Message);
1636
- return messageIndex !== undefined ? InboxLeaf.checkpointNumberFromIndex(messageIndex) : undefined;
830
+ getL1ToL2MessageCheckpoint(l1ToL2Message) {
831
+ return this.worldStateQueries.getL1ToL2MessageCheckpoint(l1ToL2Message);
1637
832
  }
1638
833
  /**
1639
834
  * Returns all the L2 to L1 messages in an epoch.
@@ -1642,187 +837,34 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
1642
837
  *
1643
838
  * @param epoch - The epoch at which to get the data.
1644
839
  * @returns The L2 to L1 messages (empty array if the epoch is not found).
1645
- */ async getL2ToL1Messages(epoch) {
1646
- const blocks = await this.blockSource.getBlocks({
1647
- epoch,
1648
- onlyCheckpointed: true
1649
- });
1650
- const blocksInCheckpoints = chunkBy(blocks, (block)=>block.header.globalVariables.slotNumber);
1651
- return blocksInCheckpoints.map((slotBlocks)=>slotBlocks.map((block)=>block.body.txEffects.map((txEffect)=>txEffect.l2ToL1Msgs)));
840
+ */ getL2ToL1Messages(epoch) {
841
+ return this.worldStateQueries.getL2ToL1Messages(epoch);
1652
842
  }
1653
843
  /**
1654
844
  * Returns the L2-to-L1 membership witness for a message in `txHash`. Passthrough to the
1655
845
  * archiver's locally-cached resolver — see {@link Archiver.getL2ToL1MembershipWitness}.
1656
846
  */ getL2ToL1MembershipWitness(txHash, message, messageIndexInTx) {
1657
- return this.blockSource.getL2ToL1MembershipWitness(txHash, message, messageIndexInTx);
847
+ return this.worldStateQueries.getL2ToL1MembershipWitness(txHash, message, messageIndexInTx);
1658
848
  }
1659
- async getNullifierMembershipWitness(referenceBlock, nullifier) {
1660
- const db = await this.getWorldState(referenceBlock);
1661
- const [witness] = await db.findSiblingPaths(MerkleTreeId.NULLIFIER_TREE, [
1662
- nullifier.toBuffer()
1663
- ]);
1664
- if (!witness) {
1665
- return undefined;
1666
- }
1667
- const { index, path } = witness;
1668
- const leafPreimage = await db.getLeafPreimage(MerkleTreeId.NULLIFIER_TREE, index);
1669
- if (!leafPreimage) {
1670
- return undefined;
1671
- }
1672
- return new NullifierMembershipWitness(index, leafPreimage, path);
849
+ getNullifierMembershipWitness(referenceBlock, nullifier) {
850
+ return this.worldStateQueries.getNullifierMembershipWitness(referenceBlock, nullifier);
1673
851
  }
1674
- async getLowNullifierMembershipWitness(referenceBlock, nullifier) {
1675
- const committedDb = await this.getWorldState(referenceBlock);
1676
- const findResult = await committedDb.getPreviousValueIndex(MerkleTreeId.NULLIFIER_TREE, nullifier.toBigInt());
1677
- if (!findResult) {
1678
- return undefined;
1679
- }
1680
- const { index, alreadyPresent } = findResult;
1681
- if (alreadyPresent) {
1682
- throw new Error(`Cannot prove nullifier non-inclusion: nullifier ${nullifier.toBigInt()} already exists in the tree`);
1683
- }
1684
- const preimageData = await committedDb.getLeafPreimage(MerkleTreeId.NULLIFIER_TREE, index);
1685
- const siblingPath = await committedDb.getSiblingPath(MerkleTreeId.NULLIFIER_TREE, BigInt(index));
1686
- return new NullifierMembershipWitness(BigInt(index), preimageData, siblingPath);
1687
- }
1688
- async getPublicDataWitness(referenceBlock, leafSlot) {
1689
- const committedDb = await this.getWorldState(referenceBlock);
1690
- const lowLeafResult = await committedDb.getPreviousValueIndex(MerkleTreeId.PUBLIC_DATA_TREE, leafSlot.toBigInt());
1691
- if (!lowLeafResult) {
1692
- return undefined;
1693
- } else {
1694
- const preimage = await committedDb.getLeafPreimage(MerkleTreeId.PUBLIC_DATA_TREE, lowLeafResult.index);
1695
- const path = await committedDb.getSiblingPath(MerkleTreeId.PUBLIC_DATA_TREE, lowLeafResult.index);
1696
- return new PublicDataWitness(lowLeafResult.index, preimage, path);
1697
- }
852
+ getLowNullifierMembershipWitness(referenceBlock, nullifier) {
853
+ return this.worldStateQueries.getLowNullifierMembershipWitness(referenceBlock, nullifier);
1698
854
  }
1699
- async getPublicStorageAt(referenceBlock, contract, slot) {
1700
- const committedDb = await this.getWorldState(referenceBlock);
1701
- const leafSlot = await computePublicDataTreeLeafSlot(contract, slot);
1702
- const lowLeafResult = await committedDb.getPreviousValueIndex(MerkleTreeId.PUBLIC_DATA_TREE, leafSlot.toBigInt());
1703
- if (!lowLeafResult || !lowLeafResult.alreadyPresent) {
1704
- return Fr.ZERO;
1705
- }
1706
- const preimage = await committedDb.getLeafPreimage(MerkleTreeId.PUBLIC_DATA_TREE, lowLeafResult.index);
1707
- return preimage.leaf.value;
855
+ getPublicDataWitness(referenceBlock, leafSlot) {
856
+ return this.worldStateQueries.getPublicDataWitness(referenceBlock, leafSlot);
857
+ }
858
+ getPublicStorageAt(referenceBlock, contract, slot) {
859
+ return this.worldStateQueries.getPublicStorageAt(referenceBlock, contract, slot);
1708
860
  }
1709
861
  /**
1710
862
  * Simulates the public part of a transaction with the current state.
1711
863
  * @param tx - The transaction to simulate.
1712
864
  * @param skipFeeEnforcement - If true, fee enforcement is skipped.
1713
865
  * @param overrides - Optional pre-simulation overrides applied to the ephemeral fork and contract DB.
1714
- **/ async simulatePublicCalls(tx, skipFeeEnforcement = false, overrides) {
1715
- const env = {
1716
- stack: [],
1717
- error: void 0,
1718
- hasError: false
1719
- };
1720
- try {
1721
- // Check total gas limit for simulation
1722
- const gasSettings = tx.data.constants.txContext.gasSettings;
1723
- const txGasLimit = gasSettings.gasLimits.l2Gas;
1724
- const teardownGasLimit = gasSettings.teardownGasLimits.l2Gas;
1725
- if (txGasLimit + teardownGasLimit > this.config.rpcSimulatePublicMaxGasLimit) {
1726
- throw new BadRequestError(`Transaction total gas limit ${txGasLimit + teardownGasLimit} (${txGasLimit} + ${teardownGasLimit}) exceeds maximum gas limit ${this.config.rpcSimulatePublicMaxGasLimit} for simulation`);
1727
- }
1728
- const txHash = tx.getTxHash();
1729
- const l2Tips = await this.blockSource.getL2Tips();
1730
- const latestBlockNumber = l2Tips.proposed.number;
1731
- const blockNumber = BlockNumber.add(latestBlockNumber, 1);
1732
- // If sequencer is not initialized, we just set these values to zero for simulation.
1733
- const coinbase = EthAddress.ZERO;
1734
- const feeRecipient = AztecAddress.ZERO;
1735
- // Define the slot for simulation as the max of the next L1 timestamp slot, the slot after the proposed
1736
- // checkpoint, and the latest proposed block's slot.
1737
- const proposedCheckpointBlockData = await this.blockSource.getBlockData({
1738
- number: l2Tips.proposedCheckpoint.block.number
1739
- });
1740
- const proposedCheckpointSlot = proposedCheckpointBlockData?.header.getSlot();
1741
- let slotAfterProposedCheckpoint;
1742
- if (proposedCheckpointSlot !== undefined) {
1743
- slotAfterProposedCheckpoint = SlotNumber.fromBigInt(BigInt(proposedCheckpointSlot) + 1n);
1744
- }
1745
- let latestProposedBlockSlot;
1746
- if (l2Tips.proposed.number > l2Tips.proposedCheckpoint.block.number) {
1747
- latestProposedBlockSlot = (await this.blockSource.getBlockData({
1748
- number: l2Tips.proposed.number
1749
- }))?.header.getSlot();
1750
- }
1751
- const slotFromNextL1Timestamp = this.epochCache.getEpochAndSlotInNextL1Slot().slot;
1752
- const targetSlot = SlotNumber(Math.max(...compactArray([
1753
- slotFromNextL1Timestamp,
1754
- slotAfterProposedCheckpoint,
1755
- latestProposedBlockSlot
1756
- ])));
1757
- const checkpointGlobalVariables = await this.globalVariableBuilder.buildCheckpointGlobalVariables(coinbase, feeRecipient, targetSlot);
1758
- const newGlobalVariables = GlobalVariables.from({
1759
- blockNumber,
1760
- ...checkpointGlobalVariables
1761
- });
1762
- const publicProcessorFactory = new PublicProcessorFactory(this.contractDataSource, new DateProvider(), this.telemetry, this.log.getBindings());
1763
- this.log.verbose(`Simulating public calls for tx ${txHash}`, {
1764
- globalVariables: newGlobalVariables.toInspect(),
1765
- txHash,
1766
- blockNumber
1767
- });
1768
- // Ensure world-state has caught up with the latest block we loaded from the archiver
1769
- await this.worldStateSynchronizer.syncImmediate(latestBlockNumber);
1770
- // If we detect the next block would start a new checkpoint, then insert L1-to-L2 messages into
1771
- // the world state tree so simulation can take them into account. We detect if the next block would
1772
- // start a new checkpoint by checking if the proposed checkpoint's block number matches the latest block number,
1773
- // which means the next block would be the first block of the next checkpoint.
1774
- const targetCheckpoint = CheckpointNumber((l2Tips.proposedCheckpoint.checkpoint.number ?? CheckpointNumber.ZERO) + 1);
1775
- const nextCheckpointMessages = l2Tips.proposedCheckpoint.block.number === l2Tips.proposed.number ? await this.l1ToL2MessageSource.getL1ToL2Messages(targetCheckpoint).catch((err)=>{
1776
- if (isErrorClass(err, L1ToL2MessagesNotReadyError)) {
1777
- this.log.warn(`L1-to-L2 messages for checkpoint ${targetCheckpoint} are not ready yet (simulating without them)`);
1778
- } else {
1779
- this.log.error(`Failed to get L1-to-L2 messages for checkpoint ${targetCheckpoint} (simulating without them)`, err);
1780
- }
1781
- return undefined;
1782
- }) : undefined;
1783
- const merkleTreeFork = _ts_add_disposable_resource(env, await this.worldStateSynchronizer.fork(latestBlockNumber), true);
1784
- if (nextCheckpointMessages !== undefined) {
1785
- this.log.debug(`Appending ${nextCheckpointMessages.length} L1-to-L2 messages to the world state tree for the next checkpoint`, {
1786
- checkpointNumber: l2Tips.proposedCheckpoint.checkpoint.number + 1
1787
- });
1788
- await appendL1ToL2MessagesToTree(merkleTreeFork, nextCheckpointMessages);
1789
- }
1790
- await applyPublicDataOverrides(merkleTreeFork, overrides?.publicStorage);
1791
- const config = PublicSimulatorConfig.from({
1792
- skipFeeEnforcement,
1793
- collectDebugLogs: true,
1794
- collectHints: false,
1795
- collectCallMetadata: true,
1796
- collectStatistics: false,
1797
- collectionLimits: CollectionLimitsConfig.from({
1798
- maxDebugLogMemoryReads: this.config.rpcSimulatePublicMaxDebugLogMemoryReads
1799
- })
1800
- });
1801
- const contractsDB = new PublicContractsDB(this.contractDataSource, this.log.getBindings());
1802
- if (overrides?.contracts) {
1803
- contractsDB.addContracts(Object.values(overrides.contracts).map(({ instance })=>instance));
1804
- }
1805
- const processor = publicProcessorFactory.create(merkleTreeFork, newGlobalVariables, config, contractsDB);
1806
- // REFACTOR: Consider merging ProcessReturnValues into ProcessedTx
1807
- const [processedTxs, failedTxs, _usedTxs, returns, debugLogs] = await processor.process([
1808
- tx
1809
- ]);
1810
- // REFACTOR: Consider returning the error rather than throwing
1811
- if (failedTxs.length) {
1812
- this.log.warn(`Simulated tx ${txHash} fails: ${failedTxs[0].error}`, {
1813
- txHash
1814
- });
1815
- throw failedTxs[0].error;
1816
- }
1817
- const [processedTx] = processedTxs;
1818
- return new PublicSimulationOutput(processedTx.revertReason, processedTx.globalVariables, processedTx.txEffect, returns, processedTx.gasUsed, debugLogs);
1819
- } catch (e) {
1820
- env.error = e;
1821
- env.hasError = true;
1822
- } finally{
1823
- const result = _ts_dispose_resources(env);
1824
- if (result) await result;
1825
- }
866
+ **/ simulatePublicCalls(tx, skipFeeEnforcement = false, overrides) {
867
+ return this.nodePublicCallsSimulator.simulate(tx, skipFeeEnforcement, overrides);
1826
868
  }
1827
869
  async isValidTx(tx, { isSimulation, skipFeeEnforcement } = {}) {
1828
870
  const db = this.worldStateSynchronizer.getCommitted();
@@ -2156,73 +1198,23 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
2156
1198
  }
2157
1199
  return await this.automineSequencer.prove(upToCheckpoint);
2158
1200
  }
2159
- /**
2160
- * Returns an instance of MerkleTreeOperations having first ensured the world state is fully synched
2161
- * @param block - The block parameter (block number, block hash, or 'latest') at which to get the data.
2162
- * @returns An instance of a committed MerkleTreeOperations
2163
- */ async getWorldState(block) {
2164
- const query = this.normalizeBlockParameter(block);
2165
- // When the request anchors on a specific block hash, resolve it against the archiver up front and
2166
- // drive the world-state sync to that exact block number and hash. Resolving against the archiver
2167
- // first fails fast with a clear reorg error if the hash is unknown, and passing the hash to the
2168
- // synchronizer makes the sync reorg-aware: it barriers until the archive-tree commit for that block
2169
- // has landed and verifies it matches the requested fork, instead of syncing to bare latest height
2170
- // and then racing the snapshot read below against an in-flight archive-tree write.
2171
- const requestedHash = 'hash' in query ? query.hash : undefined;
2172
- const anchorBlockNumber = requestedHash !== undefined ? await this.resolveBlockNumber(query) : undefined;
2173
- let blockSyncedTo = BlockNumber.ZERO;
2174
- try {
2175
- // Attempt to sync the world state if necessary
2176
- blockSyncedTo = await this.#syncWorldState(anchorBlockNumber, requestedHash);
2177
- } catch (err) {
2178
- this.log.error(`Error getting world state: ${err}`);
2179
- }
2180
- if ('tag' in query && query.tag === 'proposed') {
2181
- this.log.debug(`Using committed db for latest block, world state synced upto ${blockSyncedTo}`);
2182
- return this.worldStateSynchronizer.getCommitted();
2183
- }
2184
- const blockNumber = anchorBlockNumber ?? await this.resolveBlockNumber(query);
2185
- // Check it's within world state sync range
2186
- if (blockNumber > blockSyncedTo) {
2187
- throw new Error(`Queried block ${inspectBlockParameter(block)} not yet synced by the node (node is synced upto ${blockSyncedTo}).`);
2188
- }
2189
- this.log.debug(`Using snapshot for block ${blockNumber}, world state synced upto ${blockSyncedTo}`);
2190
- const snapshot = this.worldStateSynchronizer.getSnapshot(blockNumber);
2191
- // Double-check world-state synced to the same block hash as was requested.
2192
- // Block 0 is skipped: the snapshot returned by `getSnapshot(0)` is the *pre*-genesis archive
2193
- // (size 0), so leaf 0 is not yet inserted from that snapshot's view even though block 0's hash
2194
- // does live at archive index 0 in the committed tree. The genesis hash is already validated by
2195
- // the archiver when it resolves the hash query to block number 0.
2196
- if (requestedHash !== undefined && blockNumber !== BlockNumber.ZERO) {
2197
- const blockHash = await snapshot.getLeafValue(MerkleTreeId.ARCHIVE, BigInt(blockNumber));
2198
- if (!blockHash || !requestedHash.equals(blockHash)) {
2199
- throw new Error(`Block hash ${requestedHash.toString()} not found in world state at block number ${blockNumber} (world state has ${blockHash?.toString() ?? 'no hash'} at that index, genesis header hash is ${this.blockSource.getGenesisBlockHash().toString()}). If the node API has been queried with anchor block hash possibly a reorg has occurred.`);
2200
- }
1201
+ async warpL2TimeAtLeastTo(targetTimestamp) {
1202
+ if (!this.automineSequencer) {
1203
+ throw new BadRequestError('Cannot warp L2 time: no automine sequencer is running');
2201
1204
  }
2202
- return snapshot;
2203
- }
2204
- /** Resolves any {@link BlockParameter} variant to a concrete block number. */ async resolveBlockNumber(block) {
2205
- const query = this.normalizeBlockParameter(block);
2206
- const blockNumber = await this.blockSource.getBlockNumber(query);
2207
- if (blockNumber === undefined) {
2208
- if ('hash' in query) {
2209
- throw new Error(`Block hash ${query.hash.toString()} not found when querying world state. If the node API has been queried with anchor block hash possibly a reorg has occurred.`);
2210
- }
2211
- if ('archive' in query) {
2212
- throw new Error(`Block with archive ${query.archive.toString()} not found.`);
2213
- }
2214
- throw new Error(`Block not found for ${inspectBlockParameter(block)}.`);
1205
+ await this.automineSequencer.warpTo(targetTimestamp);
1206
+ }
1207
+ async warpL2TimeAtLeastBy(duration) {
1208
+ if (!this.automineSequencer) {
1209
+ throw new BadRequestError('Cannot warp L2 time: no automine sequencer is running');
2215
1210
  }
2216
- return blockNumber;
1211
+ await this.automineSequencer.warpBy(duration);
2217
1212
  }
2218
1213
  /**
2219
- * Ensure the world state is synced.
2220
- * @param targetBlockNumber - Block to sync up to. Defaults to the latest block known to the archiver.
2221
- * @param blockHash - If provided, the synchronizer verifies the block at `targetBlockNumber` matches this
2222
- * hash, resyncing (and so detecting reorgs) if it does not yet match or has been reorged away.
2223
- * @returns A promise that fulfils once the world state is synced
2224
- */ async #syncWorldState(targetBlockNumber, blockHash) {
2225
- const target = targetBlockNumber ?? await this.blockSource.getBlockNumber();
2226
- return await this.worldStateSynchronizer.syncImmediate(target, blockHash);
1214
+ * Returns a committed world-state view at `block`, driving sync first. Delegates to
1215
+ * {@link NodeWorldStateQueries.getWorldState}; kept as a protected method so subclasses and tests can
1216
+ * exercise the node's block-resolution and reorg-aware sync behavior.
1217
+ */ getWorldState(block) {
1218
+ return this.worldStateQueries.getWorldState(block);
2227
1219
  }
2228
1220
  }