@aztec/aztec-node 5.0.0-private.20260319 → 6.0.0-nightly.20260603

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 (37) 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 +7 -4
  5. package/dest/aztec-node/config.d.ts.map +1 -1
  6. package/dest/aztec-node/config.js +5 -5
  7. package/dest/aztec-node/public_data_overrides.d.ts +13 -0
  8. package/dest/aztec-node/public_data_overrides.d.ts.map +1 -0
  9. package/dest/aztec-node/public_data_overrides.js +21 -0
  10. package/dest/aztec-node/server.d.ts +55 -93
  11. package/dest/aztec-node/server.d.ts.map +1 -1
  12. package/dest/aztec-node/server.js +906 -468
  13. package/dest/sentinel/config.d.ts +3 -2
  14. package/dest/sentinel/config.d.ts.map +1 -1
  15. package/dest/sentinel/config.js +15 -5
  16. package/dest/sentinel/factory.d.ts +4 -2
  17. package/dest/sentinel/factory.d.ts.map +1 -1
  18. package/dest/sentinel/factory.js +4 -4
  19. package/dest/sentinel/sentinel.d.ts +133 -9
  20. package/dest/sentinel/sentinel.d.ts.map +1 -1
  21. package/dest/sentinel/sentinel.js +212 -70
  22. package/dest/sentinel/store.d.ts +8 -8
  23. package/dest/sentinel/store.d.ts.map +1 -1
  24. package/dest/sentinel/store.js +25 -17
  25. package/dest/test/index.d.ts +3 -3
  26. package/dest/test/index.d.ts.map +1 -1
  27. package/package.json +27 -26
  28. package/src/aztec-node/block_response_helpers.ts +161 -0
  29. package/src/aztec-node/config.ts +11 -7
  30. package/src/aztec-node/public_data_overrides.ts +35 -0
  31. package/src/aztec-node/server.ts +974 -596
  32. package/src/sentinel/README.md +103 -0
  33. package/src/sentinel/config.ts +18 -6
  34. package/src/sentinel/factory.ts +7 -4
  35. package/src/sentinel/sentinel.ts +267 -82
  36. package/src/sentinel/store.ts +26 -18
  37. package/src/test/index.ts +2 -2
@@ -1,3 +1,68 @@
1
+ function _ts_add_disposable_resource(env, value, async) {
2
+ if (value !== null && value !== void 0) {
3
+ if (typeof value !== "object" && typeof value !== "function") throw new TypeError("Object expected.");
4
+ var dispose, inner;
5
+ if (async) {
6
+ if (!Symbol.asyncDispose) throw new TypeError("Symbol.asyncDispose is not defined.");
7
+ dispose = value[Symbol.asyncDispose];
8
+ }
9
+ if (dispose === void 0) {
10
+ if (!Symbol.dispose) throw new TypeError("Symbol.dispose is not defined.");
11
+ dispose = value[Symbol.dispose];
12
+ if (async) inner = dispose;
13
+ }
14
+ if (typeof dispose !== "function") throw new TypeError("Object not disposable.");
15
+ if (inner) dispose = function() {
16
+ try {
17
+ inner.call(this);
18
+ } catch (e) {
19
+ return Promise.reject(e);
20
+ }
21
+ };
22
+ env.stack.push({
23
+ value: value,
24
+ dispose: dispose,
25
+ async: async
26
+ });
27
+ } else if (async) {
28
+ env.stack.push({
29
+ async: true
30
+ });
31
+ }
32
+ return value;
33
+ }
34
+ function _ts_dispose_resources(env) {
35
+ var _SuppressedError = typeof SuppressedError === "function" ? SuppressedError : function(error, suppressed, message) {
36
+ var e = new Error(message);
37
+ return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
38
+ };
39
+ return (_ts_dispose_resources = function _ts_dispose_resources(env) {
40
+ function fail(e) {
41
+ env.error = env.hasError ? new _SuppressedError(e, env.error, "An error was suppressed during disposal.") : e;
42
+ env.hasError = true;
43
+ }
44
+ var r, s = 0;
45
+ function next() {
46
+ while(r = env.stack.pop()){
47
+ try {
48
+ if (!r.async && s === 1) return s = 0, env.stack.push(r), Promise.resolve().then(next);
49
+ if (r.dispose) {
50
+ var result = r.dispose.call(r.value);
51
+ if (r.async) return s |= 2, Promise.resolve(result).then(next, function(e) {
52
+ fail(e);
53
+ return next();
54
+ });
55
+ } else s |= 1;
56
+ } catch (e) {
57
+ fail(e);
58
+ }
59
+ }
60
+ if (s === 1) return env.hasError ? Promise.reject(env.error) : Promise.resolve();
61
+ if (env.hasError) throw env.error;
62
+ }
63
+ return next();
64
+ })(env);
65
+ }
1
66
  function applyDecs2203RFactory() {
2
67
  function createAddInitializerMethod(initializers, decoratorFinishedRef) {
3
68
  return function addInitializer(initializer) {
@@ -371,23 +436,27 @@ function _apply_decs_2203_r(targetClass, memberDecs, classDecs, parentClass) {
371
436
  return (_apply_decs_2203_r = applyDecs2203RFactory())(targetClass, memberDecs, classDecs, parentClass);
372
437
  }
373
438
  var _dec, _initProto;
374
- import { createArchiver } from '@aztec/archiver';
375
- import { BBCircuitVerifier, QueuedIVCVerifier, TestCircuitVerifier } from '@aztec/bb-prover';
439
+ import { L1ToL2MessagesNotReadyError, createArchiver } from '@aztec/archiver';
440
+ import { BBCircuitVerifier, BatchChonkVerifier, QueuedIVCVerifier } from '@aztec/bb-prover';
441
+ import { TestCircuitVerifier } from '@aztec/bb-prover/test';
376
442
  import { createBlobClientWithFileStores } from '@aztec/blob-client/client';
377
443
  import { Blob } from '@aztec/blob-lib';
378
444
  import { EpochCache } from '@aztec/epoch-cache';
379
445
  import { createEthereumChain } from '@aztec/ethereum/chain';
380
446
  import { getPublicClient, makeL1HttpTransport } from '@aztec/ethereum/client';
381
447
  import { RegistryContract, RollupContract } from '@aztec/ethereum/contracts';
382
- import { BlockNumber } from '@aztec/foundation/branded-types';
448
+ import { pickL1ContractAddresses } from '@aztec/ethereum/l1-contract-addresses';
449
+ import { BlockNumber, CheckpointNumber } from '@aztec/foundation/branded-types';
383
450
  import { chunkBy, compactArray, pick, unique } from '@aztec/foundation/collection';
384
451
  import { Fr } from '@aztec/foundation/curves/bn254';
385
452
  import { EthAddress } from '@aztec/foundation/eth-address';
386
453
  import { BadRequestError } from '@aztec/foundation/json-rpc';
387
454
  import { createLogger } from '@aztec/foundation/log';
455
+ import { retryUntil } from '@aztec/foundation/retry';
388
456
  import { count } from '@aztec/foundation/string';
389
457
  import { DateProvider, Timer } from '@aztec/foundation/timer';
390
458
  import { MembershipWitness } from '@aztec/foundation/trees';
459
+ import { isErrorClass } from '@aztec/foundation/types';
391
460
  import { KeystoreManager, loadKeystores, mergeKeystores } from '@aztec/node-keystore';
392
461
  import { trySnapshotSync, uploadSnapshot } from '@aztec/node-lib/actions';
393
462
  import { createForwarderL1TxUtilsFromSigners, createL1TxUtilsFromSigners } from '@aztec/node-lib/factories';
@@ -395,28 +464,33 @@ import { createP2PClient, createTxValidatorForAcceptingTxsOverRPC, getDefaultAll
395
464
  import { ProtocolContractAddress } from '@aztec/protocol-contracts';
396
465
  import { createProverNode } from '@aztec/prover-node';
397
466
  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';
467
+ import { FeeProviderImpl, GlobalVariableBuilder, SequencerClient, createAutomineSequencer } from '@aztec/sequencer-client';
468
+ import { PublicContractsDB, PublicProcessorFactory } from '@aztec/simulator/server';
469
+ import { AttestationsBlockWatcher, AttestedInvalidProposalWatcher, BroadcastedInvalidCheckpointProposalWatcher, CheckpointEquivocationWatcher, DataWithholdingWatcher, createSlasher } from '@aztec/slasher';
470
+ import { STANDARD_MULTI_CALL_ENTRYPOINT_ADDRESS } from '@aztec/standard-contracts/multi-call-entrypoint';
401
471
  import { CollectionLimitsConfig, PublicSimulatorConfig } from '@aztec/stdlib/avm';
402
472
  import { AztecAddress } from '@aztec/stdlib/aztec-address';
403
- import { BlockHash, L2Block } from '@aztec/stdlib/block';
473
+ import { BlockHash, BlockTag, inspectBlockParameter } from '@aztec/stdlib/block';
474
+ import { CheckpointReexecutionTracker } from '@aztec/stdlib/checkpoint';
404
475
  import { GasFees } from '@aztec/stdlib/gas';
405
476
  import { computePublicDataTreeLeafSlot } from '@aztec/stdlib/hash';
406
477
  import { AztecNodeAdminConfigSchema } from '@aztec/stdlib/interfaces/client';
407
478
  import { tryStop } from '@aztec/stdlib/interfaces/server';
408
479
  import { InMemoryDebugLogStore, NullDebugLogStore } from '@aztec/stdlib/logs';
409
- import { InboxLeaf } from '@aztec/stdlib/messaging';
480
+ import { InboxLeaf, appendL1ToL2MessagesToTree } from '@aztec/stdlib/messaging';
481
+ import { MIN_EXECUTION_TIME } from '@aztec/stdlib/timetable';
410
482
  import { MerkleTreeId, NullifierMembershipWitness, PublicDataWitness } from '@aztec/stdlib/trees';
411
483
  import { PublicSimulationOutput, TxReceipt, TxStatus } from '@aztec/stdlib/tx';
412
484
  import { getPackageVersion } from '@aztec/stdlib/update-checker';
413
485
  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';
486
+ import { FullNodeCheckpointsBuilder as CheckpointsBuilder, FullNodeCheckpointsBuilder, NodeKeystoreAdapter, ValidatorClient, createProposalHandler, createValidatorClient } from '@aztec/validator-client';
487
+ import { createWorldState, createWorldStateSynchronizer } from '@aztec/world-state';
416
488
  import { createPublicClient } from 'viem';
417
489
  import { createSentinel } from '../sentinel/factory.js';
490
+ import { blockResponseFromBlockData, blockResponseFromL2Block, checkpointResponseFromCheckpointData, checkpointResponseFromPublishedCheckpoint, projectProposedToCheckpointResponse } from './block_response_helpers.js';
418
491
  import { createKeyStoreForValidator } from './config.js';
419
492
  import { NodeMetrics } from './node_metrics.js';
493
+ import { applyPublicDataOverrides } from './public_data_overrides.js';
420
494
  _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
421
495
  [Attributes.TX_HASH]: tx.getTxHash().toString()
422
496
  }));
@@ -434,19 +508,22 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
434
508
  proverNode;
435
509
  slasherClient;
436
510
  validatorsSentinel;
437
- epochPruneWatcher;
511
+ stopStartedWatchers;
438
512
  l1ChainId;
439
513
  version;
440
514
  globalVariableBuilder;
515
+ feeProvider;
441
516
  epochCache;
442
517
  packageVersion;
443
- proofVerifier;
518
+ peerProofVerifier;
519
+ rpcProofVerifier;
444
520
  telemetry;
445
521
  log;
446
522
  blobClient;
447
523
  validatorClient;
448
524
  keyStoreManager;
449
525
  debugLogStore;
526
+ automineSequencer;
450
527
  static{
451
528
  ({ e: [_initProto] } = _apply_decs_2203_r(this, [
452
529
  [
@@ -457,11 +534,12 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
457
534
  ], []));
458
535
  }
459
536
  metrics;
460
- initialHeaderHashPromise;
461
537
  // Prevent two snapshot operations to happen simultaneously
462
538
  isUploadingSnapshot;
539
+ // Saved minTxsPerBlock used by `pauseSequencer` to restore production-sequencer config on resume.
540
+ sequencerPausedMinTxsPerBlock;
463
541
  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()){
542
+ 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){
465
543
  this.config = config;
466
544
  this.p2pClient = p2pClient;
467
545
  this.blockSource = blockSource;
@@ -473,25 +551,27 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
473
551
  this.proverNode = proverNode;
474
552
  this.slasherClient = slasherClient;
475
553
  this.validatorsSentinel = validatorsSentinel;
476
- this.epochPruneWatcher = epochPruneWatcher;
554
+ this.stopStartedWatchers = stopStartedWatchers;
477
555
  this.l1ChainId = l1ChainId;
478
556
  this.version = version;
479
557
  this.globalVariableBuilder = globalVariableBuilder;
558
+ this.feeProvider = feeProvider;
480
559
  this.epochCache = epochCache;
481
560
  this.packageVersion = packageVersion;
482
- this.proofVerifier = proofVerifier;
561
+ this.peerProofVerifier = peerProofVerifier;
562
+ this.rpcProofVerifier = rpcProofVerifier;
483
563
  this.telemetry = telemetry;
484
564
  this.log = log;
485
565
  this.blobClient = blobClient;
486
566
  this.validatorClient = validatorClient;
487
567
  this.keyStoreManager = keyStoreManager;
488
568
  this.debugLogStore = debugLogStore;
489
- this.initialHeaderHashPromise = (_initProto(this), undefined);
490
- this.isUploadingSnapshot = false;
569
+ this.automineSequencer = automineSequencer;
570
+ this.isUploadingSnapshot = (_initProto(this), false);
491
571
  this.metrics = new NodeMetrics(telemetry, 'AztecNodeService');
492
572
  this.tracer = telemetry.getTracer('AztecNodeService');
493
573
  this.log.info(`Aztec Node version: ${this.packageVersion}`);
494
- this.log.info(`Aztec Node started on chain 0x${l1ChainId.toString(16)}`, config.l1Contracts);
574
+ this.log.info(`Aztec Node started on chain 0x${l1ChainId.toString(16)}`, pickL1ContractAddresses(config));
495
575
  // A defensive check that protects us against introducing a bug in the complex `createAndSync` function. We must
496
576
  // never have debugLogStore enabled when not in test mode because then we would be accumulating debug logs in
497
577
  // memory which could be a DoS vector on the sequencer (since no fees are paid for debug logs).
@@ -499,12 +579,249 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
499
579
  throw new Error('debugLogStore should never be enabled when realProofs are set');
500
580
  }
501
581
  }
