@aztec/validator-client 0.0.1-commit.d6f2b3f94 → 0.0.1-commit.dbf9cec

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/block_proposal_handler.d.ts +2 -2
  2. package/dest/block_proposal_handler.d.ts.map +1 -1
  3. package/dest/block_proposal_handler.js +20 -34
  4. package/dest/checkpoint_builder.d.ts +8 -5
  5. package/dest/checkpoint_builder.d.ts.map +1 -1
  6. package/dest/checkpoint_builder.js +24 -17
  7. package/dest/config.d.ts +1 -1
  8. package/dest/config.d.ts.map +1 -1
  9. package/dest/config.js +1 -1
  10. package/dest/duties/validation_service.d.ts +2 -2
  11. package/dest/duties/validation_service.d.ts.map +1 -1
  12. package/dest/duties/validation_service.js +3 -3
  13. package/dest/index.d.ts +1 -2
  14. package/dest/index.d.ts.map +1 -1
  15. package/dest/index.js +0 -1
  16. package/dest/validator.d.ts +11 -5
  17. package/dest/validator.d.ts.map +1 -1
  18. package/dest/validator.js +54 -18
  19. package/package.json +19 -19
  20. package/src/block_proposal_handler.ts +28 -48
  21. package/src/checkpoint_builder.ts +19 -5
  22. package/src/config.ts +1 -1
  23. package/src/duties/validation_service.ts +9 -2
  24. package/src/index.ts +0 -1
  25. package/src/validator.ts +62 -15
  26. package/dest/tx_validator/index.d.ts +0 -3
  27. package/dest/tx_validator/index.d.ts.map +0 -1
  28. package/dest/tx_validator/index.js +0 -2
  29. package/dest/tx_validator/nullifier_cache.d.ts +0 -14
  30. package/dest/tx_validator/nullifier_cache.d.ts.map +0 -1
  31. package/dest/tx_validator/nullifier_cache.js +0 -24
  32. package/dest/tx_validator/tx_validator_factory.d.ts +0 -19
  33. package/dest/tx_validator/tx_validator_factory.d.ts.map +0 -1
  34. package/dest/tx_validator/tx_validator_factory.js +0 -54
  35. package/src/tx_validator/index.ts +0 -2
  36. package/src/tx_validator/nullifier_cache.ts +0 -30
  37. package/src/tx_validator/tx_validator_factory.ts +0 -154
package/src/validator.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  import type { BlobClientInterface } from '@aztec/blob-client/client';
2
2
  import { type Blob, getBlobsPerL1Block } from '@aztec/blob-lib';
3
3
  import type { EpochCache } from '@aztec/epoch-cache';
