@aztec/p2p 0.0.1-commit.43597cc1 → 0.0.1-commit.4ad48494d

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 (185) hide show
  1. package/dest/client/factory.d.ts +3 -3
  2. package/dest/client/factory.d.ts.map +1 -1
  3. package/dest/client/factory.js +42 -8
  4. package/dest/client/interface.d.ts +30 -15
  5. package/dest/client/interface.d.ts.map +1 -1
  6. package/dest/client/p2p_client.d.ts +33 -35
  7. package/dest/client/p2p_client.d.ts.map +1 -1
  8. package/dest/client/p2p_client.js +107 -137
  9. package/dest/config.d.ts +19 -2
  10. package/dest/config.d.ts.map +1 -1
  11. package/dest/config.js +14 -0
  12. package/dest/index.d.ts +2 -1
  13. package/dest/index.d.ts.map +1 -1
  14. package/dest/index.js +1 -0
  15. package/dest/mem_pools/attestation_pool/attestation_pool.d.ts +21 -12
  16. package/dest/mem_pools/attestation_pool/attestation_pool.d.ts.map +1 -1
  17. package/dest/mem_pools/attestation_pool/attestation_pool.js +67 -37
  18. package/dest/mem_pools/attestation_pool/attestation_pool_test_suite.d.ts +1 -1
  19. package/dest/mem_pools/attestation_pool/attestation_pool_test_suite.d.ts.map +1 -1
  20. package/dest/mem_pools/attestation_pool/attestation_pool_test_suite.js +53 -53
  21. package/dest/mem_pools/attestation_pool/index.d.ts +2 -2
  22. package/dest/mem_pools/attestation_pool/index.d.ts.map +1 -1
  23. package/dest/mem_pools/attestation_pool/index.js +1 -1
  24. package/dest/mem_pools/index.d.ts +2 -1
  25. package/dest/mem_pools/index.d.ts.map +1 -1
  26. package/dest/mem_pools/interface.d.ts +3 -3
  27. package/dest/mem_pools/interface.d.ts.map +1 -1
  28. package/dest/mem_pools/tx_pool_v2/deleted_pool.d.ts +102 -0
  29. package/dest/mem_pools/tx_pool_v2/deleted_pool.d.ts.map +1 -0
  30. package/dest/mem_pools/tx_pool_v2/deleted_pool.js +242 -0
  31. package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.d.ts +1 -1
  32. package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.d.ts.map +1 -1
  33. package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.js +3 -0
  34. package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_mining_rule.js +3 -1
  35. package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_reorg_rule.js +3 -1
  36. package/dest/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.d.ts +1 -1
  37. package/dest/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.d.ts.map +1 -1
  38. package/dest/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.js +3 -1
  39. package/dest/mem_pools/tx_pool_v2/index.d.ts +2 -1
  40. package/dest/mem_pools/tx_pool_v2/index.d.ts.map +1 -1
  41. package/dest/mem_pools/tx_pool_v2/index.js +1 -0
  42. package/dest/mem_pools/tx_pool_v2/interfaces.d.ts +7 -3
  43. package/dest/mem_pools/tx_pool_v2/interfaces.d.ts.map +1 -1
  44. package/dest/mem_pools/tx_pool_v2/interfaces.js +2 -1
  45. package/dest/mem_pools/tx_pool_v2/tx_metadata.d.ts +27 -3
  46. package/dest/mem_pools/tx_pool_v2/tx_metadata.d.ts.map +1 -1
  47. package/dest/mem_pools/tx_pool_v2/tx_metadata.js +37 -4
  48. package/dest/mem_pools/tx_pool_v2/tx_pool_indices.d.ts +8 -2
  49. package/dest/mem_pools/tx_pool_v2/tx_pool_indices.d.ts.map +1 -1
  50. package/dest/mem_pools/tx_pool_v2/tx_pool_indices.js +15 -2
  51. package/dest/mem_pools/tx_pool_v2/tx_pool_v2.d.ts +4 -2
  52. package/dest/mem_pools/tx_pool_v2/tx_pool_v2.d.ts.map +1 -1
  53. package/dest/mem_pools/tx_pool_v2/tx_pool_v2.js +6 -2
  54. package/dest/mem_pools/tx_pool_v2/tx_pool_v2_impl.d.ts +4 -2
  55. package/dest/mem_pools/tx_pool_v2/tx_pool_v2_impl.d.ts.map +1 -1
  56. package/dest/mem_pools/tx_pool_v2/tx_pool_v2_impl.js +110 -78
  57. package/dest/msg_validators/tx_validator/aggregate_tx_validator.d.ts +3 -3
  58. package/dest/msg_validators/tx_validator/aggregate_tx_validator.d.ts.map +1 -1
  59. package/dest/msg_validators/tx_validator/block_header_validator.d.ts +16 -3
  60. package/dest/msg_validators/tx_validator/block_header_validator.d.ts.map +1 -1
  61. package/dest/msg_validators/tx_validator/block_header_validator.js +1 -1
  62. package/dest/msg_validators/tx_validator/double_spend_validator.d.ts +13 -3
  63. package/dest/msg_validators/tx_validator/double_spend_validator.d.ts.map +1 -1
  64. package/dest/msg_validators/tx_validator/double_spend_validator.js +4 -4
  65. package/dest/msg_validators/tx_validator/timestamp_validator.d.ts +20 -4
  66. package/dest/msg_validators/tx_validator/timestamp_validator.d.ts.map +1 -1
  67. package/dest/msg_validators/tx_validator/timestamp_validator.js +2 -2
  68. package/dest/services/dummy_service.d.ts +6 -2
  69. package/dest/services/dummy_service.d.ts.map +1 -1
  70. package/dest/services/dummy_service.js +3 -0
  71. package/dest/services/encoding.d.ts +2 -2
  72. package/dest/services/encoding.d.ts.map +1 -1
  73. package/dest/services/encoding.js +2 -2
  74. package/dest/services/libp2p/libp2p_service.d.ts +11 -3
  75. package/dest/services/libp2p/libp2p_service.d.ts.map +1 -1
  76. package/dest/services/libp2p/libp2p_service.js +71 -35
  77. package/dest/services/reqresp/interface.d.ts +10 -1
  78. package/dest/services/reqresp/interface.d.ts.map +1 -1
  79. package/dest/services/reqresp/interface.js +15 -1
  80. package/dest/services/reqresp/protocols/block_txs/block_txs_handler.d.ts +3 -3
  81. package/dest/services/reqresp/protocols/block_txs/block_txs_handler.d.ts.map +1 -1
  82. package/dest/services/reqresp/protocols/block_txs/block_txs_reqresp.d.ts +7 -1
  83. package/dest/services/reqresp/protocols/block_txs/block_txs_reqresp.d.ts.map +1 -1
  84. package/dest/services/reqresp/protocols/block_txs/block_txs_reqresp.js +15 -0
  85. package/dest/services/reqresp/protocols/tx.d.ts +7 -1
  86. package/dest/services/reqresp/protocols/tx.d.ts.map +1 -1
  87. package/dest/services/reqresp/protocols/tx.js +20 -0
  88. package/dest/services/reqresp/reqresp.d.ts +1 -1
  89. package/dest/services/reqresp/reqresp.d.ts.map +1 -1
  90. package/dest/services/reqresp/reqresp.js +11 -4
  91. package/dest/services/service.d.ts +18 -1
  92. package/dest/services/service.d.ts.map +1 -1
  93. package/dest/services/tx_collection/config.d.ts +19 -1
  94. package/dest/services/tx_collection/config.d.ts.map +1 -1
  95. package/dest/services/tx_collection/config.js +46 -0
  96. package/dest/services/tx_collection/fast_tx_collection.d.ts +3 -1
  97. package/dest/services/tx_collection/fast_tx_collection.d.ts.map +1 -1
  98. package/dest/services/tx_collection/fast_tx_collection.js +17 -3
  99. package/dest/services/tx_collection/file_store_tx_collection.d.ts +53 -0
  100. package/dest/services/tx_collection/file_store_tx_collection.d.ts.map +1 -0
  101. package/dest/services/tx_collection/file_store_tx_collection.js +165 -0
  102. package/dest/services/tx_collection/file_store_tx_source.d.ts +28 -0
  103. package/dest/services/tx_collection/file_store_tx_source.d.ts.map +1 -0
  104. package/dest/services/tx_collection/file_store_tx_source.js +59 -0
  105. package/dest/services/tx_collection/index.d.ts +2 -1
  106. package/dest/services/tx_collection/index.d.ts.map +1 -1
  107. package/dest/services/tx_collection/index.js +1 -0
  108. package/dest/services/tx_collection/slow_tx_collection.d.ts +6 -2
  109. package/dest/services/tx_collection/slow_tx_collection.d.ts.map +1 -1
  110. package/dest/services/tx_collection/slow_tx_collection.js +55 -23
  111. package/dest/services/tx_collection/tx_collection.d.ts +19 -7
  112. package/dest/services/tx_collection/tx_collection.d.ts.map +1 -1
  113. package/dest/services/tx_collection/tx_collection.js +75 -3
  114. package/dest/services/tx_collection/tx_collection_sink.d.ts +15 -6
  115. package/dest/services/tx_collection/tx_collection_sink.d.ts.map +1 -1
  116. package/dest/services/tx_collection/tx_collection_sink.js +13 -7
  117. package/dest/services/tx_file_store/config.d.ts +1 -3
  118. package/dest/services/tx_file_store/config.d.ts.map +1 -1
  119. package/dest/services/tx_file_store/config.js +0 -4
  120. package/dest/services/tx_file_store/tx_file_store.d.ts +4 -3
  121. package/dest/services/tx_file_store/tx_file_store.d.ts.map +1 -1
  122. package/dest/services/tx_file_store/tx_file_store.js +8 -5
  123. package/dest/services/tx_provider.d.ts +3 -3
  124. package/dest/services/tx_provider.d.ts.map +1 -1
  125. package/dest/services/tx_provider.js +5 -4
  126. package/dest/test-helpers/make-test-p2p-clients.d.ts +3 -3
  127. package/dest/test-helpers/make-test-p2p-clients.d.ts.map +1 -1
  128. package/dest/test-helpers/mock-pubsub.d.ts +27 -1
  129. package/dest/test-helpers/mock-pubsub.d.ts.map +1 -1
  130. package/dest/test-helpers/mock-pubsub.js +97 -2
  131. package/dest/test-helpers/testbench-utils.d.ts +32 -24
  132. package/dest/test-helpers/testbench-utils.d.ts.map +1 -1
  133. package/dest/test-helpers/testbench-utils.js +93 -35
  134. package/dest/testbench/p2p_client_testbench_worker.js +1 -1
  135. package/package.json +14 -14
  136. package/src/client/factory.ts +78 -9
  137. package/src/client/interface.ts +32 -13
  138. package/src/client/p2p_client.ts +135 -157
  139. package/src/config.ts +24 -0
  140. package/src/index.ts +1 -0
  141. package/src/mem_pools/attestation_pool/attestation_pool.ts +95 -44
  142. package/src/mem_pools/attestation_pool/attestation_pool_test_suite.ts +57 -53
  143. package/src/mem_pools/attestation_pool/index.ts +3 -3
  144. package/src/mem_pools/index.ts +3 -0
  145. package/src/mem_pools/interface.ts +2 -2
  146. package/src/mem_pools/tx_pool_v2/README.md +75 -9
  147. package/src/mem_pools/tx_pool_v2/deleted_pool.ts +310 -0
  148. package/src/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.ts +3 -0
  149. package/src/mem_pools/tx_pool_v2/eviction/invalid_txs_after_mining_rule.ts +1 -1
  150. package/src/mem_pools/tx_pool_v2/eviction/invalid_txs_after_reorg_rule.ts +1 -1
  151. package/src/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.ts +3 -1
  152. package/src/mem_pools/tx_pool_v2/index.ts +1 -0
  153. package/src/mem_pools/tx_pool_v2/interfaces.ts +8 -2
  154. package/src/mem_pools/tx_pool_v2/tx_metadata.ts +55 -5
  155. package/src/mem_pools/tx_pool_v2/tx_pool_indices.ts +18 -2
  156. package/src/mem_pools/tx_pool_v2/tx_pool_v2.ts +7 -1
  157. package/src/mem_pools/tx_pool_v2/tx_pool_v2_impl.ts +122 -80
  158. package/src/msg_validators/tx_validator/aggregate_tx_validator.ts +2 -2
  159. package/src/msg_validators/tx_validator/block_header_validator.ts +15 -3
  160. package/src/msg_validators/tx_validator/double_spend_validator.ts +11 -6
  161. package/src/msg_validators/tx_validator/timestamp_validator.ts +19 -14
  162. package/src/services/dummy_service.ts +6 -0
  163. package/src/services/encoding.ts +2 -2
  164. package/src/services/libp2p/libp2p_service.ts +70 -37
  165. package/src/services/reqresp/interface.ts +26 -1
  166. package/src/services/reqresp/protocols/block_txs/block_txs_handler.ts +2 -2
  167. package/src/services/reqresp/protocols/block_txs/block_txs_reqresp.ts +17 -0
  168. package/src/services/reqresp/protocols/tx.ts +22 -0
  169. package/src/services/reqresp/reqresp.ts +13 -3
  170. package/src/services/service.ts +20 -0
  171. package/src/services/tx_collection/config.ts +68 -0
  172. package/src/services/tx_collection/fast_tx_collection.ts +14 -2
  173. package/src/services/tx_collection/file_store_tx_collection.ts +198 -0
  174. package/src/services/tx_collection/file_store_tx_source.ts +73 -0
  175. package/src/services/tx_collection/index.ts +1 -0
  176. package/src/services/tx_collection/slow_tx_collection.ts +64 -30
  177. package/src/services/tx_collection/tx_collection.ts +109 -13
  178. package/src/services/tx_collection/tx_collection_sink.ts +17 -7
  179. package/src/services/tx_file_store/config.ts +0 -6
  180. package/src/services/tx_file_store/tx_file_store.ts +9 -7
  181. package/src/services/tx_provider.ts +8 -7
  182. package/src/test-helpers/make-test-p2p-clients.ts +3 -3
  183. package/src/test-helpers/mock-pubsub.ts +133 -3
  184. package/src/test-helpers/testbench-utils.ts +108 -40
  185. package/src/testbench/p2p_client_testbench_worker.ts +1 -1