582
+ /** @internal Exposed for testing — returns the RPC proof verifier. */ getProofVerifier() {
583
+ return this.rpcProofVerifier;
584
+ }
502
585
  async getWorldStateSyncStatus() {
503
586
  const status = await this.worldStateSynchronizer.status();
504
587
  return status.syncSummary;
505
588
  }
506
- getL2Tips() {
507
- return this.blockSource.getL2Tips();
589
+ async getChainTips() {
590
+ const { proposed, checkpointed, proven, finalized } = await this.blockSource.getL2Tips();
591
+ return {
592
+ proposed,
593
+ checkpointed,
594
+ proven,
595
+ finalized
596
+ };
597
+ }
598
+ getCheckpointsData(query) {
599
+ return this.blockSource.getCheckpointsData(query);
600
+ }
601
+ async getBlockNumber(tip) {
602
+ if (tip === undefined || tip === 'proposed') {
603
+ return this.blockSource.getBlockNumber();
604
+ }
605
+ return await this.blockSource.getBlockNumber({
606
+ tag: tip
607
+ }) ?? BlockNumber.ZERO;
608
+ }
609
+ async getCheckpointNumber(tip) {
610
+ const tips = await this.blockSource.getL2Tips();
611
+ switch(tip){
612
+ case undefined:
613
+ case 'checkpointed':
614
+ return tips.checkpointed.checkpoint.number;
615
+ case 'proposed':
616
+ return tips.proposedCheckpoint.checkpoint.number;
617
+ case 'proven':
618
+ return tips.proven.checkpoint.number;
619
+ case 'finalized':
620
+ return tips.finalized.checkpoint.number;
621
+ }
622
+ }
623
+ isChainTip(value) {
624
+ return value === 'proposed' || value === 'checkpointed' || value === 'proven' || value === 'finalized';
625
+ }
626
+ /**
627
+ * Normalizes a {@link BlockParameter} (which may be a bare value) into a
628
+ * {@link NormalizedBlockParameter} object form. Performs no chain-tip resolution — tag
629
+ * lookups are deferred to the underlying block source.
630
+ */ normalizeBlockParameter(param) {
631
+ if (BlockHash.isBlockHash(param)) {
632
+ return {
633
+ hash: param
634
+ };
635
+ }
636
+ if (typeof param === 'number') {
637
+ return {
638
+ number: param
639
+ };
640
+ }
641
+ if (typeof param === 'string') {
642
+ if (this.isBlockTag(param)) {
643
+ return {
644
+ tag: param === 'latest' ? 'proposed' : param
645
+ };
646
+ }
647
+ throw new BadRequestError(`Invalid BlockParameter tag: ${param}`);
648
+ }
649
+ if (typeof param === 'object' && param !== null) {
650
+ if ('number' in param) {
651
+ return {
652
+ number: param.number
653
+ };
654
+ }
655
+ if ('hash' in param) {
656
+ return {
657
+ hash: param.hash
658
+ };
659
+ }
660
+ if ('archive' in param) {
661
+ return {
662
+ archive: param.archive
663
+ };
664
+ }
665
+ if ('tag' in param) {
666
+ if (this.isBlockTag(param.tag)) {
667
+ return {
668
+ tag: param.tag
669
+ };
670
+ }
671
+ throw new BadRequestError(`Invalid BlockParameter tag: ${param.tag}`);
672
+ }
673
+ }
674
+ throw new BadRequestError(`Invalid BlockParameter: ${JSON.stringify(param)}`);
675
+ }
676
+ isBlockTag(value) {
677
+ return BlockTag.includes(value);
678
+ }
679
+ /**
680
+ * Resolves a {@link CheckpointParameter} into a concrete `{ number }` or `{ slot }` query.
681
+ *
682
+ * Tag-based parameters (`'proposed'`, `'checkpointed'`, `'proven'`, `'finalized'`) are
683
+ * translated up-front to the corresponding tip's checkpoint number via {@link L2BlockSource.getL2Tips}.
684
+ * After resolution the unified {@link getCheckpoint} flow can perform a single
685
+ * confirmed→proposed lookup against either store.
686
+ */ async resolveCheckpointParameter(param) {
687
+ if (typeof param === 'number') {
688
+ return {
689
+ number: param
690
+ };
691
+ }
692
+ if (this.isChainTip(param)) {
693
+ const tips = await this.blockSource.getL2Tips();
694
+ switch(param){
695
+ case 'proposed':
696
+ return {
697
+ number: tips.proposedCheckpoint.checkpoint.number
698
+ };
699
+ case 'checkpointed':
700
+ return {
701
+ number: tips.checkpointed.checkpoint.number
702
+ };
703
+ case 'proven':
704
+ return {
705
+ number: tips.proven.checkpoint.number
706
+ };
707
+ case 'finalized':
708
+ return {
709
+ number: tips.finalized.checkpoint.number
710
+ };
711
+ }
712
+ }
713
+ if (typeof param === 'object' && param !== null) {
714
+ if ('number' in param) {
715
+ return {
716
+ number: param.number
717
+ };
718
+ }
719
+ if ('slot' in param) {
720
+ return {
721
+ slot: param.slot
722
+ };
723
+ }
724
+ }
725
+ throw new BadRequestError(`Invalid CheckpointParameter: ${JSON.stringify(param)}`);
726
+ }
727
+ /** Fetches checkpoint-level L1 and attestation data for use as block response context. */ async #getCheckpointContext(checkpointNumber) {
728
+ const checkpoint = await this.blockSource.getCheckpointData({
729
+ number: checkpointNumber
730
+ });
731
+ if (!checkpoint) {
732
+ return undefined;
733
+ }
734
+ return {
735
+ l1: checkpoint.l1,
736
+ attestations: checkpoint.attestations
737
+ };
738
+ }
739
+ async getBlock(param, options = {}) {
740
+ const query = this.normalizeBlockParameter(param);
741
+ const wantTxs = !!options.includeTransactions;
742
+ const wantContext = !!options.includeL1PublishInfo || !!options.includeAttestations;
743
+ if (wantTxs) {
744
+ const block = await this.blockSource.getBlock(query);
745
+ if (!block) {
746
+ return undefined;
747
+ }
748
+ const ctx = wantContext ? await this.#getCheckpointContext(block.checkpointNumber) : undefined;
749
+ return await blockResponseFromL2Block(block, options, ctx);
750
+ }
751
+ const data = await this.blockSource.getBlockData(query);
752
+ if (!data) {
753
+ return undefined;
754
+ }
755
+ const ctx = wantContext ? await this.#getCheckpointContext(data.checkpointNumber) : undefined;
756
+ return blockResponseFromBlockData(data, options, ctx);
757
+ }
758
+ getBlockData(param) {
759
+ const query = this.normalizeBlockParameter(param);
760
+ return this.blockSource.getBlockData(query);
761
+ }
762
+ async getBlocks(from, limit, options = {}) {
763
+ const wantTxs = !!options.includeTransactions;
764
+ const wantContext = !!options.includeL1PublishInfo || !!options.includeAttestations;
765
+ const onlyCheckpointed = !!options.onlyCheckpointed;
766
+ if (wantTxs) {
767
+ const blocks = await this.blockSource.getBlocks({
768
+ from,
769
+ limit,
770
+ onlyCheckpointed
771
+ });
772
+ const ctxByCheckpoint = await this.#getCheckpointContextsForBlocks(wantContext ? blocks : []);
773
+ return await Promise.all(blocks.map((block)=>blockResponseFromL2Block(block, options, ctxByCheckpoint.get(block.checkpointNumber))));
774
+ }
775
+ const dataItems = await this.blockSource.getBlocksData({
776
+ from,
777
+ limit,
778
+ onlyCheckpointed
779
+ });
780
+ const ctxByCheckpoint = await this.#getCheckpointContextsForBlocks(wantContext ? dataItems : []);
781
+ return await Promise.all(dataItems.map((data)=>blockResponseFromBlockData(data, options, ctxByCheckpoint.get(data.checkpointNumber))));
782
+ }
783
+ /** Fetches checkpoint context for a set of blocks, deduplicating shared checkpoints. */ async #getCheckpointContextsForBlocks(blocks) {
784
+ const unique = Array.from(new Set(blocks.map((b)=>b.checkpointNumber)));
785
+ const entries = await Promise.all(unique.map(async (n)=>[
786
+ n,
787
+ await this.#getCheckpointContext(n)
788
+ ]));
789
+ return new Map(entries);
790
+ }
791
+ async getCheckpoint(param, options = {}) {
792
+ const query = await this.resolveCheckpointParameter(param);
793
+ // Try the confirmed store first.
794
+ const confirmed = options.includeBlocks ? await this.blockSource.getCheckpoint(query) : await this.blockSource.getCheckpointData(query);
795
+ if (confirmed) {
796
+ return await (options.includeBlocks ? checkpointResponseFromPublishedCheckpoint(confirmed, options) : checkpointResponseFromCheckpointData(confirmed, options));
797
+ }
798
+ // Fall back to the proposed store.
799
+ const proposed = await this.blockSource.getProposedCheckpointData(query);
800
+ if (proposed) {
801
+ if (options.includeAttestations || options.includeL1PublishInfo) {
802
+ throw new BadRequestError(`Options includeL1PublishInfo or includeAttestations cannot be satisfied for a proposed checkpoint`);
803
+ }
804
+ const blocks = options.includeBlocks ? await this.blockSource.getBlocks({
805
+ from: proposed.startBlock,
806
+ limit: proposed.blockCount
807
+ }) : undefined;
808
+ return await projectProposedToCheckpointResponse(proposed, options, blocks);
809
+ }
810
+ return undefined;
811
+ }
812
+ async getCheckpoints(from, limit, options = {}) {
813
+ if (options.includeBlocks) {
814
+ const checkpoints = await this.blockSource.getCheckpoints({
815
+ from,
816
+ limit
817
+ });
818
+ return await Promise.all(checkpoints.map((cp)=>checkpointResponseFromPublishedCheckpoint(cp, options)));
819
+ }
820
+ const datas = await this.blockSource.getCheckpointsData({
821
+ from,
822
+ limit
823
+ });
824
+ return datas.map((d)=>checkpointResponseFromCheckpointData(d, options));
508
825
  }