4
+ import { validateFeeAssetPriceModifier } from '@aztec/ethereum/contracts';
4
5
  import {
5
6
  BlockNumber,
6
7
  CheckpointNumber,
@@ -23,7 +24,7 @@ import { AuthRequest, AuthResponse, BlockProposalValidator, ReqRespSubProtocol }
23
24
  import { OffenseType, WANT_TO_SLASH_EVENT, type Watcher, type WatcherEmitter } from '@aztec/slasher';
24
25
  import type { AztecAddress } from '@aztec/stdlib/aztec-address';
25
26
  import type { CommitteeAttestationsAndSigners, L2Block, L2BlockSink, L2BlockSource } from '@aztec/stdlib/block';
26
- import { getEpochAtSlot } from '@aztec/stdlib/epoch-helpers';
27
+ import { getEpochAtSlot, getTimestampForSlot } from '@aztec/stdlib/epoch-helpers';
27
28
  import type {
28
29
  CreateCheckpointProposalLastBlockData,
29
30
  ITxProvider,
@@ -46,6 +47,7 @@ import { AttestationTimeoutError } from '@aztec/stdlib/validators';
46
47
  import { type TelemetryClient, type Tracer, getTelemetryClient } from '@aztec/telemetry-client';
47
48
  import { createHASigner } from '@aztec/validator-ha-signer/factory';
48
49
  import { DutyType, type SigningContext } from '@aztec/validator-ha-signer/types';
50
+ import type { ValidatorHASigner } from '@aztec/validator-ha-signer/validator-ha-signer';
49
51
 
50
52
  import { EventEmitter } from 'events';
51
53
  import type { TypedDataDefinition } from 'viem';
@@ -76,7 +78,6 @@ export class ValidatorClient extends (EventEmitter as new () => WatcherEmitter)
76
78
  private validationService: ValidationService;
77
79
  private metrics: ValidatorMetrics;
78
80
  private log: Logger;
79
-
80
81
  // Whether it has already registered handlers on the p2p client
81
82
  private hasRegisteredHandlers = false;
82
83
 
@@ -105,6 +106,7 @@ export class ValidatorClient extends (EventEmitter as new () => WatcherEmitter)
105
106
  private l1ToL2MessageSource: L1ToL2MessageSource,
106
107
  private config: ValidatorClientFullConfig,
107
108
  private blobClient: BlobClientInterface,
109
+ private haSigner: ValidatorHASigner | undefined,
108
110
  private dateProvider: DateProvider = new DateProvider(),
109
111
  telemetry: TelemetryClient = getTelemetryClient(),
110
112
  log = createLogger('validator'),
@@ -210,15 +212,18 @@ export class ValidatorClient extends (EventEmitter as new () => WatcherEmitter)
210
212
  telemetry,
211
213
  );
212
214
 
213
- let validatorKeyStore: ExtendedValidatorKeyStore = NodeKeystoreAdapter.fromKeyStoreManager(keyStoreManager);
215
+ const nodeKeystoreAdapter = NodeKeystoreAdapter.fromKeyStoreManager(keyStoreManager);
216
+ let validatorKeyStore: ExtendedValidatorKeyStore = nodeKeystoreAdapter;
217
+ let haSigner: ValidatorHASigner | undefined;
214
218
  if (config.haSigningEnabled) {
215
219
  // If maxStuckDutiesAgeMs is not explicitly set, compute it from Aztec slot duration
216
220
  const haConfig = {
217
221
  ...config,
218
222
  maxStuckDutiesAgeMs: config.maxStuckDutiesAgeMs ?? epochCache.getL1Constants().slotDuration * 2 * 1000,
219
223
  };
220
- const { signer } = await createHASigner(haConfig);
221
- validatorKeyStore = new HAKeyStore(validatorKeyStore, signer);
224
+ const { signer } = await createHASigner(haConfig, { telemetryClient: telemetry, dateProvider });
225
+ haSigner = signer;
226
+ validatorKeyStore = new HAKeyStore(nodeKeystoreAdapter, signer);
222
227
  }
223
228
 
224
229
  const validator = new ValidatorClient(
@@ -232,6 +237,7 @@ export class ValidatorClient extends (EventEmitter as new () => WatcherEmitter)
232
237
  l1ToL2MessageSource,
233
238
  config,
234
239
  blobClient,
240
+ haSigner,
235
241
  dateProvider,
236
242
  telemetry,
237
243
  );
@@ -269,6 +275,28 @@ export class ValidatorClient extends (EventEmitter as new () => WatcherEmitter)
269
275
  this.config = { ...this.config, ...config };
270
276
  }
271
277
 
278
+ public reloadKeystore(newManager: KeystoreManager): void {
279
+ if (this.config.haSigningEnabled && !this.haSigner) {
280
+ this.log.warn(
281
+ 'HA signing is enabled in config but was not initialized at startup. ' +
282
+ 'Restart the node to enable HA signing.',
283
+ );
284
+ } else if (!this.config.haSigningEnabled && this.haSigner) {
285
+ this.log.warn(
286
+ 'HA signing was disabled via config update but the HA signer is still active. ' +
287
+ 'Restart the node to fully disable HA signing.',
288
+ );
289
+ }
290
+
291
+ const newAdapter = NodeKeystoreAdapter.fromKeyStoreManager(newManager);
292
+ if (this.haSigner) {
293
+ this.keyStore = new HAKeyStore(newAdapter, this.haSigner);
294
+ } else {
295
+ this.keyStore = newAdapter;
296
+ }
297
+ this.validationService = new ValidationService(this.keyStore, this.log.createChild('validation-service'));
298
+ }
299
+
272
300
  public async start() {
273
301
  if (this.epochCacheUpdateLoop.isRunning()) {
274
302
  this.log.warn(`Validator client already started`);
@@ -471,6 +499,14 @@ export class ValidatorClient extends (EventEmitter as new () => WatcherEmitter)
471
499
  return undefined;
472
500
  }
473
501
 
502
+ // Validate fee asset price modifier is within allowed range
503
+ if (!validateFeeAssetPriceModifier(proposal.feeAssetPriceModifier)) {
504
+ this.log.warn(
505
+ `Received checkpoint proposal with invalid feeAssetPriceModifier ${proposal.feeAssetPriceModifier} for slot ${slotNumber}`,
506
+ );
507
+ return undefined;
508
+ }
509
+
474
510
  // Check that I have any address in current committee before attesting
475
511
  const inCommittee = await this.epochCache.filterInCommittee(slotNumber, this.getValidatorAddresses());
476
512
  const partOfCommittee = inCommittee.length > 0;
@@ -595,7 +631,11 @@ export class ValidatorClient extends (EventEmitter as new () => WatcherEmitter)
595
631
  proposalInfo: LogData,
596
632
  ): Promise<{ isValid: true } | { isValid: false; reason: string }> {
597
633
  const slot = proposal.slotNumber;
598
- const timeoutSeconds = 10; // TODO(palla/mbps): This should map to the timetable settings
634
+
635
+ // Timeout block syncing at the start of the next slot
636
+ const config = this.checkpointsBuilder.getConfig();
637
+ const nextSlotTimestampSeconds = Number(getTimestampForSlot(SlotNumber(slot + 1), config));
638
+ const timeoutSeconds = Math.max(1, nextSlotTimestampSeconds - Math.floor(this.dateProvider.now() / 1000));
599
639
 
600
640
  // Wait for last block to sync by archive
601
641
  let lastBlockHeader: BlockHeader | undefined;
@@ -630,6 +670,12 @@ export class ValidatorClient extends (EventEmitter as new () => WatcherEmitter)
630
670
  return { isValid: false, reason: 'no_blocks_for_slot' };
631
671
  }