@@ -1,24 +1,28 @@
1
1
  import type { Logger } from '@aztec/foundation/log';
2
2
  import { elapsed } from '@aztec/foundation/timer';
3
3
  import type { TypedEventEmitter } from '@aztec/foundation/types';
4
- import { Tx, type TxHash } from '@aztec/stdlib/tx';
4
+ import type { L2Block } from '@aztec/stdlib/block';
5
+ import type { BlockHeader, Tx, TxHash } from '@aztec/stdlib/tx';
5
6
  import type { TelemetryClient } from '@aztec/telemetry-client';
6
7
 
7
8
  import EventEmitter from 'node:events';
8
9
 
9
- import type { TxPool, TxPoolEvents } from '../../mem_pools/tx_pool/tx_pool.js';
10
+ import type { TxPoolV2, TxPoolV2Events } from '../../mem_pools/tx_pool_v2/interfaces.js';
10
11
  import { TxCollectionInstrumentation } from './instrumentation.js';
11
12
  import type { CollectionMethod } from './tx_collection.js';
12
13
 
14
+ /** Context determining how collected txs should be added to the pool. */
15
+ export type TxAddContext = { type: 'proposal'; blockHeader: BlockHeader } | { type: 'mined'; block: L2Block };
16
+
13
17
  /**
14
18
  * Executes collection requests from the fast and slow collection loops, and handles collected txs
15
19
  * by adding them to the tx pool and emitting events, as well as handling logging and metrics.
16
20
  */
