@aztec/aztec-node 5.0.0-private.20260319 → 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 (71) hide show
  1. package/dest/aztec-node/block_response_helpers.d.ts +25 -0
  2. package/dest/aztec-node/block_response_helpers.d.ts.map +1 -0
  3. package/dest/aztec-node/block_response_helpers.js +112 -0
  4. package/dest/aztec-node/config.d.ts +16 -4
  5. package/dest/aztec-node/config.d.ts.map +1 -1
  6. package/dest/aztec-node/config.js +15 -5
  7. package/dest/aztec-node/node_public_calls_simulator.d.ts +90 -0
  8. package/dest/aztec-node/node_public_calls_simulator.d.ts.map +1 -0
  9. package/dest/aztec-node/node_public_calls_simulator.js +346 -0
  10. package/dest/aztec-node/public_data_overrides.d.ts +13 -0
  11. package/dest/aztec-node/public_data_overrides.d.ts.map +1 -0
  12. package/dest/aztec-node/public_data_overrides.js +21 -0
  13. package/dest/aztec-node/register_node_rpc_handlers.d.ts +10 -0
  14. package/dest/aztec-node/register_node_rpc_handlers.d.ts.map +1 -0
  15. package/dest/aztec-node/register_node_rpc_handlers.js +31 -0
  16. package/dest/aztec-node/server.d.ts +128 -134
  17. package/dest/aztec-node/server.d.ts.map +1 -1
  18. package/dest/aztec-node/server.js +393 -820
  19. package/dest/bin/index.js +15 -10
  20. package/dest/factory.d.ts +33 -0
  21. package/dest/factory.d.ts.map +1 -0
  22. package/dest/factory.js +496 -0
  23. package/dest/index.d.ts +3 -1
  24. package/dest/index.d.ts.map +1 -1
  25. package/dest/index.js +2 -0
  26. package/dest/modules/block_parameter.d.ts +25 -0
  27. package/dest/modules/block_parameter.d.ts.map +1 -0
  28. package/dest/modules/block_parameter.js +100 -0
  29. package/dest/modules/node_block_provider.d.ts +19 -0
  30. package/dest/modules/node_block_provider.d.ts.map +1 -0
  31. package/dest/modules/node_block_provider.js +112 -0
  32. package/dest/modules/node_tx_receipt.d.ts +24 -0
  33. package/dest/modules/node_tx_receipt.d.ts.map +1 -0
  34. package/dest/modules/node_tx_receipt.js +70 -0
  35. package/dest/modules/node_world_state_queries.d.ts +61 -0
  36. package/dest/modules/node_world_state_queries.d.ts.map +1 -0
  37. package/dest/modules/node_world_state_queries.js +257 -0
  38. package/dest/sentinel/config.d.ts +3 -2
  39. package/dest/sentinel/config.d.ts.map +1 -1
  40. package/dest/sentinel/config.js +15 -5
  41. package/dest/sentinel/factory.d.ts +5 -3
  42. package/dest/sentinel/factory.d.ts.map +1 -1
  43. package/dest/sentinel/factory.js +12 -5
  44. package/dest/sentinel/sentinel.d.ts +145 -21
  45. package/dest/sentinel/sentinel.d.ts.map +1 -1
  46. package/dest/sentinel/sentinel.js +227 -105
  47. package/dest/sentinel/store.d.ts +8 -8
  48. package/dest/sentinel/store.d.ts.map +1 -1
  49. package/dest/sentinel/store.js +25 -17
  50. package/dest/test/index.d.ts +3 -3
  51. package/dest/test/index.d.ts.map +1 -1
  52. package/package.json +28 -26
  53. package/src/aztec-node/block_response_helpers.ts +161 -0
  54. package/src/aztec-node/config.ts +30 -7
  55. package/src/aztec-node/node_public_calls_simulator.ts +383 -0
  56. package/src/aztec-node/public_data_overrides.ts +35 -0
  57. package/src/aztec-node/register_node_rpc_handlers.ts +29 -0
  58. package/src/aztec-node/server.ts +514 -1070
  59. package/src/bin/index.ts +19 -12
  60. package/src/factory.ts +656 -0
  61. package/src/index.ts +2 -0
  62. package/src/modules/block_parameter.ts +93 -0
  63. package/src/modules/node_block_provider.ts +149 -0
  64. package/src/modules/node_tx_receipt.ts +115 -0
  65. package/src/modules/node_world_state_queries.ts +360 -0
  66. package/src/sentinel/README.md +103 -0
  67. package/src/sentinel/config.ts +18 -6
  68. package/src/sentinel/factory.ts +21 -6
  69. package/src/sentinel/sentinel.ts +277 -130
  70. package/src/sentinel/store.ts +26 -18
  71. package/src/test/index.ts +2 -2
@@ -371,58 +371,59 @@ function _apply_decs_2203_r(targetClass, memberDecs, classDecs, parentClass) {
371
371
  return (_apply_decs_2203_r = applyDecs2203RFactory())(targetClass, memberDecs, classDecs, parentClass);
372
372
  }
373
373
  var _dec, _initProto;
374
- import { createArchiver } from '@aztec/archiver';
375
- import { BBCircuitVerifier, QueuedIVCVerifier, TestCircuitVerifier } from '@aztec/bb-prover';
376
- import { createBlobClientWithFileStores } from '@aztec/blob-client/client';
377
- import { Blob } from '@aztec/blob-lib';
378
- import { EpochCache } from '@aztec/epoch-cache';
379
- import { createEthereumChain } from '@aztec/ethereum/chain';
380
- import { getPublicClient, makeL1HttpTransport } from '@aztec/ethereum/client';
381
- import { RegistryContract, RollupContract } from '@aztec/ethereum/contracts';
374
+ import { BBCircuitVerifier, BatchChonkVerifier, QueuedIVCVerifier } from '@aztec/bb-prover';
375
+ import { TestCircuitVerifier } from '@aztec/bb-prover/test';
376
+ import { pickL1ContractAddresses } from '@aztec/ethereum/l1-contract-addresses';
382
377
  import { BlockNumber } from '@aztec/foundation/branded-types';
383
- import { chunkBy, compactArray, pick, unique } from '@aztec/foundation/collection';
384
- import { Fr } from '@aztec/foundation/curves/bn254';
378
+ import { compactArray, pick, unique } from '@aztec/foundation/collection';
385
379
  import { EthAddress } from '@aztec/foundation/eth-address';
386
380
  import { BadRequestError } from '@aztec/foundation/json-rpc';
387
381
  import { createLogger } from '@aztec/foundation/log';
382
+ import { retryUntil } from '@aztec/foundation/retry';
388
383
  import { count } from '@aztec/foundation/string';
389
- import { DateProvider, Timer } from '@aztec/foundation/timer';
390
- import { MembershipWitness } from '@aztec/foundation/trees';
384
+ import { Timer } from '@aztec/foundation/timer';
391
385
  import { KeystoreManager, loadKeystores, mergeKeystores } from '@aztec/node-keystore';
392
- import { trySnapshotSync, uploadSnapshot } from '@aztec/node-lib/actions';
393
- import { createForwarderL1TxUtilsFromSigners, createL1TxUtilsFromSigners } from '@aztec/node-lib/factories';
394
- import { createP2PClient, createTxValidatorForAcceptingTxsOverRPC, getDefaultAllowedSetupFunctions } from '@aztec/p2p';
386
+ import { uploadSnapshot } from '@aztec/node-lib/actions';
387
+ import { createTxValidatorForAcceptingTxsOverRPC, getDefaultAllowedSetupFunctions } from '@aztec/p2p';
395
388
  import { ProtocolContractAddress } from '@aztec/protocol-contracts';
396
- import { createProverNode } from '@aztec/prover-node';
397
- import { createKeyStoreForProver } from '@aztec/prover-node/config';
398
- import { GlobalVariableBuilder, SequencerClient } from '@aztec/sequencer-client';
399
- import { PublicProcessorFactory } from '@aztec/simulator/server';
400
- import { AttestationsBlockWatcher, EpochPruneWatcher, createSlasher } from '@aztec/slasher';
401
- import { CollectionLimitsConfig, PublicSimulatorConfig } from '@aztec/stdlib/avm';
402
- import { AztecAddress } from '@aztec/stdlib/aztec-address';
403
- import { BlockHash, L2Block } from '@aztec/stdlib/block';
404
- import { GasFees } from '@aztec/stdlib/gas';
405
- import { computePublicDataTreeLeafSlot } from '@aztec/stdlib/hash';
389
+ import { STANDARD_MULTI_CALL_ENTRYPOINT_ADDRESS } from '@aztec/standard-contracts/multi-call-entrypoint';
390
+ import { inspectBlockParameter } from '@aztec/stdlib/block';
391
+ import { GasFees, getNetworkTxGasLimits } from '@aztec/stdlib/gas';
406
392
  import { AztecNodeAdminConfigSchema } from '@aztec/stdlib/interfaces/client';
407
393
  import { tryStop } from '@aztec/stdlib/interfaces/server';
408
- import { InMemoryDebugLogStore, NullDebugLogStore } from '@aztec/stdlib/logs';
409
- import { InboxLeaf } from '@aztec/stdlib/messaging';
410
- import { MerkleTreeId, NullifierMembershipWitness, PublicDataWitness } from '@aztec/stdlib/trees';
411
- import { PublicSimulationOutput, TxReceipt, TxStatus } from '@aztec/stdlib/tx';
412
- import { getPackageVersion } from '@aztec/stdlib/update-checker';
394
+ import { NullDebugLogStore } from '@aztec/stdlib/logs';
413
395
  import { Attributes, getTelemetryClient, trackSpan } from '@aztec/telemetry-client';
