@aztec/p2p 0.0.1-commit.0b941701 → 0.0.1-commit.134ed76

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 (408) hide show
  1. package/dest/bootstrap/bootstrap.d.ts +4 -3
  2. package/dest/bootstrap/bootstrap.d.ts.map +1 -1
  3. package/dest/bootstrap/bootstrap.js +4 -4
  4. package/dest/client/factory.d.ts +5 -5
  5. package/dest/client/factory.d.ts.map +1 -1
  6. package/dest/client/factory.js +47 -13
  7. package/dest/client/interface.d.ts +33 -15
  8. package/dest/client/interface.d.ts.map +1 -1
  9. package/dest/client/p2p_client.d.ts +35 -36
  10. package/dest/client/p2p_client.d.ts.map +1 -1
  11. package/dest/client/p2p_client.js +115 -139
  12. package/dest/client/test/tx_proposal_collector/proposal_tx_collector_worker.d.ts +2 -0
  13. package/dest/client/test/tx_proposal_collector/proposal_tx_collector_worker.d.ts.map +1 -0
  14. package/dest/client/test/tx_proposal_collector/proposal_tx_collector_worker.js +305 -0
  15. package/dest/client/test/tx_proposal_collector/proposal_tx_collector_worker_protocol.d.ts +73 -0
  16. package/dest/client/test/tx_proposal_collector/proposal_tx_collector_worker_protocol.d.ts.map +1 -0
  17. package/dest/client/test/tx_proposal_collector/proposal_tx_collector_worker_protocol.js +8 -0
  18. package/dest/config.d.ts +24 -3
  19. package/dest/config.d.ts.map +1 -1
  20. package/dest/config.js +16 -2
  21. package/dest/index.d.ts +2 -1
  22. package/dest/index.d.ts.map +1 -1
  23. package/dest/index.js +1 -0
  24. package/dest/mem_pools/attestation_pool/attestation_pool.d.ts +102 -88
  25. package/dest/mem_pools/attestation_pool/attestation_pool.d.ts.map +1 -1
  26. package/dest/mem_pools/attestation_pool/attestation_pool.js +436 -3
  27. package/dest/mem_pools/attestation_pool/attestation_pool_test_suite.d.ts +2 -2
  28. package/dest/mem_pools/attestation_pool/attestation_pool_test_suite.d.ts.map +1 -1
  29. package/dest/mem_pools/attestation_pool/attestation_pool_test_suite.js +353 -87
  30. package/dest/mem_pools/attestation_pool/index.d.ts +2 -3
  31. package/dest/mem_pools/attestation_pool/index.d.ts.map +1 -1
  32. package/dest/mem_pools/attestation_pool/index.js +1 -2
  33. package/dest/mem_pools/index.d.ts +3 -2
  34. package/dest/mem_pools/index.d.ts.map +1 -1
  35. package/dest/mem_pools/index.js +1 -1
  36. package/dest/mem_pools/instrumentation.d.ts +1 -1
  37. package/dest/mem_pools/instrumentation.d.ts.map +1 -1
  38. package/dest/mem_pools/instrumentation.js +2 -2
  39. package/dest/mem_pools/interface.d.ts +5 -5
  40. package/dest/mem_pools/interface.d.ts.map +1 -1
  41. package/dest/mem_pools/tx_pool_v2/archive/index.d.ts +2 -0
  42. package/dest/mem_pools/tx_pool_v2/archive/index.d.ts.map +1 -0
  43. package/dest/mem_pools/tx_pool_v2/archive/index.js +1 -0
  44. package/dest/mem_pools/tx_pool_v2/archive/tx_archive.d.ts +43 -0
  45. package/dest/mem_pools/tx_pool_v2/archive/tx_archive.d.ts.map +1 -0
  46. package/dest/mem_pools/tx_pool_v2/archive/tx_archive.js +103 -0
  47. package/dest/mem_pools/tx_pool_v2/deleted_pool.d.ts +87 -0
  48. package/dest/mem_pools/tx_pool_v2/deleted_pool.d.ts.map +1 -0
  49. package/dest/mem_pools/tx_pool_v2/deleted_pool.js +180 -0
  50. package/dest/mem_pools/tx_pool_v2/eviction/eviction_manager.d.ts +47 -0
  51. package/dest/mem_pools/tx_pool_v2/eviction/eviction_manager.d.ts.map +1 -0
  52. package/dest/mem_pools/tx_pool_v2/eviction/eviction_manager.js +119 -0
  53. package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.d.ts +17 -0
  54. package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.d.ts.map +1 -0
  55. package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.js +90 -0
  56. package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_pre_add_rule.d.ts +19 -0
  57. package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_pre_add_rule.d.ts.map +1 -0
  58. package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_pre_add_rule.js +89 -0
  59. package/dest/mem_pools/tx_pool_v2/eviction/index.d.ts +10 -0
  60. package/dest/mem_pools/tx_pool_v2/eviction/index.d.ts.map +1 -0
  61. package/dest/mem_pools/tx_pool_v2/eviction/index.js +11 -0
  62. package/dest/mem_pools/tx_pool_v2/eviction/interfaces.d.ts +131 -0
  63. package/dest/mem_pools/tx_pool_v2/eviction/interfaces.d.ts.map +1 -0
  64. package/dest/mem_pools/tx_pool_v2/eviction/interfaces.js +17 -0
  65. package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_mining_rule.d.ts +15 -0
  66. package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_mining_rule.d.ts.map +1 -0
  67. package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_mining_rule.js +63 -0
  68. package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_reorg_rule.d.ts +17 -0
  69. package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_reorg_rule.d.ts.map +1 -0
  70. package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_reorg_rule.js +91 -0
  71. package/dest/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.d.ts +16 -0
  72. package/dest/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.d.ts.map +1 -0
  73. package/dest/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.js +70 -0
  74. package/dest/mem_pools/tx_pool_v2/eviction/low_priority_pre_add_rule.d.ts +20 -0
  75. package/dest/mem_pools/tx_pool_v2/eviction/low_priority_pre_add_rule.d.ts.map +1 -0
  76. package/dest/mem_pools/tx_pool_v2/eviction/low_priority_pre_add_rule.js +63 -0
  77. package/dest/mem_pools/tx_pool_v2/eviction/nullifier_conflict_rule.d.ts +15 -0
  78. package/dest/mem_pools/tx_pool_v2/eviction/nullifier_conflict_rule.d.ts.map +1 -0
  79. package/dest/mem_pools/tx_pool_v2/eviction/nullifier_conflict_rule.js +19 -0
  80. package/dest/mem_pools/tx_pool_v2/index.d.ts +6 -0
  81. package/dest/mem_pools/tx_pool_v2/index.d.ts.map +1 -0
  82. package/dest/mem_pools/tx_pool_v2/index.js +5 -0
  83. package/dest/mem_pools/tx_pool_v2/interfaces.d.ts +197 -0
  84. package/dest/mem_pools/tx_pool_v2/interfaces.d.ts.map +1 -0
  85. package/dest/mem_pools/tx_pool_v2/interfaces.js +6 -0
  86. package/dest/mem_pools/tx_pool_v2/tx_metadata.d.ts +93 -0
  87. package/dest/mem_pools/tx_pool_v2/tx_metadata.d.ts.map +1 -0
  88. package/dest/mem_pools/tx_pool_v2/tx_metadata.js +127 -0
  89. package/dest/mem_pools/tx_pool_v2/tx_pool_bench_metrics.d.ts +26 -0
  90. package/dest/mem_pools/tx_pool_v2/tx_pool_bench_metrics.d.ts.map +1 -0
  91. package/dest/mem_pools/tx_pool_v2/tx_pool_bench_metrics.js +70 -0
  92. package/dest/mem_pools/tx_pool_v2/tx_pool_indices.d.ts +99 -0
  93. package/dest/mem_pools/tx_pool_v2/tx_pool_indices.d.ts.map +1 -0
  94. package/dest/mem_pools/tx_pool_v2/tx_pool_indices.js +332 -0
  95. package/dest/mem_pools/tx_pool_v2/tx_pool_v2.d.ts +55 -0
  96. package/dest/mem_pools/tx_pool_v2/tx_pool_v2.d.ts.map +1 -0
  97. package/dest/mem_pools/tx_pool_v2/tx_pool_v2.js +156 -0
  98. package/dest/mem_pools/tx_pool_v2/tx_pool_v2_impl.d.ts +69 -0
  99. package/dest/mem_pools/tx_pool_v2/tx_pool_v2_impl.d.ts.map +1 -0
  100. package/dest/mem_pools/tx_pool_v2/tx_pool_v2_impl.js +751 -0
  101. package/dest/msg_validators/attestation_validator/fisherman_attestation_validator.d.ts +3 -3
  102. package/dest/msg_validators/attestation_validator/fisherman_attestation_validator.d.ts.map +1 -1
  103. package/dest/msg_validators/attestation_validator/fisherman_attestation_validator.js +7 -2
  104. package/dest/msg_validators/proposal_validator/proposal_validator.js +5 -5
  105. package/dest/msg_validators/tx_validator/aggregate_tx_validator.d.ts +3 -3
  106. package/dest/msg_validators/tx_validator/aggregate_tx_validator.d.ts.map +1 -1
  107. package/dest/msg_validators/tx_validator/archive_cache.d.ts +3 -3
  108. package/dest/msg_validators/tx_validator/archive_cache.d.ts.map +1 -1
  109. package/dest/msg_validators/tx_validator/archive_cache.js +1 -1
  110. package/dest/msg_validators/tx_validator/block_header_validator.d.ts +20 -6
  111. package/dest/msg_validators/tx_validator/block_header_validator.d.ts.map +1 -1
  112. package/dest/msg_validators/tx_validator/block_header_validator.js +5 -4
  113. package/dest/msg_validators/tx_validator/data_validator.d.ts +3 -1
  114. package/dest/msg_validators/tx_validator/data_validator.d.ts.map +1 -1
  115. package/dest/msg_validators/tx_validator/data_validator.js +4 -1
  116. package/dest/msg_validators/tx_validator/double_spend_validator.d.ts +15 -4
  117. package/dest/msg_validators/tx_validator/double_spend_validator.d.ts.map +1 -1
  118. package/dest/msg_validators/tx_validator/double_spend_validator.js +7 -6
  119. package/dest/msg_validators/tx_validator/factory.d.ts +8 -3
  120. package/dest/msg_validators/tx_validator/factory.d.ts.map +1 -1
  121. package/dest/msg_validators/tx_validator/factory.js +21 -11
  122. package/dest/msg_validators/tx_validator/gas_validator.d.ts +3 -2
  123. package/dest/msg_validators/tx_validator/gas_validator.d.ts.map +1 -1
  124. package/dest/msg_validators/tx_validator/gas_validator.js +3 -2
  125. package/dest/msg_validators/tx_validator/metadata_validator.d.ts +3 -2
  126. package/dest/msg_validators/tx_validator/metadata_validator.d.ts.map +1 -1
  127. package/dest/msg_validators/tx_validator/metadata_validator.js +2 -2
  128. package/dest/msg_validators/tx_validator/phases_validator.d.ts +3 -2
  129. package/dest/msg_validators/tx_validator/phases_validator.d.ts.map +1 -1
  130. package/dest/msg_validators/tx_validator/phases_validator.js +3 -3
  131. package/dest/msg_validators/tx_validator/size_validator.d.ts +3 -1
  132. package/dest/msg_validators/tx_validator/size_validator.d.ts.map +1 -1
  133. package/dest/msg_validators/tx_validator/size_validator.js +4 -1
  134. package/dest/msg_validators/tx_validator/timestamp_validator.d.ts +22 -5
  135. package/dest/msg_validators/tx_validator/timestamp_validator.d.ts.map +1 -1
  136. package/dest/msg_validators/tx_validator/timestamp_validator.js +4 -4
  137. package/dest/msg_validators/tx_validator/tx_permitted_validator.d.ts +3 -2
  138. package/dest/msg_validators/tx_validator/tx_permitted_validator.d.ts.map +1 -1
  139. package/dest/msg_validators/tx_validator/tx_permitted_validator.js +2 -2
  140. package/dest/msg_validators/tx_validator/tx_proof_validator.d.ts +3 -2
  141. package/dest/msg_validators/tx_validator/tx_proof_validator.d.ts.map +1 -1
  142. package/dest/msg_validators/tx_validator/tx_proof_validator.js +2 -2
  143. package/dest/services/data_store.d.ts +1 -1
  144. package/dest/services/data_store.d.ts.map +1 -1
  145. package/dest/services/data_store.js +10 -6
  146. package/dest/services/discv5/discV5_service.js +1 -1
  147. package/dest/services/dummy_service.d.ts +22 -2
  148. package/dest/services/dummy_service.d.ts.map +1 -1
  149. package/dest/services/dummy_service.js +45 -0
  150. package/dest/services/encoding.d.ts +2 -2
  151. package/dest/services/encoding.d.ts.map +1 -1
  152. package/dest/services/encoding.js +2 -2
  153. package/dest/services/gossipsub/index.d.ts +3 -0
  154. package/dest/services/gossipsub/index.d.ts.map +1 -0
  155. package/dest/services/gossipsub/index.js +2 -0
  156. package/dest/services/gossipsub/scoring.d.ts +21 -3
  157. package/dest/services/gossipsub/scoring.d.ts.map +1 -1
  158. package/dest/services/gossipsub/scoring.js +24 -7
  159. package/dest/services/gossipsub/topic_score_params.d.ts +161 -0
  160. package/dest/services/gossipsub/topic_score_params.d.ts.map +1 -0
  161. package/dest/services/gossipsub/topic_score_params.js +324 -0
  162. package/dest/services/index.d.ts +2 -1
  163. package/dest/services/index.d.ts.map +1 -1
  164. package/dest/services/index.js +1 -0
  165. package/dest/services/libp2p/instrumentation.d.ts +1 -1
  166. package/dest/services/libp2p/instrumentation.d.ts.map +1 -1
  167. package/dest/services/libp2p/instrumentation.js +14 -3
  168. package/dest/services/libp2p/libp2p_service.d.ts +90 -35
  169. package/dest/services/libp2p/libp2p_service.d.ts.map +1 -1
  170. package/dest/services/libp2p/libp2p_service.js +403 -299
  171. package/dest/services/peer-manager/metrics.d.ts +2 -2
  172. package/dest/services/peer-manager/metrics.d.ts.map +1 -1
  173. package/dest/services/peer-manager/metrics.js +20 -5
  174. package/dest/services/peer-manager/peer_scoring.d.ts +1 -1
  175. package/dest/services/peer-manager/peer_scoring.d.ts.map +1 -1
  176. package/dest/services/peer-manager/peer_scoring.js +33 -4
  177. package/dest/services/reqresp/batch-tx-requester/batch_tx_requester.d.ts +47 -0
  178. package/dest/services/reqresp/batch-tx-requester/batch_tx_requester.d.ts.map +1 -0
  179. package/dest/services/reqresp/batch-tx-requester/batch_tx_requester.js +566 -0
  180. package/dest/services/reqresp/batch-tx-requester/config.d.ts +17 -0
  181. package/dest/services/reqresp/batch-tx-requester/config.d.ts.map +1 -0
  182. package/dest/services/reqresp/batch-tx-requester/config.js +27 -0
  183. package/dest/services/reqresp/batch-tx-requester/interface.d.ts +50 -0
  184. package/dest/services/reqresp/batch-tx-requester/interface.d.ts.map +1 -0
  185. package/dest/services/reqresp/batch-tx-requester/interface.js +1 -0
  186. package/dest/services/reqresp/batch-tx-requester/missing_txs.d.ts +37 -0
  187. package/dest/services/reqresp/batch-tx-requester/missing_txs.d.ts.map +1 -0
  188. package/dest/services/reqresp/batch-tx-requester/missing_txs.js +151 -0
  189. package/dest/services/reqresp/batch-tx-requester/peer_collection.d.ts +54 -0
  190. package/dest/services/reqresp/batch-tx-requester/peer_collection.d.ts.map +1 -0
  191. package/dest/services/reqresp/batch-tx-requester/peer_collection.js +139 -0
  192. package/dest/services/reqresp/batch-tx-requester/tx_validator.d.ts +20 -0
  193. package/dest/services/reqresp/batch-tx-requester/tx_validator.d.ts.map +1 -0
  194. package/dest/services/reqresp/batch-tx-requester/tx_validator.js +21 -0
  195. package/dest/services/reqresp/connection-sampler/batch_connection_sampler.d.ts +22 -3
  196. package/dest/services/reqresp/connection-sampler/batch_connection_sampler.d.ts.map +1 -1
  197. package/dest/services/reqresp/connection-sampler/batch_connection_sampler.js +63 -4
  198. package/dest/services/reqresp/connection-sampler/connection_sampler.d.ts +2 -1
  199. package/dest/services/reqresp/connection-sampler/connection_sampler.d.ts.map +1 -1
  200. package/dest/services/reqresp/connection-sampler/connection_sampler.js +12 -0
  201. package/dest/services/reqresp/interface.d.ts +12 -1
  202. package/dest/services/reqresp/interface.d.ts.map +1 -1
  203. package/dest/services/reqresp/interface.js +15 -1
  204. package/dest/services/reqresp/metrics.d.ts +6 -5
  205. package/dest/services/reqresp/metrics.d.ts.map +1 -1
  206. package/dest/services/reqresp/metrics.js +17 -5
  207. package/dest/services/reqresp/protocols/block_txs/bitvector.d.ts +5 -1
  208. package/dest/services/reqresp/protocols/block_txs/bitvector.d.ts.map +1 -1
  209. package/dest/services/reqresp/protocols/block_txs/bitvector.js +5 -0
  210. package/dest/services/reqresp/protocols/block_txs/block_txs_handler.d.ts +7 -5
  211. package/dest/services/reqresp/protocols/block_txs/block_txs_handler.d.ts.map +1 -1
  212. package/dest/services/reqresp/protocols/block_txs/block_txs_handler.js +27 -9
  213. package/dest/services/reqresp/protocols/block_txs/block_txs_reqresp.d.ts +29 -6
  214. package/dest/services/reqresp/protocols/block_txs/block_txs_reqresp.d.ts.map +1 -1
  215. package/dest/services/reqresp/protocols/block_txs/block_txs_reqresp.js +59 -13
  216. package/dest/services/reqresp/protocols/tx.d.ts +7 -1
  217. package/dest/services/reqresp/protocols/tx.d.ts.map +1 -1
  218. package/dest/services/reqresp/protocols/tx.js +20 -0
  219. package/dest/services/reqresp/reqresp.d.ts +6 -1
  220. package/dest/services/reqresp/reqresp.d.ts.map +1 -1
  221. package/dest/services/reqresp/reqresp.js +69 -26
  222. package/dest/services/service.d.ts +38 -1
  223. package/dest/services/service.d.ts.map +1 -1
  224. package/dest/services/tx_collection/config.d.ts +10 -1
  225. package/dest/services/tx_collection/config.d.ts.map +1 -1
  226. package/dest/services/tx_collection/config.js +25 -1
  227. package/dest/services/tx_collection/fast_tx_collection.d.ts +7 -4
  228. package/dest/services/tx_collection/fast_tx_collection.d.ts.map +1 -1
  229. package/dest/services/tx_collection/fast_tx_collection.js +34 -13
  230. package/dest/services/tx_collection/file_store_tx_collection.d.ts +44 -0
  231. package/dest/services/tx_collection/file_store_tx_collection.d.ts.map +1 -0
  232. package/dest/services/tx_collection/file_store_tx_collection.js +118 -0
  233. package/dest/services/tx_collection/file_store_tx_source.d.ts +27 -0
  234. package/dest/services/tx_collection/file_store_tx_source.d.ts.map +1 -0
  235. package/dest/services/tx_collection/file_store_tx_source.js +57 -0
  236. package/dest/services/tx_collection/index.d.ts +3 -1
  237. package/dest/services/tx_collection/index.d.ts.map +1 -1
  238. package/dest/services/tx_collection/index.js +2 -0
  239. package/dest/services/tx_collection/instrumentation.d.ts +1 -1
  240. package/dest/services/tx_collection/instrumentation.d.ts.map +1 -1
  241. package/dest/services/tx_collection/instrumentation.js +9 -2
  242. package/dest/services/tx_collection/proposal_tx_collector.d.ts +48 -0
  243. package/dest/services/tx_collection/proposal_tx_collector.d.ts.map +1 -0
  244. package/dest/services/tx_collection/proposal_tx_collector.js +49 -0
  245. package/dest/services/tx_collection/slow_tx_collection.d.ts +3 -1
  246. package/dest/services/tx_collection/slow_tx_collection.d.ts.map +1 -1
  247. package/dest/services/tx_collection/slow_tx_collection.js +48 -19
  248. package/dest/services/tx_collection/tx_collection.d.ts +19 -9
  249. package/dest/services/tx_collection/tx_collection.d.ts.map +1 -1
  250. package/dest/services/tx_collection/tx_collection.js +62 -6
  251. package/dest/services/tx_collection/tx_collection_sink.d.ts +15 -6
  252. package/dest/services/tx_collection/tx_collection_sink.d.ts.map +1 -1
  253. package/dest/services/tx_collection/tx_collection_sink.js +13 -7
  254. package/dest/services/tx_file_store/config.d.ts +16 -0
  255. package/dest/services/tx_file_store/config.d.ts.map +1 -0
  256. package/dest/services/tx_file_store/config.js +22 -0
  257. package/dest/services/tx_file_store/index.d.ts +4 -0
  258. package/dest/services/tx_file_store/index.d.ts.map +1 -0
  259. package/dest/services/tx_file_store/index.js +3 -0
  260. package/dest/services/tx_file_store/instrumentation.d.ts +15 -0
  261. package/dest/services/tx_file_store/instrumentation.d.ts.map +1 -0
  262. package/dest/services/tx_file_store/instrumentation.js +29 -0
  263. package/dest/services/tx_file_store/tx_file_store.d.ts +47 -0
  264. package/dest/services/tx_file_store/tx_file_store.d.ts.map +1 -0
  265. package/dest/services/tx_file_store/tx_file_store.js +149 -0
  266. package/dest/services/tx_provider.d.ts +3 -3
  267. package/dest/services/tx_provider.d.ts.map +1 -1
  268. package/dest/services/tx_provider.js +5 -4
  269. package/dest/services/tx_provider_instrumentation.d.ts +1 -1
  270. package/dest/services/tx_provider_instrumentation.d.ts.map +1 -1
  271. package/dest/services/tx_provider_instrumentation.js +5 -5
  272. package/dest/test-helpers/index.d.ts +3 -1
  273. package/dest/test-helpers/index.d.ts.map +1 -1
  274. package/dest/test-helpers/index.js +2 -0
  275. package/dest/test-helpers/make-test-p2p-clients.d.ts +3 -3
  276. package/dest/test-helpers/make-test-p2p-clients.d.ts.map +1 -1
  277. package/dest/test-helpers/mock-pubsub.d.ts +27 -1
  278. package/dest/test-helpers/mock-pubsub.d.ts.map +1 -1
  279. package/dest/test-helpers/mock-pubsub.js +97 -2
  280. package/dest/test-helpers/reqresp-nodes.d.ts +1 -1
  281. package/dest/test-helpers/reqresp-nodes.d.ts.map +1 -1
  282. package/dest/test-helpers/reqresp-nodes.js +2 -1
  283. package/dest/test-helpers/test_tx_provider.d.ts +40 -0
  284. package/dest/test-helpers/test_tx_provider.d.ts.map +1 -0
  285. package/dest/test-helpers/test_tx_provider.js +41 -0
  286. package/dest/test-helpers/testbench-utils.d.ts +158 -0
  287. package/dest/test-helpers/testbench-utils.d.ts.map +1 -0
  288. package/dest/test-helpers/testbench-utils.js +360 -0
  289. package/dest/testbench/p2p_client_testbench_worker.d.ts +28 -2
  290. package/dest/testbench/p2p_client_testbench_worker.d.ts.map +1 -1
  291. package/dest/testbench/p2p_client_testbench_worker.js +213 -132
  292. package/dest/testbench/worker_client_manager.d.ts +51 -6
  293. package/dest/testbench/worker_client_manager.d.ts.map +1 -1
  294. package/dest/testbench/worker_client_manager.js +226 -44
  295. package/package.json +14 -14
  296. package/src/bootstrap/bootstrap.ts +7 -4
  297. package/src/client/factory.ts +78 -22
  298. package/src/client/interface.ts +39 -14
  299. package/src/client/p2p_client.ts +151 -162
  300. package/src/client/test/tx_proposal_collector/README.md +227 -0
  301. package/src/client/test/tx_proposal_collector/proposal_tx_collector_worker.ts +336 -0
  302. package/src/client/test/tx_proposal_collector/proposal_tx_collector_worker_protocol.ts +43 -0
  303. package/src/config.ts +38 -2
  304. package/src/index.ts +1 -0
  305. package/src/mem_pools/attestation_pool/attestation_pool.ts +488 -91
  306. package/src/mem_pools/attestation_pool/attestation_pool_test_suite.ts +442 -102
  307. package/src/mem_pools/attestation_pool/index.ts +9 -2
  308. package/src/mem_pools/index.ts +4 -1
  309. package/src/mem_pools/instrumentation.ts +2 -1
  310. package/src/mem_pools/interface.ts +4 -4
  311. package/src/mem_pools/tx_pool_v2/README.md +259 -0
  312. package/src/mem_pools/tx_pool_v2/archive/index.ts +1 -0
  313. package/src/mem_pools/tx_pool_v2/archive/tx_archive.ts +120 -0
  314. package/src/mem_pools/tx_pool_v2/deleted_pool.ts +234 -0
  315. package/src/mem_pools/tx_pool_v2/eviction/eviction_manager.ts +147 -0
  316. package/src/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.ts +118 -0
  317. package/src/mem_pools/tx_pool_v2/eviction/fee_payer_balance_pre_add_rule.ts +111 -0
  318. package/src/mem_pools/tx_pool_v2/eviction/index.ts +23 -0
  319. package/src/mem_pools/tx_pool_v2/eviction/interfaces.ts +164 -0
  320. package/src/mem_pools/tx_pool_v2/eviction/invalid_txs_after_mining_rule.ts +74 -0
  321. package/src/mem_pools/tx_pool_v2/eviction/invalid_txs_after_reorg_rule.ts +101 -0
  322. package/src/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.ts +86 -0
  323. package/src/mem_pools/tx_pool_v2/eviction/low_priority_pre_add_rule.ts +72 -0
  324. package/src/mem_pools/tx_pool_v2/eviction/nullifier_conflict_rule.ts +31 -0
  325. package/src/mem_pools/tx_pool_v2/index.ts +12 -0
  326. package/src/mem_pools/tx_pool_v2/interfaces.ts +227 -0
  327. package/src/mem_pools/tx_pool_v2/tx_metadata.ts +207 -0
  328. package/src/mem_pools/tx_pool_v2/tx_pool_bench_metrics.ts +77 -0
  329. package/src/mem_pools/tx_pool_v2/tx_pool_indices.ts +417 -0
  330. package/src/mem_pools/tx_pool_v2/tx_pool_v2.ts +212 -0
  331. package/src/mem_pools/tx_pool_v2/tx_pool_v2_impl.ts +895 -0
  332. package/src/msg_validators/attestation_validator/fisherman_attestation_validator.ts +10 -4
  333. package/src/msg_validators/proposal_validator/proposal_validator.ts +5 -5
  334. package/src/msg_validators/tx_validator/aggregate_tx_validator.ts +2 -2
  335. package/src/msg_validators/tx_validator/archive_cache.ts +3 -3
  336. package/src/msg_validators/tx_validator/block_header_validator.ts +22 -11
  337. package/src/msg_validators/tx_validator/data_validator.ts +6 -2
  338. package/src/msg_validators/tx_validator/double_spend_validator.ts +15 -9
  339. package/src/msg_validators/tx_validator/factory.ts +64 -23
  340. package/src/msg_validators/tx_validator/gas_validator.ts +9 -3
  341. package/src/msg_validators/tx_validator/metadata_validator.ts +6 -3
  342. package/src/msg_validators/tx_validator/phases_validator.ts +5 -3
  343. package/src/msg_validators/tx_validator/size_validator.ts +6 -2
  344. package/src/msg_validators/tx_validator/timestamp_validator.ts +25 -17
  345. package/src/msg_validators/tx_validator/tx_permitted_validator.ts +8 -3
  346. package/src/msg_validators/tx_validator/tx_proof_validator.ts +8 -3
  347. package/src/services/data_store.ts +10 -7
  348. package/src/services/discv5/discV5_service.ts +1 -1
  349. package/src/services/dummy_service.ts +57 -0
  350. package/src/services/encoding.ts +2 -2
  351. package/src/services/gossipsub/README.md +626 -0
  352. package/src/services/gossipsub/index.ts +2 -0
  353. package/src/services/gossipsub/scoring.ts +29 -5
  354. package/src/services/gossipsub/topic_score_params.ts +451 -0
  355. package/src/services/index.ts +1 -0
  356. package/src/services/libp2p/instrumentation.ts +15 -2
  357. package/src/services/libp2p/libp2p_service.ts +428 -319
  358. package/src/services/peer-manager/metrics.ts +21 -4
  359. package/src/services/peer-manager/peer_scoring.ts +29 -1
  360. package/src/services/reqresp/batch-tx-requester/README.md +305 -0
  361. package/src/services/reqresp/batch-tx-requester/batch_tx_requester.ts +706 -0
  362. package/src/services/reqresp/batch-tx-requester/config.ts +40 -0
  363. package/src/services/reqresp/batch-tx-requester/interface.ts +57 -0
  364. package/src/services/reqresp/batch-tx-requester/missing_txs.ts +209 -0
  365. package/src/services/reqresp/batch-tx-requester/peer_collection.ts +205 -0
  366. package/src/services/reqresp/batch-tx-requester/tx_validator.ts +37 -0
  367. package/src/services/reqresp/connection-sampler/batch_connection_sampler.ts +65 -4
  368. package/src/services/reqresp/connection-sampler/connection_sampler.ts +16 -0
  369. package/src/services/reqresp/interface.ts +29 -1
  370. package/src/services/reqresp/metrics.ts +34 -9
  371. package/src/services/reqresp/protocols/block_txs/bitvector.ts +7 -0
  372. package/src/services/reqresp/protocols/block_txs/block_txs_handler.ts +35 -12
  373. package/src/services/reqresp/protocols/block_txs/block_txs_reqresp.ts +74 -9
  374. package/src/services/reqresp/protocols/tx.ts +22 -0
  375. package/src/services/reqresp/reqresp.ts +79 -22
  376. package/src/services/service.ts +44 -0
  377. package/src/services/tx_collection/config.ts +41 -1
  378. package/src/services/tx_collection/fast_tx_collection.ts +44 -19
  379. package/src/services/tx_collection/file_store_tx_collection.ts +152 -0
  380. package/src/services/tx_collection/file_store_tx_source.ts +70 -0
  381. package/src/services/tx_collection/index.ts +6 -0
  382. package/src/services/tx_collection/instrumentation.ts +11 -2
  383. package/src/services/tx_collection/proposal_tx_collector.ts +112 -0
  384. package/src/services/tx_collection/slow_tx_collection.ts +55 -26
  385. package/src/services/tx_collection/tx_collection.ts +82 -16
  386. package/src/services/tx_collection/tx_collection_sink.ts +17 -7
  387. package/src/services/tx_file_store/config.ts +37 -0
  388. package/src/services/tx_file_store/index.ts +3 -0
  389. package/src/services/tx_file_store/instrumentation.ts +36 -0
  390. package/src/services/tx_file_store/tx_file_store.ts +173 -0
  391. package/src/services/tx_provider.ts +8 -7
  392. package/src/services/tx_provider_instrumentation.ts +11 -5
  393. package/src/test-helpers/index.ts +2 -0
  394. package/src/test-helpers/make-test-p2p-clients.ts +3 -3
  395. package/src/test-helpers/mock-pubsub.ts +133 -3
  396. package/src/test-helpers/reqresp-nodes.ts +2 -1
  397. package/src/test-helpers/test_tx_provider.ts +64 -0
  398. package/src/test-helpers/testbench-utils.ts +422 -0
  399. package/src/testbench/p2p_client_testbench_worker.ts +322 -123
  400. package/src/testbench/worker_client_manager.ts +304 -47
  401. package/dest/mem_pools/attestation_pool/kv_attestation_pool.d.ts +0 -40
  402. package/dest/mem_pools/attestation_pool/kv_attestation_pool.d.ts.map +0 -1
  403. package/dest/mem_pools/attestation_pool/kv_attestation_pool.js +0 -218
  404. package/dest/mem_pools/attestation_pool/memory_attestation_pool.d.ts +0 -31
  405. package/dest/mem_pools/attestation_pool/memory_attestation_pool.d.ts.map +0 -1
  406. package/dest/mem_pools/attestation_pool/memory_attestation_pool.js +0 -180
  407. package/src/mem_pools/attestation_pool/kv_attestation_pool.ts +0 -320
  408. package/src/mem_pools/attestation_pool/memory_attestation_pool.ts +0 -264