509
826
  /**
510
827
  * initializes the Aztec Node, wait for component to sync.
@@ -515,7 +832,7 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
515
832
  ...inputConfig
516
833
  }; // Copy the config so we dont mutate the input object
517
834
  const log = deps.logger ?? createLogger('node');
518
- const packageVersion = getPackageVersion() ?? '';
835
+ const packageVersion = getPackageVersion();
519
836
  const telemetry = deps.telemetry ?? getTelemetryClient();
520
837
  const dateProvider = deps.dateProvider ?? new DateProvider();
521
838
  const ethereumChain = createEthereumChain(config.l1RpcUrls, config.l1ChainId);
@@ -564,13 +881,9 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
564
881
  }),
565
882
  pollingInterval: config.viemPollingIntervalMS
566
883
  });
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());
884
+ const l1ContractsAddresses = await RegistryContract.collectAddresses(publicClient, config.registryAddress, config.rollupVersion ?? 'canonical');
885
+ Object.assign(config, l1ContractsAddresses);
886
+ const rollupContract = new RollupContract(publicClient, config.rollupAddress.toString());
574
887
  const [l1GenesisTime, slotDuration, rollupVersionFromRollup, rollupManaLimit] = await Promise.all([
575
888
  rollupContract.getL1GenesisTime(),
576
889
  rollupContract.getSlotDuration(),
@@ -584,204 +897,335 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
584
897
  const blobClient = await createBlobClientWithFileStores(config, log.createChild('blob-client'));
585
898
  // attempt snapshot sync if possible
586
899
  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,
900
+ const epochCache = await EpochCache.create(config.rollupAddress, config, {
594
901
  dateProvider
595
- }, {
596
- blockUntilSync: !config.skipArchiverInitialSync
597
902
  });
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,
903
+ // Track started resources so we can clean up on partial failure during node creation.
904
+ const started = [];
905
+ try {
906
+ // Default the orphan-prune grace window from the block build duration when unset, so the archiver
907
+ // waits roughly one build slot for a proposed checkpoint to arrive before pruning a block-only tip.
908
+ config.orphanProposedBlockPruneGraceSeconds ??= config.blockDurationMs !== undefined ? Math.ceil(config.blockDurationMs / 1000) : MIN_EXECUTION_TIME;
909
+ // Create world-state first so we can retrieve the initial header before constructing the archiver.
910
+ const nativeWs = await createWorldState(config, options.genesis);
911
+ const initialHeader = nativeWs.getInitialHeader();
912
+ const initialBlockHash = await initialHeader.hash();
913
+ const archiver = await createArchiver(config, {
640
914
  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
915
  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
916
  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'
917
+ dateProvider
720
918
  }, {
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({
919
+ blockUntilSync: !config.skipArchiverInitialSync
920
+ }, initialHeader, initialBlockHash);
921
+ started.push(archiver);
922
+ // The synchronizer takes ownership of the native world-state from here
923
+ const worldStateSynchronizer = await createWorldStateSynchronizer(config, archiver, nativeWs, telemetry);
924
+ started.push(worldStateSynchronizer);
925
+ const useRealVerifiers = config.realProofs || config.debugForceTxProofVerification;
926
+ let peerProofVerifier;
927
+ let rpcProofVerifier;
928
+ if (useRealVerifiers) {
929
+ peerProofVerifier = await BatchChonkVerifier.new(config, config.bbChonkVerifyMaxBatch, 'peer');
930
+ const rpcVerifier = await BBCircuitVerifier.new(config);
931
+ rpcProofVerifier = new QueuedIVCVerifier(rpcVerifier, config.numConcurrentIVCVerifiers);
932
+ } else {
933
+ peerProofVerifier = new TestCircuitVerifier(config.proverTestVerificationDelayMs);
934
+ rpcProofVerifier = new TestCircuitVerifier(config.proverTestVerificationDelayMs);
935
+ }
936
+ started.push(peerProofVerifier, rpcProofVerifier);
937
+ let debugLogStore;
938
+ if (!config.realProofs) {
939
+ log.warn(`Aztec node is accepting fake proofs`);
940
+ debugLogStore = new InMemoryDebugLogStore();
941
+ log.info('Aztec node started in test mode (realProofs set to false) hence debug logs from public functions will be collected and served');
942
+ } else {
943
+ debugLogStore = new NullDebugLogStore();
944
+ }
945
+ const globalVariableBuilderConfig = {
946
+ rollupAddress: config.rollupAddress,
947
+ ethereumSlotDuration: config.ethereumSlotDuration,
948
+ rollupVersion: BigInt(config.rollupVersion),
949
+ l1GenesisTime,
950
+ slotDuration: Number(slotDuration)
951
+ };
952
+ const globalVariableBuilder = new GlobalVariableBuilder(dateProvider, publicClient, globalVariableBuilderConfig);
953
+ const feeProvider = new FeeProviderImpl(dateProvider, publicClient, globalVariableBuilderConfig);
954
+ const proverOnly = config.enableProverNode && config.disableValidator;
955
+ if (proverOnly) {
956
+ log.info('Starting in prover-only mode: skipping validator, sequencer, sentinel, and slasher subsystems');
957
+ }
958
+ // create the tx pool and the p2p client, which will need the l2 block source
959
+ const p2pClient = await createP2PClient(config, archiver, peerProofVerifier, worldStateSynchronizer, epochCache, feeProvider, packageVersion, dateProvider, telemetry, deps.p2pClientDeps, initialBlockHash);
960
+ started.push(p2pClient);
961
+ // We'll accumulate sentinel watchers here
962
+ const watchers = [];
963
+ // Create FullNodeCheckpointsBuilder for block proposal handling and tx validation.
964
+ // Override maxTxsPerCheckpoint with the validator-specific limit if set.
965
+ const validatorCheckpointsBuilder = new FullNodeCheckpointsBuilder({
728
966
  ...config,
729
967
  l1GenesisTime,
730
968
  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`);
755
- }
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
969
+ rollupManaLimit,
970
+ maxTxsPerCheckpoint: config.validateMaxTxsPerCheckpoint
971
+ }, worldStateSynchronizer, archiver, dateProvider, telemetry);
972
+ let validatorClient;
973
+ // Tracks successful checkpoint re-execution by a checkpoint proposal handler.
974
+ const reexecutionTracker = new CheckpointReexecutionTracker();
975
+ if (!config.disableValidator) {
976
+ // Create validator client if required
977
+ validatorClient = await createValidatorClient(config, {
978
+ checkpointsBuilder: validatorCheckpointsBuilder,
979
+ worldState: worldStateSynchronizer,
980
+ p2pClient,
981
+ telemetry,
982
+ dateProvider,
983
+ epochCache,
984
+ blockSource: archiver,
985
+ l1ToL2MessageSource: archiver,
986
+ keyStoreManager,
987
+ blobClient,
988
+ reexecutionTracker,
989
+ slashingProtectionDb: deps.slashingProtectionDb
990
+ });
991
+ // If we have a validator client, register it as a source of offenses for the slasher,
992
+ // and have it register callbacks on the p2p client *before* we start it, otherwise messages
993
+ // like attestations or auths will fail.
994
+ if (validatorClient) {
995
+ watchers.push(validatorClient);
996
+ const vc = validatorClient;
997
+ const getValidatorAddresses = ()=>vc.getValidatorAddresses().map((a)=>a.toString());
998
+ validatorClient.getProposalHandler().register(p2pClient, true, archiver, getValidatorAddresses);
999
+ if (!options.dontStartSequencer) {
1000
+ await validatorClient.registerHandlers();
1001
+ }
1002
+ }
1003
+ }
1004
+ // If there's no validator client, create a ProposalHandler to handle block and checkpoint proposals
1005
+ // for monitoring or reexecution. Reexecution (default) allows us to follow the pending chain,
1006
+ // while non-reexecution is used for validating the proposals and collecting their txs.
1007
+ // Checkpoint proposals rebuild blobs if the blob client can upload blobs.
1008
+ if (!validatorClient) {
1009
+ const reexecute = !!config.alwaysReexecuteBlockProposals;
1010
+ log.info(`Setting up proposal handler` + (reexecute ? ' with reexecution of proposals' : ''));
1011
+ createProposalHandler(config, {
1012
+ checkpointsBuilder: validatorCheckpointsBuilder,
1013
+ worldState: worldStateSynchronizer,
1014
+ epochCache,
1015
+ blockSource: archiver,
1016
+ l1ToL2MessageSource: archiver,
1017
+ p2pClient,
1018
+ blobClient,
1019
+ dateProvider,
1020
+ telemetry,
1021
+ reexecutionTracker
1022
+ }).register(p2pClient, reexecute, archiver);
1023
+ }
1024
+ // Start world state and wait for it to sync to the archiver.
1025
+ await worldStateSynchronizer.start();
1026
+ // Start p2p. Note that it depends on world state to be running.
1027
+ await p2pClient.start();
1028
+ let validatorsSentinel;
1029
+ let dataWithholdingWatcher;
1030
+ let attestationsBlockWatcher;
1031
+ let attestedInvalidProposalWatcher;
1032
+ let broadcastedInvalidCheckpointProposalWatcher;
1033
+ let checkpointEquivocationWatcher;
1034
+ if (!proverOnly) {
1035
+ validatorsSentinel = await createSentinel(epochCache, archiver, p2pClient, reexecutionTracker, config);
1036
+ if (validatorsSentinel) {
1037
+ watchers.push(validatorsSentinel);
1038
+ }
1039
+ dataWithholdingWatcher = new DataWithholdingWatcher(epochCache, archiver, p2pClient.getTxProvider(), p2pClient, reexecutionTracker, {
1040
+ chainId: config.l1ChainId,
1041
+ rollupAddress: config.rollupAddress
1042
+ }, config);
1043
+ watchers.push(dataWithholdingWatcher);
1044
+ broadcastedInvalidCheckpointProposalWatcher = new BroadcastedInvalidCheckpointProposalWatcher(p2pClient, archiver, epochCache, config);
1045
+ watchers.push(broadcastedInvalidCheckpointProposalWatcher);
1046
+ if (validatorClient) {
1047
+ attestedInvalidProposalWatcher = new AttestedInvalidProposalWatcher(p2pClient, validatorClient, archiver, epochCache, config, {
1048
+ log: log.createChild('attested-invalid-proposal-watcher')
1049
+ });
1050
+ watchers.push(attestedInvalidProposalWatcher);
1051
+ }
1052
+ checkpointEquivocationWatcher = new CheckpointEquivocationWatcher(archiver, epochCache, config);
1053
+ watchers.push(checkpointEquivocationWatcher);
1054
+ attestationsBlockWatcher = new AttestationsBlockWatcher(archiver, epochCache, config, log.getBindings());
1055
+ watchers.push(attestationsBlockWatcher);
1056
+ }
1057
+ const watchersToStart = compactArray([
1058
+ validatorsSentinel,
1059
+ dataWithholdingWatcher,
1060
+ attestationsBlockWatcher,
1061
+ broadcastedInvalidCheckpointProposalWatcher,
1062
+ attestedInvalidProposalWatcher,
1063
+ checkpointEquivocationWatcher
1064
+ ]);
1065
+ const startedWatchers = [];
1066
+ const stopStartedWatchers = async ()=>{
1067
+ for (const watcher of startedWatchers){
1068
+ await tryStop(watcher);
1069
+ }
1070
+ };
1071
+ // Start p2p-related services once the archiver has completed sync
1072
+ void archiver.waitForInitialSync().then(async ()=>{
1073
+ for (const watcher of watchersToStart){
1074
+ await watcher.start();
1075
+ startedWatchers.push(watcher);
1076
+ }
1077
+ log.info(`All p2p services started`);
1078
+ }).catch((err)=>log.error('Failed to start p2p services after archiver sync', err));
1079
+ started.push({
1080
+ stop: stopStartedWatchers
769
1081
  });
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`);
1082
+ // Validator enabled, create/start relevant service
1083
+ let sequencer;
1084
+ let automineSequencer;
1085
+ let slasherClient;
1086
+ if (!config.disableValidator && validatorClient) {
1087
+ // We create a slasher only if we have a sequencer, since all slashing actions go through the sequencer publisher
1088
+ // as they are executed when the node is selected as proposer.
1089
+ const validatorAddresses = keyStoreManager ? NodeKeystoreAdapter.fromKeyStoreManager(keyStoreManager).getAddresses() : [];
1090
+ slasherClient = await createSlasher(config, pickL1ContractAddresses(config), getPublicClient(config), watchers, dateProvider, epochCache, validatorAddresses, undefined);
1091
+ await slasherClient.start();
1092
+ started.push(slasherClient);
1093
+ const l1TxUtils = config.sequencerPublisherForwarderAddress ? await createForwarderL1TxUtilsFromSigners(publicClient, keyStoreManager.createAllValidatorPublisherSigners(), config.sequencerPublisherForwarderAddress, {
1094
+ ...config,
1095
+ scope: 'sequencer'
1096
+ }, {
1097
+ telemetry,
1098
+ logger: log.createChild('l1-tx-utils'),
1099
+ dateProvider,
1100
+ kzg: Blob.getViemKzgInstance()
1101
+ }) : await createL1TxUtilsFromSigners(publicClient, keyStoreManager.createAllValidatorPublisherSigners(), {
1102
+ ...config,
1103
+ scope: 'sequencer'
1104
+ }, {
1105
+ telemetry,
1106
+ logger: log.createChild('l1-tx-utils'),
1107
+ dateProvider,
1108
+ kzg: Blob.getViemKzgInstance()
1109
+ });
1110
+ // Create a funder L1TxUtils from the keystore funding account (if configured)
1111
+ const fundingSigner = keyStoreManager?.createFundingSigner();
1112
+ let funderL1TxUtils;
1113
+ if (fundingSigner) {
1114
+ const [funder] = await createL1TxUtilsFromSigners(publicClient, [
1115
+ fundingSigner
1116
+ ], {
1117
+ ...config,
1118
+ scope: 'sequencer'
1119
+ }, {
1120
+ telemetry,
1121
+ logger: log.createChild('l1-tx-utils:funder'),
1122
+ dateProvider
1123
+ });
1124
+ funderL1TxUtils = funder;
1125
+ }
1126
+ // Create and start the sequencer client
1127
+ const checkpointsBuilder = new CheckpointsBuilder({
1128
+ ...config,
1129
+ l1GenesisTime,
1130
+ slotDuration: Number(slotDuration),
1131
+ rollupManaLimit
1132
+ }, worldStateSynchronizer, archiver, dateProvider, telemetry, debugLogStore);
1133
+ if (config.useAutomineSequencer) {
1134
+ // Test-only path: deterministic, queue-driven sequencer for non-block-building e2e tests.
1135
+ // See `AUTOMINE_E2E_OPTS` in `end-to-end/src/fixtures/fixtures.ts`.
1136
+ automineSequencer = await createAutomineSequencer({
1137
+ config,
1138
+ l1TxUtils,
1139
+ funderL1TxUtils,
1140
+ publicClient,
1141
+ rollupContract,
1142
+ epochCache,
1143
+ blobClient,
1144
+ telemetry,
1145
+ dateProvider,
1146
+ keyStoreManager: keyStoreManager,
1147
+ validatorClient,
1148
+ checkpointsBuilder,
1149
+ globalVariableBuilder,
1150
+ worldStateSynchronizer,
1151
+ archiver,
1152
+ p2pClient,
1153
+ l1Constants: {
1154
+ l1GenesisTime,
1155
+ slotDuration: Number(slotDuration),
1156
+ ethereumSlotDuration: config.ethereumSlotDuration,
1157
+ rollupManaLimit
1158
+ },
1159
+ log
1160
+ });
1161
+ } else {
1162
+ sequencer = await SequencerClient.new(config, {
1163
+ ...deps,
1164
+ epochCache,
1165
+ l1TxUtils,
1166
+ funderL1TxUtils,
1167
+ validatorClient,
1168
+ p2pClient,
1169
+ worldStateSynchronizer,
1170
+ slasherClient,
1171
+ checkpointsBuilder,
1172
+ l2BlockSource: archiver,
1173
+ l1ToL2MessageSource: archiver,
1174
+ telemetry,
1175
+ dateProvider,
1176
+ blobClient,
1177
+ nodeKeyStore: keyStoreManager,
1178
+ globalVariableBuilder
1179
+ });
1180
+ }
1181
+ }
1182
+ if (!options.dontStartSequencer && sequencer) {
1183
+ await sequencer.start();
1184
+ started.push(sequencer);
1185
+ log.verbose(`Sequencer started`);
1186
+ } else if (sequencer) {
1187
+ log.warn(`Sequencer created but not started`);
1188
+ }
1189
+ if (!options.dontStartSequencer && automineSequencer) {
1190
+ await automineSequencer.start();
1191
+ started.push({
1192
+ stop: ()=>automineSequencer.stop()
1193
+ });
1194
+ log.verbose(`AutomineSequencer started`);
1195
+ } else if (automineSequencer) {
1196
+ log.warn(`AutomineSequencer created but not started`);
775
1197
  }
1198
+ // Create prover node subsystem if enabled
1199
+ let proverNode;
1200
+ if (config.enableProverNode) {
1201
+ proverNode = await createProverNode(config, {
1202
+ ...deps.proverNodeDeps,
1203
+ telemetry,
1204
+ dateProvider,
1205
+ archiver,
1206
+ worldStateSynchronizer,
1207
+ p2pClient,
1208
+ epochCache,
1209
+ blobClient,
1210
+ keyStoreManager
1211
+ });
1212
+ if (!options.dontStartProverNode) {
1213
+ await proverNode.start();
1214
+ started.push(proverNode);
1215
+ log.info(`Prover node subsystem started`);
1216
+ } else {
1217
+ log.info(`Prover node subsystem created but not started`);
1218
+ }
1219
+ }
1220
+ 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);
1221
+ return node;
1222
+ } catch (err) {
1223
+ log.error('Failed during node creation, stopping started resources', err);
1224
+ for (const resource of started.reverse()){
1225
+ await tryStop(resource);
1226
+ }
1227
+ throw err;
776
1228
  }
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;
785
1229
  }
786
1230
  /**
787
1231
  * Returns the sequencer client instance.
@@ -789,6 +1233,9 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
789
1233
  */ getSequencer() {
790
1234
  return this.sequencer;
791
1235
  }