17
- export class TxCollectionSink extends (EventEmitter as new () => TypedEventEmitter<TxPoolEvents>) {
21
+ export class TxCollectionSink extends (EventEmitter as new () => TypedEventEmitter<TxPoolV2Events>) {
18
22
  private readonly instrumentation: TxCollectionInstrumentation;
19
23
 
20
24
  constructor(
21
- private readonly txPool: TxPool,
25
+ private readonly txPool: TxPoolV2,
22
26
  telemetryClient: TelemetryClient,
23
27
  private readonly log: Logger,
24
28
  ) {
@@ -30,6 +34,7 @@ export class TxCollectionSink extends (EventEmitter as new () => TypedEventEmitt
30
34
  collectValidTxsFn: (txHashes: TxHash[]) => Promise<(Tx | undefined)[]>,
31
35
  requested: TxHash[],
32
36
  info: Record<string, any> & { description: string; method: CollectionMethod },
37
+ context: TxAddContext,
33
38
  ) {
34
39
  this.log.trace(`Requesting ${requested.length} txs via ${info.description}`, {
35
40
  ...info,
@@ -99,12 +104,13 @@ export class TxCollectionSink extends (EventEmitter as new () => TypedEventEmitt
99
104
  },
100
105
  );
101
106
 
102
- return await this.foundTxs(validTxs, { ...info, duration });
107
+ return await this.foundTxs(validTxs, { ...info, duration }, context);
103
108
  }
104
109
 
105
110
  private async foundTxs(
106
111
  txs: Tx[],
107
112
  info: Record<string, any> & { description: string; method: CollectionMethod; duration: number },
113
+ context: TxAddContext,
108
114
  ) {
109
115
  // Report metrics for the collection
110
116
  this.instrumentation.increaseTxsFor(info.method, txs.length, info.duration);
@@ -112,9 +118,13 @@ export class TxCollectionSink extends (EventEmitter as new () => TypedEventEmitt
112
118
  // Mark txs as found in the slow missing txs set and all fast requests
113
119
  this.emit('txs-added', { txs });
114
120
 
115
- // Add the txs to the tx pool (should not fail, but we catch it just in case)
121
+ // Add the txs to the tx pool using the appropriate method based on context
116
122
  try {
117
- await this.txPool.addTxs(txs, { source: `tx-collection` });
123
+ if (context.type === 'mined') {
124
+ await this.txPool.addMinedTxs(txs, context.block.header, { source: 'tx-collection' });
125
+ } else {
126
+ await this.txPool.addProtectedTxs(txs, context.blockHeader, { source: 'tx-collection' });
127
+ }
118
128
  } catch (err) {
119
129
  this.log.error(`Error adding txs to the pool via ${info.description}`, err, {
120
130
  ...info,
@@ -6,8 +6,6 @@ import { type ConfigMappingsType, booleanConfigHelper, numberConfigHelper } from
6
6
  export type TxFileStoreConfig = {
7
7
  /** URL for uploading txs to file storage (s3://, gs://, file://) */
8
8
  txFileStoreUrl?: string;
9
- /** URL for downloading txs from file storage */
10
- txFileStoreDownloadUrl?: string;
11
9
  /** Max concurrent uploads */
12
10
  txFileStoreUploadConcurrency: number;
13
11
  /** Max queue size to prevent unbounded memory growth */
@@ -21,10 +19,6 @@ export const txFileStoreConfigMappings: ConfigMappingsType<TxFileStoreConfig> =
21
19
  env: 'TX_FILE_STORE_URL',
22
20
  description: 'URL for uploading txs to file storage (s3://, gs://, file://)',
23
21
  },
24
- txFileStoreDownloadUrl: {
25
- env: 'TX_FILE_STORE_DOWNLOAD_URL',
26
- description: 'URL for downloading txs from file storage',
27
- },
28
22
  txFileStoreUploadConcurrency: {
29
23
  env: 'TX_FILE_STORE_UPLOAD_CONCURRENCY',
30
24
  description: 'Maximum number of concurrent tx uploads',
@@ -6,7 +6,7 @@ import { type FileStore, createFileStore } from '@aztec/stdlib/file-store';
6
6
  import type { Tx } from '@aztec/stdlib/tx';
7
7
  import { type TelemetryClient, getTelemetryClient } from '@aztec/telemetry-client';
8
8
 
9
- import type { TxPool, TxPoolEvents } from '../../mem_pools/tx_pool/index.js';
9
+ import type { TxPoolV2 } from '../../mem_pools/index.js';
10
10
  import type { TxFileStoreConfig } from './config.js';
11
11
  import { TxFileStoreInstrumentation } from './instrumentation.js';
12
12
 
@@ -18,7 +18,7 @@ export class TxFileStore {
18
18
  private uploadQueue: Tx[] = [];
19
19
  private activeUploads = 0;
20
20
  private readonly queueProcessor: RunningPromise;
21
- private readonly handleTxsAdded: TxPoolEvents['txs-added'];
21
+ private readonly handleTxsAdded: (args: { txs: Tx[]; source?: string }) => void;
22
22
 
23
23
  /** Recently uploaded tx hashes for deduplication. */
24
24
  private recentUploads: Set<string> = new Set();
@@ -27,10 +27,11 @@ export class TxFileStore {
27
27
 
28
28
  private constructor(
29
29
  private readonly fileStore: FileStore,
30
- private readonly txPool: TxPool,
30
+ private readonly txPool: TxPoolV2,
31
31
  private readonly config: TxFileStoreConfig,
32
32
  private readonly instrumentation: TxFileStoreInstrumentation,
33
33
  private readonly log: Logger,
34
+ private readonly basePath: string,
34
35
  ) {
35
36
  this.handleTxsAdded = (args: { txs: Tx[]; source?: string }) => {
36
37
  this.enqueueTxs(args.txs);
@@ -48,8 +49,9 @@ export class TxFileStore {
48
49
  * @returns The file store instance, or undefined if not configured/enabled.
49
50
  */
50
51
  static async create(
51
- txPool: TxPool,
52
+ txPool: TxPoolV2,
52
53
  config: TxFileStoreConfig,
54
+ basePath: string,
53
55
  log: Logger = createLogger('p2p:tx_file_store'),
54
56
  telemetry: TelemetryClient = getTelemetryClient(),
55
57
  fileStoreOverride?: FileStore,
@@ -71,8 +73,8 @@ export class TxFileStore {
71
73
  }
72
74
 
73
75
  const instrumentation = new TxFileStoreInstrumentation(telemetry, 'TxFileStore');
74
- log.info('Created tx file store', { url: config.txFileStoreUrl });
75
- return new TxFileStore(fileStore, txPool, config, instrumentation, log);
76
+ log.info('Created tx file store', { url: config.txFileStoreUrl, basePath });
77
+ return new TxFileStore(fileStore, txPool, config, instrumentation, log, basePath);
76
78
  }
77
79
 
78
80
  /** Starts listening to TxPool events and uploading txs. */
@@ -122,7 +124,7 @@ export class TxFileStore {
122
124
 
123
125
  private async uploadTx(tx: Tx): Promise<void> {
124
126
  const txHash = tx.getTxHash().toString();
125
- const path = `txs/${txHash}.bin`;
127
+ const path = `${this.basePath}/txs/${txHash}.bin`;
126
128
  const timer = new Timer();
127
129
 
128
130
  if (this.recentUploads.has(txHash)) {
@@ -5,13 +5,13 @@ import { elapsed } from '@aztec/foundation/timer';
5
5
  import type { L2Block, L2BlockInfo } from '@aztec/stdlib/block';
6
6
  import type { ITxProvider } from '@aztec/stdlib/interfaces/server';
7
7
  import type { BlockProposal } from '@aztec/stdlib/p2p';
8
- import { Tx, TxHash } from '@aztec/stdlib/tx';
8
+ import { type BlockHeader, Tx, TxHash } from '@aztec/stdlib/tx';
9
9
  import { type TelemetryClient, getTelemetryClient } from '@aztec/telemetry-client';
10
10
 
11
11
  import type { PeerId } from '@libp2p/interface';
12
12
 
13
13
  import type { P2PClient } from '../client/p2p_client.js';
14
- import type { TxPool } from '../mem_pools/index.js';
14
+ import type { TxPoolV2 } from '../mem_pools/tx_pool_v2/interfaces.js';
15
15
  import type { FastCollectionRequestInput, TxCollection } from './tx_collection/tx_collection.js';
16
16
  import { TxProviderInstrumentation } from './tx_provider_instrumentation.js';
17
17
 
@@ -24,7 +24,7 @@ export class TxProvider implements ITxProvider {
24
24
 
25
25
  constructor(
26
26
  private txCollection: TxCollection,
27
- private txPool: TxPool,
27
+ private txPool: TxPoolV2,
28
28
  private txValidator: Pick<P2PClient, 'validate'>,
29
29
  private log: Logger = createLogger('p2p:tx-collector'),
30
30
  client: TelemetryClient = getTelemetryClient(),
@@ -144,6 +144,7 @@ export class TxProvider implements ITxProvider {
144
144
  // Take txs from the proposal body if there are any
145
145
  // Note that we still have to validate these txs, but we do it in parallel with tx collection
146
146
  const proposal = request.type === 'proposal' ? request.blockProposal : undefined;
147
+ const proposalBlockHeader = proposal?.blockHeader;
147
148
  const txsFromProposal = this.extractFromProposal(proposal, [...missingTxHashes]);
148
149
  if (txsFromProposal.length > 0) {
149
150
  this.instrumentation.incTxsFromProposals(txsFromProposal.length);
@@ -155,7 +156,7 @@ export class TxProvider implements ITxProvider {
155
156
  }
156
157
 
157
158
  if (missingTxHashes.size === 0) {
158
- await this.processProposalTxs(txsFromProposal);
159
+ await this.processProposalTxs(txsFromProposal, proposalBlockHeader!);
159
160
  this.instrumentation.incTxsFromP2P(0, txHashes.length);
160
161
  return { txsFromMempool, txsFromProposal };
161
162
  }
@@ -163,7 +164,7 @@ export class TxProvider implements ITxProvider {
163
164
  // Start tx collection from the network if needed, while we validate the txs taken from the proposal in parallel
164
165
  const [txsFromNetwork] = await Promise.all([
165
166
  this.collectFromP2P(request, [...missingTxHashes], opts),
166
- this.processProposalTxs(txsFromProposal),
167
+ this.processProposalTxs(txsFromProposal, proposalBlockHeader!),
167
168
  ] as const);
168
169
 
169
170
  if (txsFromNetwork.length > 0) {
@@ -222,11 +223,11 @@ export class TxProvider implements ITxProvider {
222
223
  return compactArray(proposal.txs ?? []).filter(tx => missingTxHashes.includes(tx.getTxHash().toString()));
223
224
  }
224
225
 
225
- private async processProposalTxs(txs: Tx[]): Promise<void> {
226
+ private async processProposalTxs(txs: Tx[], blockHeader: BlockHeader): Promise<void> {
226
227
  if (txs.length === 0) {
227
228
  return;
228
229
  }
229
230
  await this.txValidator.validate(txs);
230
- await this.txPool.addTxs(txs);
231
+ await this.txPool.addProtectedTxs(txs, blockHeader);
231
232
  }
232
233
  }
@@ -13,7 +13,7 @@ import { createP2PClient } from '../client/index.js';
13
13
  import type { P2PClient } from '../client/p2p_client.js';
14
14
  import type { P2PConfig } from '../config.js';
15
15
  import type { AttestationPool } from '../mem_pools/attestation_pool/attestation_pool.js';
16
- import type { TxPool } from '../mem_pools/tx_pool/index.js';
16
+ import type { TxPoolV2 } from '../mem_pools/tx_pool_v2/interfaces.js';
17
17
  import { generatePeerIdPrivateKeys } from '../test-helpers/generate-peer-id-private-keys.js';
18
18
  import { getPorts } from './get-ports.js';
19
19
  import { makeEnrs } from './make-enrs.js';
@@ -22,7 +22,7 @@ import { AlwaysFalseCircuitVerifier, AlwaysTrueCircuitVerifier } from './reqresp
22
22
 
23
23
  export interface MakeTestP2PClientOptions {
24
24
  mockAttestationPool: AttestationPool;
25
- mockTxPool: TxPool;
25
+ mockTxPool: TxPoolV2;
26
26
  mockEpochCache: EpochCache;
27
27
  mockWorldState: WorldStateSynchronizer;
28
28
  alwaysTrueVerifier?: boolean;
@@ -108,7 +108,7 @@ export async function makeTestP2PClient(
108
108
  undefined,
109
109
  undefined,
110
110
  {
111
- txPool: mockTxPool as unknown as TxPool,
111
+ txPool: mockTxPool as unknown as TxPoolV2,
112
112
  attestationPool: mockAttestationPool as unknown as AttestationPool,
113
113
  store: kvStore,
114
114
  logger,
@@ -19,8 +19,20 @@ import {
19
19
 
20
20
  import type { P2PConfig } from '../config.js';
21
21
  import type { MemPools } from '../mem_pools/interface.js';
22
- import { DummyPeerDiscoveryService, DummyPeerManager, DummyReqResp, LibP2PService } from '../services/index.js';
23
- import type { ReqRespInterface } from '../services/reqresp/interface.js';
22
+ import { DummyPeerDiscoveryService, DummyPeerManager, LibP2PService } from '../services/index.js';
23
+ import type { P2PReqRespConfig } from '../services/reqresp/config.js';
24
+ import type { ConnectionSampler } from '../services/reqresp/connection-sampler/connection_sampler.js';
25
+ import {
26
+ type ReqRespInterface,
27
+ type ReqRespResponse,
28
+ type ReqRespSubProtocol,
29
+ type ReqRespSubProtocolHandler,
30
+ type ReqRespSubProtocolHandlers,
31
+ type ReqRespSubProtocolValidators,
32
+ type SubProtocolMap,
33
+ responseFromBuffer,
34
+ } from '../services/reqresp/interface.js';
35
+ import { ReqRespStatus } from '../services/reqresp/status.js';
24
36
  import { GossipSubEvent } from '../types/index.js';
25
37
  import type { PubSubLibp2p } from '../util.js';
26
38
 
@@ -52,7 +64,7 @@ export function getMockPubSubP2PServiceFactory<T extends P2PClientType>(
52
64
  deps.logger.verbose('Creating mock PubSub service');
53
65
  const libp2p = new MockPubSub(peerId, network);
54
66
  const peerManager = new DummyPeerManager(peerId, network);
55
- const reqresp: ReqRespInterface = new DummyReqResp();
67
+ const reqresp: ReqRespInterface = new MockReqResp(peerId, network);
56
68
  const peerDiscoveryService = new DummyPeerDiscoveryService();
57
69
  const service = new LibP2PService<T>(
58
70
  clientType as T,
@@ -74,6 +86,115 @@ export function getMockPubSubP2PServiceFactory<T extends P2PClientType>(
74
86
  };
75
87
  }
76
88
 
89
+ /**
90
+ * Mock implementation of ReqRespInterface that routes requests to other peers' handlers through the mock network.
91
+ * When a peer calls sendBatchRequest, the mock iterates over network peers and invokes their registered handler
92
+ * for the sub-protocol, simulating the request-response protocol without actual libp2p streams.
93
+ */
94
+ class MockReqResp implements ReqRespInterface {
95
+ private handlers: Partial<ReqRespSubProtocolHandlers> = {};
96
+ private logger = createLogger('p2p:test:mock-reqresp');
97
+
98
+ constructor(
99
+ private peerId: PeerId,
100
+ private network: MockGossipSubNetwork,
101
+ ) {
102
+ network.registerReqRespPeer(this);
103
+ }
104
+
105
+ updateConfig(_config: Partial<P2PReqRespConfig>): void {}
106
+
107
+ start(
108
+ subProtocolHandlers: Partial<ReqRespSubProtocolHandlers>,
109
+ _subProtocolValidators: ReqRespSubProtocolValidators,
110
+ ): Promise<void> {
111
+ Object.assign(this.handlers, subProtocolHandlers);
112
+ return Promise.resolve();
113
+ }
114
+
115
+ addSubProtocol(
116
+ subProtocol: ReqRespSubProtocol,
117
+ handler: ReqRespSubProtocolHandler,
118
+ _validator?: ReqRespSubProtocolValidators[ReqRespSubProtocol],
119
+ ): Promise<void> {
120
+ this.handlers[subProtocol] = handler;
121
+ return Promise.resolve();
122
+ }
123
+
124
+ stop(): Promise<void> {
125
+ this.handlers = {};
126
+ return Promise.resolve();
127
+ }
128
+
129
+ getHandler(subProtocol: ReqRespSubProtocol): ReqRespSubProtocolHandler | undefined {
130
+ return this.handlers[subProtocol];
131
+ }
132
+
133
+ async sendBatchRequest<SubProtocol extends ReqRespSubProtocol>(
134
+ subProtocol: SubProtocol,
135
+ requests: InstanceType<SubProtocolMap[SubProtocol]['request']>[],
136
+ pinnedPeer: PeerId | undefined,
137
+ _timeoutMs?: number,
138
+ _maxPeers?: number,
139
+ _maxRetryAttempts?: number,
140
+ ): Promise<InstanceType<SubProtocolMap[SubProtocol]['response']>[]> {
141
+ const responses: InstanceType<SubProtocolMap[SubProtocol]['response']>[] = [];
142
+ const peers = this.network.getReqRespPeers().filter(p => !p.peerId.equals(this.peerId));
143
+ const targetPeers = pinnedPeer ? peers.filter(p => p.peerId.equals(pinnedPeer)) : peers;
144
+
145
+ for (const request of requests) {
146
+ const requestBuffer = request.toBuffer();
147
+ for (const peer of targetPeers) {
148
+ const handler = peer.getHandler(subProtocol);
149
+ if (!handler) {
150
+ continue;
151
+ }
152
+ try {
153
+ const responseBuffer = await handler(this.peerId, requestBuffer);
154
+ if (responseBuffer.length > 0) {
155
+ const response = responseFromBuffer(subProtocol, responseBuffer);
156
+ responses.push(response as InstanceType<SubProtocolMap[SubProtocol]['response']>);
157
+ break;
158
+ }
159
+ } catch (err) {
160
+ this.logger.debug(`Mock reqresp handler error from peer ${peer.peerId}`, { err });
161
+ }
162
+ }
163
+ }
164
+
165
+ return responses;
166
+ }
167
+
168
+ async sendRequestToPeer(
169
+ peerId: PeerId,
170
+ subProtocol: ReqRespSubProtocol,
171
+ payload: Buffer,
172
+ _dialTimeout?: number,
173
+ ): Promise<ReqRespResponse> {
174
+ const peer = this.network.getReqRespPeers().find(p => p.peerId.equals(peerId));
175
+ const handler = peer?.getHandler(subProtocol);
176
+ if (!handler) {
177
+ return { status: ReqRespStatus.SUCCESS, data: Buffer.from([]) };
178
+ }
179
+ try {
180
+ const data = await handler(this.peerId, payload);
181
+ return { status: ReqRespStatus.SUCCESS, data };
182
+ } catch {
183
+ return { status: ReqRespStatus.FAILURE };
184
+ }
185
+ }
186
+
187
+ getConnectionSampler(): Pick<ConnectionSampler, 'getPeerListSortedByConnectionCountAsc'> {
188
+ return {
189
+ getPeerListSortedByConnectionCountAsc: () =>
190
+ this.network
191
+ .getReqRespPeers()
192
+ .filter(p => !p.peerId.equals(this.peerId))
193
+ .map(p => p.peerId),
194
+ };
195
+ }
196
+ }
197
+
77
198
  /**
78
199
  * Implementation of PubSub services that relies on a mock gossip sub network.
79
200
  * This is used in tests to simulate a gossip sub network without needing a real P2P network.
@@ -157,6 +278,7 @@ class MockGossipSubService extends TypedEventEmitter<GossipsubEvents> implements
157
278
  */
158
279
  export class MockGossipSubNetwork {
159
280
  private peers: MockGossipSubService[] = [];
281
+ private reqRespPeers: MockReqResp[] = [];
160
282
  private nextMsgId = 0;
161
283
 
162
284
  private logger = createLogger('p2p:test:mock-gossipsub-network');
@@ -169,6 +291,14 @@ export class MockGossipSubNetwork {
169
291
  this.peers.push(peer);
170
292
  }
171
293
 
294
+ public registerReqRespPeer(peer: MockReqResp): void {
295
+ this.reqRespPeers.push(peer);
296
+ }
297
+
298
+ public getReqRespPeers(): MockReqResp[] {
299
+ return this.reqRespPeers;
300
+ }
301
+
172
302
  public publishToPeers(topic: TopicStr, data: Uint8Array, sender: PeerId): void {
173
303
  const msgId = (this.nextMsgId++).toString();
174
304
  this.logger.debug(`Network is distributing message on topic ${topic}`, {
@@ -1,6 +1,7 @@
1
1
  import type { EpochCacheInterface } from '@aztec/epoch-cache';
2
- import { type BlockNumber, EpochNumber, SlotNumber } from '@aztec/foundation/branded-types';
2
+ import { EpochNumber, SlotNumber } from '@aztec/foundation/branded-types';
3
3
  import type { Logger } from '@aztec/foundation/log';
4
+ import type { L2Block, L2BlockId } from '@aztec/stdlib/block';
4
5
  import type { WorldStateSynchronizer } from '@aztec/stdlib/interfaces/server';
5
6
  import type {
6
7
  BlockProposal,
@@ -13,14 +14,16 @@ import { type BlockHeader, Tx, TxHash } from '@aztec/stdlib/tx';
13
14
  import EventEmitter from 'events';
14
15
 
15
16
  import type { TryAddResult } from '../mem_pools/attestation_pool/attestation_pool.js';
16
- import type { TxPool } from '../mem_pools/tx_pool/index.js';
17
+ import type { AddTxsResult, TxPoolV2, TxPoolV2Config } from '../mem_pools/tx_pool_v2/interfaces.js';
18
+ import type { TxState } from '../mem_pools/tx_pool_v2/tx_metadata.js';
17
19
  import { RateLimitStatus } from '../services/reqresp/rate-limiter/rate_limiter.js';
18
20
 
19
21
  /**
20
22
  * In-memory TxPool implementation for testing.
21
23
  * Provides basic tx storage without persistence.
24
+ * Implements TxPoolV2 interface with stub implementations for testing.
22
25
  */
23
- export class InMemoryTxPool extends EventEmitter implements TxPool {
26
+ export class InMemoryTxPool extends EventEmitter implements TxPoolV2 {
24
27
  private txsByHash = new Map<string, Tx>();
25
28
  private logger: Logger | null = null;
26
29
 
@@ -54,93 +57,154 @@ export class InMemoryTxPool extends EventEmitter implements TxPool {
54
57
  this.removeAllListeners();
55
58
  }
56
59
 
57
- addTxs(txs: Tx[], opts?: { source?: string }): Promise<number> {
60
+ // === Core Operations (TxPoolV2) ===
61
+
62
+ addPendingTxs(txs: Tx[], opts?: { source?: string }): Promise<AddTxsResult> {
63
+ const accepted: TxHash[] = [];
58
64
  const newTxs: Tx[] = [];
59
- let added = 0;
60
65
  for (const tx of txs) {
61
66
  const key = tx.getTxHash().toString();
62
67
  if (!this.txsByHash.has(key)) {
63
68
  newTxs.push(tx);
64
- added += 1;
69
+ accepted.push(tx.getTxHash());
65
70
  }
66
71
  this.txsByHash.set(key, tx);
67
72
  }
68
73
  if (newTxs.length > 0) {
69
74
  this.emit('txs-added', { txs: newTxs, source: opts?.source });
70
75
  }
71
- return Promise.resolve(added);
76
+ return Promise.resolve({ accepted, ignored: [], rejected: [] });
72
77
  }
73
78
 
74
- getTxByHash(hash: TxHash): Promise<Tx | undefined> {
75
- return Promise.resolve(this.txsByHash.get(hash.toString()));
79
+ canAddPendingTx(tx: Tx): Promise<'accepted' | 'ignored' | 'rejected'> {
80
+ const key = tx.getTxHash().toString();
81
+ if (this.txsByHash.has(key)) {
82
+ return Promise.resolve('ignored');
83
+ }
84
+ return Promise.resolve('accepted');
76
85
  }
77
86
 
78
- getTxsByHash(hashes: TxHash[]): Promise<(Tx | undefined)[]> {
79
- const result = hashes.map(h => this.txsByHash.get(h.toString()));
80
- const found = result.filter(tx => tx !== undefined).length;
81
- this.logger?.debug(`[TxPool] getTxsByHash: requested ${hashes.length}, found ${found}`);
82
- return Promise.resolve(result);
87
+ addProtectedTxs(txs: Tx[], _block: BlockHeader, opts?: { source?: string }): Promise<void> {
88
+ for (const tx of txs) {
89
+ const key = tx.getTxHash().toString();
90
+ this.txsByHash.set(key, tx);
91
+ }
92
+ if (txs.length > 0) {
93
+ this.emit('txs-added', { txs, source: opts?.source });
94
+ }
95
+ return Promise.resolve();
83
96
  }
84
97
 
85
- hasTxs(hashes: TxHash[]): Promise<boolean[]> {
86
- return Promise.resolve(hashes.map(h => this.txsByHash.has(h.toString())));
98
+ protectTxs(txHashes: TxHash[], _block: BlockHeader): Promise<TxHash[]> {
99
+ const notFound: TxHash[] = [];
100
+ for (const txHash of txHashes) {
101
+ if (!this.txsByHash.has(txHash.toString())) {
102
+ notFound.push(txHash);
103
+ }
104
+ }
105
+ return Promise.resolve(notFound);
87
106
  }
88
107
 
89
- hasTx(hash: TxHash): Promise<boolean> {
90
- return Promise.resolve(this.txsByHash.has(hash.toString()));
108
+ addMinedTxs(txs: Tx[], _block: BlockHeader, _opts?: { source?: string }): Promise<void> {
109
+ for (const tx of txs) {
110
+ const key = tx.getTxHash().toString();
111
+ this.txsByHash.set(key, tx);
112
+ }
113
+ return Promise.resolve();
91
114
  }
92
115
 
93
- getArchivedTxByHash(_hash: TxHash): Promise<Tx | undefined> {
94
- return Promise.resolve(undefined);
116
+ // === State Transition Handlers (TxPoolV2) ===
117
+
118
+ handleMinedBlock(_block: L2Block): Promise<void> {
119
+ return Promise.resolve();
95
120
  }
96
121
 
97
- async markAsMined(_txHashes: TxHash[], _blockHeader: BlockHeader): Promise<void> {}
122
+ prepareForSlot(_slotNumber: SlotNumber): Promise<void> {
123
+ return Promise.resolve();
124
+ }
98
125
 
99
- async markMinedAsPending(_txHashes: TxHash[], _latestBlock: BlockNumber): Promise<void> {}
126
+ handlePrunedBlocks(_latestBlock: L2BlockId): Promise<void> {
127
+ return Promise.resolve();
128
+ }
100
129
 
101
- deleteTxs(txHashes: TxHash[], _opts?: { permanently?: boolean }): Promise<void> {
130
+ handleFailedExecution(txHashes: TxHash[]): Promise<void> {
102
131
  for (const txHash of txHashes) {
103
132
  this.txsByHash.delete(txHash.toString());
104
133
  }
105
134
  return Promise.resolve();
106
135
  }
107
136
 
108
- getAllTxs(): Promise<Tx[]> {
109
- return Promise.resolve([...this.txsByHash.values()]);
137
+ handleFinalizedBlock(_block: BlockHeader): Promise<void> {
138
+ return Promise.resolve();
110
139
  }
111
140
 
112
- getAllTxHashes(): Promise<TxHash[]> {
113
- return Promise.resolve([...this.txsByHash.keys()].map(key => TxHash.fromString(key)));
141
+ // === Query Operations (TxPoolV2) ===
142
+
143
+ getTxByHash(hash: TxHash): Promise<Tx | undefined> {
144
+ return Promise.resolve(this.txsByHash.get(hash.toString()));
145
+ }
146
+
147
+ getTxsByHash(hashes: TxHash[]): Promise<(Tx | undefined)[]> {
148
+ const result = hashes.map(h => this.txsByHash.get(h.toString()));
149
+ const found = result.filter(tx => tx !== undefined).length;
150
+ this.logger?.debug(`[TxPool] getTxsByHash: requested ${hashes.length}, found ${found}`);
151
+ return Promise.resolve(result);
152
+ }
153
+
154
+ hasTxs(hashes: TxHash[]): Promise<boolean[]> {
155
+ return Promise.resolve(hashes.map(h => this.txsByHash.has(h.toString())));
156
+ }
157
+
158
+ getArchivedTxByHash(_hash: TxHash): Promise<Tx | undefined> {
159
+ return Promise.resolve(undefined);
114
160
  }
115
161
 
116
162
  getPendingTxHashes(): Promise<TxHash[]> {
117
163
  return Promise.resolve([...this.txsByHash.keys()].map(key => TxHash.fromString(key)));
118
164
  }
119
165
 
166
+ getEligiblePendingTxHashes(): Promise<TxHash[]> {
167
+ return this.getPendingTxHashes();
168
+ }
169
+
120
170
  getPendingTxCount(): Promise<number> {
121
171
  return Promise.resolve(this.txsByHash.size);
122
172
  }
123
173
 
124
- getMinedTxHashes(): Promise<[tx: TxHash, blockNumber: BlockNumber][]> {
174
+ getMinedTxHashes(): Promise<[TxHash, L2BlockId][]> {
125
175
  return Promise.resolve([]);
126
176
  }
127
177
 
128
- getTxStatus(hash: TxHash): Promise<'pending' | 'mined' | 'deleted' | undefined> {
129
- return Promise.resolve(this.txsByHash.has(hash.toString()) ? 'pending' : undefined);
178
+ getMinedTxCount(): Promise<number> {
179
+ return Promise.resolve(0);
130
180
  }
131
181
 
132
- updateConfig(_config: { maxPendingTxCount?: number; archivedTxLimit?: number }): void {}
182
+ getTxStatus(hash: TxHash): Promise<TxState | 'deleted' | undefined> {
183
+ return Promise.resolve(this.txsByHash.has(hash.toString()) ? 'pending' : undefined);
184
+ }
133
185
 
134
186
  isEmpty(): Promise<boolean> {
135
187
  return Promise.resolve(this.txsByHash.size === 0);
136
188
  }
137
189
 
138
- async markTxsAsNonEvictable(_txHashes: TxHash[]): Promise<void> {}
190
+ getLowestPriorityPending(_limit: number): Promise<TxHash[]> {
191
+ return Promise.resolve([]);
192
+ }
139
193
 
140
- async clearNonEvictableTxs(): Promise<void> {}
194
+ // === Configuration (TxPoolV2) ===
141
195
 
142
- cleanupDeletedMinedTxs(_blockNumber: BlockNumber): Promise<number> {
143
- return Promise.resolve(0);
196
+ updateConfig(_config: Partial<TxPoolV2Config>): Promise<void> {
197
+ return Promise.resolve();
198
+ }
199
+
200
+ // === Lifecycle (TxPoolV2) ===
201
+
202
+ start(): Promise<void> {
203
+ return Promise.resolve();
204
+ }
205
+
206
+ stop(): Promise<void> {
207
+ return Promise.resolve();
144
208
  }
145
209
  }
146
210
 
@@ -155,10 +219,10 @@ export class InMemoryAttestationPool {
155
219
  const id = blockProposal.archive.toString();
156
220
  const alreadyExists = this.proposals.has(id);
157
221
  if (alreadyExists) {
158
- return Promise.resolve({ added: false, alreadyExists: true, totalForPosition: 1 });
222
+ return Promise.resolve({ added: false, alreadyExists: true, count: 1 });
159
223
  }
160
224
  this.proposals.set(id, blockProposal);
161
- return Promise.resolve({ added: true, alreadyExists: false, totalForPosition: 1 });
225
+ return Promise.resolve({ added: true, alreadyExists: false, count: 1 });
162
226
  }
163
227
 
164
228
  getBlockProposal(id: string): Promise<BlockProposal | undefined> {
@@ -166,7 +230,7 @@ export class InMemoryAttestationPool {
166
230
  }
167
231
 
168
232
  tryAddCheckpointProposal(_proposal: CheckpointProposal): Promise<TryAddResult> {
169
- return Promise.resolve({ added: true, alreadyExists: false, totalForPosition: 1 });
233
+ return Promise.resolve({ added: true, alreadyExists: false, count: 1 });
170
234
  }
171
235
 
172
236
  getCheckpointProposal(_id: string): Promise<CheckpointProposalCore | undefined> {
@@ -188,8 +252,12 @@ export class InMemoryAttestationPool {
188
252
  return Promise.resolve([]);
189
253
  }
190
254
 
191
- tryAddCheckpointAttestation(_attestation: CheckpointAttestation, _committeeSize: number): Promise<TryAddResult> {
192
- return Promise.resolve({ added: true, alreadyExists: false, totalForPosition: 1 });
255
+ tryAddCheckpointAttestation(_attestation: CheckpointAttestation): Promise<TryAddResult> {
256
+ return Promise.resolve({ added: true, alreadyExists: false, count: 1 });
257
+ }
258
+
259
+ hasBlockProposalsForSlot(_slot: SlotNumber): Promise<boolean> {
260
+ return Promise.resolve(false);
193
261
  }
194
262
 
195
263
  isEmpty(): Promise<boolean> {