632
672
 
673
+ // Ensure the last block for this slot matches the archive in the checkpoint proposal
674
+ if (!blocks.at(-1)?.archive.root.equals(proposal.archive)) {
675
+ this.log.warn(`Last block archive mismatch for checkpoint proposal`, proposalInfo);
676
+ return { isValid: false, reason: 'last_block_archive_mismatch' };
677
+ }
678
+
633
679
  this.log.debug(`Found ${blocks.length} blocks for slot ${slot}`, {
634
680
  ...proposalInfo,
635
681
  blockNumbers: blocks.map(b => b.number),
@@ -643,14 +689,11 @@ export class ValidatorClient extends (EventEmitter as new () => WatcherEmitter)
643
689
  // Get L1-to-L2 messages for this checkpoint
644
690
  const l1ToL2Messages = await this.l1ToL2MessageSource.getL1ToL2Messages(checkpointNumber);
645
691
 
646
- // Compute the previous checkpoint out hashes for the epoch.
647
- // TODO: There can be a more efficient way to get the previous checkpoint out hashes without having to fetch the
648
- // actual checkpoints and the blocks/txs in them.
692
+ // Collect the out hashes of all the checkpoints before this one in the same epoch
649
693
  const epoch = getEpochAtSlot(slot, this.epochCache.getL1Constants());
650
- const previousCheckpoints = (await this.blockSource.getCheckpointsForEpoch(epoch))
651
- .filter(b => b.number < checkpointNumber)
652
- .sort((a, b) => a.number - b.number);
653
- const previousCheckpointOutHashes = previousCheckpoints.map(c => c.getCheckpointOutHash());
694
+ const previousCheckpointOutHashes = (await this.blockSource.getCheckpointsDataForEpoch(epoch))
695
+ .filter(c => c.checkpointNumber < checkpointNumber)
696
+ .map(c => c.checkpointOutHash);
654
697
 
655
698
  // Fork world state at the block before the first block
656
699
  const parentBlockNumber = BlockNumber(firstBlock.number - 1);
@@ -661,6 +704,7 @@ export class ValidatorClient extends (EventEmitter as new () => WatcherEmitter)
661
704
  const checkpointBuilder = await this.checkpointsBuilder.openCheckpoint(
662
705
  checkpointNumber,
663
706
  constants,
707
+ proposal.feeAssetPriceModifier,
664
708
  l1ToL2Messages,
665
709
  previousCheckpointOutHashes,
666
710
  fork,
@@ -723,6 +767,7 @@ export class ValidatorClient extends (EventEmitter as new () => WatcherEmitter)
723
767
  chainId: gv.chainId,
724
768
  version: gv.version,
725
769
  slotNumber: gv.slotNumber,
770
+ timestamp: gv.timestamp,
726
771
  coinbase: gv.coinbase,
727
772
  feeRecipient: gv.feeRecipient,
728
773
  gasFees: gv.gasFees,
@@ -732,7 +777,7 @@ export class ValidatorClient extends (EventEmitter as new () => WatcherEmitter)
732
777
  /**
733
778
  * Uploads blobs for a checkpoint to the filestore (fire and forget).
734
779
  */
735
- private async uploadBlobsForCheckpoint(proposal: CheckpointProposalCore, proposalInfo: LogData): Promise<void> {
780
+ protected async uploadBlobsForCheckpoint(proposal: CheckpointProposalCore, proposalInfo: LogData): Promise<void> {
736
781
  try {
737
782
  const lastBlockHeader = await this.blockSource.getBlockHeaderByArchive(proposal.archive);
738
783
  if (!lastBlockHeader) {
@@ -747,7 +792,7 @@ export class ValidatorClient extends (EventEmitter as new () => WatcherEmitter)
747
792
  }
748
793
 
749
794
  const blobFields = blocks.flatMap(b => b.toBlobFields());
750
- const blobs: Blob[] = getBlobsPerL1Block(blobFields);
795
+ const blobs: Blob[] = await getBlobsPerL1Block(blobFields);
751
796
  await this.blobClient.sendBlobsToFilestore(blobs);
752
797
  this.log.debug(`Uploaded ${blobs.length} blobs to filestore for checkpoint at slot ${proposal.slotNumber}`, {
753
798
  ...proposalInfo,
@@ -876,6 +921,7 @@ export class ValidatorClient extends (EventEmitter as new () => WatcherEmitter)
876
921
  async createCheckpointProposal(
877
922
  checkpointHeader: CheckpointHeader,
878
923
  archive: Fr,
924
+ feeAssetPriceModifier: bigint,
879
925
  lastBlockInfo: CreateCheckpointProposalLastBlockData | undefined,
880
926
  proposerAddress: EthAddress | undefined,
881
927
  options: CheckpointProposalOptions = {},
@@ -897,6 +943,7 @@ export class ValidatorClient extends (EventEmitter as new () => WatcherEmitter)
897
943
  const newProposal = await this.validationService.createCheckpointProposal(
898
944
  checkpointHeader,
899
945
  archive,
946
+ feeAssetPriceModifier,
900
947
  lastBlockInfo,
901
948
  proposerAddress,
902
949
  options,
@@ -1,3 +0,0 @@
1
- export * from './nullifier_cache.js';
2
- export * from './tx_validator_factory.js';
3
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguZC50cyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy90eF92YWxpZGF0b3IvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxzQkFBc0IsQ0FBQztBQUNyQyxjQUFjLDJCQUEyQixDQUFDIn0=
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/tx_validator/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,2BAA2B,CAAC"}
@@ -1,2 +0,0 @@
1
- export * from './nullifier_cache.js';
2
- export * from './tx_validator_factory.js';
@@ -1,14 +0,0 @@
1
- import type { NullifierSource } from '@aztec/p2p';
2
- import type { MerkleTreeReadOperations } from '@aztec/stdlib/interfaces/server';
3
- /**
4
- * Implements a nullifier source by checking a DB and an in-memory collection.
5
- * Intended for validating transactions as they are added to a block.
6
- */
7
- export declare class NullifierCache implements NullifierSource {
8
- private db;
9
- nullifiers: Set<string>;
10
- constructor(db: MerkleTreeReadOperations);
11
- nullifiersExist(nullifiers: Buffer[]): Promise<boolean[]>;
12
- addNullifiers(nullifiers: Buffer[]): void;
13
- }
14
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibnVsbGlmaWVyX2NhY2hlLmQudHMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvdHhfdmFsaWRhdG9yL251bGxpZmllcl9jYWNoZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEtBQUssRUFBRSxlQUFlLEVBQUUsTUFBTSxZQUFZLENBQUM7QUFDbEQsT0FBTyxLQUFLLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQztBQUdoRjs7O0dBR0c7QUFDSCxxQkFBYSxjQUFlLFlBQVcsZUFBZTtJQUd4QyxPQUFPLENBQUMsRUFBRTtJQUZ0QixVQUFVLEVBQUUsR0FBRyxDQUFDLE1BQU0sQ0FBQyxDQUFDO0lBRXhCLFlBQW9CLEVBQUUsRUFBRSx3QkFBd0IsRUFFL0M7SUFFWSxlQUFlLENBQUMsVUFBVSxFQUFFLE1BQU0sRUFBRSxHQUFHLE9BQU8sQ0FBQyxPQUFPLEVBQUUsQ0FBQyxDQU9yRTtJQUVNLGFBQWEsQ0FBQyxVQUFVLEVBQUUsTUFBTSxFQUFFLFFBSXhDO0NBQ0YifQ==
@@ -1 +0,0 @@
1
- {"version":3,"file":"nullifier_cache.d.ts","sourceRoot":"","sources":["../../src/tx_validator/nullifier_cache.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,YAAY,CAAC;AAClD,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,iCAAiC,CAAC;AAGhF;;;GAGG;AACH,qBAAa,cAAe,YAAW,eAAe;IAGxC,OAAO,CAAC,EAAE;IAFtB,UAAU,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC;IAExB,YAAoB,EAAE,EAAE,wBAAwB,EAE/C;IAEY,eAAe,CAAC,UAAU,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,OAAO,EAAE,CAAC,CAOrE;IAEM,aAAa,CAAC,UAAU,EAAE,MAAM,EAAE,QAIxC;CACF"}
@@ -1,24 +0,0 @@
1
- import { MerkleTreeId } from '@aztec/stdlib/trees';
2
- /**
3
- * Implements a nullifier source by checking a DB and an in-memory collection.
4
- * Intended for validating transactions as they are added to a block.
5
- */ export class NullifierCache {
6
- db;
7
- nullifiers;
8
- constructor(db){
9
- this.db = db;
10
- this.nullifiers = new Set();
11
- }
12
- async nullifiersExist(nullifiers) {
13
- const cacheResults = nullifiers.map((n)=>this.nullifiers.has(n.toString()));
14
- const toCheckDb = nullifiers.filter((_n, index)=>!cacheResults[index]);
15
- const dbHits = await this.db.findLeafIndices(MerkleTreeId.NULLIFIER_TREE, toCheckDb);
16
- let dbIndex = 0;
17
- return nullifiers.map((_n, index)=>cacheResults[index] || dbHits[dbIndex++] !== undefined);
18
- }
19
- addNullifiers(nullifiers) {
20
- for (const nullifier of nullifiers){
21
- this.nullifiers.add(nullifier.toString());
22
- }
23
- }
24
- }
@@ -1,19 +0,0 @@
1
- import { BlockNumber } from '@aztec/foundation/branded-types';
2
- import type { LoggerBindings } from '@aztec/foundation/log';
3
- import type { ContractDataSource } from '@aztec/stdlib/contract';
4
- import type { GasFees } from '@aztec/stdlib/gas';
5
- import type { AllowedElement, ClientProtocolCircuitVerifier, MerkleTreeReadOperations, PublicProcessorValidator } from '@aztec/stdlib/interfaces/server';
6
- import { GlobalVariables, type Tx, type TxValidator } from '@aztec/stdlib/tx';
7
- import type { UInt64 } from '@aztec/stdlib/types';
8
- export declare function createValidatorForAcceptingTxs(db: MerkleTreeReadOperations, contractDataSource: ContractDataSource, verifier: ClientProtocolCircuitVerifier | undefined, { l1ChainId, rollupVersion, setupAllowList, gasFees, skipFeeEnforcement, timestamp, blockNumber, txsPermitted }: {
9
- l1ChainId: number;
10
- rollupVersion: number;
11
- setupAllowList: AllowedElement[];
12
- gasFees: GasFees;
13
- skipFeeEnforcement?: boolean;
14
- timestamp: UInt64;
15
- blockNumber: BlockNumber;
16
- txsPermitted: boolean;
17
- }, bindings?: LoggerBindings): TxValidator<Tx>;
18
- export declare function createValidatorForBlockBuilding(db: MerkleTreeReadOperations, contractDataSource: ContractDataSource, globalVariables: GlobalVariables, setupAllowList: AllowedElement[], bindings?: LoggerBindings): PublicProcessorValidator;
19
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHhfdmFsaWRhdG9yX2ZhY3RvcnkuZC50cyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy90eF92YWxpZGF0b3IvdHhfdmFsaWRhdG9yX2ZhY3RvcnkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLGlDQUFpQyxDQUFDO0FBRTlELE9BQU8sS0FBSyxFQUFFLGNBQWMsRUFBRSxNQUFNLHVCQUF1QixDQUFDO0FBaUI1RCxPQUFPLEtBQUssRUFBRSxrQkFBa0IsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ2pFLE9BQU8sS0FBSyxFQUFFLE9BQU8sRUFBRSxNQUFNLG1CQUFtQixDQUFDO0FBQ2pELE9BQU8sS0FBSyxFQUNWLGNBQWMsRUFDZCw2QkFBNkIsRUFDN0Isd0JBQXdCLEVBQ3hCLHdCQUF3QixFQUN6QixNQUFNLGlDQUFpQyxDQUFDO0FBRXpDLE9BQU8sRUFBRSxlQUFlLEVBQUUsS0FBSyxFQUFFLEVBQUUsS0FBSyxXQUFXLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQztBQUM5RSxPQUFPLEtBQUssRUFBRSxNQUFNLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUlsRCx3QkFBZ0IsOEJBQThCLENBQzVDLEVBQUUsRUFBRSx3QkFBd0IsRUFDNUIsa0JBQWtCLEVBQUUsa0JBQWtCLEVBQ3RDLFFBQVEsRUFBRSw2QkFBNkIsR0FBRyxTQUFTLEVBQ25ELEVBQ0UsU0FBUyxFQUNULGFBQWEsRUFDYixjQUFjLEVBQ2QsT0FBTyxFQUNQLGtCQUFrQixFQUNsQixTQUFTLEVBQ1QsV0FBVyxFQUNYLFlBQVksRUFDYixFQUFFO0lBQ0QsU0FBUyxFQUFFLE1BQU0sQ0FBQztJQUNsQixhQUFhLEVBQUUsTUFBTSxDQUFDO0lBQ3RCLGNBQWMsRUFBRSxjQUFjLEVBQUUsQ0FBQztJQUNqQyxPQUFPLEVBQUUsT0FBTyxDQUFDO0lBQ2pCLGtCQUFrQixDQUFDLEVBQUUsT0FBTyxDQUFDO0lBQzdCLFNBQVMsRUFBRSxNQUFNLENBQUM7SUFDbEIsV0FBVyxFQUFFLFdBQVcsQ0FBQztJQUN6QixZQUFZLEVBQUUsT0FBTyxDQUFDO0NBQ3ZCLEVBQ0QsUUFBUSxDQUFDLEVBQUUsY0FBYyxHQUN4QixXQUFXLENBQUMsRUFBRSxDQUFDLENBcUNqQjtBQUVELHdCQUFnQiwrQkFBK0IsQ0FDN0MsRUFBRSxFQUFFLHdCQUF3QixFQUM1QixrQkFBa0IsRUFBRSxrQkFBa0IsRUFDdEMsZUFBZSxFQUFFLGVBQWUsRUFDaEMsY0FBYyxFQUFFLGNBQWMsRUFBRSxFQUNoQyxRQUFRLENBQUMsRUFBRSxjQUFjLEdBQ3hCLHdCQUF3QixDQWlCMUIifQ==
@@ -1 +0,0 @@
1
- {"version":3,"file":"tx_validator_factory.d.ts","sourceRoot":"","sources":["../../src/tx_validator/tx_validator_factory.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,iCAAiC,CAAC;AAE9D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC;AAiB5D,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AACjE,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AACjD,OAAO,KAAK,EACV,cAAc,EACd,6BAA6B,EAC7B,wBAAwB,EACxB,wBAAwB,EACzB,MAAM,iCAAiC,CAAC;AAEzC,OAAO,EAAE,eAAe,EAAE,KAAK,EAAE,EAAE,KAAK,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAC9E,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAC;AAIlD,wBAAgB,8BAA8B,CAC5C,EAAE,EAAE,wBAAwB,EAC5B,kBAAkB,EAAE,kBAAkB,EACtC,QAAQ,EAAE,6BAA6B,GAAG,SAAS,EACnD,EACE,SAAS,EACT,aAAa,EACb,cAAc,EACd,OAAO,EACP,kBAAkB,EAClB,SAAS,EACT,WAAW,EACX,YAAY,EACb,EAAE;IACD,SAAS,EAAE,MAAM,CAAC;IAClB,aAAa,EAAE,MAAM,CAAC;IACtB,cAAc,EAAE,cAAc,EAAE,CAAC;IACjC,OAAO,EAAE,OAAO,CAAC;IACjB,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,EAAE,WAAW,CAAC;IACzB,YAAY,EAAE,OAAO,CAAC;CACvB,EACD,QAAQ,CAAC,EAAE,cAAc,GACxB,WAAW,CAAC,EAAE,CAAC,CAqCjB;AAED,wBAAgB,+BAA+B,CAC7C,EAAE,EAAE,wBAAwB,EAC5B,kBAAkB,EAAE,kBAAkB,EACtC,eAAe,EAAE,eAAe,EAChC,cAAc,EAAE,cAAc,EAAE,EAChC,QAAQ,CAAC,EAAE,cAAc,GACxB,wBAAwB,CAiB1B"}
@@ -1,54 +0,0 @@
1
- import { Fr } from '@aztec/foundation/curves/bn254';
2
- import { getVKTreeRoot } from '@aztec/noir-protocol-circuits-types/vk-tree';
3
- import { AggregateTxValidator, ArchiveCache, BlockHeaderTxValidator, DataTxValidator, DoubleSpendTxValidator, GasTxValidator, MetadataTxValidator, PhasesTxValidator, SizeTxValidator, TimestampTxValidator, TxPermittedValidator, TxProofValidator } from '@aztec/p2p';
4
- import { ProtocolContractAddress, protocolContractsHash } from '@aztec/protocol-contracts';
5
- import { DatabasePublicStateSource } from '@aztec/stdlib/trees';
6
- import { NullifierCache } from './nullifier_cache.js';
7
- export function createValidatorForAcceptingTxs(db, contractDataSource, verifier, { l1ChainId, rollupVersion, setupAllowList, gasFees, skipFeeEnforcement, timestamp, blockNumber, txsPermitted }, bindings) {
8
- const validators = [
9
- new TxPermittedValidator(txsPermitted, bindings),
10
- new SizeTxValidator(bindings),
11
- new DataTxValidator(bindings),
12
- new MetadataTxValidator({
13
- l1ChainId: new Fr(l1ChainId),
14
- rollupVersion: new Fr(rollupVersion),
15
- protocolContractsHash,
16
- vkTreeRoot: getVKTreeRoot()
17
- }, bindings),
18
- new TimestampTxValidator({
19
- timestamp,
20
- blockNumber
21
- }, bindings),
22
- new DoubleSpendTxValidator(new NullifierCache(db), bindings),
23
- new PhasesTxValidator(contractDataSource, setupAllowList, timestamp, bindings),
24
- new BlockHeaderTxValidator(new ArchiveCache(db), bindings)
25
- ];
26
- if (!skipFeeEnforcement) {
27
- validators.push(new GasTxValidator(new DatabasePublicStateSource(db), ProtocolContractAddress.FeeJuice, gasFees, bindings));
28
- }
29
- if (verifier) {
30
- validators.push(new TxProofValidator(verifier, bindings));
31
- }
32
- return new AggregateTxValidator(...validators);
33
- }
34
- export function createValidatorForBlockBuilding(db, contractDataSource, globalVariables, setupAllowList, bindings) {
35
- const nullifierCache = new NullifierCache(db);
36
- const archiveCache = new ArchiveCache(db);
37
- const publicStateSource = new DatabasePublicStateSource(db);
38
- return {
39
- preprocessValidator: preprocessValidator(nullifierCache, archiveCache, publicStateSource, contractDataSource, globalVariables, setupAllowList, bindings),
40
- nullifierCache
41
- };
42
- }
43
- function preprocessValidator(nullifierCache, archiveCache, publicStateSource, contractDataSource, globalVariables, setupAllowList, bindings) {
44
- // We don't include the TxProofValidator nor the DataTxValidator here because they are already checked by the time we get to block building.
45
- return new AggregateTxValidator(new MetadataTxValidator({
46
- l1ChainId: globalVariables.chainId,
47
- rollupVersion: globalVariables.version,
48
- protocolContractsHash,
49
- vkTreeRoot: getVKTreeRoot()
50
- }, bindings), new TimestampTxValidator({
51
- timestamp: globalVariables.timestamp,
52
- blockNumber: globalVariables.blockNumber
53
- }, bindings), new DoubleSpendTxValidator(nullifierCache, bindings), new PhasesTxValidator(contractDataSource, setupAllowList, globalVariables.timestamp, bindings), new GasTxValidator(publicStateSource, ProtocolContractAddress.FeeJuice, globalVariables.gasFees, bindings), new BlockHeaderTxValidator(archiveCache, bindings));
54
- }
@@ -1,2 +0,0 @@
1
- export * from './nullifier_cache.js';
2
- export * from './tx_validator_factory.js';
@@ -1,30 +0,0 @@
1
- import type { NullifierSource } from '@aztec/p2p';
2
- import type { MerkleTreeReadOperations } from '@aztec/stdlib/interfaces/server';
3
- import { MerkleTreeId } from '@aztec/stdlib/trees';
4
-
5
- /**
6
- * Implements a nullifier source by checking a DB and an in-memory collection.
7
- * Intended for validating transactions as they are added to a block.
8
- */
9
- export class NullifierCache implements NullifierSource {
10
- nullifiers: Set<string>;
11
-
12
- constructor(private db: MerkleTreeReadOperations) {
13
- this.nullifiers = new Set();
14
- }
15
-
16
- public async nullifiersExist(nullifiers: Buffer[]): Promise<boolean[]> {
17
- const cacheResults = nullifiers.map(n => this.nullifiers.has(n.toString()));
18
- const toCheckDb = nullifiers.filter((_n, index) => !cacheResults[index]);
19
- const dbHits = await this.db.findLeafIndices(MerkleTreeId.NULLIFIER_TREE, toCheckDb);
20
-
21
- let dbIndex = 0;
22
- return nullifiers.map((_n, index) => cacheResults[index] || dbHits[dbIndex++] !== undefined);
23
- }
24
-
25
- public addNullifiers(nullifiers: Buffer[]) {
26
- for (const nullifier of nullifiers) {
27
- this.nullifiers.add(nullifier.toString());
28
- }
29
- }
30
- }
@@ -1,154 +0,0 @@
1
- import { BlockNumber } from '@aztec/foundation/branded-types';
2
- import { Fr } from '@aztec/foundation/curves/bn254';
3
- import type { LoggerBindings } from '@aztec/foundation/log';
4
- import { getVKTreeRoot } from '@aztec/noir-protocol-circuits-types/vk-tree';
5
- import {
6
- AggregateTxValidator,
7
- ArchiveCache,
8
- BlockHeaderTxValidator,
9
- DataTxValidator,
10
- DoubleSpendTxValidator,
11
- GasTxValidator,
12
- MetadataTxValidator,
13
- PhasesTxValidator,
14
- SizeTxValidator,
15
- TimestampTxValidator,
16
- TxPermittedValidator,
17
- TxProofValidator,
18
- } from '@aztec/p2p';
19
- import { ProtocolContractAddress, protocolContractsHash } from '@aztec/protocol-contracts';
20
- import type { ContractDataSource } from '@aztec/stdlib/contract';
21
- import type { GasFees } from '@aztec/stdlib/gas';
22
- import type {
23
- AllowedElement,
24
- ClientProtocolCircuitVerifier,
25
- MerkleTreeReadOperations,
26
- PublicProcessorValidator,
27
- } from '@aztec/stdlib/interfaces/server';
28
- import { DatabasePublicStateSource, type PublicStateSource } from '@aztec/stdlib/trees';
29
- import { GlobalVariables, type Tx, type TxValidator } from '@aztec/stdlib/tx';
30
- import type { UInt64 } from '@aztec/stdlib/types';
31
-
32
- import { NullifierCache } from './nullifier_cache.js';
33
-
34
- export function createValidatorForAcceptingTxs(
35
- db: MerkleTreeReadOperations,
36
- contractDataSource: ContractDataSource,
37
- verifier: ClientProtocolCircuitVerifier | undefined,
38
- {
39
- l1ChainId,
40
- rollupVersion,
41
- setupAllowList,
42
- gasFees,
43
- skipFeeEnforcement,
44
- timestamp,
45
- blockNumber,
46
- txsPermitted,
47
- }: {
48
- l1ChainId: number;
49
- rollupVersion: number;
50
- setupAllowList: AllowedElement[];
51
- gasFees: GasFees;
52
- skipFeeEnforcement?: boolean;
53
- timestamp: UInt64;
54
- blockNumber: BlockNumber;
55
- txsPermitted: boolean;
56
- },
57
- bindings?: LoggerBindings,
58
- ): TxValidator<Tx> {
59
- const validators: TxValidator<Tx>[] = [
60
- new TxPermittedValidator(txsPermitted, bindings),
61
- new SizeTxValidator(bindings),
62
- new DataTxValidator(bindings),
63
- new MetadataTxValidator(
64
- {
65
- l1ChainId: new Fr(l1ChainId),
66
- rollupVersion: new Fr(rollupVersion),
67
- protocolContractsHash,
68
- vkTreeRoot: getVKTreeRoot(),
69
- },
70
- bindings,
71
- ),
72
- new TimestampTxValidator(
73
- {
74
- timestamp,
75
- blockNumber,
76
- },
77
- bindings,
78
- ),
79
- new DoubleSpendTxValidator(new NullifierCache(db), bindings),
80
- new PhasesTxValidator(contractDataSource, setupAllowList, timestamp, bindings),
81
- new BlockHeaderTxValidator(new ArchiveCache(db), bindings),
82
- ];
83
-
84
- if (!skipFeeEnforcement) {
85
- validators.push(
86
- new GasTxValidator(new DatabasePublicStateSource(db), ProtocolContractAddress.FeeJuice, gasFees, bindings),
87
- );
88
- }
89
-
90
- if (verifier) {
91
- validators.push(new TxProofValidator(verifier, bindings));
92
- }
93
-
94
- return new AggregateTxValidator(...validators);
95
- }
96
-
97
- export function createValidatorForBlockBuilding(
98
- db: MerkleTreeReadOperations,
99
- contractDataSource: ContractDataSource,
100
- globalVariables: GlobalVariables,
101
- setupAllowList: AllowedElement[],
102
- bindings?: LoggerBindings,
103
- ): PublicProcessorValidator {
104
- const nullifierCache = new NullifierCache(db);
105
- const archiveCache = new ArchiveCache(db);
106
- const publicStateSource = new DatabasePublicStateSource(db);
107
-
108
- return {
109
- preprocessValidator: preprocessValidator(
110
- nullifierCache,
111
- archiveCache,
112
- publicStateSource,
113
- contractDataSource,
114
- globalVariables,
115
- setupAllowList,
116
- bindings,
117
- ),
118
- nullifierCache,
119
- };
120
- }
121
-
122
- function preprocessValidator(
123
- nullifierCache: NullifierCache,
124
- archiveCache: ArchiveCache,
125
- publicStateSource: PublicStateSource,
126
- contractDataSource: ContractDataSource,
127
- globalVariables: GlobalVariables,
128
- setupAllowList: AllowedElement[],
129
- bindings?: LoggerBindings,
130
- ): TxValidator<Tx> {
131
- // We don't include the TxProofValidator nor the DataTxValidator here because they are already checked by the time we get to block building.
132
- return new AggregateTxValidator(
133
- new MetadataTxValidator(
134
- {
135
- l1ChainId: globalVariables.chainId,
136
- rollupVersion: globalVariables.version,
137
- protocolContractsHash,
138
- vkTreeRoot: getVKTreeRoot(),
139
- },
140
- bindings,
141
- ),
142
- new TimestampTxValidator(
143
- {
144
- timestamp: globalVariables.timestamp,
145
- blockNumber: globalVariables.blockNumber,
146
- },
147
- bindings,
148
- ),
149
- new DoubleSpendTxValidator(nullifierCache, bindings),
150
- new PhasesTxValidator(contractDataSource, setupAllowList, globalVariables.timestamp, bindings),
151
- new GasTxValidator(publicStateSource, ProtocolContractAddress.FeeJuice, globalVariables.gasFees, bindings),
152
- new BlockHeaderTxValidator(archiveCache, bindings),
153
- );
154
- }