1236
+ /** Test-only: returns the AutomineSequencer when wired via `useAutomineSequencer`. */ getAutomineSequencer() {
1237
+ return this.automineSequencer;
1238
+ }
792
1239
  /** Returns the prover node subsystem, if enabled. */ getProverNode() {
793
1240
  return this.proverNode;
794
1241
  }
@@ -805,7 +1252,7 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
805
1252
  * Method to return the currently deployed L1 contract addresses.
806
1253
  * @returns - The currently deployed L1 contract addresses.
807
1254
  */ getL1ContractAddresses() {
808
- return Promise.resolve(this.config.l1Contracts);
1255
+ return Promise.resolve(pickL1ContractAddresses(this.config));
809
1256
  }
810
1257
  getEncodedEnr() {
811
1258
  return Promise.resolve(this.p2pClient.getEnr()?.encodeTxt());
@@ -842,64 +1289,11 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
842
1289
  };
843
1290
  return nodeInfo;
844
1291
  }
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)) ?? [];
888
- }
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) ?? [];
1292
+ async getCurrentMinFees() {
1293
+ return await this.feeProvider.getCurrentMinFees();
894
1294
  }
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();
1295
+ /** Returns predicted min fees for the current slot and next N slots. */ async getPredictedMinFees(manaUsage) {
1296
+ return await this.feeProvider.getPredictedMinFees(manaUsage);
903
1297
  }