414
- import { FullNodeCheckpointsBuilder as CheckpointsBuilder, FullNodeCheckpointsBuilder, NodeKeystoreAdapter, ValidatorClient, createBlockProposalHandler, createValidatorClient } from '@aztec/validator-client';
415
- import { createWorldStateSynchronizer } from '@aztec/world-state';
416
- import { createPublicClient } from 'viem';
417
- import { createSentinel } from '../sentinel/factory.js';
418
- 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';
419
400
  import { NodeMetrics } from './node_metrics.js';
401
+ import { NodePublicCallsSimulator } from './node_public_calls_simulator.js';
420
402
  _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
421
403
  [Attributes.TX_HASH]: tx.getTxHash().toString()
422
404
  }));
423
405
  /**
424
406
  * The aztec node.
425
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;
426
427
  config;
427
428
  p2pClient;
428
429
  blockSource;
@@ -434,354 +435,152 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
434
435
  proverNode;
435
436
  slasherClient;
436
437
  validatorsSentinel;
437
- epochPruneWatcher;
438
+ stopStartedWatchers;
438
439
  l1ChainId;
439
440
  version;
440
441
  globalVariableBuilder;
442
+ rollupContract;
443
+ feeProvider;
441
444
  epochCache;
442
445
  packageVersion;
443
- proofVerifier;
446
+ peerProofVerifier;
447
+ rpcProofVerifier;
444
448
  telemetry;
445
449
  log;
446
450
  blobClient;
447
451
  validatorClient;
448
452
  keyStoreManager;
449
453
  debugLogStore;
450
- static{
451
- ({ e: [_initProto] } = _apply_decs_2203_r(this, [
452
- [
453
- _dec,
454
- 2,
455
- "simulatePublicCalls"
456
- ]
457
- ], []));
458
- }
459
- metrics;
460
- initialHeaderHashPromise;
461
- // Prevent two snapshot operations to happen simultaneously
462
- isUploadingSnapshot;
463
- tracer;
464
- constructor(config, p2pClient, blockSource, logsSource, contractDataSource, l1ToL2MessageSource, worldStateSynchronizer, sequencer, proverNode, slasherClient, validatorsSentinel, epochPruneWatcher, l1ChainId, version, globalVariableBuilder, epochCache, packageVersion, proofVerifier, telemetry = getTelemetryClient(), log = createLogger('node'), blobClient, validatorClient, keyStoreManager, debugLogStore = new NullDebugLogStore()){
465
- this.config = config;
466
- this.p2pClient = p2pClient;
467
- this.blockSource = blockSource;
468
- this.logsSource = logsSource;
469
- this.contractDataSource = contractDataSource;
470
- this.l1ToL2MessageSource = l1ToL2MessageSource;
471
- this.worldStateSynchronizer = worldStateSynchronizer;
472
- this.sequencer = sequencer;
473
- this.proverNode = proverNode;
474
- this.slasherClient = slasherClient;
475
- this.validatorsSentinel = validatorsSentinel;
476
- this.epochPruneWatcher = epochPruneWatcher;
477
- this.l1ChainId = l1ChainId;
478
- this.version = version;
479
- this.globalVariableBuilder = globalVariableBuilder;
480
- this.epochCache = epochCache;
481
- this.packageVersion = packageVersion;
482
- this.proofVerifier = proofVerifier;
483
- this.telemetry = telemetry;
484
- this.log = log;
485
- this.blobClient = blobClient;
486
- this.validatorClient = validatorClient;
487
- this.keyStoreManager = keyStoreManager;
488
- this.debugLogStore = debugLogStore;
489
- this.initialHeaderHashPromise = (_initProto(this), undefined);
490
- this.isUploadingSnapshot = false;
491
- this.metrics = new NodeMetrics(telemetry, 'AztecNodeService');
492
- this.tracer = telemetry.getTracer('AztecNodeService');
454
+ automineSequencer;
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
+ });
493
516
  this.log.info(`Aztec Node version: ${this.packageVersion}`);
494
- this.log.info(`Aztec Node started on chain 0x${l1ChainId.toString(16)}`, config.l1Contracts);
495
- // 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
496
519
  // never have debugLogStore enabled when not in test mode because then we would be accumulating debug logs in
497
520
  // memory which could be a DoS vector on the sequencer (since no fees are paid for debug logs).
498
- if (debugLogStore.isEnabled && config.realProofs) {
521
+ if (this.debugLogStore.isEnabled && this.config.realProofs) {
499
522
  throw new Error('debugLogStore should never be enabled when realProofs are set');
500
523
  }
501
524
  }
525
+ /** @internal Exposed for testing — returns the RPC proof verifier. */ getProofVerifier() {
526
+ return this.rpcProofVerifier;
527
+ }
502
528
  async getWorldStateSyncStatus() {
503
529
  const status = await this.worldStateSynchronizer.status();
504
530
  return status.syncSummary;
505
531
  }