@@ -91,6 +91,7 @@ export class SlowTxCollection {
91
91
 
92
92
  for (const txHash of txHashes) {
93
93
  this.missingTxs.set(txHash.toString(), {
94
+ block,
94
95
  blockNumber: block.number,
95
96
  deadline: this.getDeadlineForSlot(block.header.getSlot()),
96
97
  readyForReqResp: this.nodes.length === 0, // If we have no nodes, we can start reqresp immediately
@@ -109,18 +110,26 @@ export class SlowTxCollection {
109
110
 
110
111
  // Gather all missing txs that are not in fast collection and request them from the node
111
112
  const missingTxs = this.getMissingTxsForSlowCollection();
112
- const missingTxHashes = missingTxs.map(([txHash]) => txHash).map(TxHash.fromString);
113
- if (missingTxHashes.length === 0) {
113
+ if (missingTxs.length === 0) {
114
114
  return;
115
115
  }
116
116
 
117
- // Request in chunks to avoid hitting RPC limits
118
- for (const batch of chunk(missingTxHashes, this.config.txCollectionNodeRpcMaxBatchSize)) {
119
- await this.txCollectionSink.collect(txHashes => node.getTxsByHash(txHashes), batch, {
120
- description: `node ${node.getInfo()}`,
121
- node: node.getInfo(),
122
- method: 'slow-node-rpc',
123
- });
117
+ // Group by block so we pass the correct mined context to the sink
118
+ for (const entries of this.groupByBlock(missingTxs)) {
119
+ const block = entries[0][1].block;
120
+ const txHashes = entries.map(([txHash]) => TxHash.fromString(txHash));
121
+ for (const batch of chunk(txHashes, this.config.txCollectionNodeRpcMaxBatchSize)) {
122
+ await this.txCollectionSink.collect(
123
+ hashes => node.getTxsByHash(hashes),
124
+ batch,
125
+ {
126
+ description: `node ${node.getInfo()}`,
127
+ node: node.getInfo(),
128
+ method: 'slow-node-rpc',
129
+ },
130
+ { type: 'mined', block },
131
+ );
132
+ }
124
133
  }
125
134
 
126
135
  // Mark every tx that is still missing as ready for reqresp.
@@ -149,25 +158,30 @@ export class SlowTxCollection {
149
158
 
150
159
  const pinnedPeer = undefined;
151
160
  const timeoutMs = this.config.txCollectionSlowReqRespTimeoutMs;
152
- const maxPeers = boundInclusive(Math.ceil(missingTxs.length / 3), 4, 16);
153
161
  const maxRetryAttempts = 3;
154
- // Send a batch request via reqresp for the missing txs
155
- await this.txCollectionSink.collect(
156
- async txHashes => {
157
- const txs = await this.reqResp.sendBatchRequest<ReqRespSubProtocol.TX>(
158
- ReqRespSubProtocol.TX,
159
- chunkTxHashesRequest(txHashes),
160
- pinnedPeer,
161
- timeoutMs,
162
- maxPeers,
163
- maxRetryAttempts,
164
- );
165
162
 
166
- return txs.flat();
167
- },
168
- missingTxs.map(([txHash]) => TxHash.fromString(txHash)),
169
- { description: 'slow reqresp', timeoutMs, method: 'slow-req-resp' },
170
- );
163
+ // Group by block so we pass the correct mined context to the sink
164
+ for (const entries of this.groupByBlock(missingTxs)) {
165
+ const block = entries[0][1].block;
166
+ const txHashes = entries.map(([txHash]) => TxHash.fromString(txHash));
167
+ const maxPeers = boundInclusive(Math.ceil(txHashes.length / 3), 4, 16);
168
+ await this.txCollectionSink.collect(
169
+ async hashes => {
170
+ const txs = await this.reqResp.sendBatchRequest<ReqRespSubProtocol.TX>(
171
+ ReqRespSubProtocol.TX,
172
+ chunkTxHashesRequest(hashes),
173
+ pinnedPeer,
174
+ timeoutMs,
175
+ maxPeers,
176
+ maxRetryAttempts,
177
+ );
178
+ return txs.flat();
179
+ },
180
+ txHashes,
181
+ { description: 'slow reqresp', timeoutMs, method: 'slow-req-resp' },
182
+ { type: 'mined', block },
183
+ );
184
+ }
171
185
  }
172
186
 
173
187
  /** Retrieves all missing txs for the slow collection process. This is, all missing txs that are not part of a fast request. */
@@ -223,6 +237,21 @@ export class SlowTxCollection {
223
237
  }
224
238
  }
225
239
 
240
+ /** Groups missing tx entries by block number. */
241
+ private groupByBlock(entries: [string, MissingTxInfo][]): [string, MissingTxInfo][][] {
242
+ const groups = new Map<number, [string, MissingTxInfo][]>();
243
+ for (const entry of entries) {
244
+ const bn = +entry[1].blockNumber;
245
+ let group = groups.get(bn);
246
+ if (!group) {
247
+ group = [];
248
+ groups.set(bn, group);
249
+ }
250
+ group.push(entry);
251
+ }
252
+ return [...groups.values()];
253
+ }
254
+
226
255
  /** Computes the proof submission deadline for a given slot, a tx mined in this slot is no longer interesting after this deadline */
227
256
  private getDeadlineForSlot(slotNumber: SlotNumber): Date {
228
257
  const epoch = getEpochAtSlot(slotNumber, this.constants);
@@ -2,6 +2,7 @@ import { BlockNumber } from '@aztec/foundation/branded-types';
2
2
  import { compactArray } from '@aztec/foundation/collection';
3
3
  import { type Logger, createLogger } from '@aztec/foundation/log';
4
4
  import { type PromiseWithResolvers, RunningPromise } from '@aztec/foundation/promise';
5
+ import { sleep } from '@aztec/foundation/sleep';
5
6
  import { DateProvider } from '@aztec/foundation/timer';
6
7
  import type { L2Block, L2BlockInfo } from '@aztec/stdlib/block';
7
8
  import type { L1RollupConstants } from '@aztec/stdlib/epoch-helpers';
@@ -11,18 +12,19 @@ import { type TelemetryClient, getTelemetryClient } from '@aztec/telemetry-clien
11
12
 
12
13
  import type { PeerId } from '@libp2p/interface';
13
14
 
14
- import type { TxPool } from '../../mem_pools/index.js';
15
- import type { TxPoolEvents } from '../../mem_pools/tx_pool/tx_pool.js';
16
- import type { ReqRespInterface } from '../reqresp/interface.js';
15
+ import type { TxPoolV2, TxPoolV2Events } from '../../mem_pools/tx_pool_v2/interfaces.js';
16
+ import type { BatchTxRequesterLibP2PService } from '../reqresp/batch-tx-requester/interface.js';
17
17
  import type { TxCollectionConfig } from './config.js';
18
18
  import { FastTxCollection } from './fast_tx_collection.js';
19
+ import { FileStoreTxCollection } from './file_store_tx_collection.js';
20
+ import type { FileStoreTxSource } from './file_store_tx_source.js';
19
21
  import { SlowTxCollection } from './slow_tx_collection.js';
20
- import { TxCollectionSink } from './tx_collection_sink.js';
22
+ import { type TxAddContext, TxCollectionSink } from './tx_collection_sink.js';
21
23
  import type { TxSource } from './tx_source.js';
22
24
 
23
- export type CollectionMethod = 'fast-req-resp' | 'fast-node-rpc' | 'slow-req-resp' | 'slow-node-rpc';
25
+ export type CollectionMethod = 'fast-req-resp' | 'fast-node-rpc' | 'slow-req-resp' | 'slow-node-rpc' | 'file-store';
24
26
 
25
- export type MissingTxInfo = { blockNumber: BlockNumber; deadline: Date; readyForReqResp: boolean };
27
+ export type MissingTxInfo = { block: L2Block; blockNumber: BlockNumber; deadline: Date; readyForReqResp: boolean };
26
28
 
27
29
  export type FastCollectionRequestInput =
28
30
  | { type: 'block'; block: L2Block }
@@ -54,6 +56,9 @@ export class TxCollection {
54
56
  /** Fast collection methods */
55
57
  protected readonly fastCollection: FastTxCollection;
56
58
 
59
+ /** File store collection */
60
+ protected readonly fileStoreCollection: FileStoreTxCollection;
61
+
57
62
  /** Loop for periodically reconciling found transactions from the tx pool in case we missed some */
58
63
  private readonly reconcileFoundTxsLoop: RunningPromise;
59
64
 
@@ -61,17 +66,24 @@ export class TxCollection {
61
66
  private readonly txCollectionSink: TxCollectionSink;
62
67
 
63
68
  /** Handler for the txs-added event from the tx pool */
64
- protected readonly handleTxsAddedToPool: TxPoolEvents['txs-added'];
69
+ protected readonly handleTxsAddedToPool: TxPoolV2Events['txs-added'];
65
70
 
66
71
  /** Handler for the txs-added event from the tx collection sink */
67
- protected readonly handleTxsFound: TxPoolEvents['txs-added'];
72
+ protected readonly handleTxsFound: TxPoolV2Events['txs-added'];
73
+
74
+ /** Whether the service has been started. */
75
+ private started = false;
76
+
77
+ /** Whether file store sources are configured. */
78
+ private readonly hasFileStoreSources: boolean;
68
79
 
69
80
  constructor(
70
- private readonly reqResp: Pick<ReqRespInterface, 'sendBatchRequest'>,
81
+ private readonly p2pService: BatchTxRequesterLibP2PService,
71
82
  private readonly nodes: TxSource[],
72
83
  private readonly constants: L1RollupConstants,
73
- private readonly txPool: TxPool,
84
+ private readonly txPool: TxPoolV2,
74
85
  private readonly config: TxCollectionConfig,
86
+ fileStoreSources: FileStoreTxSource[] = [],
75
87
  private readonly dateProvider: DateProvider = new DateProvider(),
76
88
  telemetryClient: TelemetryClient = getTelemetryClient(),
77
89
  private readonly log: Logger = createLogger('p2p:tx_collection_service'),
@@ -79,7 +91,7 @@ export class TxCollection {
79
91
  this.txCollectionSink = new TxCollectionSink(this.txPool, telemetryClient, this.log);
80
92
 
81
93
  this.fastCollection = new FastTxCollection(
82
- this.reqResp,
94
+ this.p2pService,
83
95
  this.nodes,
84
96
  this.txCollectionSink,
85
97
  this.config,
@@ -88,7 +100,7 @@ export class TxCollection {
88
100
  );
89
101
 
90
102
  this.slowCollection = new SlowTxCollection(
91
- this.reqResp,
103
+ this.p2pService.reqResp,
92
104
  this.nodes,
93
105
  this.txCollectionSink,
94
106
  this.fastCollection,
@@ -98,18 +110,21 @@ export class TxCollection {
98
110
  this.log,
99
111
  );
100
112
 
113
+ this.hasFileStoreSources = fileStoreSources.length > 0;
114
+ this.fileStoreCollection = new FileStoreTxCollection(fileStoreSources, this.txCollectionSink, this.log);
115
+
101
116
  this.reconcileFoundTxsLoop = new RunningPromise(
102
117
  () => this.reconcileFoundTxsWithPool(),
103
118
  this.log,
104
119
  this.config.txCollectionReconcileIntervalMs,
105
120
  );
106
121
 
107
- this.handleTxsFound = (args: Parameters<TxPoolEvents['txs-added']>[0]) => {
122
+ this.handleTxsFound = (args: Parameters<TxPoolV2Events['txs-added']>[0]) => {
108
123
  this.foundTxs(args.txs);
109
124
  };
110
125
  this.txCollectionSink.on('txs-added', this.handleTxsFound);
111
126
 
112
- this.handleTxsAddedToPool = (args: Parameters<TxPoolEvents['txs-added']>[0]) => {
127
+ this.handleTxsAddedToPool = (args: Parameters<TxPoolV2Events['txs-added']>[0]) => {
113
128
  const { txs, source } = args;
114
129
  if (source !== 'tx-collection') {
115
130
  this.foundTxs(txs);
@@ -120,7 +135,9 @@ export class TxCollection {
120
135
 
121
136
  /** Starts all collection loops. */
122
137
  public start(): Promise<void> {
138
+ this.started = true;
123
139
  this.slowCollection.start();
140
+ this.fileStoreCollection.start();
124
141
  this.reconcileFoundTxsLoop.start();
125
142
 
126
143
  // TODO(palla/txs): Collect mined unproven tx hashes for txs we dont have in the pool and populate missingTxs on startup
@@ -129,7 +146,13 @@ export class TxCollection {
129
146
 
130
147
  /** Stops all activity. */
131
148
  public async stop() {
132
- await Promise.all([this.slowCollection.stop(), this.fastCollection.stop(), this.reconcileFoundTxsLoop.stop()]);
149
+ this.started = false;
150
+ await Promise.all([
151
+ this.slowCollection.stop(),
152
+ this.fastCollection.stop(),
153
+ this.fileStoreCollection.stop(),
154
+ this.reconcileFoundTxsLoop.stop(),
155
+ ]);
133
156
 
134
157
  this.txPool.removeListener('txs-added', this.handleTxsAddedToPool);
135
158
  this.txCollectionSink.removeListener('txs-added', this.handleTxsFound);
@@ -147,7 +170,24 @@ export class TxCollection {
147
170
 
148
171
  /** Starts collecting the given tx hashes for the given L2Block in the slow loop */
149
172
  public startCollecting(block: L2Block, txHashes: TxHash[]) {
150
- return this.slowCollection.startCollecting(block, txHashes);
173
+ this.slowCollection.startCollecting(block, txHashes);
174
+
175
+ // Delay file store collection to give P2P methods time to find txs first
176
+ if (this.hasFileStoreSources) {
177
+ const context: TxAddContext = { type: 'mined', block };
178
+ sleep(this.config.txCollectionFileStoreSlowDelayMs)
179
+ .then(() => {
180
+ if (this.started) {
181
+ // Only queue txs that are still missing after the delay
182
+ const stillMissing = new Set(this.slowCollection.getMissingTxHashes().map(h => h.toString()));
183
+ const remaining = txHashes.filter(h => stillMissing.has(h.toString()));
184
+ if (remaining.length > 0) {
185
+ this.fileStoreCollection.startCollecting(remaining, context);
186
+ }
187
+ }
188
+ })
189
+ .catch(err => this.log.error('Error in file store slow delay', err));
190
+ }
151
191
  }
152
192
 
153
193
  /** Collects the set of txs for the given block proposal as fast as possible */
@@ -175,13 +215,37 @@ export class TxCollection {
175
215
  txHashes: TxHash[] | string[],
176
216
  opts: { deadline: Date; pinnedPeer?: PeerId },
177
217
  ) {
218
+ const hashes = txHashes.map(h => (typeof h === 'string' ? TxHash.fromString(h) : h));
219
+
220
+ // Delay file store collection to give P2P methods time to find txs first
221
+ if (this.hasFileStoreSources) {
222
+ const context = this.getAddContextForInput(input);
223
+ sleep(this.config.txCollectionFileStoreFastDelayMs)
224
+ .then(() => {
225
+ if (this.started) {
226
+ this.fileStoreCollection.startCollecting(hashes, context);
227
+ }
228
+ })
229
+ .catch(err => this.log.error('Error in file store fast delay', err));
230
+ }
231
+
178
232
  return this.fastCollection.collectFastFor(input, txHashes, opts);
179
233
  }
180
234
 
235
+ /** Returns the TxAddContext for the given fast collection request input */
236
+ private getAddContextForInput(input: FastCollectionRequestInput): TxAddContext {
237
+ if (input.type === 'proposal') {
238
+ return { type: 'proposal', blockHeader: input.blockProposal.blockHeader };
239
+ } else {
240
+ return { type: 'mined', block: input.block };
241
+ }
242
+ }
243
+
181
244
  /** Mark the given txs as found. Stops collecting them. */
182
245
  private foundTxs(txs: Tx[]) {
183
246
  this.slowCollection.foundTxs(txs);
184
247
  this.fastCollection.foundTxs(txs);
248
+ this.fileStoreCollection.foundTxs(txs);
185
249
  }
186
250
 
187
251
  /**
@@ -191,6 +255,7 @@ export class TxCollection {
191
255
  public stopCollectingForBlocksUpTo(blockNumber: BlockNumber): void {
192
256
  this.slowCollection.stopCollectingForBlocksUpTo(blockNumber);
193
257
  this.fastCollection.stopCollectingForBlocksUpTo(blockNumber);
258
+ this.fileStoreCollection.clearPending();
194
259
  }
195
260
 
196
261
  /**
@@ -200,6 +265,7 @@ export class TxCollection {
200
265
  public stopCollectingForBlocksAfter(blockNumber: BlockNumber): void {
201
266
  this.slowCollection.stopCollectingForBlocksAfter(blockNumber);
202
267
  this.fastCollection.stopCollectingForBlocksAfter(blockNumber);
268
+ this.fileStoreCollection.clearPending();
203
269
  }
204
270
 
205
271
  /** Every now and then, check if the pool has received one of the txs we are looking for, just to catch any race conditions */
@@ -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,
@@ -0,0 +1,37 @@
1
+ import { type ConfigMappingsType, booleanConfigHelper, numberConfigHelper } from '@aztec/foundation/config';
2
+
3
+ /**
4
+ * Configuration for the TxFileStore service.
5
+ */
6
+ export type TxFileStoreConfig = {
7
+ /** URL for uploading txs to file storage (s3://, gs://, file://) */
8
+ txFileStoreUrl?: string;
9
+ /** Max concurrent uploads */
10
+ txFileStoreUploadConcurrency: number;
11
+ /** Max queue size to prevent unbounded memory growth */
12
+ txFileStoreMaxQueueSize: number;
13
+ /** Enable tx file store upload */
14
+ txFileStoreEnabled: boolean;
15
+ };
16
+
17
+ export const txFileStoreConfigMappings: ConfigMappingsType<TxFileStoreConfig> = {
18
+ txFileStoreUrl: {
19
+ env: 'TX_FILE_STORE_URL',
20
+ description: 'URL for uploading txs to file storage (s3://, gs://, file://)',
21
+ },
22
+ txFileStoreUploadConcurrency: {
23
+ env: 'TX_FILE_STORE_UPLOAD_CONCURRENCY',
24
+ description: 'Maximum number of concurrent tx uploads',
25
+ ...numberConfigHelper(10),
26
+ },
27
+ txFileStoreMaxQueueSize: {
28
+ env: 'TX_FILE_STORE_MAX_QUEUE_SIZE',
29
+ description: 'Maximum queue size for pending uploads (oldest dropped when exceeded)',
30
+ ...numberConfigHelper(1000),
31
+ },
32
+ txFileStoreEnabled: {
33
+ env: 'TX_FILE_STORE_ENABLED',
34
+ description: 'Enable uploading transactions to file storage',
35
+ ...booleanConfigHelper(false),
36
+ },
37
+ };
@@ -0,0 +1,3 @@
1
+ export { TxFileStore } from './tx_file_store.js';
2
+ export { TxFileStoreInstrumentation } from './instrumentation.js';
3
+ export { type TxFileStoreConfig, txFileStoreConfigMappings } from './config.js';
@@ -0,0 +1,36 @@
1
+ import { type Gauge, type Histogram, Metrics, type TelemetryClient, type UpDownCounter } from '@aztec/telemetry-client';
2
+
3
+ /** Instrumentation for the TxFileStore service. */
4
+ export class TxFileStoreInstrumentation {
5
+ private uploadsSuccess: UpDownCounter;
6
+ private uploadsFailed: UpDownCounter;
7
+ private uploadsSkipped: UpDownCounter;
8
+ private uploadDuration: Histogram;
9
+ private queueSize: Gauge;
10
+
11
+ constructor(client: TelemetryClient, name: string) {
12
+ const meter = client.getMeter(name);
13
+ this.uploadsSuccess = meter.createUpDownCounter(Metrics.TX_FILE_STORE_UPLOADS_SUCCESS);
14
+ this.uploadsFailed = meter.createUpDownCounter(Metrics.TX_FILE_STORE_UPLOADS_FAILED);
15
+ this.uploadsSkipped = meter.createUpDownCounter(Metrics.TX_FILE_STORE_UPLOADS_SKIPPED);
16
+ this.uploadDuration = meter.createHistogram(Metrics.TX_FILE_STORE_UPLOAD_DURATION);
17
+ this.queueSize = meter.createGauge(Metrics.TX_FILE_STORE_QUEUE_SIZE);
18
+ }
19
+
20
+ recordUploadSuccess(durationMs: number) {
21
+ this.uploadsSuccess.add(1);
22
+ this.uploadDuration.record(durationMs);
23
+ }
24
+
25
+ recordUploadFailed() {
26
+ this.uploadsFailed.add(1);
27
+ }
28
+
29
+ recordUploadSkipped() {
30
+ this.uploadsSkipped.add(1);
31
+ }
32
+
33
+ recordQueueSize(size: number) {
34
+ this.queueSize.record(size);
35
+ }
36
+ }
@@ -0,0 +1,173 @@
1
+ import { type Logger, createLogger } from '@aztec/foundation/log';
2
+ import { RunningPromise } from '@aztec/foundation/promise';
3
+ import { makeBackoff, retry } from '@aztec/foundation/retry';
4
+ import { Timer } from '@aztec/foundation/timer';
5
+ import { type FileStore, createFileStore } from '@aztec/stdlib/file-store';
6
+ import type { Tx } from '@aztec/stdlib/tx';
7
+ import { type TelemetryClient, getTelemetryClient } from '@aztec/telemetry-client';
8
+
9
+ import type { TxPoolV2 } from '../../mem_pools/index.js';
10
+ import type { TxFileStoreConfig } from './config.js';
11
+ import { TxFileStoreInstrumentation } from './instrumentation.js';
12
+
13
+ /**
14
+ * Uploads validated transactions to a file store as a fallback retrieval mechanism.
15
+ * Listens to TxPool txs-added events and uploads txs asynchronously with bounded concurrency.
16
+ */
17
+ export class TxFileStore {
18
+ private uploadQueue: Tx[] = [];
19
+ private activeUploads = 0;
20
+ private readonly queueProcessor: RunningPromise;
21
+ private readonly handleTxsAdded: (args: { txs: Tx[]; source?: string }) => void;
22
+
23
+ /** Recently uploaded tx hashes for deduplication. */
24
+ private recentUploads: Set<string> = new Set();
25
+ private recentUploadsOrder: string[] = [];
26
+ private readonly maxRecentUploads = 1000;
27
+
28
+ private constructor(
29
+ private readonly fileStore: FileStore,
30
+ private readonly txPool: TxPoolV2,
31
+ private readonly config: TxFileStoreConfig,
32
+ private readonly instrumentation: TxFileStoreInstrumentation,
33
+ private readonly log: Logger,
34
+ ) {
35
+ this.handleTxsAdded = (args: { txs: Tx[]; source?: string }) => {
36
+ this.enqueueTxs(args.txs);
37
+ };
38
+ this.queueProcessor = new RunningPromise(() => this.processQueueBatch(), this.log, 100);
39
+ }
40
+
41
+ /**
42
+ * Creates and initializes the file store.
43
+ * @param txPool - The transaction pool to listen to.
44
+ * @param config - The file store configuration.
45
+ * @param log - Optional logger.
46
+ * @param telemetry - Optional telemetry client.
47
+ * @param fileStoreOverride - Optional FileStore for testing (bypasses createFileStore).
48
+ * @returns The file store instance, or undefined if not configured/enabled.
49
+ */
50
+ static async create(
51
+ txPool: TxPoolV2,
52
+ config: TxFileStoreConfig,
53
+ log: Logger = createLogger('p2p:tx_file_store'),
54
+ telemetry: TelemetryClient = getTelemetryClient(),
55
+ fileStoreOverride?: FileStore,
56
+ ): Promise<TxFileStore | undefined> {
57
+ if (!config.txFileStoreEnabled) {
58
+ log.debug('Tx file store is disabled');
59
+ return undefined;
60
+ }
61
+
62
+ if (!config.txFileStoreUrl) {
63
+ log.warn('Tx file store is enabled but URL is not configured');
64
+ return undefined;
65
+ }
66
+
67
+ const fileStore = fileStoreOverride ?? (await createFileStore(config.txFileStoreUrl, log));
68
+ if (!fileStore) {
69
+ log.warn('Failed to create file store for tx file store');
70
+ return undefined;
71
+ }
72
+
73
+ 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
+ }
77
+
78
+ /** Starts listening to TxPool events and uploading txs. */
79
+ public start(): void {
80
+ this.queueProcessor.start();
81
+ this.txPool.on('txs-added', this.handleTxsAdded);
82
+ this.log.info('Started tx file store', {
83
+ concurrency: this.config.txFileStoreUploadConcurrency,
84
+ maxQueueSize: this.config.txFileStoreMaxQueueSize,
85
+ });
86
+ }
87
+
88
+ /** Stops listening and waits for pending uploads to complete. */
89
+ public async stop(): Promise<void> {
90
+ this.txPool.removeListener('txs-added', this.handleTxsAdded);
91
+ await this.queueProcessor.stop();
92
+ this.log.info('Stopped tx file store');
93
+ }
94
+
95
+ private enqueueTxs(txs: Tx[]): void {
96
+ this.uploadQueue.push(...txs);
97
+
98
+ // Enforce max queue size by dropping oldest entries
99
+ const overflow = this.uploadQueue.length - this.config.txFileStoreMaxQueueSize;
100
+ if (overflow > 0) {
101
+ this.log.warn(`Upload queue overflow, dropping ${overflow} oldest txs`);
102
+ this.uploadQueue.splice(0, overflow);
103
+ }
104
+
105
+ this.instrumentation.recordQueueSize(this.uploadQueue.length);
106
+
107
+ // Immediately start uploading txs
108
+ void this.queueProcessor.trigger();
109
+ }
110
+
111
+ private async processQueueBatch(): Promise<void> {
112
+ const batch = this.uploadQueue.splice(0, this.config.txFileStoreUploadConcurrency);
113
+ this.instrumentation.recordQueueSize(this.uploadQueue.length);
114
+
115
+ this.activeUploads += batch.length;
116
+ try {
117
+ await Promise.all(batch.map(tx => this.uploadTx(tx)));
118
+ } finally {
119
+ this.activeUploads -= batch.length;
120
+ }
121
+ }
122
+
123
+ private async uploadTx(tx: Tx): Promise<void> {
124
+ const txHash = tx.getTxHash().toString();
125
+ const path = `txs/${txHash}.bin`;
126
+ const timer = new Timer();
127
+
128
+ if (this.recentUploads.has(txHash)) {
129
+ return;
130
+ }
131
+
132
+ try {
133
+ this.recentUploads.add(txHash);
134
+ this.recentUploadsOrder.push(txHash);
135
+
136
+ if (this.recentUploadsOrder.length > this.maxRecentUploads) {
137
+ // delete old entries in recentUploads
138
+ for (const txHashToRemove of this.recentUploadsOrder.splice(
139
+ 0,
140
+ this.recentUploadsOrder.length - this.maxRecentUploads,
141
+ )) {
142
+ this.recentUploads.delete(txHashToRemove);
143
+ }
144
+ }
145
+
146
+ await retry(
147
+ () => this.fileStore.save(path, tx.toBuffer(), { compress: false }),
148
+ `Uploading tx ${txHash}`,
149
+ makeBackoff([0.1, 0.5, 2]),
150
+ this.log,
151
+ true, // failSilently - don't log errors during retries
152
+ );
153
+ const durationMs = Math.trunc(timer.ms());
154
+ this.log.debug(`Uploaded tx to file store`, { txHash, path, durationMs });
155
+ this.instrumentation.recordUploadSuccess(durationMs);
156
+ } catch (err) {
157
+ this.log.warn(`Failed to upload tx to file store after retries`, { txHash, error: err });
158
+ this.instrumentation.recordUploadFailed();
159
+ }
160
+ }
161
+
162
+ /** Waits for all queued and in-flight uploads to complete. For testing. */
163
+ public async flush(): Promise<void> {
164
+ while (this.uploadQueue.length > 0 || this.activeUploads > 0) {
165
+ await this.queueProcessor.trigger();
166
+ }
167
+ }
168
+
169
+ /** Returns the number of pending uploads (queued + in-flight). */
170
+ public getPendingUploadCount(): number {
171
+ return this.uploadQueue.length + this.activeUploads;
172
+ }
173
+ }