904
1298
  async getMaxPriorityFees() {
905
1299
  for await (const tx of this.p2pClient.iteratePendingTxs()){
@@ -911,21 +1305,6 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
911
1305
  });
912
1306
  }
913
1307
  /**
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
1308
  * Method to fetch the version of the package.
930
1309
  * @returns The node package version
931
1310
  */ getNodeVersion() {
@@ -949,51 +1328,11 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
949
1328
  getContract(address) {
950
1329
  return this.contractDataSource.getContract(address);
951
1330
  }
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
- }
965
- }
966
- return this.logsSource.getPrivateLogsByTags(tags, page, upToBlockNumber);
1331
+ getPrivateLogsByTags(query) {
1332
+ return this.logsSource.getPrivateLogsByTags(query);
967
1333
  }
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);
983
- }
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);
990
- }
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);
1334
+ getPublicLogsByTags(query) {
1335
+ return this.logsSource.getPublicLogsByTags(query);
997
1336
  }
998
1337
  /**
999
1338
  * Method to submit a transaction to the p2p pool.
@@ -1013,7 +1352,15 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
1013
1352
  });
1014
1353
  throw new Error(`Invalid tx: ${reason}`);
1015
1354
  }
1016
- await this.p2pClient.sendTx(tx);
1355
+ try {
1356
+ await this.p2pClient.sendTx(tx);
1357
+ } catch (err) {
1358
+ this.metrics.receivedTx(timer.ms(), false);
1359
+ this.log.warn(`Mempool rejected tx ${txHash}: ${err.message}`, {
1360
+ txHash
1361
+ });
1362
+ throw err;
1363
+ }
1017
1364
  const duration = timer.ms();
1018
1365
  this.metrics.receivedTx(duration, true);
1019
1366
  this.log.info(`Received tx ${txHash} in ${duration}ms`, {
@@ -1034,10 +1381,10 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
1034
1381
  // If the tx is in the pool but not in the archiver, it's pending.
1035
1382
  // This handles race conditions between archiver and p2p, where the archiver
1036
1383
  // 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);
1384
+ receipt = new TxReceipt(txHash, TxStatus.PENDING, /*executionResult=*/ undefined, /*error=*/ undefined);
1038
1385
  } else {
1039
1386
  // 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');
1387
+ receipt = new TxReceipt(txHash, TxStatus.DROPPED, /*executionResult=*/ undefined, /*error=*/ 'Tx dropped by P2P node');
1041
1388
  }