506
- getL2Tips() {
532
+ getChainTips() {
507
533
  return this.blockSource.getL2Tips();
508
534
  }
509
- /**
510
- * initializes the Aztec Node, wait for component to sync.
511
- * @param config - The configuration to be used by the aztec node.
512
- * @returns - A fully synced Aztec Node for use in development/testing.
513
- */ static async createAndSync(inputConfig, deps = {}, options = {}) {
514
- const config = {
515
- ...inputConfig
516
- }; // Copy the config so we dont mutate the input object
517
- const log = deps.logger ?? createLogger('node');
518
- const packageVersion = getPackageVersion() ?? '';
519
- const telemetry = deps.telemetry ?? getTelemetryClient();
520
- const dateProvider = deps.dateProvider ?? new DateProvider();
521
- const ethereumChain = createEthereumChain(config.l1RpcUrls, config.l1ChainId);
522
- // Build a key store from file if given or from environment otherwise.
523
- // We keep the raw KeyStore available so we can merge with prover keys if enableProverNode is set.
524
- let keyStoreManager;
525
- const keyStoreProvided = config.keyStoreDirectory !== undefined && config.keyStoreDirectory.length > 0;
526
- if (keyStoreProvided) {
527
- const keyStores = loadKeystores(config.keyStoreDirectory);
528
- keyStoreManager = new KeystoreManager(mergeKeystores(keyStores));
529
- } else {
530
- const rawKeyStores = [];
531
- const validatorKeyStore = createKeyStoreForValidator(config);
532
- if (validatorKeyStore) {
533
- rawKeyStores.push(validatorKeyStore);
534
- }
535
- if (config.enableProverNode) {
536
- const proverKeyStore = createKeyStoreForProver(config);
537
- if (proverKeyStore) {
538
- rawKeyStores.push(proverKeyStore);
539
- }
540
- }
541
- if (rawKeyStores.length > 0) {
542
- keyStoreManager = new KeystoreManager(rawKeyStores.length === 1 ? rawKeyStores[0] : mergeKeystores(rawKeyStores));
543
- }
544
- }
545
- await keyStoreManager?.validateSigners();
546
- // If we are a validator, verify our configuration before doing too much more.
547
- if (!config.disableValidator) {
548
- if (keyStoreManager === undefined) {
549
- throw new Error('Failed to create key store, a requirement for running a validator');
550
- }
551
- if (!keyStoreProvided && process.env.NODE_ENV !== 'test') {
552
- log.warn("Keystore created from env: it's recommended to use a file-based key store for production");
553
- }
554
- ValidatorClient.validateKeyStoreConfiguration(keyStoreManager, log);
555
- }
556
- // validate that the actual chain id matches that specified in configuration
557
- if (config.l1ChainId !== ethereumChain.chainInfo.id) {
558
- throw new Error(`RPC URL configured for chain id ${ethereumChain.chainInfo.id} but expected id ${config.l1ChainId}`);
559
- }
560
- const publicClient = createPublicClient({
561
- chain: ethereumChain.chainInfo,
562
- transport: makeL1HttpTransport(config.l1RpcUrls, {
563
- timeout: config.l1HttpTimeoutMS
564
- }),
565
- pollingInterval: config.viemPollingIntervalMS
566
- });
567
- const l1ContractsAddresses = await RegistryContract.collectAddresses(publicClient, config.l1Contracts.registryAddress, config.rollupVersion ?? 'canonical');
568
- // Overwrite the passed in vars.
569
- config.l1Contracts = {
570
- ...config.l1Contracts,
571
- ...l1ContractsAddresses
572
- };
573
- const rollupContract = new RollupContract(publicClient, config.l1Contracts.rollupAddress.toString());
574
- const [l1GenesisTime, slotDuration, rollupVersionFromRollup, rollupManaLimit] = await Promise.all([
575
- rollupContract.getL1GenesisTime(),
576
- rollupContract.getSlotDuration(),
577
- rollupContract.getVersion(),
578
- rollupContract.getManaLimit().then(Number)
579
- ]);
580
- config.rollupVersion ??= Number(rollupVersionFromRollup);
581
- if (config.rollupVersion !== Number(rollupVersionFromRollup)) {
582
- 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}).`);
583
- }
584
- const blobClient = await createBlobClientWithFileStores(config, log.createChild('blob-client'));
585
- // attempt snapshot sync if possible
586
- await trySnapshotSync(config, log);
587
- const epochCache = await EpochCache.create(config.l1Contracts.rollupAddress, config, {
588
- dateProvider
589
- });
590
- const archiver = await createArchiver(config, {
591
- blobClient,
592
- epochCache,
593
- telemetry,
594
- dateProvider
595
- }, {
596
- blockUntilSync: !config.skipArchiverInitialSync
597
- });
598
- // now create the merkle trees and the world state synchronizer
599
- const worldStateSynchronizer = await createWorldStateSynchronizer(config, archiver, options.prefilledPublicData, telemetry);
600
- const circuitVerifier = config.realProofs || config.debugForceTxProofVerification ? await BBCircuitVerifier.new(config) : new TestCircuitVerifier(config.proverTestVerificationDelayMs);
601
- let debugLogStore;
602
- if (!config.realProofs) {
603
- log.warn(`Aztec node is accepting fake proofs`);
604
- debugLogStore = new InMemoryDebugLogStore();
605
- log.info('Aztec node started in test mode (realProofs set to false) hence debug logs from public functions will be collected and served');
606
- } else {
607
- debugLogStore = new NullDebugLogStore();
608
- }
609
- const proofVerifier = new QueuedIVCVerifier(config, circuitVerifier);
610
- const proverOnly = config.enableProverNode && config.disableValidator;
611
- if (proverOnly) {
612
- log.info('Starting in prover-only mode: skipping validator, sequencer, sentinel, and slasher subsystems');
613
- }
614
- // create the tx pool and the p2p client, which will need the l2 block source
615
- const p2pClient = await createP2PClient(config, archiver, proofVerifier, worldStateSynchronizer, epochCache, packageVersion, dateProvider, telemetry, deps.p2pClientDeps);
616
- // We'll accumulate sentinel watchers here
617
- const watchers = [];
618
- // Create FullNodeCheckpointsBuilder for block proposal handling and tx validation.
619
- // Override maxTxsPerCheckpoint with the validator-specific limit if set.
620
- const validatorCheckpointsBuilder = new FullNodeCheckpointsBuilder({
621
- ...config,
622
- l1GenesisTime,
623
- slotDuration: Number(slotDuration),
624
- rollupManaLimit,
625
- maxTxsPerCheckpoint: config.validateMaxTxsPerCheckpoint
626
- }, worldStateSynchronizer, archiver, dateProvider, telemetry);
627
- let validatorClient;
628
- if (!proverOnly) {
629
- // Create validator client if required
630
- validatorClient = await createValidatorClient(config, {
631
- checkpointsBuilder: validatorCheckpointsBuilder,
632
- worldState: worldStateSynchronizer,
633
- p2pClient,
634
- telemetry,
635
- dateProvider,
636
- epochCache,
637
- blockSource: archiver,
638
- l1ToL2MessageSource: archiver,
639
- keyStoreManager,
640
- blobClient,
641
- slashingProtectionDb: deps.slashingProtectionDb
642
- });
643
- // If we have a validator client, register it as a source of offenses for the slasher,
644
- // and have it register callbacks on the p2p client *before* we start it, otherwise messages
645
- // like attestations or auths will fail.
646
- if (validatorClient) {
647
- watchers.push(validatorClient);
648
- if (!options.dontStartSequencer) {
649
- await validatorClient.registerHandlers();
650
- }
651
- }
652
- }
653
- // If there's no validator client, create a BlockProposalHandler to handle block proposals
654
- // for monitoring or reexecution. Reexecution (default) allows us to follow the pending chain,
655
- // while non-reexecution is used for validating the proposals and collecting their txs.
656
- if (!validatorClient) {
657
- const reexecute = !!config.alwaysReexecuteBlockProposals;
658
- log.info(`Setting up block proposal handler` + (reexecute ? ' with reexecution of proposals' : ''));
659
- createBlockProposalHandler(config, {
660
- checkpointsBuilder: validatorCheckpointsBuilder,
661
- worldState: worldStateSynchronizer,
662
- epochCache,
663
- blockSource: archiver,
664
- l1ToL2MessageSource: archiver,
665
- p2pClient,
666
- dateProvider,
667
- telemetry
668
- }).register(p2pClient, reexecute);
669
- }
670
- // Start world state and wait for it to sync to the archiver.
671
- await worldStateSynchronizer.start();
672
- // Start p2p. Note that it depends on world state to be running.
673
- await p2pClient.start();
674
- let validatorsSentinel;
675
- let epochPruneWatcher;
676
- let attestationsBlockWatcher;
677
- if (!proverOnly) {
678
- validatorsSentinel = await createSentinel(epochCache, archiver, p2pClient, config);
679
- if (validatorsSentinel && config.slashInactivityPenalty > 0n) {
680
- watchers.push(validatorsSentinel);
681
- }
682
- if (config.slashPrunePenalty > 0n || config.slashDataWithholdingPenalty > 0n) {
683
- epochPruneWatcher = new EpochPruneWatcher(archiver, archiver, epochCache, p2pClient.getTxProvider(), validatorCheckpointsBuilder, config);
684
- watchers.push(epochPruneWatcher);
685
- }
686
- // We assume we want to slash for invalid attestations unless all max penalties are set to 0
687
- if (config.slashProposeInvalidAttestationsPenalty > 0n || config.slashAttestDescendantOfInvalidPenalty > 0n) {
688
- attestationsBlockWatcher = new AttestationsBlockWatcher(archiver, epochCache, config);
689
- watchers.push(attestationsBlockWatcher);
690
- }
691
- }
692
- // Start p2p-related services once the archiver has completed sync
693
- void archiver.waitForInitialSync().then(async ()=>{
694
- await p2pClient.start();
695
- await validatorsSentinel?.start();
696
- await epochPruneWatcher?.start();
697
- await attestationsBlockWatcher?.start();
698
- log.info(`All p2p services started`);
699
- }).catch((err)=>log.error('Failed to start p2p services after archiver sync', err));
700
- // Validator enabled, create/start relevant service
701
- let sequencer;
702
- let slasherClient;
703
- if (!config.disableValidator && validatorClient) {
704
- // We create a slasher only if we have a sequencer, since all slashing actions go through the sequencer publisher
705
- // as they are executed when the node is selected as proposer.
706
- const validatorAddresses = keyStoreManager ? NodeKeystoreAdapter.fromKeyStoreManager(keyStoreManager).getAddresses() : [];
707
- slasherClient = await createSlasher(config, config.l1Contracts, getPublicClient(config), watchers, dateProvider, epochCache, validatorAddresses, undefined);
708
- await slasherClient.start();
709
- const l1TxUtils = config.sequencerPublisherForwarderAddress ? await createForwarderL1TxUtilsFromSigners(publicClient, keyStoreManager.createAllValidatorPublisherSigners(), config.sequencerPublisherForwarderAddress, {
710
- ...config,
711
- scope: 'sequencer'
712
- }, {
713
- telemetry,
714
- logger: log.createChild('l1-tx-utils'),
715
- dateProvider,
716
- kzg: Blob.getViemKzgInstance()
717
- }) : await createL1TxUtilsFromSigners(publicClient, keyStoreManager.createAllValidatorPublisherSigners(), {
718
- ...config,
719
- scope: 'sequencer'
720
- }, {
721
- telemetry,
722
- logger: log.createChild('l1-tx-utils'),
723
- dateProvider,
724
- kzg: Blob.getViemKzgInstance()
725
- });
726
- // Create and start the sequencer client
727
- const checkpointsBuilder = new CheckpointsBuilder({
728
- ...config,
729
- l1GenesisTime,
730
- slotDuration: Number(slotDuration),
731
- rollupManaLimit
732
- }, worldStateSynchronizer, archiver, dateProvider, telemetry, debugLogStore);
733
- sequencer = await SequencerClient.new(config, {
734
- ...deps,
735
- epochCache,
736
- l1TxUtils,
737
- validatorClient,
738
- p2pClient,
739
- worldStateSynchronizer,
740
- slasherClient,
741
- checkpointsBuilder,
742
- l2BlockSource: archiver,
743
- l1ToL2MessageSource: archiver,
744
- telemetry,
745
- dateProvider,
746
- blobClient,
747
- nodeKeyStore: keyStoreManager
748
- });
749
- }
750
- if (!options.dontStartSequencer && sequencer) {
751
- await sequencer.start();
752
- log.verbose(`Sequencer started`);
753
- } else if (sequencer) {
754
- log.warn(`Sequencer created but not started`);
535
+ getL1Constants() {
536
+ return this.blockSource.getL1Constants();
537
+ }
538
+ getSyncedL2SlotNumber() {
539
+ return this.blockSource.getSyncedL2SlotNumber();
540
+ }
541
+ getSyncedL2EpochNumber() {
542
+ return this.blockSource.getSyncedL2EpochNumber();
543
+ }
544
+ getSyncedL1Timestamp() {
545
+ return this.blockSource.getL1Timestamp();
546
+ }
547
+ getCheckpointsData(query) {
548
+ return this.blockSource.getCheckpointsData(query);
549
+ }
550
+ async getBlockNumber(tip) {
551
+ if (tip === undefined || tip === 'proposed') {
552
+ return this.blockSource.getBlockNumber();
755
553
  }
756
- // Create prover node subsystem if enabled
757
- let proverNode;
758
- if (config.enableProverNode) {
759
- proverNode = await createProverNode(config, {
760
- ...deps.proverNodeDeps,
761
- telemetry,
762
- dateProvider,
763
- archiver,
764
- worldStateSynchronizer,
765
- p2pClient,
766
- epochCache,
767
- blobClient,
768
- keyStoreManager
769
- });
770
- if (!options.dontStartProverNode) {
771
- await proverNode.start();
772
- log.info(`Prover node subsystem started`);
773
- } else {
774
- log.info(`Prover node subsystem created but not started`);
775
- }
554
+ return await this.blockSource.getBlockNumber({
555
+ tag: tip
556
+ }) ?? BlockNumber.ZERO;
557
+ }
558
+ async getCheckpointNumber(tip) {
559
+ const tips = await this.blockSource.getL2Tips();
560
+ switch(tip){
561
+ case undefined:
562
+ case 'checkpointed':
563
+ return tips.checkpointed.checkpoint.number;
564
+ case 'proven':
565
+ return tips.proven.checkpoint.number;
566
+ case 'finalized':
567
+ return tips.finalized.checkpoint.number;
776
568
  }
777
- const globalVariableBuilder = new GlobalVariableBuilder({
778
- ...config,
779
- rollupVersion: BigInt(config.rollupVersion),
780
- l1GenesisTime,
781
- slotDuration: Number(slotDuration)
782
- });
783
- const node = new AztecNodeService(config, p2pClient, archiver, archiver, archiver, archiver, worldStateSynchronizer, sequencer, proverNode, slasherClient, validatorsSentinel, epochPruneWatcher, ethereumChain.chainInfo.id, config.rollupVersion, globalVariableBuilder, epochCache, packageVersion, proofVerifier, telemetry, log, blobClient, validatorClient, keyStoreManager, debugLogStore);
784
- return node;
569
+ }
570
+ getBlock(param, options = {}) {
571
+ return this.blockProvider.getBlock(param, options);
572
+ }
573
+ getBlockData(param) {
574
+ return this.blockProvider.getBlockData(param);
575
+ }
576
+ getBlocks(from, limit, options = {}) {
577
+ return this.blockProvider.getBlocks(from, limit, options);
578
+ }
579
+ getCheckpoint(param, options = {}) {
580
+ return this.blockProvider.getCheckpoint(param, options);
581
+ }
582
+ getCheckpoints(from, limit, options = {}) {
583
+ return this.blockProvider.getCheckpoints(from, limit, options);
785
584
  }
786
585
  /**
787
586
  * Returns the sequencer client instance.
@@ -789,6 +588,9 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
789
588
  */ getSequencer() {
790
589
  return this.sequencer;
791
590
  }
591
+ /** Test-only: returns the AutomineSequencer when wired via `useAutomineSequencer`. */ getAutomineSequencer() {
592
+ return this.automineSequencer;
593
+ }
792
594
  /** Returns the prover node subsystem, if enabled. */ getProverNode() {
793
595
  return this.proverNode;
794
596
  }
@@ -805,7 +607,7 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
805
607
  * Method to return the currently deployed L1 contract addresses.
806
608
  * @returns - The currently deployed L1 contract addresses.
807
609
  */ getL1ContractAddresses() {
808
- return Promise.resolve(this.config.l1Contracts);
610
+ return Promise.resolve(pickL1ContractAddresses(this.config));
809
611
  }
810
612
  getEncodedEnr() {
811
613
  return Promise.resolve(this.p2pClient.getEnr()?.encodeTxt());
@@ -823,14 +625,20 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
823
625
  return Promise.resolve(this.p2pClient.isReady() ?? false);
824
626
  }
825
627
  async getNodeInfo() {
826
- const [nodeVersion, rollupVersion, chainId, enr, contractAddresses, protocolContractAddresses] = await Promise.all([
628
+ const [nodeVersion, rollupVersion, chainId, enr, contractAddresses, protocolContractAddresses, l1Constants] = await Promise.all([
827
629
  this.getNodeVersion(),
828
630
  this.getVersion(),
829
631
  this.getChainId(),
830
632
  this.getEncodedEnr(),
831
633
  this.getL1ContractAddresses(),
832
- this.getProtocolContractAddresses()
634
+ this.getProtocolContractAddresses(),
635
+ this.blockSource.getL1Constants()
833
636
  ]);
637
+ // Gas limits a single tx may declare on this network, derived from network-wide constants only (the
638
+ // timetable's blocks-per-checkpoint and the network-minimum per-block multipliers) — never this node's
639
+ // local caps or configured multipliers, which can make the node stricter at block-building time but
640
+ // cannot define what the network accepts for relay. Clients read txsLimits to set fallback gas limits.
641
+ const maxTxGas = getNetworkTxGasLimits(this.config, l1Constants);
834
642
  const nodeInfo = {
835
643
  nodeVersion,
836
644
  l1ChainId: chainId,
@@ -838,71 +646,26 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
838
646
  enr,
839
647
  l1ContractAddresses: contractAddresses,
840
648
  protocolContractAddresses: protocolContractAddresses,
841
- realProofs: !!this.config.realProofs
649
+ realProofs: !!this.config.realProofs,
650
+ txsLimits: {
651
+ gas: {
652
+ daGas: maxTxGas.daGas,
653
+ l2Gas: maxTxGas.l2Gas
654
+ }
655
+ }
842
656
  };
843
657
  return nodeInfo;
844
658
  }
845
- /**
846
- * Get a block specified by its block number, block hash, or 'latest'.
847
- * @param block - The block parameter (block number, block hash, or 'latest').
848
- * @returns The requested block.
849
- */ async getBlock(block) {
850
- if (BlockHash.isBlockHash(block)) {
851
- return this.getBlockByHash(block);
852
- }
853
- const blockNumber = block === 'latest' ? await this.getBlockNumber() : block;
854
- if (blockNumber === BlockNumber.ZERO) {
855
- return this.buildInitialBlock();
856
- }
857
- return await this.blockSource.getL2Block(blockNumber);
858
- }
859
- /**
860
- * Get a block specified by its hash.
861
- * @param blockHash - The block hash being requested.
862
- * @returns The requested block.
863
- */ async getBlockByHash(blockHash) {
864
- const initialBlockHash = await this.#getInitialHeaderHash();
865
- if (blockHash.equals(initialBlockHash)) {
866
- return this.buildInitialBlock();
867
- }
868
- return await this.blockSource.getL2BlockByHash(blockHash);
869
- }
870
- buildInitialBlock() {
871
- const initialHeader = this.worldStateSynchronizer.getCommitted().getInitialHeader();
872
- return L2Block.empty(initialHeader);
873
- }
874
- /**
875
- * Get a block specified by its archive root.
876
- * @param archive - The archive root being requested.
877
- * @returns The requested block.
878
- */ async getBlockByArchive(archive) {
879
- return await this.blockSource.getL2BlockByArchive(archive);
880
- }
881
- /**
882
- * Method to request blocks. Will attempt to return all requested blocks but will return only those available.
883
- * @param from - The start of the range of blocks to return.
884
- * @param limit - The maximum number of blocks to obtain.
885
- * @returns The blocks requested.
886
- */ async getBlocks(from, limit) {
887
- return await this.blockSource.getBlocks(from, BlockNumber(limit)) ?? [];
659
+ async getCurrentMinFees() {
660
+ return await this.feeProvider.getCurrentMinFees();
888
661
  }
889
- async getCheckpoints(from, limit) {
890
- return await this.blockSource.getCheckpoints(from, limit) ?? [];
891
- }
892
- async getCheckpointedBlocks(from, limit) {
893
- return await this.blockSource.getCheckpointedBlocks(from, limit) ?? [];
894
- }
895
- getCheckpointsDataForEpoch(epochNumber) {
896
- return this.blockSource.getCheckpointsDataForEpoch(epochNumber);
897
- }
898
- /**
899
- * Method to fetch the current min L2 fees.
900
- * @returns The current min L2 fees.
901
- */ async getCurrentMinFees() {
902
- return await this.globalVariableBuilder.getCurrentMinFees();
662
+ /** Returns predicted min fees for the current slot and next N slots. */ async getPredictedMinFees(manaUsage) {
663
+ return await this.feeProvider.getPredictedMinFees(manaUsage);
903
664
  }
904
665
  async getMaxPriorityFees() {
905
- for await (const tx of this.p2pClient.iteratePendingTxs()){
666
+ for await (const tx of this.p2pClient.iteratePendingTxs({
667
+ includeProof: false
668
+ })){
906
669
  return tx.getGasSettings().maxPriorityFeesPerGas;
907
670
  }
908
671
  return GasFees.from({
@@ -911,21 +674,6 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
911
674
  });
912
675
  }
913
676
  /**
914
- * Method to fetch the latest block number synchronized by the node.
915
- * @returns The block number.
916
- */ async getBlockNumber() {
917
- return await this.blockSource.getBlockNumber();
918
- }
919
- async getProvenBlockNumber() {
920
- return await this.blockSource.getProvenBlockNumber();
921
- }
922
- async getCheckpointedBlockNumber() {
923
- return await this.blockSource.getCheckpointedL2BlockNumber();
924
- }
925
- getCheckpointNumber() {
926
- return this.blockSource.getCheckpointNumber();
927
- }
928
- /**
929
677
  * Method to fetch the version of the package.
930
678
  * @returns The node package version
931
679
  */ getNodeVersion() {
@@ -946,54 +694,18 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
946
694
  getContractClass(id) {
947
695
  return this.contractDataSource.getContractClass(id);
948
696
  }
949
- getContract(address) {
950
- return this.contractDataSource.getContract(address);
951
- }
952
- async getPrivateLogsByTags(tags, page, referenceBlock) {
953
- let upToBlockNumber;
954
- if (referenceBlock) {
955
- const initialBlockHash = await this.#getInitialHeaderHash();
956
- if (referenceBlock.equals(initialBlockHash)) {
957
- upToBlockNumber = BlockNumber(0);
958
- } else {
959
- const header = await this.blockSource.getBlockHeaderByHash(referenceBlock);
960
- if (!header) {
961
- throw new Error(`Block ${referenceBlock.toString()} not found in the node. This might indicate a reorg has occurred.`);
962
- }
963
- upToBlockNumber = header.globalVariables.blockNumber;
964
- }
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.`);
965
701
  }