1042
1389
  this.debugLogStore.decorateReceiptWithLogs(txHash.toString(), receipt);
1043
1390
  return receipt;
@@ -1049,11 +1396,14 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
1049
1396
  * Method to stop the aztec node.
1050
1397
  */ async stop() {
1051
1398
  this.log.info(`Stopping Aztec Node`);
1052
- await tryStop(this.validatorsSentinel);
1053
- await tryStop(this.epochPruneWatcher);
1399
+ await this.stopStartedWatchers();
1054
1400
  await tryStop(this.slasherClient);
1055
- await tryStop(this.proofVerifier);
1401
+ await Promise.all([
1402
+ tryStop(this.peerProofVerifier),
1403
+ tryStop(this.rpcProofVerifier)
1404
+ ]);
1056
1405
  await tryStop(this.sequencer);
1406
+ await tryStop(this.automineSequencer);
1057
1407
  await tryStop(this.proverNode);
1058
1408
  await tryStop(this.p2pClient);
1059
1409
  await tryStop(this.worldStateSynchronizer);
@@ -1135,13 +1485,13 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
1135
1485
  if (blockNumber === undefined) {
1136
1486
  throw new Error(`Block number not found for leaf index ${index} in tree ${MerkleTreeId[treeId]}`);
1137
1487
  }
1138
- const blockHash = blockNumberToHash.get(blockNumber);
1139
- if (blockHash === undefined) {
1488
+ const l2BlockHash = blockNumberToHash.get(blockNumber);
1489
+ if (l2BlockHash === undefined) {
1140
1490
  throw new Error(`Block hash not found for block number ${blockNumber}`);
1141
1491
  }
1142
1492
  return {
1143
1493
  l2BlockNumber: blockNumber,
1144
- l2BlockHash: new BlockHash(blockHash),
1494
+ l2BlockHash,
1145
1495
  data: index
1146
1496
  };
1147
1497
  });
@@ -1151,6 +1501,10 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
1151
1501
  // which is the archive tree root BEFORE the anchor block was added (i.e. the state after block N-1).
1152
1502
  // So we need the world state at block N-1, not block N, to produce a sibling path matching that root.
1153
1503
  const referenceBlockNumber = await this.resolveBlockNumber(referenceBlock);
1504
+ if (referenceBlockNumber === BlockNumber.ZERO) {
1505
+ // Block 0 (the initial block) has an empty archive, so no membership witness can exist.
1506
+ return undefined;
1507
+ }
1154
1508
  const committedDb = await this.getWorldState(BlockNumber(referenceBlockNumber - 1));
1155
1509
  const [pathAndIndex] = await committedDb.findSiblingPaths(MerkleTreeId.ARCHIVE, [
1156
1510
  blockHash
@@ -1180,25 +1534,19 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
1180
1534
  }
1181
1535
  async getL1ToL2MessageCheckpoint(l1ToL2Message) {
1182
1536
  const messageIndex = await this.l1ToL2MessageSource.getL1ToL2MessageIndex(l1ToL2Message);
1183
- return messageIndex ? InboxLeaf.checkpointNumberFromIndex(messageIndex) : undefined;
1184
- }
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;
1537
+ return messageIndex !== undefined ? InboxLeaf.checkpointNumberFromIndex(messageIndex) : undefined;
1192
1538
  }
1193
1539
  /**
1194
1540
  * Returns all the L2 to L1 messages in an epoch.
1195
1541
  * @param epoch - The epoch at which to get the data.
1196
1542
  * @returns The L2 to L1 messages (empty array if the epoch is not found).
1197
1543
  */ 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)));
1544
+ const blocks = await this.blockSource.getBlocks({
1545
+ epoch,
1546
+ onlyCheckpointed: true
1547
+ });
1548
+ const blocksInCheckpoints = chunkBy(blocks, (block)=>block.header.globalVariables.slotNumber);
1549
+ return blocksInCheckpoints.map((slotBlocks)=>slotBlocks.map((block)=>block.body.txEffects.map((txEffect)=>txEffect.l2ToL1Msgs)));
1202
1550
  }
1203
1551
  async getNullifierMembershipWitness(referenceBlock, nullifier) {
1204
1552
  const db = await this.getWorldState(referenceBlock);
@@ -1250,64 +1598,62 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
1250
1598
  const preimage = await committedDb.getLeafPreimage(MerkleTreeId.PUBLIC_DATA_TREE, lowLeafResult.index);
1251
1599
  return preimage.leaf.value;
1252
1600
  }
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
- }
1269
- }
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);
1276
- }
1277
- getBlockData(number) {
1278
- return this.blockSource.getBlockData(number);
1279
- }
1280
- getBlockDataByArchive(archive) {
1281
- return this.blockSource.getBlockDataByArchive(archive);
1282
- }
1283
1601
  /**
1284
1602
  * Simulates the public part of a transaction with the current state.
1285
1603
  * @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();
1604
+ * @param skipFeeEnforcement - If true, fee enforcement is skipped.
1605
+ * @param overrides - Optional pre-simulation overrides applied to the ephemeral fork and contract DB.
1606
+ **/ async simulatePublicCalls(tx, skipFeeEnforcement = false, overrides) {
1607
+ const env = {
1608
+ stack: [],
1609
+ error: void 0,
1610
+ hasError: false
1611
+ };
1310
1612
  try {
1613
+ // Check total gas limit for simulation
1614
+ const gasSettings = tx.data.constants.txContext.gasSettings;
1615
+ const txGasLimit = gasSettings.gasLimits.l2Gas;
1616
+ const teardownGasLimit = gasSettings.teardownGasLimits.l2Gas;
1617
+ if (txGasLimit + teardownGasLimit > this.config.rpcSimulatePublicMaxGasLimit) {
1618
+ throw new BadRequestError(`Transaction total gas limit ${txGasLimit + teardownGasLimit} (${txGasLimit} + ${teardownGasLimit}) exceeds maximum gas limit ${this.config.rpcSimulatePublicMaxGasLimit} for simulation`);
1619
+ }
1620
+ const txHash = tx.getTxHash();
1621
+ const l2Tips = await this.blockSource.getL2Tips();
1622
+ const latestBlockNumber = l2Tips.proposed.number;
1623
+ const blockNumber = BlockNumber.add(latestBlockNumber, 1);
1624
+ // If sequencer is not initialized, we just set these values to zero for simulation.
1625
+ const coinbase = EthAddress.ZERO;
1626
+ const feeRecipient = AztecAddress.ZERO;
1627
+ const newGlobalVariables = await this.globalVariableBuilder.buildGlobalVariables(blockNumber, coinbase, feeRecipient);
1628
+ const publicProcessorFactory = new PublicProcessorFactory(this.contractDataSource, new DateProvider(), this.telemetry, this.log.getBindings());
1629
+ this.log.verbose(`Simulating public calls for tx ${txHash}`, {
1630
+ globalVariables: newGlobalVariables.toInspect(),
1631
+ txHash,
1632
+ blockNumber
1633
+ });
1634
+ // Ensure world-state has caught up with the latest block we loaded from the archiver
1635
+ await this.worldStateSynchronizer.syncImmediate(latestBlockNumber);
1636
+ // If we detect the next block would start a new checkpoint, then insert L1-to-L2 messages into
1637
+ // the world state tree so simulation can take them into account. We detect if the next block would
1638
+ // start a new checkpoint by checking if the proposed checkpoint's block number matches the latest block number,
1639
+ // which means the next block would be the first block of the next checkpoint.
1640
+ const targetCheckpoint = CheckpointNumber((l2Tips.proposedCheckpoint.checkpoint.number ?? CheckpointNumber.ZERO) + 1);
1641
+ const nextCheckpointMessages = l2Tips.proposedCheckpoint.block.number === l2Tips.proposed.number ? await this.l1ToL2MessageSource.getL1ToL2Messages(targetCheckpoint).catch((err)=>{
1642
+ if (isErrorClass(err, L1ToL2MessagesNotReadyError)) {
1643
+ this.log.warn(`L1-to-L2 messages for checkpoint ${targetCheckpoint} are not ready yet (simulating without them)`);
1644
+ } else {
1645
+ this.log.error(`Failed to get L1-to-L2 messages for checkpoint ${targetCheckpoint} (simulating without them)`, err);
1646
+ }
1647
+ return undefined;
1648
+ }) : undefined;
1649
+ const merkleTreeFork = _ts_add_disposable_resource(env, await this.worldStateSynchronizer.fork(latestBlockNumber), true);
1650
+ if (nextCheckpointMessages !== undefined) {
1651
+ this.log.debug(`Appending ${nextCheckpointMessages.length} L1-to-L2 messages to the world state tree for the next checkpoint`, {
1652
+ checkpointNumber: l2Tips.proposedCheckpoint.checkpoint.number + 1
1653
+ });
1654
+ await appendL1ToL2MessagesToTree(merkleTreeFork, nextCheckpointMessages);
1655
+ }
1656
+ await applyPublicDataOverrides(merkleTreeFork, overrides?.publicStorage);
1311
1657
  const config = PublicSimulatorConfig.from({
1312
1658
  skipFeeEnforcement,
1313
1659
  collectDebugLogs: true,
@@ -1318,7 +1664,11 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
1318
1664
  maxDebugLogMemoryReads: this.config.rpcSimulatePublicMaxDebugLogMemoryReads
1319
1665
  })
1320
1666
  });
1321
- const processor = publicProcessorFactory.create(merkleTreeFork, newGlobalVariables, config);
1667
+ const contractsDB = new PublicContractsDB(this.contractDataSource, this.log.getBindings());
1668
+ if (overrides?.contracts) {
1669
+ contractsDB.addContracts(Object.values(overrides.contracts).map(({ instance })=>instance));
1670
+ }
1671
+ const processor = publicProcessorFactory.create(merkleTreeFork, newGlobalVariables, config, contractsDB);
1322
1672
  // REFACTOR: Consider merging ProcessReturnValues into ProcessedTx
1323
1673
  const [processedTxs, failedTxs, _usedTxs, returns, debugLogs] = await processor.process([
1324
1674
  tx
@@ -1332,13 +1682,17 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
1332
1682
  }
1333
1683
  const [processedTx] = processedTxs;
1334
1684
  return new PublicSimulationOutput(processedTx.revertReason, processedTx.globalVariables, processedTx.txEffect, returns, processedTx.gasUsed, debugLogs);
1685
+ } catch (e) {
1686
+ env.error = e;
1687
+ env.hasError = true;
1335
1688
  } finally{
1336
- await merkleTreeFork.close();
1689
+ const result = _ts_dispose_resources(env);
1690
+ if (result) await result;
1337
1691
  }
1338
1692
  }
1339
1693
  async isValidTx(tx, { isSimulation, skipFeeEnforcement } = {}) {
1340
1694
  const db = this.worldStateSynchronizer.getCommitted();
1341
- const verifier = isSimulation ? undefined : this.proofVerifier;
1695
+ const verifier = isSimulation ? undefined : this.rpcProofVerifier;
1342
1696
  // We accept transactions if they are not expired by the next slot (checked based on the ExpirationTimestamp field)
1343
1697
  const { ts: nextSlotTimestamp } = this.epochCache.getEpochAndSlotInNextL1Slot();
1344
1698
  const blockNumber = BlockNumber(await this.blockSource.getBlockNumber() + 1);
@@ -1371,7 +1725,20 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
1371
1725
  ...this.config,
1372
1726
  ...config
1373
1727
  };
1374
- this.sequencer?.updateConfig(config);
1728
+ // If the sequencer is currently paused via pauseSequencer(), record the caller's desired
1729
+ // minTxsPerBlock as the restore value (so resumeSequencer applies it) and keep the freeze
1730
+ // (MAX_SAFE_INTEGER) applied to the underlying sequencer. Without this guard, forwarding
1731
+ // the new minTxsPerBlock to the sequencer would silently unpause block production while
1732
+ // pauseSequencer() still considers it paused.
1733
+ const sequencerUpdate = {
1734
+ ...config
1735
+ };
1736
+ if (this.sequencerPausedMinTxsPerBlock !== undefined && sequencerUpdate.minTxsPerBlock !== undefined) {
1737
+ this.sequencerPausedMinTxsPerBlock = sequencerUpdate.minTxsPerBlock;
1738
+ delete sequencerUpdate.minTxsPerBlock;
1739
+ }
1740
+ this.sequencer?.updateConfig(sequencerUpdate);
1741
+ this.automineSequencer?.updateConfig(sequencerUpdate);
1375
1742
  this.slasherClient?.updateConfig(config);
1376
1743
  this.validatorsSentinel?.updateConfig(config);
1377
1744
  await this.p2pClient.updateP2PConfig(config);
@@ -1380,7 +1747,18 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
1380
1747
  archiver.updateConfig(config);
1381
1748
  }
1382
1749
  if (newConfig.realProofs !== this.config.realProofs) {
1383
- this.proofVerifier = config.realProofs ? await BBCircuitVerifier.new(newConfig) : new TestCircuitVerifier();
1750
+ await Promise.all([
1751
+ tryStop(this.peerProofVerifier),
1752
+ tryStop(this.rpcProofVerifier)
1753
+ ]);
1754
+ if (newConfig.realProofs) {
1755
+ this.peerProofVerifier = await BatchChonkVerifier.new(newConfig, newConfig.bbChonkVerifyMaxBatch, 'peer');
1756
+ const rpcVerifier = await BBCircuitVerifier.new(newConfig);
1757
+ this.rpcProofVerifier = new QueuedIVCVerifier(rpcVerifier, newConfig.numConcurrentIVCVerifiers);
1758
+ } else {
1759
+ this.peerProofVerifier = new TestCircuitVerifier();
1760
+ this.rpcProofVerifier = new TestCircuitVerifier();
1761
+ }
1384
1762
  }
1385
1763
  this.config = newConfig;
1386
1764
  }
@@ -1389,7 +1767,7 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
1389
1767
  classRegistry: ProtocolContractAddress.ContractClassRegistry,
1390
1768
  feeJuice: ProtocolContractAddress.FeeJuice,
1391
1769
  instanceRegistry: ProtocolContractAddress.ContractInstanceRegistry,
1392
- multiCallEntrypoint: ProtocolContractAddress.MultiCallEntrypoint
1770
+ multiCallEntrypoint: STANDARD_MULTI_CALL_ENTRYPOINT_ADDRESS
1393
1771
  });
1394
1772
  }
1395
1773
  registerContractFunctionSignatures(signatures) {
@@ -1440,7 +1818,7 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
1440
1818
  });
1441
1819
  return Promise.resolve();
1442
1820
  }