966
- return this.logsSource.getPrivateLogsByTags(tags, page, upToBlockNumber);
967
- }
968
- async getPublicLogsByTagsFromContract(contractAddress, tags, page, referenceBlock) {
969
- let upToBlockNumber;
970
- if (referenceBlock) {
971
- const initialBlockHash = await this.#getInitialHeaderHash();
972
- if (referenceBlock.equals(initialBlockHash)) {
973
- upToBlockNumber = BlockNumber(0);
974
- } else {
975
- const header = await this.blockSource.getBlockHeaderByHash(referenceBlock);
976
- if (!header) {
977
- throw new Error(`Block ${referenceBlock.toString()} not found in the node. This might indicate a reorg has occurred.`);
978
- }
979
- upToBlockNumber = header.globalVariables.blockNumber;
980
- }
981
- }
982
- return this.logsSource.getPublicLogsByTagsFromContract(contractAddress, tags, page, upToBlockNumber);
702
+ return this.contractDataSource.getContract(address, blockData.header.globalVariables.timestamp);
983
703
  }
984
- /**
985
- * Gets public logs based on the provided filter.
986
- * @param filter - The filter to apply to the logs.
987
- * @returns The requested logs.
988
- */ getPublicLogs(filter) {
989
- return this.logsSource.getPublicLogs(filter);
704
+ getPrivateLogsByTags(query) {
705
+ return this.logsSource.getPrivateLogsByTags(query);
990
706
  }
991
- /**
992
- * Gets contract class logs based on the provided filter.
993
- * @param filter - The filter to apply to the logs.
994
- * @returns The requested logs.
995
- */ getContractClassLogs(filter) {
996
- return this.logsSource.getContractClassLogs(filter);
707
+ getPublicLogsByTags(query) {
708
+ return this.logsSource.getPublicLogsByTags(query);
997
709
  }
998
710
  /**
999
711
  * Method to submit a transaction to the p2p pool.
@@ -1013,34 +725,23 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
1013
725
  });
1014
726
  throw new Error(`Invalid tx: ${reason}`);
1015
727
  }
1016
- await this.p2pClient.sendTx(tx);
728
+ try {
729
+ await this.p2pClient.sendTx(tx);
730
+ } catch (err) {
731
+ this.metrics.receivedTx(timer.ms(), false);
732
+ this.log.warn(`Mempool rejected tx ${txHash}: ${err.message}`, {
733
+ txHash
734
+ });
735
+ throw err;
736
+ }
1017
737
  const duration = timer.ms();
1018
738
  this.metrics.receivedTx(duration, true);
1019
739
  this.log.info(`Received tx ${txHash} in ${duration}ms`, {
1020
740
  txHash
1021
741
  });
1022
742
  }
1023
- async getTxReceipt(txHash) {
1024
- // Check the tx pool status first. If the tx is known to the pool (pending or mined), we'll use that
1025
- // as a fallback if we don't find a settled receipt in the archiver.
1026
- const txPoolStatus = await this.p2pClient.getTxStatus(txHash);
1027
- const isKnownToPool = txPoolStatus === 'pending' || txPoolStatus === 'mined';
1028
- // Then get the actual tx from the archiver, which tracks every tx in a mined block.
1029
- const settledTxReceipt = await this.blockSource.getSettledTxReceipt(txHash);
1030
- let receipt;
1031
- if (settledTxReceipt) {
1032
- receipt = settledTxReceipt;
1033
- } else if (isKnownToPool) {
1034
- // If the tx is in the pool but not in the archiver, it's pending.
1035
- // This handles race conditions between archiver and p2p, where the archiver
1036
- // has pruned the block in which a tx was mined, but p2p has not caught up yet.
1037
- receipt = new TxReceipt(txHash, TxStatus.PENDING, undefined, undefined);
1038
- } else {
1039
- // Otherwise, if we don't know the tx, we consider it dropped.
1040
- receipt = new TxReceipt(txHash, TxStatus.DROPPED, undefined, 'Tx dropped by P2P node');
1041
- }
1042
- this.debugLogStore.decorateReceiptWithLogs(txHash.toString(), receipt);
1043
- return receipt;
743
+ getTxReceipt(txHash, options) {
744
+ return this.txReceiptBuilder.getTxReceipt(txHash, options);
1044
745
  }
1045
746
  getTxEffect(txHash) {
1046
747
  return this.blockSource.getTxEffect(txHash);
@@ -1049,11 +750,14 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
1049
750
  * Method to stop the aztec node.
1050
751
  */ async stop() {
1051
752
  this.log.info(`Stopping Aztec Node`);
1052
- await tryStop(this.validatorsSentinel);
1053
- await tryStop(this.epochPruneWatcher);
753
+ await this.stopStartedWatchers();
1054
754
  await tryStop(this.slasherClient);
1055
- await tryStop(this.proofVerifier);
755
+ await Promise.all([
756
+ tryStop(this.peerProofVerifier),
757
+ tryStop(this.rpcProofVerifier)
758
+ ]);
1056
759
  await tryStop(this.sequencer);
760
+ await tryStop(this.automineSequencer);
1057
761
  await tryStop(this.proverNode);
1058
762
  await tryStop(this.p2pClient);
1059
763
  await tryStop(this.worldStateSynchronizer);
@@ -1073,276 +777,105 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
1073
777
  * @param limit - The number of items to returns
1074
778
  * @param after - The last known pending tx. Used for pagination
1075
779
  * @returns - The pending txs.
1076
- */ getPendingTxs(limit, after) {
1077
- return this.p2pClient.getPendingTxs(limit, after);
780
+ */ getPendingTxs(limit, after, options) {
781
+ return this.p2pClient.getPendingTxs(limit, after, options);
1078
782
  }
1079
783
  getPendingTxCount() {
1080
784
  return this.p2pClient.getPendingTxCount();
1081
785
  }
786
+ getPeers(includePending) {
787
+ return this.p2pClient.getPeers(includePending);
788
+ }
789
+ getCheckpointAttestationsForSlot(slot, proposalPayloadHash) {
790
+ return this.p2pClient.getCheckpointAttestationsForSlot(slot, proposalPayloadHash);
791
+ }
792
+ getProposalsForSlot(slot) {
793
+ return this.p2pClient.getProposalsForSlot(slot);
794
+ }
1082
795
  /**
1083
- * Method to retrieve a single tx from the mempool or unfinalized chain.
796
+ * Method to retrieve a single tx from the mempool or unfinalized chain. The tx's proof is only loaded and returned
797
+ * when `includeProof` is set.
1084
798
  * @param txHash - The transaction hash to return.
799
+ * @param options - Options for the returned tx (eg whether to include its proof).
1085
800
  * @returns - The tx if it exists.
1086
- */ getTxByHash(txHash) {
1087
- return Promise.resolve(this.p2pClient.getTxByHashFromPool(txHash));
801
+ */ getTxByHash(txHash, options) {
802
+ return this.p2pClient.getTxByHashFromPool(txHash, {
803
+ includeProof: !!options?.includeProof
804
+ });
1088
805
  }
1089
806
  /**
1090
- * Method to retrieve txs from the mempool or unfinalized chain.
807
+ * Method to retrieve txs from the mempool or unfinalized chain. The txs' proofs are only loaded and returned when
808
+ * `includeProof` is set.
1091
809
  * @param txHash - The transaction hash to return.
810
+ * @param options - Options for the returned txs (eg whether to include their proofs).
1092
811
  * @returns - The txs if it exists.
1093
- */ async getTxsByHash(txHashes) {
1094
- return compactArray(await Promise.all(txHashes.map((txHash)=>this.getTxByHash(txHash))));
1095
- }
1096
- async findLeavesIndexes(referenceBlock, treeId, leafValues) {
1097
- const committedDb = await this.getWorldState(referenceBlock);
1098
- const maybeIndices = await committedDb.findLeafIndices(treeId, leafValues.map((x)=>x.toBuffer()));
1099
- // Filter out undefined values to query block numbers only for found leaves
1100
- const definedIndices = maybeIndices.filter((x)=>x !== undefined);
1101
- // Now we find the block numbers for the defined indices
1102
- const blockNumbers = await committedDb.getBlockNumbersForLeafIndices(treeId, definedIndices);
1103
- // Build a map from leaf index to block number
1104
- const indexToBlockNumber = new Map();
1105
- for(let i = 0; i < definedIndices.length; i++){
1106
- const blockNumber = blockNumbers[i];
1107
- if (blockNumber === undefined) {
1108
- throw new Error(`Block number is undefined for leaf index ${definedIndices[i]} in tree ${MerkleTreeId[treeId]}`);
1109
- }
1110
- indexToBlockNumber.set(definedIndices[i], blockNumber);
1111
- }
1112
- // Get unique block numbers in order to optimize num calls to getLeafValue function.
1113
- const uniqueBlockNumbers = [
1114
- ...new Set(indexToBlockNumber.values())
1115
- ];
1116
- // Now we obtain the block hashes from the archive tree (block number = leaf index in archive tree).
1117
- const blockHashes = await Promise.all(uniqueBlockNumbers.map((blockNumber)=>{
1118
- return committedDb.getLeafValue(MerkleTreeId.ARCHIVE, BigInt(blockNumber));
1119
- }));
1120
- // Build a map from block number to block hash
1121
- const blockNumberToHash = new Map();
1122
- for(let i = 0; i < uniqueBlockNumbers.length; i++){
1123
- const blockHash = blockHashes[i];
1124
- if (blockHash === undefined) {
1125
- throw new Error(`Block hash is undefined for block number ${uniqueBlockNumbers[i]}`);
1126
- }
1127
- blockNumberToHash.set(uniqueBlockNumbers[i], blockHash);
1128
- }
1129
- // Create DataInBlock objects by combining indices, blockNumbers and blockHashes and return them.
1130
- return maybeIndices.map((index)=>{
1131
- if (index === undefined) {
1132
- return undefined;
1133
- }
1134
- const blockNumber = indexToBlockNumber.get(index);
1135
- if (blockNumber === undefined) {
1136
- throw new Error(`Block number not found for leaf index ${index} in tree ${MerkleTreeId[treeId]}`);
1137
- }
1138
- const blockHash = blockNumberToHash.get(blockNumber);
1139
- if (blockHash === undefined) {
1140
- throw new Error(`Block hash not found for block number ${blockNumber}`);
1141
- }
1142
- return {
1143
- l2BlockNumber: blockNumber,
1144
- l2BlockHash: new BlockHash(blockHash),
1145
- data: index
1146
- };
812
+ */ async getTxsByHash(txHashes, options) {
813
+ const txs = await this.p2pClient.getTxsByHashFromPool(txHashes, {
814
+ includeProof: !!options?.includeProof
1147
815
  });
816
+ return compactArray(txs);
1148
817
  }
1149
- async getBlockHashMembershipWitness(referenceBlock, blockHash) {
1150
- // The Noir circuit checks the archive membership proof against `anchor_block_header.last_archive.root`,
1151
- // which is the archive tree root BEFORE the anchor block was added (i.e. the state after block N-1).
1152
- // So we need the world state at block N-1, not block N, to produce a sibling path matching that root.
1153
- const referenceBlockNumber = await this.resolveBlockNumber(referenceBlock);
1154
- const committedDb = await this.getWorldState(BlockNumber(referenceBlockNumber - 1));
1155
- const [pathAndIndex] = await committedDb.findSiblingPaths(MerkleTreeId.ARCHIVE, [
1156
- blockHash
1157
- ]);
1158
- return pathAndIndex === undefined ? undefined : MembershipWitness.fromSiblingPath(pathAndIndex.index, pathAndIndex.path);
818
+ findLeavesIndexes(referenceBlock, treeId, leafValues) {
819
+ return this.worldStateQueries.findLeavesIndexes(referenceBlock, treeId, leafValues);
1159
820
  }
1160
- async getNoteHashMembershipWitness(referenceBlock, noteHash) {
1161
- const committedDb = await this.getWorldState(referenceBlock);
1162
- const [pathAndIndex] = await committedDb.findSiblingPaths(MerkleTreeId.NOTE_HASH_TREE, [
1163
- noteHash
1164
- ]);
1165
- return pathAndIndex === undefined ? undefined : MembershipWitness.fromSiblingPath(pathAndIndex.index, pathAndIndex.path);
821
+ getBlockHashMembershipWitness(referenceBlock, blockHash) {
822
+ return this.worldStateQueries.getBlockHashMembershipWitness(referenceBlock, blockHash);
1166
823
  }
1167
- async getL1ToL2MessageMembershipWitness(referenceBlock, l1ToL2Message) {
1168
- const db = await this.getWorldState(referenceBlock);
1169
- const [witness] = await db.findSiblingPaths(MerkleTreeId.L1_TO_L2_MESSAGE_TREE, [
1170
- l1ToL2Message
1171
- ]);
1172
- if (!witness) {
1173
- return undefined;
1174
- }
1175
- // REFACTOR: Return a MembershipWitness object
1176
- return [
1177
- witness.index,
1178
- witness.path
1179
- ];
824
+ getNoteHashMembershipWitness(referenceBlock, noteHash) {
825
+ return this.worldStateQueries.getNoteHashMembershipWitness(referenceBlock, noteHash);
1180
826
  }
1181
- async getL1ToL2MessageCheckpoint(l1ToL2Message) {
1182
- const messageIndex = await this.l1ToL2MessageSource.getL1ToL2MessageIndex(l1ToL2Message);
1183
- return messageIndex ? InboxLeaf.checkpointNumberFromIndex(messageIndex) : undefined;
827
+ getL1ToL2MessageMembershipWitness(referenceBlock, l1ToL2Message) {
828
+ return this.worldStateQueries.getL1ToL2MessageMembershipWitness(referenceBlock, l1ToL2Message);
1184
829
  }
1185
- /**
1186
- * Returns whether an L1 to L2 message is synced by archiver and if it's ready to be included in a block.
1187
- * @param l1ToL2Message - The L1 to L2 message to check.
1188
- * @returns Whether the message is synced and ready to be included in a block.
1189
- */ async isL1ToL2MessageSynced(l1ToL2Message) {
1190
- const messageIndex = await this.l1ToL2MessageSource.getL1ToL2MessageIndex(l1ToL2Message);
1191
- return messageIndex !== undefined;
830
+ getL1ToL2MessageCheckpoint(l1ToL2Message) {
831
+ return this.worldStateQueries.getL1ToL2MessageCheckpoint(l1ToL2Message);
1192
832
  }
1193
833
  /**
1194
834
  * Returns all the L2 to L1 messages in an epoch.
835
+ *
836
+ * @deprecated Use {@link getL2ToL1MembershipWitness} to get an L2-to-L1 message witness directly.
837
+ *
1195
838
  * @param epoch - The epoch at which to get the data.
1196
839
  * @returns The L2 to L1 messages (empty array if the epoch is not found).
1197
- */ async getL2ToL1Messages(epoch) {
1198
- // Assumes `getCheckpointedBlocksForEpoch` returns blocks in ascending order of block number.
1199
- const checkpointedBlocks = await this.blockSource.getCheckpointedBlocksForEpoch(epoch);
1200
- const blocksInCheckpoints = chunkBy(checkpointedBlocks, (cb)=>cb.block.header.globalVariables.slotNumber).map((group)=>group.map((cb)=>cb.block));
1201
- return blocksInCheckpoints.map((blocks)=>blocks.map((block)=>block.body.txEffects.map((txEffect)=>txEffect.l2ToL1Msgs)));
1202
- }
1203
- async getNullifierMembershipWitness(referenceBlock, nullifier) {
1204
- const db = await this.getWorldState(referenceBlock);
1205
- const [witness] = await db.findSiblingPaths(MerkleTreeId.NULLIFIER_TREE, [
1206
- nullifier.toBuffer()
1207
- ]);
1208
- if (!witness) {
1209
- return undefined;
1210
- }
1211
- const { index, path } = witness;
1212
- const leafPreimage = await db.getLeafPreimage(MerkleTreeId.NULLIFIER_TREE, index);
1213
- if (!leafPreimage) {
1214
- return undefined;
1215
- }
1216
- return new NullifierMembershipWitness(index, leafPreimage, path);
840
+ */ getL2ToL1Messages(epoch) {
841
+ return this.worldStateQueries.getL2ToL1Messages(epoch);
1217
842
  }
1218
- async getLowNullifierMembershipWitness(referenceBlock, nullifier) {
1219
- const committedDb = await this.getWorldState(referenceBlock);
1220
- const findResult = await committedDb.getPreviousValueIndex(MerkleTreeId.NULLIFIER_TREE, nullifier.toBigInt());
1221
- if (!findResult) {
1222
- return undefined;
1223
- }
1224
- const { index, alreadyPresent } = findResult;
1225
- if (alreadyPresent) {
1226
- throw new Error(`Cannot prove nullifier non-inclusion: nullifier ${nullifier.toBigInt()} already exists in the tree`);
1227
- }
1228
- const preimageData = await committedDb.getLeafPreimage(MerkleTreeId.NULLIFIER_TREE, index);
1229
- const siblingPath = await committedDb.getSiblingPath(MerkleTreeId.NULLIFIER_TREE, BigInt(index));
1230
- return new NullifierMembershipWitness(BigInt(index), preimageData, siblingPath);
1231
- }
1232
- async getPublicDataWitness(referenceBlock, leafSlot) {
1233
- const committedDb = await this.getWorldState(referenceBlock);
1234
- const lowLeafResult = await committedDb.getPreviousValueIndex(MerkleTreeId.PUBLIC_DATA_TREE, leafSlot.toBigInt());
1235
- if (!lowLeafResult) {
1236
- return undefined;
1237
- } else {
1238
- const preimage = await committedDb.getLeafPreimage(MerkleTreeId.PUBLIC_DATA_TREE, lowLeafResult.index);
1239
- const path = await committedDb.getSiblingPath(MerkleTreeId.PUBLIC_DATA_TREE, lowLeafResult.index);
1240
- return new PublicDataWitness(lowLeafResult.index, preimage, path);
1241
- }
843
+ /**
844
+ * Returns the L2-to-L1 membership witness for a message in `txHash`. Passthrough to the
845
+ * archiver's locally-cached resolver — see {@link Archiver.getL2ToL1MembershipWitness}.
846
+ */ getL2ToL1MembershipWitness(txHash, message, messageIndexInTx) {
847
+ return this.worldStateQueries.getL2ToL1MembershipWitness(txHash, message, messageIndexInTx);
1242
848
  }
1243
- async getPublicStorageAt(referenceBlock, contract, slot) {
1244
- const committedDb = await this.getWorldState(referenceBlock);
1245
- const leafSlot = await computePublicDataTreeLeafSlot(contract, slot);
1246
- const lowLeafResult = await committedDb.getPreviousValueIndex(MerkleTreeId.PUBLIC_DATA_TREE, leafSlot.toBigInt());
1247
- if (!lowLeafResult || !lowLeafResult.alreadyPresent) {
1248
- return Fr.ZERO;
1249
- }
1250
- const preimage = await committedDb.getLeafPreimage(MerkleTreeId.PUBLIC_DATA_TREE, lowLeafResult.index);
1251
- return preimage.leaf.value;
1252
- }
1253
- async getBlockHeader(block = 'latest') {
1254
- if (BlockHash.isBlockHash(block)) {
1255
- const initialBlockHash = await this.#getInitialHeaderHash();
1256
- if (block.equals(initialBlockHash)) {
1257
- // Block source doesn't handle initial header so we need to handle the case separately.
1258
- return this.worldStateSynchronizer.getCommitted().getInitialHeader();
1259
- }
1260
- return this.blockSource.getBlockHeaderByHash(block);
1261
- } else {
1262
- // Block source doesn't handle initial header so we need to handle the case separately.
1263
- const blockNumber = block === 'latest' ? await this.getBlockNumber() : block;
1264
- if (blockNumber === BlockNumber.ZERO) {
1265
- return this.worldStateSynchronizer.getCommitted().getInitialHeader();
1266
- }
1267
- return this.blockSource.getBlockHeader(block);
1268
- }
849
+ getNullifierMembershipWitness(referenceBlock, nullifier) {
850
+ return this.worldStateQueries.getNullifierMembershipWitness(referenceBlock, nullifier);
1269
851
  }
1270
- /**
1271
- * Get a block header specified by its archive root.
1272
- * @param archive - The archive root being requested.
1273
- * @returns The requested block header.
1274
- */ async getBlockHeaderByArchive(archive) {
1275
- return await this.blockSource.getBlockHeaderByArchive(archive);
852
+ getLowNullifierMembershipWitness(referenceBlock, nullifier) {
853
+ return this.worldStateQueries.getLowNullifierMembershipWitness(referenceBlock, nullifier);
1276
854
  }
1277
- getBlockData(number) {
1278
- return this.blockSource.getBlockData(number);
855
+ getPublicDataWitness(referenceBlock, leafSlot) {
856
+ return this.worldStateQueries.getPublicDataWitness(referenceBlock, leafSlot);
1279
857
  }
1280
- getBlockDataByArchive(archive) {
1281
- return this.blockSource.getBlockDataByArchive(archive);
858
+ getPublicStorageAt(referenceBlock, contract, slot) {
859
+ return this.worldStateQueries.getPublicStorageAt(referenceBlock, contract, slot);
1282
860
  }
1283
861
  /**
1284
862
  * Simulates the public part of a transaction with the current state.
1285
863
  * @param tx - The transaction to simulate.
1286
- **/ async simulatePublicCalls(tx, skipFeeEnforcement = false) {
1287
- // Check total gas limit for simulation
1288
- const gasSettings = tx.data.constants.txContext.gasSettings;
1289
- const txGasLimit = gasSettings.gasLimits.l2Gas;
1290
- const teardownGasLimit = gasSettings.teardownGasLimits.l2Gas;
1291
- if (txGasLimit + teardownGasLimit > this.config.rpcSimulatePublicMaxGasLimit) {
1292
- throw new BadRequestError(`Transaction total gas limit ${txGasLimit + teardownGasLimit} (${txGasLimit} + ${teardownGasLimit}) exceeds maximum gas limit ${this.config.rpcSimulatePublicMaxGasLimit} for simulation`);
1293
- }
1294
- const txHash = tx.getTxHash();
1295
- const latestBlockNumber = await this.blockSource.getBlockNumber();
1296
- const blockNumber = BlockNumber.add(latestBlockNumber, 1);
1297
- // If sequencer is not initialized, we just set these values to zero for simulation.
1298
- const coinbase = EthAddress.ZERO;
1299
- const feeRecipient = AztecAddress.ZERO;
1300
- const newGlobalVariables = await this.globalVariableBuilder.buildGlobalVariables(blockNumber, coinbase, feeRecipient);
1301
- const publicProcessorFactory = new PublicProcessorFactory(this.contractDataSource, new DateProvider(), this.telemetry, this.log.getBindings());
1302
- this.log.verbose(`Simulating public calls for tx ${txHash}`, {
1303
- globalVariables: newGlobalVariables.toInspect(),
1304
- txHash,
1305
- blockNumber
1306
- });
1307
- // Ensure world-state has caught up with the latest block we loaded from the archiver
1308
- await this.worldStateSynchronizer.syncImmediate(latestBlockNumber);
1309
- const merkleTreeFork = await this.worldStateSynchronizer.fork();
1310
- try {
1311
- const config = PublicSimulatorConfig.from({
1312
- skipFeeEnforcement,
1313
- collectDebugLogs: true,
1314
- collectHints: false,
1315
- collectCallMetadata: true,
1316
- collectStatistics: false,
1317
- collectionLimits: CollectionLimitsConfig.from({
1318
- maxDebugLogMemoryReads: this.config.rpcSimulatePublicMaxDebugLogMemoryReads
1319
- })
1320
- });
1321
- const processor = publicProcessorFactory.create(merkleTreeFork, newGlobalVariables, config);
1322
- // REFACTOR: Consider merging ProcessReturnValues into ProcessedTx
1323
- const [processedTxs, failedTxs, _usedTxs, returns, debugLogs] = await processor.process([
1324
- tx
1325
- ]);
1326
- // REFACTOR: Consider returning the error rather than throwing
1327
- if (failedTxs.length) {
1328
- this.log.warn(`Simulated tx ${txHash} fails: ${failedTxs[0].error}`, {
1329
- txHash
1330
- });
1331
- throw failedTxs[0].error;
1332
- }
1333
- const [processedTx] = processedTxs;
1334
- return new PublicSimulationOutput(processedTx.revertReason, processedTx.globalVariables, processedTx.txEffect, returns, processedTx.gasUsed, debugLogs);
1335
- } finally{
1336
- await merkleTreeFork.close();
1337
- }
864
+ * @param skipFeeEnforcement - If true, fee enforcement is skipped.
865
+ * @param overrides - Optional pre-simulation overrides applied to the ephemeral fork and contract DB.
866
+ **/ simulatePublicCalls(tx, skipFeeEnforcement = false, overrides) {
867
+ return this.nodePublicCallsSimulator.simulate(tx, skipFeeEnforcement, overrides);
1338
868
  }
1339
869
  async isValidTx(tx, { isSimulation, skipFeeEnforcement } = {}) {
1340
870
  const db = this.worldStateSynchronizer.getCommitted();
1341
- const verifier = isSimulation ? undefined : this.proofVerifier;
871
+ const verifier = isSimulation ? undefined : this.rpcProofVerifier;
1342
872
  // We accept transactions if they are not expired by the next slot (checked based on the ExpirationTimestamp field)
1343
873
  const { ts: nextSlotTimestamp } = this.epochCache.getEpochAndSlotInNextL1Slot();
1344
874
  const blockNumber = BlockNumber(await this.blockSource.getBlockNumber() + 1);
1345
875
  const l1Constants = await this.blockSource.getL1Constants();
876
+ // Enforce the same network admission limit the node advertises in getNodeInfo (network-wide, not this
877
+ // node's local caps), so a tx the wallet sized against txsLimits is not rejected here.
878
+ const networkTxGasLimits = getNetworkTxGasLimits(this.config, l1Constants);
1346
879
  const validator = createTxValidatorForAcceptingTxsOverRPC(db, this.contractDataSource, verifier, {
1347
880
  timestamp: nextSlotTimestamp,
1348
881
  blockNumber,
@@ -1354,10 +887,10 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
1354
887
  ],
1355
888
  gasFees: await this.getCurrentMinFees(),
1356
889
  skipFeeEnforcement,
890
+ isSimulation,
1357
891
  txsPermitted: !this.config.disableTransactions,
1358
- rollupManaLimit: l1Constants.rollupManaLimit,
1359
- maxBlockL2Gas: this.config.validateMaxL2BlockGas,
1360
- maxBlockDAGas: this.config.validateMaxDABlockGas
892
+ maxTxL2Gas: networkTxGasLimits.l2Gas,
893
+ maxTxDAGas: networkTxGasLimits.daGas
1361
894
  }, this.log.getBindings());
1362
895
  return await validator.validateTx(tx);
1363
896
  }
@@ -1371,7 +904,20 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
1371
904
  ...this.config,
1372
905
  ...config
1373
906
  };
1374
- this.sequencer?.updateConfig(config);
907
+ // If the sequencer is currently paused via pauseSequencer(), record the caller's desired
908
+ // minTxsPerBlock as the restore value (so resumeSequencer applies it) and keep the freeze
909
+ // (MAX_SAFE_INTEGER) applied to the underlying sequencer. Without this guard, forwarding
910
+ // the new minTxsPerBlock to the sequencer would silently unpause block production while
911
+ // pauseSequencer() still considers it paused.
912
+ const sequencerUpdate = {
913
+ ...config
914
+ };
915
+ if (this.sequencerPausedMinTxsPerBlock !== undefined && sequencerUpdate.minTxsPerBlock !== undefined) {
916
+ this.sequencerPausedMinTxsPerBlock = sequencerUpdate.minTxsPerBlock;
917
+ delete sequencerUpdate.minTxsPerBlock;
918
+ }
919
+ this.sequencer?.updateConfig(sequencerUpdate);
920
+ this.automineSequencer?.updateConfig(sequencerUpdate);
1375
921
  this.slasherClient?.updateConfig(config);
1376
922
  this.validatorsSentinel?.updateConfig(config);
1377
923
  await this.p2pClient.updateP2PConfig(config);
@@ -1380,7 +926,18 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
1380
926
  archiver.updateConfig(config);
1381
927
  }
1382
928
  if (newConfig.realProofs !== this.config.realProofs) {
1383
- this.proofVerifier = config.realProofs ? await BBCircuitVerifier.new(newConfig) : new TestCircuitVerifier();
929
+ await Promise.all([
930
+ tryStop(this.peerProofVerifier),
931
+ tryStop(this.rpcProofVerifier)
932
+ ]);
933
+ if (newConfig.realProofs) {
934
+ this.peerProofVerifier = await BatchChonkVerifier.new(newConfig, newConfig.bbChonkVerifyMaxBatch, 'peer');
935
+ const rpcVerifier = await BBCircuitVerifier.new(newConfig);
936
+ this.rpcProofVerifier = new QueuedIVCVerifier(rpcVerifier, newConfig.numConcurrentIVCVerifiers);
937
+ } else {
938
+ this.peerProofVerifier = new TestCircuitVerifier();
939
+ this.rpcProofVerifier = new TestCircuitVerifier();
940
+ }
1384
941
  }
1385
942
  this.config = newConfig;
1386
943
  }
@@ -1389,7 +946,7 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
1389
946
  classRegistry: ProtocolContractAddress.ContractClassRegistry,
1390
947
  feeJuice: ProtocolContractAddress.FeeJuice,
1391
948
  instanceRegistry: ProtocolContractAddress.ContractInstanceRegistry,
1392
- multiCallEntrypoint: ProtocolContractAddress.MultiCallEntrypoint
949
+ multiCallEntrypoint: STANDARD_MULTI_CALL_ENTRYPOINT_ADDRESS
1393
950
  });
1394
951
  }
1395
952
  registerContractFunctionSignatures(signatures) {
@@ -1440,7 +997,7 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
1440
997
  });
1441
998
  return Promise.resolve();
1442
999
  }
1443
- async rollbackTo(targetBlock, force) {
1000
+ async rollbackTo(targetBlock, force, resumeSync = true) {
1444
1001
  const archiver = this.blockSource;
1445
1002
  if (!('rollbackTo' in archiver)) {
1446
1003
  throw new Error('Archiver implementation does not support rollbacks.');
@@ -1468,9 +1025,13 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
1468
1025
  this.log.error(`Error during rollback`, err);
1469
1026
  throw err;
1470
1027
  } finally{
1471
- this.log.info(`Resuming world state and archiver sync.`);
1472
- this.worldStateSynchronizer.resumeSync();
1473
- archiver.resume();
1028
+ if (resumeSync) {
1029
+ this.log.info(`Resuming world state and archiver sync.`);
1030
+ this.worldStateSynchronizer.resumeSync();
1031
+ archiver.resume();
1032
+ } else {
1033
+ this.log.info(`Sync left paused after rollback (resumeSync=false).`);
1034
+ }
1474
1035
  }
1475
1036
  }
1476
1037
  async pauseSync() {
@@ -1484,18 +1045,51 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
1484
1045
  this.blockSource.resume();
1485
1046
  return Promise.resolve();
1486
1047
  }
1487
- getSlashPayloads() {
1488
- if (!this.slasherClient) {
1489
- throw new Error(`Slasher client not enabled`);
1048
+ pauseSequencer() {
1049
+ if (this.automineSequencer) {
1050
+ this.automineSequencer.pause();
1051
+ return Promise.resolve();
1052
+ }
1053
+ if (this.sequencer) {
1054
+ if (this.sequencerPausedMinTxsPerBlock === undefined) {
1055
+ this.sequencerPausedMinTxsPerBlock = this.sequencer.getSequencer().getConfig().minTxsPerBlock ?? 0;
1056
+ this.sequencer.updateConfig({
1057
+ minTxsPerBlock: Number.MAX_SAFE_INTEGER
1058
+ });
1059
+ this.log.info(`Sequencer paused (minTxsPerBlock set to MAX_SAFE_INTEGER)`, {
1060
+ previousMinTxsPerBlock: this.sequencerPausedMinTxsPerBlock
1061
+ });
1062
+ }
1063
+ return Promise.resolve();
1490
1064
  }
1491
- return this.slasherClient.getSlashPayloads();
1065
+ throw new BadRequestError('Cannot pause sequencer: no sequencer is running');
1066
+ }
1067
+ resumeSequencer() {
1068
+ if (this.automineSequencer) {
1069
+ this.automineSequencer.resume();
1070
+ return Promise.resolve();
1071
+ }
1072
+ if (this.sequencer) {
1073
+ if (this.sequencerPausedMinTxsPerBlock !== undefined) {
1074
+ const restored = this.sequencerPausedMinTxsPerBlock;
1075
+ this.sequencerPausedMinTxsPerBlock = undefined;
1076
+ this.sequencer.updateConfig({
1077
+ minTxsPerBlock: restored
1078
+ });
1079
+ this.log.info(`Sequencer resumed (minTxsPerBlock restored)`, {
1080
+ minTxsPerBlock: restored
1081
+ });
1082
+ }
1083
+ return Promise.resolve();
1084
+ }
1085
+ throw new BadRequestError('Cannot resume sequencer: no sequencer is running');
1492
1086
  }
1493
1087
  getSlashOffenses(round) {
1494
1088
  if (!this.slasherClient) {
1495
1089
  throw new Error(`Slasher client not enabled`);
1496
1090
  }
1497
1091
  if (round === 'all') {
1498
- return this.slasherClient.getPendingOffenses();
1092
+ return this.slasherClient.getOffenses();
1499
1093
  } else {
1500
1094
  return this.slasherClient.gatherOffensesForRound(round === 'current' ? undefined : BigInt(round));
1501
1095
  }
@@ -1567,81 +1161,60 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
1567
1161
  this.keyStoreManager = newManager;
1568
1162
  this.log.info('Keystore reloaded: coinbase, feeRecipient, and attester keys updated');
1569
1163
  }
1570
- #getInitialHeaderHash() {
1571
- if (!this.initialHeaderHashPromise) {
1572
- this.initialHeaderHashPromise = this.worldStateSynchronizer.getCommitted().getInitialHeader().hash();
1573
- }
1574
- return this.initialHeaderHashPromise;
1575
- }
1576
- /**
1577
- * Returns an instance of MerkleTreeOperations having first ensured the world state is fully synched
1578
- * @param block - The block parameter (block number, block hash, or 'latest') at which to get the data.
1579
- * @returns An instance of a committed MerkleTreeOperations
1580
- */ async getWorldState(block) {
1581
- let blockSyncedTo = BlockNumber.ZERO;
1164
+ async mineBlock() {
1165
+ if (this.automineSequencer) {
1166
+ await this.automineSequencer.buildEmptyBlock();
1167
+ return;
1168
+ }
1169
+ if (!this.sequencer) {
1170
+ throw new BadRequestError('Cannot mine block: no sequencer is running');
1171
+ }
1172
+ const currentBlockNumber = await this.getBlockNumber();
1173
+ // Use slot duration + 50% buffer as the timeout so this works on running networks too
1174
+ const { slotDuration } = await this.blockSource.getL1Constants();
1175
+ const timeoutSeconds = Math.ceil(slotDuration * 1.5);
1176
+ // Temporarily set minTxsPerBlock to 0 so the sequencer produces a block even with no txs
1177
+ const originalMinTxsPerBlock = this.sequencer.getSequencer().getConfig().minTxsPerBlock;
1178
+ this.sequencer.updateConfig({
1179
+ minTxsPerBlock: 0
1180
+ });
1582
1181
  try {
1583
- // Attempt to sync the world state if necessary
1584
- blockSyncedTo = await this.#syncWorldState();
1585
- } catch (err) {
1586
- this.log.error(`Error getting world state: ${err}`);
1587
- }
1588
- if (block === 'latest') {
1589
- this.log.debug(`Using committed db for block 'latest', world state synced upto ${blockSyncedTo}`);
1590
- return this.worldStateSynchronizer.getCommitted();
1591
- }
1592
- // Get the block number, either directly from the parameter or by quering the archiver with the block hash
1593
- let blockNumber;
1594
- if (BlockHash.isBlockHash(block)) {
1595
- const initialBlockHash = await this.#getInitialHeaderHash();
1596
- if (block.equals(initialBlockHash)) {
1597
- // Block source doesn't handle initial header so we need to handle the case separately.
1598
- return this.worldStateSynchronizer.getSnapshot(BlockNumber.ZERO);
1599
- }
1600
- const header = await this.blockSource.getBlockHeaderByHash(block);
1601
- if (!header) {
1602
- throw new Error(`Block hash ${block.toString()} not found when querying world state. If the node API has been queried with anchor block hash possibly a reorg has occurred.`);
1603
- }
1604
- blockNumber = header.getBlockNumber();
1605
- } else {
1606
- blockNumber = block;
1607
- }
1608
- // Check it's within world state sync range
1609
- if (blockNumber > blockSyncedTo) {
1610
- throw new Error(`Queried block ${block} not yet synced by the node (node is synced upto ${blockSyncedTo}).`);
1182
+ // Trigger the sequencer to produce a block immediately
1183
+ void this.sequencer.trigger();
1184
+ // Wait for the new L2 block to appear
1185
+ await retryUntil(async ()=>{
1186
+ const newBlockNumber = await this.getBlockNumber();
1187
+ return newBlockNumber > currentBlockNumber ? true : undefined;
1188
+ }, 'mineBlock', timeoutSeconds, 0.1);
1189
+ } finally{
1190
+ this.sequencer.updateConfig({
1191
+ minTxsPerBlock: originalMinTxsPerBlock
1192
+ });
1611
1193
  }
1612
- this.log.debug(`Using snapshot for block ${blockNumber}, world state synced upto ${blockSyncedTo}`);
1613
- const snapshot = this.worldStateSynchronizer.getSnapshot(blockNumber);
1614
- // Double-check world-state synced to the same block hash as was requested
1615
- if (BlockHash.isBlockHash(block)) {
1616
- const blockHash = await snapshot.getLeafValue(MerkleTreeId.ARCHIVE, BigInt(blockNumber));
1617
- if (!blockHash || !new BlockHash(blockHash).equals(block)) {
1618
- throw new Error(`Block hash ${block.toString()} not found in world state at block number ${blockNumber}. If the node API has been queried with anchor block hash possibly a reorg has occurred.`);
1619
- }
1194
+ }
1195
+ async prove(upToCheckpoint) {
1196
+ if (!this.automineSequencer) {
1197
+ throw new BadRequestError('Cannot prove checkpoint: no automine sequencer is running');
1620
1198
  }
1621
- return snapshot;
1199
+ return await this.automineSequencer.prove(upToCheckpoint);
1622
1200
  }
1623
- /** Resolves a block parameter to a block number. */ async resolveBlockNumber(block) {
1624
- if (block === 'latest') {
1625
- return BlockNumber(await this.blockSource.getBlockNumber());
1201
+ async warpL2TimeAtLeastTo(targetTimestamp) {
1202
+ if (!this.automineSequencer) {
1203
+ throw new BadRequestError('Cannot warp L2 time: no automine sequencer is running');
1626
1204
  }
1627
- if (BlockHash.isBlockHash(block)) {
1628
- const initialBlockHash = await this.#getInitialHeaderHash();
1629
- if (block.equals(initialBlockHash)) {
1630
- return BlockNumber.ZERO;
1631
- }
1632
- const header = await this.blockSource.getBlockHeaderByHash(block);
1633
- if (!header) {
1634
- throw new Error(`Block hash ${block.toString()} not found.`);
1635
- }
1636
- return header.getBlockNumber();
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');
1637
1210
  }
1638
- return block;
1211
+ await this.automineSequencer.warpBy(duration);
1639
1212
  }
1640
1213
  /**
1641
- * Ensure we fully sync the world state
1642
- * @returns A promise that fulfils once the world state is synced
1643
- */ async #syncWorldState() {
1644
- const blockSourceHeight = await this.blockSource.getBlockNumber();
1645
- return await this.worldStateSynchronizer.syncImmediate(blockSourceHeight);
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);
1646
1219
  }
1647
1220
  }