1443
- async rollbackTo(targetBlock, force) {
1821
+ async rollbackTo(targetBlock, force, resumeSync = true) {
1444
1822
  const archiver = this.blockSource;
1445
1823
  if (!('rollbackTo' in archiver)) {
1446
1824
  throw new Error('Archiver implementation does not support rollbacks.');
@@ -1468,9 +1846,13 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
1468
1846
  this.log.error(`Error during rollback`, err);
1469
1847
  throw err;
1470
1848
  } finally{
1471
- this.log.info(`Resuming world state and archiver sync.`);
1472
- this.worldStateSynchronizer.resumeSync();
1473
- archiver.resume();
1849
+ if (resumeSync) {
1850
+ this.log.info(`Resuming world state and archiver sync.`);
1851
+ this.worldStateSynchronizer.resumeSync();
1852
+ archiver.resume();
1853
+ } else {
1854
+ this.log.info(`Sync left paused after rollback (resumeSync=false).`);
1855
+ }
1474
1856
  }
1475
1857
  }
1476
1858
  async pauseSync() {
@@ -1484,18 +1866,51 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
1484
1866
  this.blockSource.resume();
1485
1867
  return Promise.resolve();
1486
1868
  }
1487
- getSlashPayloads() {
1488
- if (!this.slasherClient) {
1489
- throw new Error(`Slasher client not enabled`);
1869
+ pauseSequencer() {
1870
+ if (this.automineSequencer) {
1871
+ this.automineSequencer.pause();
1872
+ return Promise.resolve();
1873
+ }
1874
+ if (this.sequencer) {
1875
+ if (this.sequencerPausedMinTxsPerBlock === undefined) {
1876
+ this.sequencerPausedMinTxsPerBlock = this.sequencer.getSequencer().getConfig().minTxsPerBlock ?? 0;
1877
+ this.sequencer.updateConfig({
1878
+ minTxsPerBlock: Number.MAX_SAFE_INTEGER
1879
+ });
1880
+ this.log.info(`Sequencer paused (minTxsPerBlock set to MAX_SAFE_INTEGER)`, {
1881
+ previousMinTxsPerBlock: this.sequencerPausedMinTxsPerBlock
1882
+ });
1883
+ }
1884
+ return Promise.resolve();
1885
+ }
1886
+ throw new BadRequestError('Cannot pause sequencer: no sequencer is running');
1887
+ }
1888
+ resumeSequencer() {
1889
+ if (this.automineSequencer) {
1890
+ this.automineSequencer.resume();
1891
+ return Promise.resolve();
1892
+ }
1893
+ if (this.sequencer) {
1894
+ if (this.sequencerPausedMinTxsPerBlock !== undefined) {
1895
+ const restored = this.sequencerPausedMinTxsPerBlock;
1896
+ this.sequencerPausedMinTxsPerBlock = undefined;
1897
+ this.sequencer.updateConfig({
1898
+ minTxsPerBlock: restored
1899
+ });
1900
+ this.log.info(`Sequencer resumed (minTxsPerBlock restored)`, {
1901
+ minTxsPerBlock: restored
1902
+ });
1903
+ }
1904
+ return Promise.resolve();
1490
1905
  }
1491
- return this.slasherClient.getSlashPayloads();
1906
+ throw new BadRequestError('Cannot resume sequencer: no sequencer is running');
1492
1907
  }
1493
1908
  getSlashOffenses(round) {
1494
1909
  if (!this.slasherClient) {
1495
1910
  throw new Error(`Slasher client not enabled`);
1496
1911
  }
1497
1912
  if (round === 'all') {
1498
- return this.slasherClient.getPendingOffenses();
1913
+ return this.slasherClient.getOffenses();
1499
1914
  } else {
1500
1915
  return this.slasherClient.gatherOffensesForRound(round === 'current' ? undefined : BigInt(round));
1501
1916
  }
@@ -1567,81 +1982,104 @@ _dec = trackSpan('AztecNodeService.simulatePublicCalls', (tx)=>({
1567
1982
  this.keyStoreManager = newManager;
1568
1983
  this.log.info('Keystore reloaded: coinbase, feeRecipient, and attester keys updated');
1569
1984
  }
1570
- #getInitialHeaderHash() {
1571
- if (!this.initialHeaderHashPromise) {
1572
- this.initialHeaderHashPromise = this.worldStateSynchronizer.getCommitted().getInitialHeader().hash();
1985
+ async mineBlock() {
1986
+ if (this.automineSequencer) {
1987
+ await this.automineSequencer.buildEmptyBlock();
1988
+ return;
1989
+ }
1990
+ if (!this.sequencer) {
1991
+ throw new BadRequestError('Cannot mine block: no sequencer is running');
1992
+ }
1993
+ const currentBlockNumber = await this.getBlockNumber();
1994
+ // Use slot duration + 50% buffer as the timeout so this works on running networks too
1995
+ const { slotDuration } = await this.blockSource.getL1Constants();
1996
+ const timeoutSeconds = Math.ceil(slotDuration * 1.5);
1997
+ // Temporarily set minTxsPerBlock to 0 so the sequencer produces a block even with no txs
1998
+ const originalMinTxsPerBlock = this.sequencer.getSequencer().getConfig().minTxsPerBlock;
1999
+ this.sequencer.updateConfig({
2000
+ minTxsPerBlock: 0
2001
+ });
2002
+ try {
2003
+ // Trigger the sequencer to produce a block immediately
2004
+ void this.sequencer.trigger();
2005
+ // Wait for the new L2 block to appear
2006
+ await retryUntil(async ()=>{
2007
+ const newBlockNumber = await this.getBlockNumber();
2008
+ return newBlockNumber > currentBlockNumber ? true : undefined;
2009
+ }, 'mineBlock', timeoutSeconds, 0.1);
2010
+ } finally{
2011
+ this.sequencer.updateConfig({
2012
+ minTxsPerBlock: originalMinTxsPerBlock
2013
+ });
1573
2014
  }
1574
- return this.initialHeaderHashPromise;
1575
2015
  }
1576
2016
  /**
1577
2017
  * Returns an instance of MerkleTreeOperations having first ensured the world state is fully synched
1578
2018
  * @param block - The block parameter (block number, block hash, or 'latest') at which to get the data.
1579
2019
  * @returns An instance of a committed MerkleTreeOperations
1580
2020
  */ async getWorldState(block) {
2021
+ const query = this.normalizeBlockParameter(block);
2022
+ // When the request anchors on a specific block hash, resolve it against the archiver up front and
2023
+ // drive the world-state sync to that exact block number and hash. Resolving against the archiver
2024
+ // first fails fast with a clear reorg error if the hash is unknown, and passing the hash to the
2025
+ // synchronizer makes the sync reorg-aware: it barriers until the archive-tree commit for that block
2026
+ // has landed and verifies it matches the requested fork, instead of syncing to bare latest height
2027
+ // and then racing the snapshot read below against an in-flight archive-tree write.
2028
+ const requestedHash = 'hash' in query ? query.hash : undefined;
2029
+ const anchorBlockNumber = requestedHash !== undefined ? await this.resolveBlockNumber(query) : undefined;
1581
2030
  let blockSyncedTo = BlockNumber.ZERO;
1582
2031
  try {
1583
2032
  // Attempt to sync the world state if necessary
1584
- blockSyncedTo = await this.#syncWorldState();
2033
+ blockSyncedTo = await this.#syncWorldState(anchorBlockNumber, requestedHash);
1585
2034
  } catch (err) {
1586
2035
  this.log.error(`Error getting world state: ${err}`);
1587
2036
  }
1588
- if (block === 'latest') {
1589
- this.log.debug(`Using committed db for block 'latest', world state synced upto ${blockSyncedTo}`);
2037
+ if ('tag' in query && query.tag === 'proposed') {
2038
+ this.log.debug(`Using committed db for latest block, world state synced upto ${blockSyncedTo}`);
1590
2039
  return this.worldStateSynchronizer.getCommitted();
1591
2040
  }
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
- }
2041
+ const blockNumber = anchorBlockNumber ?? await this.resolveBlockNumber(query);
1608
2042
  // Check it's within world state sync range
1609
2043
  if (blockNumber > blockSyncedTo) {
1610
- throw new Error(`Queried block ${block} not yet synced by the node (node is synced upto ${blockSyncedTo}).`);
2044
+ throw new Error(`Queried block ${inspectBlockParameter(block)} not yet synced by the node (node is synced upto ${blockSyncedTo}).`);
1611
2045
  }
1612
2046
  this.log.debug(`Using snapshot for block ${blockNumber}, world state synced upto ${blockSyncedTo}`);
1613
2047
  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)) {
2048
+ // Double-check world-state synced to the same block hash as was requested.
2049
+ // Block 0 is skipped: the snapshot returned by `getSnapshot(0)` is the *pre*-genesis archive
2050
+ // (size 0), so leaf 0 is not yet inserted from that snapshot's view even though block 0's hash
2051
+ // does live at archive index 0 in the committed tree. The genesis hash is already validated by
2052
+ // the archiver when it resolves the hash query to block number 0.
2053
+ if (requestedHash !== undefined && blockNumber !== BlockNumber.ZERO) {
1616
2054
  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.`);
2055
+ if (!blockHash || !requestedHash.equals(blockHash)) {
2056
+ 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.`);
1619
2057
  }
1620
2058
  }
1621
2059
  return snapshot;
1622
2060
  }
1623
- /** Resolves a block parameter to a block number. */ async resolveBlockNumber(block) {
1624
- if (block === 'latest') {
1625
- return BlockNumber(await this.blockSource.getBlockNumber());
1626
- }
1627
- if (BlockHash.isBlockHash(block)) {
1628
- const initialBlockHash = await this.#getInitialHeaderHash();
1629
- if (block.equals(initialBlockHash)) {
1630
- return BlockNumber.ZERO;
2061
+ /** Resolves any {@link BlockParameter} variant to a concrete block number. */ async resolveBlockNumber(block) {
2062
+ const query = this.normalizeBlockParameter(block);
2063
+ const blockNumber = await this.blockSource.getBlockNumber(query);
2064
+ if (blockNumber === undefined) {
2065
+ if ('hash' in query) {
2066
+ 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.`);
1631
2067
  }
1632
- const header = await this.blockSource.getBlockHeaderByHash(block);
1633
- if (!header) {
1634
- throw new Error(`Block hash ${block.toString()} not found.`);
2068
+ if ('archive' in query) {
2069
+ throw new Error(`Block with archive ${query.archive.toString()} not found.`);
1635
2070
  }
1636
- return header.getBlockNumber();
2071
+ throw new Error(`Block not found for ${inspectBlockParameter(block)}.`);
1637
2072
  }
1638
- return block;
2073
+ return blockNumber;
1639
2074
  }
1640
2075
  /**
1641
- * Ensure we fully sync the world state
2076
+ * Ensure the world state is synced.
2077
+ * @param targetBlockNumber - Block to sync up to. Defaults to the latest block known to the archiver.
2078
+ * @param blockHash - If provided, the synchronizer verifies the block at `targetBlockNumber` matches this
2079
+ * hash, resyncing (and so detecting reorgs) if it does not yet match or has been reorged away.
1642
2080
  * @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);
2081
+ */ async #syncWorldState(targetBlockNumber, blockHash) {
2082
+ const target = targetBlockNumber ?? await this.blockSource.getBlockNumber();
2083
+ return await this.worldStateSynchronizer.syncImmediate(target, blockHash);
1646
2084
  }
1647
2085
  }