@aztec/p2p 0.0.1-commit.96bb3f7 → 0.0.1-commit.993d240

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 (573) hide show
  1. package/README.md +129 -3
  2. package/dest/bootstrap/bootstrap.d.ts +4 -3
  3. package/dest/bootstrap/bootstrap.d.ts.map +1 -1
  4. package/dest/bootstrap/bootstrap.js +13 -5
  5. package/dest/client/factory.d.ts +13 -12
  6. package/dest/client/factory.d.ts.map +1 -1
  7. package/dest/client/factory.js +65 -20
  8. package/dest/client/interface.d.ts +58 -36
  9. package/dest/client/interface.d.ts.map +1 -1
  10. package/dest/client/p2p_client.d.ts +52 -58
  11. package/dest/client/p2p_client.d.ts.map +1 -1
  12. package/dest/client/p2p_client.js +236 -236
  13. package/dest/config.d.ts +163 -84
  14. package/dest/config.d.ts.map +1 -1
  15. package/dest/config.js +156 -43
  16. package/dest/errors/p2p-service.error.d.ts +9 -0
  17. package/dest/errors/p2p-service.error.d.ts.map +1 -0
  18. package/dest/errors/p2p-service.error.js +10 -0
  19. package/dest/errors/reqresp.error.d.ts +1 -20
  20. package/dest/errors/reqresp.error.d.ts.map +1 -1
  21. package/dest/errors/reqresp.error.js +0 -21
  22. package/dest/errors/tx-pool.error.d.ts +8 -0
  23. package/dest/errors/tx-pool.error.d.ts.map +1 -0
  24. package/dest/errors/tx-pool.error.js +9 -0
  25. package/dest/index.d.ts +2 -2
  26. package/dest/index.d.ts.map +1 -1
  27. package/dest/index.js +1 -1
  28. package/dest/mem_pools/attestation_pool/attestation_pool.d.ts +162 -106
  29. package/dest/mem_pools/attestation_pool/attestation_pool.d.ts.map +1 -1
  30. package/dest/mem_pools/attestation_pool/attestation_pool.js +511 -3
  31. package/dest/mem_pools/attestation_pool/attestation_pool_test_suite.d.ts +2 -2
  32. package/dest/mem_pools/attestation_pool/attestation_pool_test_suite.d.ts.map +1 -1
  33. package/dest/mem_pools/attestation_pool/attestation_pool_test_suite.js +525 -132
  34. package/dest/mem_pools/attestation_pool/index.d.ts +2 -3
  35. package/dest/mem_pools/attestation_pool/index.d.ts.map +1 -1
  36. package/dest/mem_pools/attestation_pool/index.js +1 -2
  37. package/dest/mem_pools/attestation_pool/mocks.d.ts +4 -2
  38. package/dest/mem_pools/attestation_pool/mocks.d.ts.map +1 -1
  39. package/dest/mem_pools/attestation_pool/mocks.js +13 -8
  40. package/dest/mem_pools/index.d.ts +3 -3
  41. package/dest/mem_pools/index.d.ts.map +1 -1
  42. package/dest/mem_pools/index.js +1 -1
  43. package/dest/mem_pools/instrumentation.d.ts +4 -2
  44. package/dest/mem_pools/instrumentation.d.ts.map +1 -1
  45. package/dest/mem_pools/instrumentation.js +35 -17
  46. package/dest/mem_pools/interface.d.ts +5 -5
  47. package/dest/mem_pools/interface.d.ts.map +1 -1
  48. package/dest/mem_pools/tx_pool_v2/archive/index.d.ts +2 -0
  49. package/dest/mem_pools/tx_pool_v2/archive/index.d.ts.map +1 -0
  50. package/dest/mem_pools/tx_pool_v2/archive/index.js +1 -0
  51. package/dest/mem_pools/tx_pool_v2/archive/tx_archive.d.ts +43 -0
  52. package/dest/mem_pools/tx_pool_v2/archive/tx_archive.d.ts.map +1 -0
  53. package/dest/mem_pools/tx_pool_v2/archive/tx_archive.js +103 -0
  54. package/dest/mem_pools/tx_pool_v2/deleted_pool.d.ts +104 -0
  55. package/dest/mem_pools/tx_pool_v2/deleted_pool.d.ts.map +1 -0
  56. package/dest/mem_pools/tx_pool_v2/deleted_pool.js +251 -0
  57. package/dest/mem_pools/tx_pool_v2/eviction/eviction_manager.d.ts +47 -0
  58. package/dest/mem_pools/tx_pool_v2/eviction/eviction_manager.d.ts.map +1 -0
  59. package/dest/mem_pools/tx_pool_v2/eviction/eviction_manager.js +128 -0
  60. package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.d.ts +17 -0
  61. package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.d.ts.map +1 -0
  62. package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.js +94 -0
  63. package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_pre_add_rule.d.ts +19 -0
  64. package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_pre_add_rule.d.ts.map +1 -0
  65. package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_pre_add_rule.js +97 -0
  66. package/dest/mem_pools/tx_pool_v2/eviction/index.d.ts +11 -0
  67. package/dest/mem_pools/tx_pool_v2/eviction/index.d.ts.map +1 -0
  68. package/dest/mem_pools/tx_pool_v2/eviction/index.js +12 -0
  69. package/dest/mem_pools/tx_pool_v2/eviction/insufficient_fee_per_gas_eviction_rule.d.ts +16 -0
  70. package/dest/mem_pools/tx_pool_v2/eviction/insufficient_fee_per_gas_eviction_rule.d.ts.map +1 -0
  71. package/dest/mem_pools/tx_pool_v2/eviction/insufficient_fee_per_gas_eviction_rule.js +62 -0
  72. package/dest/mem_pools/tx_pool_v2/eviction/interfaces.d.ts +180 -0
  73. package/dest/mem_pools/tx_pool_v2/eviction/interfaces.d.ts.map +1 -0
  74. package/dest/mem_pools/tx_pool_v2/eviction/interfaces.js +25 -0
  75. package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_mining_rule.d.ts +15 -0
  76. package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_mining_rule.d.ts.map +1 -0
  77. package/dest/mem_pools/{tx_pool → tx_pool_v2}/eviction/invalid_txs_after_mining_rule.js +16 -35
  78. package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_reorg_rule.d.ts +17 -0
  79. package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_reorg_rule.d.ts.map +1 -0
  80. package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_reorg_rule.js +93 -0
  81. package/dest/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.d.ts +16 -0
  82. package/dest/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.d.ts.map +1 -0
  83. package/dest/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.js +78 -0
  84. package/dest/mem_pools/tx_pool_v2/eviction/low_priority_pre_add_rule.d.ts +20 -0
  85. package/dest/mem_pools/tx_pool_v2/eviction/low_priority_pre_add_rule.d.ts.map +1 -0
  86. package/dest/mem_pools/tx_pool_v2/eviction/low_priority_pre_add_rule.js +75 -0
  87. package/dest/mem_pools/tx_pool_v2/eviction/nullifier_conflict_rule.d.ts +15 -0
  88. package/dest/mem_pools/tx_pool_v2/eviction/nullifier_conflict_rule.d.ts.map +1 -0
  89. package/dest/mem_pools/tx_pool_v2/eviction/nullifier_conflict_rule.js +19 -0
  90. package/dest/mem_pools/tx_pool_v2/index.d.ts +6 -0
  91. package/dest/mem_pools/tx_pool_v2/index.d.ts.map +1 -0
  92. package/dest/mem_pools/tx_pool_v2/index.js +5 -0
  93. package/dest/mem_pools/tx_pool_v2/instrumentation.d.ts +15 -0
  94. package/dest/mem_pools/tx_pool_v2/instrumentation.d.ts.map +1 -0
  95. package/dest/mem_pools/tx_pool_v2/instrumentation.js +43 -0
  96. package/dest/mem_pools/tx_pool_v2/interfaces.d.ts +218 -0
  97. package/dest/mem_pools/tx_pool_v2/interfaces.d.ts.map +1 -0
  98. package/dest/mem_pools/tx_pool_v2/interfaces.js +10 -0
  99. package/dest/mem_pools/tx_pool_v2/tx_metadata.d.ts +137 -0
  100. package/dest/mem_pools/tx_pool_v2/tx_metadata.d.ts.map +1 -0
  101. package/dest/mem_pools/tx_pool_v2/tx_metadata.js +223 -0
  102. package/dest/mem_pools/tx_pool_v2/tx_pool_bench_metrics.d.ts +26 -0
  103. package/dest/mem_pools/tx_pool_v2/tx_pool_bench_metrics.d.ts.map +1 -0
  104. package/dest/mem_pools/tx_pool_v2/tx_pool_bench_metrics.js +70 -0
  105. package/dest/mem_pools/tx_pool_v2/tx_pool_indices.d.ts +108 -0
  106. package/dest/mem_pools/tx_pool_v2/tx_pool_indices.d.ts.map +1 -0
  107. package/dest/mem_pools/tx_pool_v2/tx_pool_indices.js +337 -0
  108. package/dest/mem_pools/tx_pool_v2/tx_pool_v2.d.ts +62 -0
  109. package/dest/mem_pools/tx_pool_v2/tx_pool_v2.d.ts.map +1 -0
  110. package/dest/mem_pools/tx_pool_v2/tx_pool_v2.js +167 -0
  111. package/dest/mem_pools/tx_pool_v2/tx_pool_v2_impl.d.ts +78 -0
  112. package/dest/mem_pools/tx_pool_v2/tx_pool_v2_impl.d.ts.map +1 -0
  113. package/dest/mem_pools/tx_pool_v2/tx_pool_v2_impl.js +914 -0
  114. package/dest/msg_validators/attestation_validator/attestation_validator.d.ts +10 -4
  115. package/dest/msg_validators/attestation_validator/attestation_validator.d.ts.map +1 -1
  116. package/dest/msg_validators/attestation_validator/attestation_validator.js +69 -13
  117. package/dest/msg_validators/attestation_validator/fisherman_attestation_validator.d.ts +9 -5
  118. package/dest/msg_validators/attestation_validator/fisherman_attestation_validator.d.ts.map +1 -1
  119. package/dest/msg_validators/attestation_validator/fisherman_attestation_validator.js +22 -11
  120. package/dest/msg_validators/clock_tolerance.d.ts +32 -0
  121. package/dest/msg_validators/clock_tolerance.d.ts.map +1 -0
  122. package/dest/msg_validators/clock_tolerance.js +95 -0
  123. package/dest/msg_validators/proposal_validator/block_proposal_validator.d.ts +10 -4
  124. package/dest/msg_validators/proposal_validator/block_proposal_validator.d.ts.map +1 -1
  125. package/dest/msg_validators/proposal_validator/block_proposal_validator.js +10 -2
  126. package/dest/msg_validators/proposal_validator/checkpoint_proposal_validator.d.ts +10 -4
  127. package/dest/msg_validators/proposal_validator/checkpoint_proposal_validator.d.ts.map +1 -1
  128. package/dest/msg_validators/proposal_validator/checkpoint_proposal_validator.js +16 -2
  129. package/dest/msg_validators/proposal_validator/proposal_validator.d.ts +21 -8
  130. package/dest/msg_validators/proposal_validator/proposal_validator.d.ts.map +1 -1
  131. package/dest/msg_validators/proposal_validator/proposal_validator.js +123 -53
  132. package/dest/msg_validators/tx_validator/aggregate_tx_validator.d.ts +4 -4
  133. package/dest/msg_validators/tx_validator/aggregate_tx_validator.d.ts.map +1 -1
  134. package/dest/msg_validators/tx_validator/aggregate_tx_validator.js +11 -18
  135. package/dest/msg_validators/tx_validator/allowed_public_setup.d.ts +2 -1
  136. package/dest/msg_validators/tx_validator/allowed_public_setup.d.ts.map +1 -1
  137. package/dest/msg_validators/tx_validator/allowed_public_setup.js +25 -21
  138. package/dest/msg_validators/tx_validator/allowed_setup_helpers.d.ts +17 -0
  139. package/dest/msg_validators/tx_validator/allowed_setup_helpers.d.ts.map +1 -0
  140. package/dest/msg_validators/tx_validator/allowed_setup_helpers.js +24 -0
  141. package/dest/msg_validators/tx_validator/archive_cache.d.ts +3 -3
  142. package/dest/msg_validators/tx_validator/archive_cache.d.ts.map +1 -1
  143. package/dest/msg_validators/tx_validator/block_header_validator.d.ts +20 -6
  144. package/dest/msg_validators/tx_validator/block_header_validator.d.ts.map +1 -1
  145. package/dest/msg_validators/tx_validator/block_header_validator.js +4 -3
  146. package/dest/msg_validators/tx_validator/cached_tx_validator.d.ts +15 -0
  147. package/dest/msg_validators/tx_validator/cached_tx_validator.d.ts.map +1 -0
  148. package/dest/msg_validators/tx_validator/cached_tx_validator.js +19 -0
  149. package/dest/msg_validators/tx_validator/contract_instance_validator.d.ts +9 -0
  150. package/dest/msg_validators/tx_validator/contract_instance_validator.d.ts.map +1 -0
  151. package/dest/msg_validators/tx_validator/contract_instance_validator.js +48 -0
  152. package/dest/msg_validators/tx_validator/data_validator.d.ts +4 -1
  153. package/dest/msg_validators/tx_validator/data_validator.d.ts.map +1 -1
  154. package/dest/msg_validators/tx_validator/data_validator.js +40 -3
  155. package/dest/msg_validators/tx_validator/double_spend_validator.d.ts +15 -4
  156. package/dest/msg_validators/tx_validator/double_spend_validator.d.ts.map +1 -1
  157. package/dest/msg_validators/tx_validator/double_spend_validator.js +7 -6
  158. package/dest/msg_validators/tx_validator/factory.d.ts +138 -5
  159. package/dest/msg_validators/tx_validator/factory.d.ts.map +1 -1
  160. package/dest/msg_validators/tx_validator/factory.js +259 -58
  161. package/dest/msg_validators/tx_validator/fee_payer_balance.d.ts +10 -0
  162. package/dest/msg_validators/tx_validator/fee_payer_balance.d.ts.map +1 -0
  163. package/dest/msg_validators/tx_validator/fee_payer_balance.js +24 -0
  164. package/dest/msg_validators/tx_validator/gas_validator.d.ts +100 -3
  165. package/dest/msg_validators/tx_validator/gas_validator.d.ts.map +1 -1
  166. package/dest/msg_validators/tx_validator/gas_validator.js +146 -67
  167. package/dest/msg_validators/tx_validator/index.d.ts +6 -1
  168. package/dest/msg_validators/tx_validator/index.d.ts.map +1 -1
  169. package/dest/msg_validators/tx_validator/index.js +5 -0
  170. package/dest/msg_validators/tx_validator/metadata_validator.d.ts +3 -2
  171. package/dest/msg_validators/tx_validator/metadata_validator.d.ts.map +1 -1
  172. package/dest/msg_validators/tx_validator/metadata_validator.js +6 -6
  173. package/dest/msg_validators/tx_validator/nullifier_cache.d.ts +14 -0
  174. package/dest/msg_validators/tx_validator/nullifier_cache.d.ts.map +1 -0
  175. package/dest/msg_validators/tx_validator/nullifier_cache.js +24 -0
  176. package/dest/msg_validators/tx_validator/phases_validator.d.ts +24 -3
  177. package/dest/msg_validators/tx_validator/phases_validator.d.ts.map +1 -1
  178. package/dest/msg_validators/tx_validator/phases_validator.js +75 -27
  179. package/dest/msg_validators/tx_validator/size_validator.d.ts +8 -0
  180. package/dest/msg_validators/tx_validator/size_validator.d.ts.map +1 -0
  181. package/dest/msg_validators/tx_validator/size_validator.js +23 -0
  182. package/dest/msg_validators/tx_validator/timestamp_validator.d.ts +22 -5
  183. package/dest/msg_validators/tx_validator/timestamp_validator.d.ts.map +1 -1
  184. package/dest/msg_validators/tx_validator/timestamp_validator.js +8 -8
  185. package/dest/msg_validators/tx_validator/tx_permitted_validator.d.ts +3 -2
  186. package/dest/msg_validators/tx_validator/tx_permitted_validator.d.ts.map +1 -1
  187. package/dest/msg_validators/tx_validator/tx_permitted_validator.js +2 -2
  188. package/dest/msg_validators/tx_validator/tx_proof_validator.d.ts +4 -2
  189. package/dest/msg_validators/tx_validator/tx_proof_validator.d.ts.map +1 -1
  190. package/dest/msg_validators/tx_validator/tx_proof_validator.js +4 -2
  191. package/dest/msg_validators/tx_validator/tx_validation_cache.d.ts +48 -0
  192. package/dest/msg_validators/tx_validator/tx_validation_cache.d.ts.map +1 -0
  193. package/dest/msg_validators/tx_validator/tx_validation_cache.js +69 -0
  194. package/dest/services/data_store.d.ts +1 -1
  195. package/dest/services/data_store.d.ts.map +1 -1
  196. package/dest/services/data_store.js +14 -10
  197. package/dest/services/discv5/discV5_service.d.ts +2 -1
  198. package/dest/services/discv5/discV5_service.d.ts.map +1 -1
  199. package/dest/services/discv5/discV5_service.js +36 -9
  200. package/dest/services/dummy_service.d.ts +33 -17
  201. package/dest/services/dummy_service.d.ts.map +1 -1
  202. package/dest/services/dummy_service.js +56 -15
  203. package/dest/services/encoding.d.ts +7 -3
  204. package/dest/services/encoding.d.ts.map +1 -1
  205. package/dest/services/encoding.js +20 -14
  206. package/dest/services/gossipsub/index.d.ts +3 -0
  207. package/dest/services/gossipsub/index.d.ts.map +1 -0
  208. package/dest/services/gossipsub/index.js +2 -0
  209. package/dest/services/gossipsub/scoring.d.ts +21 -3
  210. package/dest/services/gossipsub/scoring.d.ts.map +1 -1
  211. package/dest/services/gossipsub/scoring.js +24 -7
  212. package/dest/services/gossipsub/topic_score_params.d.ts +184 -0
  213. package/dest/services/gossipsub/topic_score_params.d.ts.map +1 -0
  214. package/dest/services/gossipsub/topic_score_params.js +363 -0
  215. package/dest/services/index.d.ts +2 -1
  216. package/dest/services/index.d.ts.map +1 -1
  217. package/dest/services/index.js +1 -0
  218. package/dest/services/libp2p/instrumentation.d.ts +3 -1
  219. package/dest/services/libp2p/instrumentation.d.ts.map +1 -1
  220. package/dest/services/libp2p/instrumentation.js +33 -8
  221. package/dest/services/libp2p/libp2p_service.d.ts +107 -59
  222. package/dest/services/libp2p/libp2p_service.d.ts.map +1 -1
  223. package/dest/services/libp2p/libp2p_service.js +683 -539
  224. package/dest/services/peer-manager/metrics.d.ts +4 -2
  225. package/dest/services/peer-manager/metrics.d.ts.map +1 -1
  226. package/dest/services/peer-manager/metrics.js +26 -5
  227. package/dest/services/peer-manager/peer_manager.d.ts +6 -2
  228. package/dest/services/peer-manager/peer_manager.d.ts.map +1 -1
  229. package/dest/services/peer-manager/peer_manager.js +40 -11
  230. package/dest/services/peer-manager/peer_scoring.d.ts +7 -2
  231. package/dest/services/peer-manager/peer_scoring.d.ts.map +1 -1
  232. package/dest/services/peer-manager/peer_scoring.js +65 -14
  233. package/dest/services/reqresp/batch-tx-requester/batch_tx_requester.d.ts +51 -0
  234. package/dest/services/reqresp/batch-tx-requester/batch_tx_requester.d.ts.map +1 -0
  235. package/dest/services/reqresp/batch-tx-requester/batch_tx_requester.js +552 -0
  236. package/dest/services/reqresp/batch-tx-requester/config.d.ts +17 -0
  237. package/dest/services/reqresp/batch-tx-requester/config.d.ts.map +1 -0
  238. package/dest/services/reqresp/batch-tx-requester/config.js +27 -0
  239. package/dest/services/reqresp/batch-tx-requester/interface.d.ts +50 -0
  240. package/dest/services/reqresp/batch-tx-requester/interface.d.ts.map +1 -0
  241. package/dest/services/reqresp/batch-tx-requester/interface.js +1 -0
  242. package/dest/services/reqresp/batch-tx-requester/missing_txs.d.ts +35 -0
  243. package/dest/services/reqresp/batch-tx-requester/missing_txs.d.ts.map +1 -0
  244. package/dest/services/reqresp/batch-tx-requester/missing_txs.js +136 -0
  245. package/dest/services/reqresp/batch-tx-requester/peer_collection.d.ts +62 -0
  246. package/dest/services/reqresp/batch-tx-requester/peer_collection.d.ts.map +1 -0
  247. package/dest/services/reqresp/batch-tx-requester/peer_collection.js +176 -0
  248. package/dest/services/reqresp/batch-tx-requester/tx_validator.d.ts +11 -0
  249. package/dest/services/reqresp/batch-tx-requester/tx_validator.d.ts.map +1 -0
  250. package/dest/services/reqresp/batch-tx-requester/tx_validator.js +7 -0
  251. package/dest/services/reqresp/config.d.ts +3 -3
  252. package/dest/services/reqresp/config.d.ts.map +1 -1
  253. package/dest/services/reqresp/connection-sampler/connection_sampler.d.ts +2 -1
  254. package/dest/services/reqresp/connection-sampler/connection_sampler.d.ts.map +1 -1
  255. package/dest/services/reqresp/connection-sampler/connection_sampler.js +12 -0
  256. package/dest/services/reqresp/constants.d.ts +12 -0
  257. package/dest/services/reqresp/constants.d.ts.map +1 -0
  258. package/dest/services/reqresp/constants.js +7 -0
  259. package/dest/services/reqresp/interface.d.ts +27 -18
  260. package/dest/services/reqresp/interface.d.ts.map +1 -1
  261. package/dest/services/reqresp/interface.js +23 -19
  262. package/dest/services/reqresp/metrics.d.ts +6 -5
  263. package/dest/services/reqresp/metrics.d.ts.map +1 -1
  264. package/dest/services/reqresp/metrics.js +16 -5
  265. package/dest/services/reqresp/protocols/block_txs/bitvector.d.ts +5 -1
  266. package/dest/services/reqresp/protocols/block_txs/bitvector.d.ts.map +1 -1
  267. package/dest/services/reqresp/protocols/block_txs/bitvector.js +12 -0
  268. package/dest/services/reqresp/protocols/block_txs/block_txs_handler.d.ts +7 -5
  269. package/dest/services/reqresp/protocols/block_txs/block_txs_handler.d.ts.map +1 -1
  270. package/dest/services/reqresp/protocols/block_txs/block_txs_handler.js +29 -9
  271. package/dest/services/reqresp/protocols/block_txs/block_txs_reqresp.d.ts +29 -6
  272. package/dest/services/reqresp/protocols/block_txs/block_txs_reqresp.d.ts.map +1 -1
  273. package/dest/services/reqresp/protocols/block_txs/block_txs_reqresp.js +59 -13
  274. package/dest/services/reqresp/protocols/index.d.ts +1 -2
  275. package/dest/services/reqresp/protocols/index.d.ts.map +1 -1
  276. package/dest/services/reqresp/protocols/index.js +0 -1
  277. package/dest/services/reqresp/protocols/status.d.ts +1 -1
  278. package/dest/services/reqresp/protocols/status.d.ts.map +1 -1
  279. package/dest/services/reqresp/protocols/status.js +2 -1
  280. package/dest/services/reqresp/protocols/tx.d.ts +7 -1
  281. package/dest/services/reqresp/protocols/tx.d.ts.map +1 -1
  282. package/dest/services/reqresp/protocols/tx.js +21 -3
  283. package/dest/services/reqresp/rate-limiter/rate_limiter.d.ts +5 -4
  284. package/dest/services/reqresp/rate-limiter/rate_limiter.d.ts.map +1 -1
  285. package/dest/services/reqresp/rate-limiter/rate_limiter.js +10 -8
  286. package/dest/services/reqresp/rate-limiter/rate_limits.d.ts +1 -1
  287. package/dest/services/reqresp/rate-limiter/rate_limits.d.ts.map +1 -1
  288. package/dest/services/reqresp/rate-limiter/rate_limits.js +0 -10
  289. package/dest/services/reqresp/reqresp.d.ts +12 -29
  290. package/dest/services/reqresp/reqresp.d.ts.map +1 -1
  291. package/dest/services/reqresp/reqresp.js +58 -187
  292. package/dest/services/service.d.ts +49 -13
  293. package/dest/services/service.d.ts.map +1 -1
  294. package/dest/services/tx_collection/config.d.ts +11 -11
  295. package/dest/services/tx_collection/config.d.ts.map +1 -1
  296. package/dest/services/tx_collection/config.js +27 -26
  297. package/dest/services/tx_collection/file_store_tx_collection.d.ts +37 -0
  298. package/dest/services/tx_collection/file_store_tx_collection.d.ts.map +1 -0
  299. package/dest/services/tx_collection/file_store_tx_collection.js +127 -0
  300. package/dest/services/tx_collection/file_store_tx_source.d.ts +38 -0
  301. package/dest/services/tx_collection/file_store_tx_source.d.ts.map +1 -0
  302. package/dest/services/tx_collection/file_store_tx_source.js +100 -0
  303. package/dest/services/tx_collection/index.d.ts +3 -2
  304. package/dest/services/tx_collection/index.d.ts.map +1 -1
  305. package/dest/services/tx_collection/index.js +1 -0
  306. package/dest/services/tx_collection/instrumentation.d.ts +1 -1
  307. package/dest/services/tx_collection/instrumentation.d.ts.map +1 -1
  308. package/dest/services/tx_collection/instrumentation.js +8 -2
  309. package/dest/services/tx_collection/request_tracker.d.ts +53 -0
  310. package/dest/services/tx_collection/request_tracker.d.ts.map +1 -0
  311. package/dest/services/tx_collection/request_tracker.js +84 -0
  312. package/dest/services/tx_collection/tx_collection.d.ts +50 -56
  313. package/dest/services/tx_collection/tx_collection.d.ts.map +1 -1
  314. package/dest/services/tx_collection/tx_collection.js +298 -70
  315. package/dest/services/tx_collection/tx_collection_sink.d.ts +19 -9
  316. package/dest/services/tx_collection/tx_collection_sink.d.ts.map +1 -1
  317. package/dest/services/tx_collection/tx_collection_sink.js +28 -31
  318. package/dest/services/tx_collection/tx_source.d.ts +13 -7
  319. package/dest/services/tx_collection/tx_source.d.ts.map +1 -1
  320. package/dest/services/tx_collection/tx_source.js +26 -7
  321. package/dest/services/tx_file_store/config.d.ts +16 -0
  322. package/dest/services/tx_file_store/config.d.ts.map +1 -0
  323. package/dest/services/tx_file_store/config.js +22 -0
  324. package/dest/services/tx_file_store/index.d.ts +4 -0
  325. package/dest/services/tx_file_store/index.d.ts.map +1 -0
  326. package/dest/services/tx_file_store/index.js +3 -0
  327. package/dest/services/tx_file_store/instrumentation.d.ts +15 -0
  328. package/dest/services/tx_file_store/instrumentation.d.ts.map +1 -0
  329. package/dest/services/tx_file_store/instrumentation.js +29 -0
  330. package/dest/services/tx_file_store/tx_file_store.d.ts +46 -0
  331. package/dest/services/tx_file_store/tx_file_store.d.ts.map +1 -0
  332. package/dest/services/tx_file_store/tx_file_store.js +142 -0
  333. package/dest/services/tx_provider.d.ts +8 -6
  334. package/dest/services/tx_provider.d.ts.map +1 -1
  335. package/dest/services/tx_provider.js +12 -8
  336. package/dest/services/tx_provider_instrumentation.d.ts +1 -1
  337. package/dest/services/tx_provider_instrumentation.d.ts.map +1 -1
  338. package/dest/services/tx_provider_instrumentation.js +5 -5
  339. package/dest/test-helpers/index.d.ts +3 -1
  340. package/dest/test-helpers/index.d.ts.map +1 -1
  341. package/dest/test-helpers/index.js +2 -0
  342. package/dest/test-helpers/make-test-p2p-clients.d.ts +7 -8
  343. package/dest/test-helpers/make-test-p2p-clients.d.ts.map +1 -1
  344. package/dest/test-helpers/make-test-p2p-clients.js +5 -3
  345. package/dest/test-helpers/mock-pubsub.d.ts +46 -6
  346. package/dest/test-helpers/mock-pubsub.d.ts.map +1 -1
  347. package/dest/test-helpers/mock-pubsub.js +115 -14
  348. package/dest/test-helpers/reqresp-nodes.d.ts +5 -7
  349. package/dest/test-helpers/reqresp-nodes.d.ts.map +1 -1
  350. package/dest/test-helpers/reqresp-nodes.js +19 -20
  351. package/dest/test-helpers/test_tx_provider.d.ts +42 -0
  352. package/dest/test-helpers/test_tx_provider.d.ts.map +1 -0
  353. package/dest/test-helpers/test_tx_provider.js +44 -0
  354. package/dest/test-helpers/testbench-utils.d.ts +161 -0
  355. package/dest/test-helpers/testbench-utils.d.ts.map +1 -0
  356. package/dest/test-helpers/testbench-utils.js +393 -0
  357. package/dest/testbench/p2p_client_testbench_worker.d.ts +26 -2
  358. package/dest/testbench/p2p_client_testbench_worker.d.ts.map +1 -1
  359. package/dest/testbench/p2p_client_testbench_worker.js +270 -144
  360. package/dest/testbench/worker_client_manager.d.ts +57 -6
  361. package/dest/testbench/worker_client_manager.d.ts.map +1 -1
  362. package/dest/testbench/worker_client_manager.js +277 -49
  363. package/dest/util.d.ts +13 -8
  364. package/dest/util.d.ts.map +1 -1
  365. package/dest/util.js +35 -14
  366. package/dest/versioning.d.ts +3 -6
  367. package/dest/versioning.d.ts.map +1 -1
  368. package/dest/versioning.js +3 -24
  369. package/package.json +17 -16
  370. package/src/bootstrap/bootstrap.ts +16 -5
  371. package/src/client/factory.ts +135 -39
  372. package/src/client/interface.ts +70 -44
  373. package/src/client/p2p_client.ts +283 -302
  374. package/src/client/test/p2p_client.batch_tx_requester.bench.README.md +197 -0
  375. package/src/config.ts +274 -48
  376. package/src/errors/p2p-service.error.ts +11 -0
  377. package/src/errors/reqresp.error.ts +0 -25
  378. package/src/errors/tx-pool.error.ts +12 -0
  379. package/src/index.ts +1 -1
  380. package/src/mem_pools/attestation_pool/attestation_pool.ts +575 -94
  381. package/src/mem_pools/attestation_pool/attestation_pool_test_suite.ts +633 -149
  382. package/src/mem_pools/attestation_pool/index.ts +9 -2
  383. package/src/mem_pools/attestation_pool/mocks.ts +19 -11
  384. package/src/mem_pools/index.ts +2 -2
  385. package/src/mem_pools/instrumentation.ts +24 -15
  386. package/src/mem_pools/interface.ts +4 -4
  387. package/src/mem_pools/tx_pool_v2/README.md +283 -0
  388. package/src/mem_pools/tx_pool_v2/archive/index.ts +1 -0
  389. package/src/mem_pools/tx_pool_v2/archive/tx_archive.ts +120 -0
  390. package/src/mem_pools/tx_pool_v2/deleted_pool.ts +321 -0
  391. package/src/mem_pools/tx_pool_v2/eviction/eviction_manager.ts +160 -0
  392. package/src/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.ts +122 -0
  393. package/src/mem_pools/tx_pool_v2/eviction/fee_payer_balance_pre_add_rule.ts +125 -0
  394. package/src/mem_pools/tx_pool_v2/eviction/index.ts +28 -0
  395. package/src/mem_pools/tx_pool_v2/eviction/insufficient_fee_per_gas_eviction_rule.ts +65 -0
  396. package/src/mem_pools/tx_pool_v2/eviction/interfaces.ts +219 -0
  397. package/src/mem_pools/tx_pool_v2/eviction/invalid_txs_after_mining_rule.ts +74 -0
  398. package/src/mem_pools/tx_pool_v2/eviction/invalid_txs_after_reorg_rule.ts +101 -0
  399. package/src/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.ts +91 -0
  400. package/src/mem_pools/tx_pool_v2/eviction/low_priority_pre_add_rule.ts +99 -0
  401. package/src/mem_pools/tx_pool_v2/eviction/nullifier_conflict_rule.ts +32 -0
  402. package/src/mem_pools/tx_pool_v2/index.ts +12 -0
  403. package/src/mem_pools/tx_pool_v2/instrumentation.ts +69 -0
  404. package/src/mem_pools/tx_pool_v2/interfaces.ts +250 -0
  405. package/src/mem_pools/tx_pool_v2/tx_metadata.ts +349 -0
  406. package/src/mem_pools/tx_pool_v2/tx_pool_bench_metrics.ts +77 -0
  407. package/src/mem_pools/tx_pool_v2/tx_pool_indices.ts +430 -0
  408. package/src/mem_pools/tx_pool_v2/tx_pool_v2.ts +238 -0
  409. package/src/mem_pools/tx_pool_v2/tx_pool_v2_impl.ts +1090 -0
  410. package/src/msg_validators/attestation_validator/README.md +49 -0
  411. package/src/msg_validators/attestation_validator/attestation_validator.ts +60 -16
  412. package/src/msg_validators/attestation_validator/fisherman_attestation_validator.ts +29 -16
  413. package/src/msg_validators/clock_tolerance.ts +127 -0
  414. package/src/msg_validators/proposal_validator/README.md +123 -0
  415. package/src/msg_validators/proposal_validator/block_proposal_validator.ts +24 -4
  416. package/src/msg_validators/proposal_validator/checkpoint_proposal_validator.ts +35 -7
  417. package/src/msg_validators/proposal_validator/proposal_validator.ts +129 -62
  418. package/src/msg_validators/tx_validator/README.md +127 -0
  419. package/src/msg_validators/tx_validator/aggregate_tx_validator.ts +8 -17
  420. package/src/msg_validators/tx_validator/allowed_public_setup.ts +22 -27
  421. package/src/msg_validators/tx_validator/allowed_setup_helpers.ts +31 -0
  422. package/src/msg_validators/tx_validator/archive_cache.ts +2 -2
  423. package/src/msg_validators/tx_validator/block_header_validator.ts +21 -8
  424. package/src/msg_validators/tx_validator/cached_tx_validator.ts +31 -0
  425. package/src/msg_validators/tx_validator/contract_instance_validator.ts +56 -0
  426. package/src/msg_validators/tx_validator/data_validator.ts +50 -3
  427. package/src/msg_validators/tx_validator/double_spend_validator.ts +15 -9
  428. package/src/msg_validators/tx_validator/factory.ts +424 -56
  429. package/src/msg_validators/tx_validator/fee_payer_balance.ts +44 -0
  430. package/src/msg_validators/tx_validator/gas_validator.ts +211 -77
  431. package/src/msg_validators/tx_validator/index.ts +5 -0
  432. package/src/msg_validators/tx_validator/metadata_validator.ts +18 -7
  433. package/src/msg_validators/tx_validator/nullifier_cache.ts +30 -0
  434. package/src/msg_validators/tx_validator/phases_validator.ts +87 -30
  435. package/src/msg_validators/tx_validator/size_validator.ts +22 -0
  436. package/src/msg_validators/tx_validator/timestamp_validator.ts +29 -21
  437. package/src/msg_validators/tx_validator/tx_permitted_validator.ts +8 -3
  438. package/src/msg_validators/tx_validator/tx_proof_validator.ts +10 -3
  439. package/src/msg_validators/tx_validator/tx_validation_cache.ts +102 -0
  440. package/src/services/data_store.ts +14 -19
  441. package/src/services/discv5/discV5_service.ts +39 -6
  442. package/src/services/dummy_service.ts +71 -39
  443. package/src/services/encoding.ts +20 -13
  444. package/src/services/gossipsub/README.md +641 -0
  445. package/src/services/gossipsub/index.ts +2 -0
  446. package/src/services/gossipsub/scoring.ts +29 -5
  447. package/src/services/gossipsub/topic_score_params.ts +519 -0
  448. package/src/services/index.ts +1 -0
  449. package/src/services/libp2p/instrumentation.ts +34 -7
  450. package/src/services/libp2p/libp2p_service.ts +753 -597
  451. package/src/services/peer-manager/metrics.ts +28 -4
  452. package/src/services/peer-manager/peer_manager.ts +46 -11
  453. package/src/services/peer-manager/peer_scoring.ts +56 -6
  454. package/src/services/reqresp/README.md +215 -0
  455. package/src/services/reqresp/batch-tx-requester/README.md +344 -0
  456. package/src/services/reqresp/batch-tx-requester/batch_tx_requester.ts +684 -0
  457. package/src/services/reqresp/batch-tx-requester/config.ts +40 -0
  458. package/src/services/reqresp/batch-tx-requester/interface.ts +61 -0
  459. package/src/services/reqresp/batch-tx-requester/missing_txs.ts +168 -0
  460. package/src/services/reqresp/batch-tx-requester/peer_collection.ts +249 -0
  461. package/src/services/reqresp/batch-tx-requester/tx_validator.ts +24 -0
  462. package/src/services/reqresp/config.ts +2 -2
  463. package/src/services/reqresp/connection-sampler/connection_sampler.ts +16 -0
  464. package/src/services/reqresp/constants.ts +14 -0
  465. package/src/services/reqresp/interface.ts +48 -46
  466. package/src/services/reqresp/metrics.ts +33 -9
  467. package/src/services/reqresp/protocols/block_txs/bitvector.ts +16 -0
  468. package/src/services/reqresp/protocols/block_txs/block_txs_handler.ts +37 -12
  469. package/src/services/reqresp/protocols/block_txs/block_txs_reqresp.ts +74 -9
  470. package/src/services/reqresp/protocols/index.ts +0 -1
  471. package/src/services/reqresp/protocols/status.ts +5 -3
  472. package/src/services/reqresp/protocols/tx.ts +23 -3
  473. package/src/services/reqresp/rate-limiter/rate_limiter.ts +13 -9
  474. package/src/services/reqresp/rate-limiter/rate_limits.ts +0 -10
  475. package/src/services/reqresp/reqresp.ts +68 -224
  476. package/src/services/service.ts +66 -29
  477. package/src/services/tx_collection/config.ts +41 -36
  478. package/src/services/tx_collection/file_store_tx_collection.ts +153 -0
  479. package/src/services/tx_collection/file_store_tx_source.ts +129 -0
  480. package/src/services/tx_collection/index.ts +2 -1
  481. package/src/services/tx_collection/instrumentation.ts +11 -2
  482. package/src/services/tx_collection/request_tracker.ts +127 -0
  483. package/src/services/tx_collection/tx_collection.ts +367 -115
  484. package/src/services/tx_collection/tx_collection_sink.ts +32 -36
  485. package/src/services/tx_collection/tx_source.ts +28 -8
  486. package/src/services/tx_file_store/config.ts +37 -0
  487. package/src/services/tx_file_store/index.ts +3 -0
  488. package/src/services/tx_file_store/instrumentation.ts +36 -0
  489. package/src/services/tx_file_store/tx_file_store.ts +163 -0
  490. package/src/services/tx_provider.ts +17 -11
  491. package/src/services/tx_provider_instrumentation.ts +11 -5
  492. package/src/test-helpers/index.ts +2 -0
  493. package/src/test-helpers/make-test-p2p-clients.ts +7 -6
  494. package/src/test-helpers/mock-pubsub.ts +137 -14
  495. package/src/test-helpers/reqresp-nodes.ts +17 -29
  496. package/src/test-helpers/test_tx_provider.ts +69 -0
  497. package/src/test-helpers/testbench-utils.ts +455 -0
  498. package/src/testbench/p2p_client_testbench_worker.ts +370 -138
  499. package/src/testbench/worker_client_manager.ts +355 -51
  500. package/src/util.ts +40 -19
  501. package/src/versioning.ts +3 -33
  502. package/dest/mem_pools/attestation_pool/kv_attestation_pool.d.ts +0 -40
  503. package/dest/mem_pools/attestation_pool/kv_attestation_pool.d.ts.map +0 -1
  504. package/dest/mem_pools/attestation_pool/kv_attestation_pool.js +0 -218
  505. package/dest/mem_pools/attestation_pool/memory_attestation_pool.d.ts +0 -31
  506. package/dest/mem_pools/attestation_pool/memory_attestation_pool.d.ts.map +0 -1
  507. package/dest/mem_pools/attestation_pool/memory_attestation_pool.js +0 -180
  508. package/dest/mem_pools/tx_pool/aztec_kv_tx_pool.d.ts +0 -120
  509. package/dest/mem_pools/tx_pool/aztec_kv_tx_pool.d.ts.map +0 -1
  510. package/dest/mem_pools/tx_pool/aztec_kv_tx_pool.js +0 -555
  511. package/dest/mem_pools/tx_pool/eviction/eviction_manager.d.ts +0 -18
  512. package/dest/mem_pools/tx_pool/eviction/eviction_manager.d.ts.map +0 -1
  513. package/dest/mem_pools/tx_pool/eviction/eviction_manager.js +0 -56
  514. package/dest/mem_pools/tx_pool/eviction/eviction_strategy.d.ts +0 -83
  515. package/dest/mem_pools/tx_pool/eviction/eviction_strategy.d.ts.map +0 -1
  516. package/dest/mem_pools/tx_pool/eviction/eviction_strategy.js +0 -5
  517. package/dest/mem_pools/tx_pool/eviction/insufficient_fee_payer_balance_rule.d.ts +0 -15
  518. package/dest/mem_pools/tx_pool/eviction/insufficient_fee_payer_balance_rule.d.ts.map +0 -1
  519. package/dest/mem_pools/tx_pool/eviction/insufficient_fee_payer_balance_rule.js +0 -88
  520. package/dest/mem_pools/tx_pool/eviction/invalid_txs_after_mining_rule.d.ts +0 -17
  521. package/dest/mem_pools/tx_pool/eviction/invalid_txs_after_mining_rule.d.ts.map +0 -1
  522. package/dest/mem_pools/tx_pool/eviction/invalid_txs_after_reorg_rule.d.ts +0 -19
  523. package/dest/mem_pools/tx_pool/eviction/invalid_txs_after_reorg_rule.d.ts.map +0 -1
  524. package/dest/mem_pools/tx_pool/eviction/invalid_txs_after_reorg_rule.js +0 -76
  525. package/dest/mem_pools/tx_pool/eviction/low_priority_eviction_rule.d.ts +0 -26
  526. package/dest/mem_pools/tx_pool/eviction/low_priority_eviction_rule.d.ts.map +0 -1
  527. package/dest/mem_pools/tx_pool/eviction/low_priority_eviction_rule.js +0 -84
  528. package/dest/mem_pools/tx_pool/index.d.ts +0 -3
  529. package/dest/mem_pools/tx_pool/index.d.ts.map +0 -1
  530. package/dest/mem_pools/tx_pool/index.js +0 -2
  531. package/dest/mem_pools/tx_pool/priority.d.ts +0 -12
  532. package/dest/mem_pools/tx_pool/priority.d.ts.map +0 -1
  533. package/dest/mem_pools/tx_pool/priority.js +0 -15
  534. package/dest/mem_pools/tx_pool/tx_pool.d.ts +0 -127
  535. package/dest/mem_pools/tx_pool/tx_pool.d.ts.map +0 -1
  536. package/dest/mem_pools/tx_pool/tx_pool.js +0 -3
  537. package/dest/mem_pools/tx_pool/tx_pool_test_suite.d.ts +0 -7
  538. package/dest/mem_pools/tx_pool/tx_pool_test_suite.d.ts.map +0 -1
  539. package/dest/mem_pools/tx_pool/tx_pool_test_suite.js +0 -400
  540. package/dest/msg_validators/proposal_validator/proposal_validator_test_suite.d.ts +0 -23
  541. package/dest/msg_validators/proposal_validator/proposal_validator_test_suite.d.ts.map +0 -1
  542. package/dest/msg_validators/proposal_validator/proposal_validator_test_suite.js +0 -183
  543. package/dest/services/reqresp/connection-sampler/batch_connection_sampler.d.ts +0 -45
  544. package/dest/services/reqresp/connection-sampler/batch_connection_sampler.d.ts.map +0 -1
  545. package/dest/services/reqresp/connection-sampler/batch_connection_sampler.js +0 -92
  546. package/dest/services/reqresp/protocols/block.d.ts +0 -9
  547. package/dest/services/reqresp/protocols/block.d.ts.map +0 -1
  548. package/dest/services/reqresp/protocols/block.js +0 -32
  549. package/dest/services/tx_collection/fast_tx_collection.d.ts +0 -51
  550. package/dest/services/tx_collection/fast_tx_collection.d.ts.map +0 -1
  551. package/dest/services/tx_collection/fast_tx_collection.js +0 -300
  552. package/dest/services/tx_collection/slow_tx_collection.d.ts +0 -53
  553. package/dest/services/tx_collection/slow_tx_collection.d.ts.map +0 -1
  554. package/dest/services/tx_collection/slow_tx_collection.js +0 -177
  555. package/src/mem_pools/attestation_pool/kv_attestation_pool.ts +0 -320
  556. package/src/mem_pools/attestation_pool/memory_attestation_pool.ts +0 -264
  557. package/src/mem_pools/tx_pool/README.md +0 -255
  558. package/src/mem_pools/tx_pool/aztec_kv_tx_pool.ts +0 -691
  559. package/src/mem_pools/tx_pool/eviction/eviction_manager.ts +0 -71
  560. package/src/mem_pools/tx_pool/eviction/eviction_strategy.ts +0 -93
  561. package/src/mem_pools/tx_pool/eviction/insufficient_fee_payer_balance_rule.ts +0 -108
  562. package/src/mem_pools/tx_pool/eviction/invalid_txs_after_mining_rule.ts +0 -104
  563. package/src/mem_pools/tx_pool/eviction/invalid_txs_after_reorg_rule.ts +0 -91
  564. package/src/mem_pools/tx_pool/eviction/low_priority_eviction_rule.ts +0 -106
  565. package/src/mem_pools/tx_pool/index.ts +0 -2
  566. package/src/mem_pools/tx_pool/priority.ts +0 -20
  567. package/src/mem_pools/tx_pool/tx_pool.ts +0 -141
  568. package/src/mem_pools/tx_pool/tx_pool_test_suite.ts +0 -319
  569. package/src/msg_validators/proposal_validator/proposal_validator_test_suite.ts +0 -206
  570. package/src/services/reqresp/connection-sampler/batch_connection_sampler.ts +0 -100
  571. package/src/services/reqresp/protocols/block.ts +0 -37
  572. package/src/services/tx_collection/fast_tx_collection.ts +0 -341
  573. package/src/services/tx_collection/slow_tx_collection.ts +0 -233
@@ -1,12 +1,22 @@
1
- import { GENESIS_BLOCK_HEADER_HASH } from '@aztec/constants';
2
- import { BlockNumber, SlotNumber } from '@aztec/foundation/branded-types';
1
+ import type { EpochCacheInterface } from '@aztec/epoch-cache';
2
+ import {
3
+ BlockNumber,
4
+ CheckpointNumber,
5
+ type CheckpointProposalHash,
6
+ SlotNumber,
7
+ } from '@aztec/foundation/branded-types';
3
8
  import { createLogger } from '@aztec/foundation/log';
9
+ import { RunningPromise } from '@aztec/foundation/promise';
4
10
  import { DateProvider } from '@aztec/foundation/timer';
5
11
  import type { AztecAsyncKVStore, AztecAsyncSingleton } from '@aztec/kv-store';
6
12
  import { L2TipsKVStore } from '@aztec/kv-store/stores';
7
13
  import {
14
+ type BlockData,
15
+ type BlockHash,
16
+ type CheckpointId,
8
17
  type EthAddress,
9
- type L2BlockNew,
18
+ type L2Block,
19
+ type L2BlockId,
10
20
  type L2BlockSource,
11
21
  L2BlockStream,
12
22
  type L2BlockStreamEvent,
@@ -16,41 +26,36 @@ import {
16
26
  import type { ContractDataSource } from '@aztec/stdlib/contract';
17
27
  import { getTimestampForSlot } from '@aztec/stdlib/epoch-helpers';
18
28
  import { type PeerInfo, tryStop } from '@aztec/stdlib/interfaces/server';
19
- import {
20
- type BlockProposal,
21
- CheckpointAttestation,
22
- type CheckpointProposal,
23
- type P2PClientType,
24
- } from '@aztec/stdlib/p2p';
25
- import type { Tx, TxHash } from '@aztec/stdlib/tx';
29
+ import { type BlockProposal, CheckpointAttestation, type CheckpointProposal, type TopicType } from '@aztec/stdlib/p2p';
30
+ import type { BlockHeader, Tx, TxHash } from '@aztec/stdlib/tx';
26
31
  import { Attributes, type TelemetryClient, WithTracer, getTelemetryClient, trackSpan } from '@aztec/telemetry-client';
27
32
 
28
33
  import type { PeerId } from '@libp2p/interface';
29
34
  import type { ENR } from '@nethermindeth/enr';
30
35
 
31
36
  import { type P2PConfig, getP2PDefaultConfig } from '../config.js';
32
- import type { AttestationPool } from '../mem_pools/attestation_pool/attestation_pool.js';
37
+ import { TxPoolError } from '../errors/tx-pool.error.js';
38
+ import type { AttestationPoolApi, ProposalsForSlot } from '../mem_pools/attestation_pool/attestation_pool.js';
33
39
  import type { MemPools } from '../mem_pools/interface.js';
34
- import type { TxPool } from '../mem_pools/tx_pool/index.js';
40
+ import type { TxPoolV2 } from '../mem_pools/tx_pool_v2/interfaces.js';
35
41
  import type { AuthRequest, StatusMessage } from '../services/index.js';
36
- import {
37
- ReqRespSubProtocol,
38
- type ReqRespSubProtocolHandler,
39
- type ReqRespSubProtocolValidators,
40
- } from '../services/reqresp/interface.js';
41
- import { chunkTxHashesRequest } from '../services/reqresp/protocols/tx.js';
42
- import type { P2PBlockReceivedCallback, P2PCheckpointReceivedCallback, P2PService } from '../services/service.js';
42
+ import { ReqRespSubProtocol, type ReqRespSubProtocolHandler } from '../services/reqresp/interface.js';
43
+ import type {
44
+ DuplicateAttestationInfo,
45
+ DuplicateProposalInfo,
46
+ P2PBlockReceivedCallback,
47
+ P2PCheckpointReceivedCallback,
48
+ P2PService,
49
+ } from '../services/service.js';
43
50
  import { TxCollection } from '../services/tx_collection/tx_collection.js';
51
+ import type { TxFileStore } from '../services/tx_file_store/tx_file_store.js';
44
52
  import { TxProvider } from '../services/tx_provider.js';
45
53
  import { type P2P, P2PClientState, type P2PSyncState } from './interface.js';
46
54
 
47
55
  /**
48
56
  * The P2P client implementation.
49
57
  */
50
- export class P2PClient<T extends P2PClientType = P2PClientType.Full>
51
- extends WithTracer
52
- implements P2P, P2P<P2PClientType.Prover>
53
- {
58
+ export class P2PClient extends WithTracer implements P2P {
54
59
  /** The JS promise that will be running to keep the client's data in sync. Can be interrupted if the client is stopped. */
55
60
  private runningPromise!: Promise<void>;
56
61
 
@@ -64,8 +69,8 @@ export class P2PClient<T extends P2PClientType = P2PClientType.Full>
64
69
  private l2Tips: L2TipsStore;
65
70
  private synchedLatestSlot: AztecAsyncSingleton<bigint>;
66
71
 
67
- private txPool: TxPool;
68
- private attestationPool: AttestationPool;
72
+ private txPool: TxPoolV2;
73
+ private attestationPool: AttestationPoolApi;
69
74
 
70
75
  private config: P2PConfig;
71
76
 
@@ -75,25 +80,25 @@ export class P2PClient<T extends P2PClientType = P2PClientType.Full>
75
80
 
76
81
  private validatorAddresses: EthAddress[] = [];
77
82
 
78
- /**
79
- * In-memory P2P client constructor.
80
- * @param store - The client's instance of the KV store.
81
- * @param l2BlockSource - P2P client's source for fetching existing blocks.
82
- * @param txPool - The client's instance of a transaction pool. Defaults to in-memory implementation.
83
- * @param p2pService - The concrete instance of p2p networking to use.
84
- * @param log - A logger.
85
- */
83
+ /** Tracks the last slot for which we called prepareForSlot */
84
+ private lastSlotProcessed: SlotNumber = SlotNumber.ZERO;
85
+
86
+ /** Polls for slot changes and calls prepareForSlot on the tx pool */
87
+ private slotMonitor: RunningPromise | undefined;
88
+
86
89
  constructor(
87
- _clientType: T,
88
90
  private store: AztecAsyncKVStore,
89
91
  private l2BlockSource: L2BlockSource & ContractDataSource,
90
92
  mempools: MemPools,
91
93
  private p2pService: P2PService,
92
94
  private txCollection: TxCollection,
95
+ private txFileStore: TxFileStore | undefined,
96
+ private epochCache: EpochCacheInterface,
93
97
  config: Partial<P2PConfig> = {},
94
98
  private _dateProvider: DateProvider = new DateProvider(),
95
99
  private telemetry: TelemetryClient = getTelemetryClient(),
96
100
  private log = createLogger('p2p'),
101
+ initialBlockHash: BlockHash,
97
102
  ) {
98
103
  super(telemetry, 'P2PClient');
99
104
 
@@ -109,28 +114,7 @@ export class P2PClient<T extends P2PClientType = P2PClientType.Full>
109
114
  this.telemetry,
110
115
  );
111
116
 
112
- // Default to collecting all txs when we see a valid proposal
113
- // This can be overridden by the validator client to validate, and it will call getTxsForBlockProposal on its own
114
- // Note: Validators do NOT attest to individual blocks - attestations are only for checkpoint proposals.
115
- // TODO(palla/txs): We should not trigger a request for txs on a proposal before fully validating it. We need to bring
116
- // validator-client code into here so we can validate a proposal is reasonable.
117
- this.registerBlockProposalHandler(async (block, sender) => {
118
- this.log.debug(`Received block proposal from ${sender.toString()}`);
119
- // TODO(palla/txs): Need to subtract validatorReexecuteDeadlineMs from this deadline (see ValidatorClient.getReexecutionDeadline)
120
- const constants = this.txCollection.getConstants();
121
- const nextSlotTimestampSeconds = Number(getTimestampForSlot(SlotNumber(block.slotNumber + 1), constants));
122
- const deadline = new Date(nextSlotTimestampSeconds * 1000);
123
- const parentBlock = await this.l2BlockSource.getBlockHeaderByArchive(block.blockHeader.lastArchive.root);
124
- if (!parentBlock) {
125
- this.log.debug(`Cannot collect txs for proposal as parent block not found`);
126
- return false;
127
- }
128
- const blockNumber = BlockNumber(parentBlock.getBlockNumber() + 1);
129
- await this.txProvider.getTxsForBlockProposal(block, blockNumber, { pinnedPeer: sender, deadline });
130
- return true;
131
- });
132
-
133
- this.l2Tips = new L2TipsKVStore(store, 'p2p_client');
117
+ this.l2Tips = new L2TipsKVStore(store, 'p2p_client', initialBlockHash);
134
118
  this.synchedLatestSlot = store.openSingleton('p2p_pool_last_l2_slot');
135
119
  }
136
120
 
@@ -155,14 +139,17 @@ export class P2PClient<T extends P2PClientType = P2PClientType.Full>
155
139
  return Promise.resolve(this.p2pService.getPeers(includePending));
156
140
  }
157
141
 
142
+ public getGossipMeshPeerCount(topicType: TopicType): Promise<number> {
143
+ return Promise.resolve(this.p2pService.getGossipMeshPeerCount(topicType));
144
+ }
145
+
158
146
  public getL2BlockHash(number: BlockNumber): Promise<string | undefined> {
159
147
  return this.l2Tips.getL2BlockHash(number);
160
148
  }
161
149
 
162
- public updateP2PConfig(config: Partial<P2PConfig>): Promise<void> {
163
- this.txPool.updateConfig(config);
150
+ public async updateP2PConfig(config: Partial<P2PConfig>): Promise<void> {
151
+ await this.txPool.updateConfig(config);
164
152
  this.p2pService.updateConfig(config);
165
- return Promise.resolve();
166
153
  }
167
154
 
168
155
  public getL2Tips(): Promise<L2Tips> {
@@ -181,8 +168,8 @@ export class P2PClient<T extends P2PClientType = P2PClientType.Full>
181
168
  const from = BlockNumber(oldFinalizedBlockNum + 1);
182
169
  const limit = event.block.number - from + 1;
183
170
  if (limit > 0) {
184
- const oldBlocks = await this.l2BlockSource.getBlocks(from, limit);
185
- await this.handleFinalizedL2Blocks(oldBlocks.map(b => b.toL2Block()));
171
+ const oldBlocks = await this.l2BlockSource.getBlocksData({ from, limit });
172
+ await this.handleFinalizedL2Blocks(oldBlocks);
186
173
  }
187
174
  break;
188
175
  }
@@ -191,7 +178,7 @@ export class P2PClient<T extends P2PClientType = P2PClientType.Full>
191
178
  break;
192
179
  case 'chain-pruned':
193
180
  this.txCollection.stopCollectingForBlocksAfter(event.block.number);
194
- await this.handlePruneL2Blocks(event.block.number);
181
+ await this.handlePruneL2Blocks(event.block, event.checkpoint);
195
182
  break;
196
183
  case 'chain-checkpointed':
197
184
  break;
@@ -207,7 +194,6 @@ export class P2PClient<T extends P2PClientType = P2PClientType.Full>
207
194
  }
208
195
 
209
196
  #assertIsReady() {
210
- // this.log.info('Checking if p2p client is ready, current state: ', this.currentState);
211
197
  if (!this.isReady()) {
212
198
  throw new Error('P2P client not ready');
213
199
  }
@@ -225,6 +211,9 @@ export class P2PClient<T extends P2PClientType = P2PClientType.Full>
225
211
  return this.syncPromise;
226
212
  }
227
213
 
214
+ // Start the tx pool first, as it needs to hydrate state from persistence
215
+ await this.txPool.start();
216
+
228
217
  // get the current latest block numbers
229
218
  const latestBlockNumbers = await this.l2BlockSource.getL2Tips();
230
219
  this.latestBlockNumberAtStart = latestBlockNumbers.proposed.number;
@@ -272,17 +261,26 @@ export class P2PClient<T extends P2PClientType = P2PClientType.Full>
272
261
  });
273
262
  }
274
263
 
275
- this.blockStream!.start();
276
- await this.txCollection.start();
264
+ // Should never happen: all branches above call initBlockStream()
265
+ if (!this.blockStream) {
266
+ throw new Error('Block stream not initialized');
267
+ }
268
+ this.blockStream.start();
269
+ this.txFileStore?.start();
270
+
271
+ // Start slot monitor to call prepareForSlot when the slot changes
272
+ this.slotMonitor = new RunningPromise(
273
+ () => this.maybeCallPrepareForSlot(),
274
+ this.log,
275
+ this.config.slotCheckIntervalMS,
276
+ );
277
+ this.slotMonitor.start();
278
+
277
279
  return this.syncPromise;
278
280
  }
279
281
 
280
- addReqRespSubProtocol(
281
- subProtocol: ReqRespSubProtocol,
282
- handler: ReqRespSubProtocolHandler,
283
- validator: ReqRespSubProtocolValidators[ReqRespSubProtocol],
284
- ): Promise<void> {
285
- return this.p2pService.addReqRespSubProtocol(subProtocol, handler, validator);
282
+ addReqRespSubProtocol(subProtocol: ReqRespSubProtocol, handler: ReqRespSubProtocolHandler): Promise<void> {
283
+ return this.p2pService.addReqRespSubProtocol(subProtocol, handler);
286
284
  }
287
285
 
288
286
  private initBlockStream(startingBlock?: BlockNumber) {
@@ -304,12 +302,18 @@ export class P2PClient<T extends P2PClientType = P2PClientType.Full>
304
302
  */
305
303
  public async stop() {
306
304
  this.log.debug('Stopping p2p client...');
305
+ await this.slotMonitor?.stop();
306
+ this.log.debug('Stopped slot monitor');
307
307
  await tryStop(this.txCollection);
308
308
  this.log.debug('Stopped tx collection service');
309
+ await this.txFileStore?.stop();
310
+ this.log.debug('Stopped tx file store');
309
311
  await this.p2pService.stop();
310
312
  this.log.debug('Stopped p2p service');
311
313
  await this.blockStream?.stop();
312
314
  this.log.debug('Stopped block downloader');
315
+ await this.txPool.stop();
316
+ this.log.debug('Stopped tx pool');
313
317
  await this.runningPromise;
314
318
  this.setCurrentState(P2PClientState.STOPPED);
315
319
  this.log.info('P2P client stopped');
@@ -318,7 +322,11 @@ export class P2PClient<T extends P2PClientType = P2PClientType.Full>
318
322
  /** Triggers a sync to the archiver. Used for testing. */
319
323
  public async sync() {
320
324
  this.initBlockStream();
321
- await this.blockStream!.sync();
325
+ // Should never happen: initBlockStream() creates blockStream if absent
326
+ if (!this.blockStream) {
327
+ throw new Error('Block stream not initialized');
328
+ }
329
+ await this.blockStream.sync();
322
330
  }
323
331
 
324
332
  @trackSpan('p2pClient.broadcastProposal', async proposal => ({
@@ -326,8 +334,21 @@ export class P2PClient<T extends P2PClientType = P2PClientType.Full>
326
334
  [Attributes.BLOCK_ARCHIVE]: proposal.archive.toString(),
327
335
  [Attributes.P2P_ID]: (await proposal.p2pMessageLoggingIdentifier()).toString(),
328
336
  }))
329
- public broadcastProposal(proposal: BlockProposal): Promise<void> {
337
+ public async broadcastProposal(proposal: BlockProposal): Promise<void> {
330
338
  this.log.verbose(`Broadcasting proposal for slot ${proposal.slotNumber} to peers`);
339
+ // Store our own proposal so we can respond to req/resp requests for it
340
+ const { count } = await this.attestationPool.tryAddBlockProposal(proposal);
341
+ if (count > 1) {
342
+ if (this.config.broadcastEquivocatedProposals) {
343
+ this.log.warn(`Broadcasting equivocated block proposal for slot ${proposal.slotNumber}`, {
344
+ slot: proposal.slotNumber,
345
+ archive: proposal.archive.toString(),
346
+ count,
347
+ });
348
+ } else {
349
+ throw new Error(`Attempted to broadcast a duplicate block proposal for slot ${proposal.slotNumber}`);
350
+ }
351
+ }
331
352
  return this.p2pService.propagate(proposal);
332
353
  }
333
354
 
@@ -336,8 +357,26 @@ export class P2PClient<T extends P2PClientType = P2PClientType.Full>
336
357
  [Attributes.BLOCK_ARCHIVE]: proposal.archive.toString(),
337
358
  [Attributes.P2P_ID]: (await proposal.p2pMessageLoggingIdentifier()).toString(),
338
359
  }))
339
- public broadcastCheckpointProposal(proposal: CheckpointProposal): Promise<void> {
360
+ public async broadcastCheckpointProposal(proposal: CheckpointProposal): Promise<void> {
340
361
  this.log.verbose(`Broadcasting checkpoint proposal for slot ${proposal.slotNumber} to peers`);
362
+ const blockProposal = proposal.getBlockProposal();
363
+ if (blockProposal) {
364
+ // Store our own last-block proposal so we can respond to req/resp requests for it.
365
+ await this.attestationPool.tryAddBlockProposal(blockProposal);
366
+ }
367
+ const checkpointCore = proposal.toCore();
368
+ const { count } = await this.attestationPool.tryAddCheckpointProposal(checkpointCore);
369
+ if (count > 1) {
370
+ if (this.config.broadcastEquivocatedProposals) {
371
+ this.log.warn(`Broadcasting equivocated checkpoint proposal for slot ${proposal.slotNumber}`, {
372
+ slot: proposal.slotNumber,
373
+ archive: proposal.archive.toString(),
374
+ count,
375
+ });
376
+ } else {
377
+ throw new Error(`Attempted to broadcast a duplicate checkpoint proposal for slot ${proposal.slotNumber}`);
378
+ }
379
+ }
341
380
  return this.p2pService.propagate(proposal);
342
381
  }
343
382
 
@@ -348,15 +387,23 @@ export class P2PClient<T extends P2PClientType = P2PClientType.Full>
348
387
 
349
388
  public async getCheckpointAttestationsForSlot(
350
389
  slot: SlotNumber,
351
- proposalId?: string,
390
+ proposalPayloadHash?: CheckpointProposalHash,
352
391
  ): Promise<CheckpointAttestation[]> {
353
- return await (proposalId
354
- ? this.attestationPool.getCheckpointAttestationsForSlotAndProposal(slot, proposalId)
392
+ return await (proposalPayloadHash
393
+ ? this.attestationPool.getCheckpointAttestationsForSlotAndProposal(slot, proposalPayloadHash)
355
394
  : this.attestationPool.getCheckpointAttestationsForSlot(slot));
356
395
  }
357
396
 
358
- public addCheckpointAttestations(attestations: CheckpointAttestation[]): Promise<void> {
359
- return this.attestationPool.addCheckpointAttestations(attestations);
397
+ public addOwnCheckpointAttestations(attestations: CheckpointAttestation[]): Promise<void> {
398
+ return this.attestationPool.addOwnCheckpointAttestations(attestations);
399
+ }
400
+
401
+ public getProposalsForSlot(slot: SlotNumber): Promise<ProposalsForSlot> {
402
+ return this.attestationPool.getProposalsForSlot(slot);
403
+ }
404
+
405
+ public hasBlockProposalsForSlot(slot: SlotNumber): Promise<boolean> {
406
+ return this.attestationPool.hasBlockProposalsForSlot(slot);
360
407
  }
361
408
 
362
409
  // REVIEW: https://github.com/AztecProtocol/aztec-packages/issues/7963
@@ -365,113 +412,69 @@ export class P2PClient<T extends P2PClientType = P2PClientType.Full>
365
412
  this.p2pService.registerBlockReceivedCallback(handler);
366
413
  }
367
414
 
368
- public registerCheckpointProposalHandler(handler: P2PCheckpointReceivedCallback): void {
369
- this.p2pService.registerCheckpointReceivedCallback(handler);
415
+ public registerValidatorCheckpointProposalHandler(handler: P2PCheckpointReceivedCallback): void {
416
+ this.p2pService.registerValidatorCheckpointReceivedCallback(handler);
370
417
  }
371
418
 
372
- /**
373
- * Uses the batched Request Response protocol to request a set of transactions from the network.
374
- */
375
- public async requestTxsByHash(txHashes: TxHash[], pinnedPeerId: PeerId | undefined): Promise<Tx[]> {
376
- const timeoutMs = 8000; // Longer timeout for now
377
- const maxRetryAttempts = 10; // Keep retrying within the timeout
378
- const requests = chunkTxHashesRequest(txHashes);
379
- const maxPeers = Math.min(Math.ceil(requests.length / 3), 10);
380
-
381
- const txBatches = await this.p2pService.sendBatchRequest(
382
- ReqRespSubProtocol.TX,
383
- requests,
384
- pinnedPeerId,
385
- timeoutMs,
386
- maxPeers,
387
- maxRetryAttempts,
388
- );
389
-
390
- const txs = txBatches.flat();
391
- if (txs.length > 0) {
392
- await this.txPool.addTxs(txs);
393
- }
394
-
395
- const txHashesStr = txHashes.map(tx => tx.toString()).join(', ');
396
- this.log.debug(`Requested txs ${txHashesStr} (${txs.length} / ${txHashes.length}) from peers`);
397
-
398
- // We return all transactions, even the not found ones to the caller, such they can handle missing items themselves.
399
- return txs;
419
+ public registerAllNodesCheckpointProposalHandler(handler: P2PCheckpointReceivedCallback): void {
420
+ this.p2pService.registerAllNodesCheckpointReceivedCallback(handler);
400
421
  }
401
422
 
402
- public getPendingTxs(limit?: number, after?: TxHash): Promise<Tx[]> {
403
- return this.getTxs('pending', limit, after);
423
+ public registerDuplicateProposalCallback(callback: (info: DuplicateProposalInfo) => void): void {
424
+ this.p2pService.registerDuplicateProposalCallback(callback);
404
425
  }
405
426
 
406
- public getPendingTxCount(): Promise<number> {
407
- return this.txPool.getPendingTxCount();
427
+ public registerDuplicateAttestationCallback(callback: (info: DuplicateAttestationInfo) => void): void {
428
+ this.p2pService.registerDuplicateAttestationCallback(callback);
408
429
  }
409
430
 
410
- public async *iteratePendingTxs(): AsyncIterableIterator<Tx> {
411
- for (const txHash of await this.txPool.getPendingTxHashes()) {
412
- const tx = await this.txPool.getTxByHash(txHash);
413
- if (tx) {
414
- yield tx;
415
- }
416
- }
431
+ public registerCheckpointAttestationCallback(callback: (attestation: CheckpointAttestation) => void): void {
432
+ this.p2pService.registerCheckpointAttestationCallback(callback);
417
433
  }
418
434
 
419
- /**
420
- * Returns all transactions in the transaction pool.
421
- * @param filter - The type of txs to return
422
- * @param limit - How many txs to return
423
- * @param after - If paginating, the last known tx hash. Will return txs after this hash
424
- * @returns An array of Txs.
425
- */
426
- public async getTxs(filter: 'all' | 'pending' | 'mined', limit?: number, after?: TxHash): Promise<Tx[]> {
435
+ public async getPendingTxs(limit?: number, after?: TxHash): Promise<Tx[]> {
427
436
  if (limit !== undefined && limit <= 0) {
428
437
  throw new TypeError('limit must be greater than 0');
429
438
  }
430
439
 
431
- let txs: Tx[] | undefined = undefined;
432
- let txHashes: TxHash[];
433
-
434
- if (filter === 'all') {
435
- txs = await this.txPool.getAllTxs();
436
- txHashes = await Promise.all(txs.map(tx => tx.getTxHash()));
437
- } else if (filter === 'mined') {
438
- const minedTxHashes = await this.txPool.getMinedTxHashes();
439
- txHashes = minedTxHashes.map(([txHash]) => txHash);
440
- } else if (filter === 'pending') {
441
- txHashes = await this.txPool.getPendingTxHashes();
442
- } else {
443
- const _: never = filter;
444
- throw new Error(`Unknown filter ${filter}`);
445
- }
440
+ let txHashes = await this.txPool.getPendingTxHashes();
446
441
 
447
442
  let startIndex = 0;
448
- let endIndex: number | undefined = undefined;
449
-
450
443
  if (after) {
451
444
  startIndex = txHashes.findIndex(txHash => after.equals(txHash));
452
-
453
- // if we can't find the last tx in our set then return an empty array as pagination is no longer valid.
454
445
  if (startIndex === -1) {
455
446
  return [];
456
447
  }
457
-
458
- // increment by one because we don't want to return the same tx again
459
448
  startIndex++;
460
449
  }
461
450
 
462
- if (limit !== undefined) {
463
- endIndex = startIndex + limit;
464
- }
465
-
451
+ const endIndex = limit !== undefined ? startIndex + limit : undefined;
466
452
  txHashes = txHashes.slice(startIndex, endIndex);
467
- if (txs) {
468
- txs = txs.slice(startIndex, endIndex);
469
- } else {
470
- const maybeTxs = await Promise.all(txHashes.map(txHash => this.txPool.getTxByHash(txHash)));
471
- txs = maybeTxs.filter((tx): tx is Tx => !!tx);
453
+
454
+ const maybeTxs = await Promise.all(txHashes.map(txHash => this.txPool.getTxByHash(txHash)));
455
+ return maybeTxs.filter((tx): tx is Tx => !!tx);
456
+ }
457
+
458
+ public getPendingTxCount(): Promise<number> {
459
+ return this.txPool.getPendingTxCount();
460
+ }
461
+
462
+ public async *iteratePendingTxs(): AsyncIterableIterator<Tx> {
463
+ for (const txHash of await this.txPool.getPendingTxHashes()) {
464
+ const tx = await this.txPool.getTxByHash(txHash);
465
+ if (tx) {
466
+ yield tx;
467
+ }
472
468
  }
469
+ }
473
470
 
474
- return txs;
471
+ public async *iterateEligiblePendingTxs(): AsyncIterableIterator<Tx> {
472
+ for (const txHash of await this.txPool.getEligiblePendingTxHashes()) {
473
+ const tx = await this.txPool.getTxByHash(txHash);
474
+ if (tx) {
475
+ yield tx;
476
+ }
477
+ }
475
478
  }
476
479
 
477
480
  /**
@@ -496,49 +499,6 @@ export class P2PClient<T extends P2PClientType = P2PClientType.Full>
496
499
  return this.txPool.hasTxs(txHashes);
497
500
  }
498
501
 
499
- /**
500
- * Returns transactions in the transaction pool by hash.
501
- * If a transaction is not in the pool, it will be requested from the network.
502
- * @param txHashes - Hashes of the transactions to look for.
503
- * @returns The txs found, or undefined if not found in the order requested.
504
- */
505
- async getTxsByHash(txHashes: TxHash[], pinnedPeerId: PeerId | undefined): Promise<(Tx | undefined)[]> {
506
- const txs = await Promise.all(txHashes.map(txHash => this.txPool.getTxByHash(txHash)));
507
- const missingTxHashes = txs
508
- .map((tx, index) => [tx, index] as const)
509
- .filter(([tx, _index]) => !tx)
510
- .map(([_tx, index]) => txHashes[index]);
511
-
512
- if (missingTxHashes.length === 0) {
513
- return txs as Tx[];
514
- }
515
-
516
- const missingTxs = await this.requestTxsByHash(missingTxHashes, pinnedPeerId);
517
- // TODO: optimize
518
- // Merge the found txs in order
519
- const mergingTxs = txHashes.map(txHash => {
520
- // Is it in the txs list from the mempool?
521
- for (const tx of txs) {
522
- if (tx !== undefined && tx.getTxHash().equals(txHash)) {
523
- return tx;
524
- }
525
- }
526
-
527
- // Is it in the fetched missing txs?
528
- // Note: this is an O(n^2) operation, but we expect the number of missing txs to be small.
529
- for (const tx of missingTxs) {
530
- if (tx.getTxHash().equals(txHash)) {
531
- return tx;
532
- }
533
- }
534
-
535
- // Otherwise return undefined
536
- return undefined;
537
- });
538
-
539
- return mergingTxs;
540
- }
541
-
542
502
  /**
543
503
  * Returns an archived transaction in the transaction pool by its hash.
544
504
  * @param txHash - Hash of the archived transaction to look for.
@@ -549,25 +509,28 @@ export class P2PClient<T extends P2PClientType = P2PClientType.Full>
549
509
  }
550
510
 
551
511
  /**
552
- * Verifies the 'tx' and, if valid, adds it to local tx pool and forwards it to other peers.
553
- * @param tx - The tx to verify.
512
+ * Accepts a transaction, adds it to local tx pool and forwards it to other peers.
513
+ * @param tx - The tx to send.
554
514
  * @returns Empty promise.
555
515
  **/
556
516
  public async sendTx(tx: Tx): Promise<void> {
557
- const addedCount = await this.addTxsToPool([tx]);
558
- const txAddedSuccessfully = addedCount === 1;
559
- if (txAddedSuccessfully) {
517
+ this.#assertIsReady();
518
+ const result = await this.txPool.addPendingTxs([tx], { feeComparisonOnly: true });
519
+ if (result.accepted.length === 1) {
560
520
  await this.p2pService.propagate(tx);
521
+ return;
561
522
  }
562
- }
563
523
 
564
- /**
565
- * Adds transactions to the pool. Does not send to peers or validate the txs.
566
- * @param txs - The transactions.
567
- **/
568
- public async addTxsToPool(txs: Tx[]): Promise<number> {
569
- this.#assertIsReady();
570
- return await this.txPool.addTxs(txs);
524
+ const txHashStr = tx.getTxHash().toString();
525
+ const reason = result.errors?.get(txHashStr);
526
+ if (reason) {
527
+ this.log.warn(`Tx ${txHashStr} not added to pool: ${reason.message}`);
528
+ throw new TxPoolError(reason);
529
+ }
530
+
531
+ this.log.warn(
532
+ `Tx ${txHashStr} not propagated: accepted=${result.accepted.length} ignored=${result.ignored.length} rejected=${result.rejected.length}`,
533
+ );
571
534
  }
572
535
 
573
536
  /**
@@ -575,8 +538,9 @@ export class P2PClient<T extends P2PClientType = P2PClientType.Full>
575
538
  * @param txHash - Hash of the tx to query.
576
539
  * @returns Pending or mined depending on its status, or undefined if not found.
577
540
  */
578
- public getTxStatus(txHash: TxHash): Promise<'pending' | 'mined' | 'deleted' | undefined> {
579
- return this.txPool.getTxStatus(txHash);
541
+ public async getTxStatus(txHash: TxHash): Promise<'pending' | 'mined' | 'deleted' | undefined> {
542
+ const status = await this.txPool.getTxStatus(txHash);
543
+ return status === 'protected' ? 'pending' : status;
580
544
  }
581
545
 
582
546
  public getEnr(): ENR | undefined {
@@ -588,14 +552,12 @@ export class P2PClient<T extends P2PClientType = P2PClientType.Full>
588
552
  }
589
553
 
590
554
  /**
591
- * Deletes the 'txs' from the pool.
592
- * NOT used if we use sendTx as reconcileTxPool will handle this.
593
- * @param txHashes - Hashes of the transactions to delete.
594
- * @returns Empty promise.
555
+ * Handles failed transaction execution by removing txs from the pool.
556
+ * @param txHashes - Hashes of the transactions that failed execution.
595
557
  **/
596
- public async deleteTxs(txHashes: TxHash[]): Promise<void> {
558
+ public async handleFailedExecution(txHashes: TxHash[]): Promise<void> {
597
559
  this.#assertIsReady();
598
- await this.txPool.deleteTxs(txHashes);
560
+ await this.txPool.handleFailedExecution(txHashes);
599
561
  }
600
562
 
601
563
  /**
@@ -640,13 +602,10 @@ export class P2PClient<T extends P2PClientType = P2PClientType.Full>
640
602
  */
641
603
  public async getStatus(): Promise<P2PSyncState> {
642
604
  const blockNumber = await this.getSyncedLatestBlockNum();
643
- const blockHash =
644
- blockNumber === 0
645
- ? GENESIS_BLOCK_HEADER_HASH.toString()
646
- : await this.l2BlockSource
647
- .getBlockHeader(blockNumber)
648
- .then(header => header?.hash())
649
- .then(hash => hash?.toString());
605
+ const blockHash = await this.l2BlockSource
606
+ .getBlockData({ number: blockNumber })
607
+ .then(data => data?.header.hash())
608
+ .then(hash => hash?.toString());
650
609
 
651
610
  return {
652
611
  state: this.currentState,
@@ -655,14 +614,13 @@ export class P2PClient<T extends P2PClientType = P2PClientType.Full>
655
614
  }
656
615
 
657
616
  /**
658
- * Mark all txs from these blocks as mined.
617
+ * Handles mined blocks by marking the txs in them as mined.
659
618
  * @param blocks - A list of existing blocks with txs that the P2P client needs to ensure the tx pool is reconciled with.
660
619
  * @returns Empty promise.
661
620
  */
662
- private async markTxsAsMinedFromBlocks(blocks: L2BlockNew[]): Promise<void> {
621
+ private async handleMinedBlocks(blocks: L2Block[]): Promise<void> {
663
622
  for (const block of blocks) {
664
- const txHashes = block.body.txEffects.map(txEffect => txEffect.txHash);
665
- await this.txPool.markAsMined(txHashes, block.header);
623
+ await this.txPool.handleMinedBlock(block);
666
624
  }
667
625
  }
668
626
 
@@ -671,22 +629,20 @@ export class P2PClient<T extends P2PClientType = P2PClientType.Full>
671
629
  * @param blocks - A list of existing blocks with txs that the P2P client needs to ensure the tx pool is reconciled with.
672
630
  * @returns Empty promise.
673
631
  */
674
- private async handleLatestL2Blocks(blocks: L2BlockNew[]): Promise<void> {
632
+ private async handleLatestL2Blocks(blocks: L2Block[]): Promise<void> {
675
633
  if (!blocks.length) {
676
- return Promise.resolve();
634
+ return;
677
635
  }
678
636
 
679
- await this.markTxsAsMinedFromBlocks(blocks);
680
- await this.txPool.clearNonEvictableTxs();
681
- await this.startCollectingMissingTxs(blocks);
682
-
637
+ await this.handleMinedBlocks(blocks);
638
+ await this.maybeCallPrepareForSlot();
639
+ await this.collectingMissingTxs(blocks);
683
640
  const lastBlock = blocks.at(-1)!;
684
641
  await this.synchedLatestSlot.set(BigInt(lastBlock.header.getSlot()));
685
- this.log.verbose(`Synched to latest block ${lastBlock.number}`);
686
642
  }
687
643
 
688
- /** Request txs for unproven blocks so the prover node has more chances to get them. */
689
- private async startCollectingMissingTxs(blocks: L2BlockNew[]): Promise<void> {
644
+ /** Request txs for unproven blocks so the prover node can prove. */
645
+ private async collectingMissingTxs(blocks: L2Block[]): Promise<void> {
690
646
  try {
691
647
  // TODO(#15435): If the archiver has lagged behind L1, the reported proven block number may
692
648
  // be much lower than the actual one, and it does not update until the pending chain is
@@ -694,7 +650,7 @@ export class P2PClient<T extends P2PClientType = P2PClientType.Full>
694
650
  // are already proven, but the archiver has not yet updated its state. Until this is properly
695
651
  // fixed, it is mitigated by the expiration date of collection requests, which depends on
696
652
  // the slot number of the block.
697
- const provenBlockNumber = await this.l2BlockSource.getProvenBlockNumber();
653
+ const provenBlockNumber = (await this.l2BlockSource.getBlockNumber({ tag: 'proven' })) ?? BlockNumber.ZERO;
698
654
  const unprovenBlocks = blocks.filter(block => block.number > provenBlockNumber);
699
655
  for (const block of unprovenBlocks) {
700
656
  const txHashes = block.body.txEffects.map(txEffect => txEffect.txHash);
@@ -706,7 +662,17 @@ export class P2PClient<T extends P2PClientType = P2PClientType.Full>
706
662
  `Starting collection of ${missingTxHashes.length} missing txs for unproven mined block ${block.number}`,
707
663
  { missingTxHashes, blockNumber: block.number, blockHash: await block.hash().then(h => h.toString()) },
708
664
  );
709
- this.txCollection.startCollecting(block, missingTxHashes);
665
+ // Both `slashDataWithholdingToleranceSlots` and `p2pMissingTxCollectionDeadlineSlots`
666
+ // count *full slots after the block slot* — value N means collection runs until
667
+ // `slotStart(block.slot + N + 1)`. Take the larger of the two so collection never
668
+ // gives up before the data-withholding slash verdict is rendered.
669
+ const blockSlot = block.header.getSlot();
670
+ const toleranceSlots = this.config.slashDataWithholdingToleranceSlots;
671
+ const configuredSlots = this.config.p2pMissingTxCollectionDeadlineSlots ?? 0;
672
+ const deadlineSlot = SlotNumber(blockSlot + Math.max(toleranceSlots, configuredSlots) + 1);
673
+ const deadlineSeconds = getTimestampForSlot(deadlineSlot, this.epochCache.getL1Constants());
674
+ const deadline = new Date(Number(deadlineSeconds) * 1000);
675
+ await this.txCollection.collectFastForBlock(block, missingTxHashes, { deadline });
710
676
  }
711
677
  }
712
678
  } catch (err) {
@@ -719,70 +685,73 @@ export class P2PClient<T extends P2PClientType = P2PClientType.Full>
719
685
  * @param blocks - A list of finalized L2 blocks.
720
686
  * @returns Empty promise.
721
687
  */
722
- private async handleFinalizedL2Blocks(blocks: L2BlockNew[]): Promise<void> {
688
+ private async handleFinalizedL2Blocks(blocks: BlockData[]): Promise<void> {
723
689
  if (!blocks.length) {
724
- return Promise.resolve();
690
+ return;
725
691
  }
726
- this.log.debug(`Handling finalized blocks ${blocks.length} up to ${blocks.at(-1)?.number}`);
727
-
728
- const lastBlockNum = blocks[blocks.length - 1].number;
729
- const lastBlockSlot = blocks[blocks.length - 1].header.getSlot();
730
-
731
- const txHashes = blocks.flatMap(block => block.body.txEffects.map(txEffect => txEffect.txHash));
732
- this.log.debug(`Deleting ${txHashes.length} txs from pool from finalized blocks up to ${lastBlockNum}`);
733
- await this.txPool.deleteTxs(txHashes, { permanently: true });
734
- await this.txPool.cleanupDeletedMinedTxs(lastBlockNum);
735
-
736
- await this.attestationPool.deleteCheckpointAttestationsOlderThan(lastBlockSlot);
737
692
 
738
- this.log.debug(`Synched to finalized block ${lastBlockNum} at slot ${lastBlockSlot}`);
693
+ // Finalization is monotonic, so we only need to call with the last block
694
+ const lastBlock = blocks.at(-1)!;
695
+ await this.txPool.handleFinalizedBlock(lastBlock.header);
696
+ await this.attestationPool.deleteOlderThan(lastBlock.header.getSlot());
739
697
  }
740
698
 
741
699
  /**
742
700
  * Updates the tx pool after a chain prune.
743
- * @param latestBlock - The block number the chain was pruned to.
701
+ * Detects epoch prunes (checkpoint number changed) and deletes all txs in that case.
702
+ * @param latestBlock - The block ID the chain was pruned to.
703
+ * @param newCheckpoint - The checkpoint ID after the prune.
744
704
  */
745
- private async handlePruneL2Blocks(latestBlock: BlockNumber): Promise<void> {
746
- const txsToDelete = new Map<string, TxHash>();
747
- const minedTxs = await this.txPool.getMinedTxHashes();
748
-
749
- // Find transactions that reference pruned blocks in their historical header
750
- for (const tx of await this.txPool.getAllTxs()) {
751
- // every tx that's been generated against a block that has now been pruned is no longer valid
752
- if (tx.data.constants.anchorBlockHeader.globalVariables.blockNumber > latestBlock) {
753
- const txHash = tx.getTxHash();
754
- txsToDelete.set(txHash.toString(), txHash);
755
- }
756
- }
705
+ private async handlePruneL2Blocks(latestBlock: L2BlockId, newCheckpoint: CheckpointId): Promise<void> {
706
+ const deleteAllTxs = this.config.txPoolDeleteTxsAfterReorg && (await this.isEpochPrune(newCheckpoint));
707
+ await this.txPool.handlePrunedBlocks(latestBlock, { deleteAllTxs });
708
+ }
757
709
 
758
- this.log.info(`Detected chain prune. Removing ${txsToDelete.size} txs built against pruned blocks.`, {
759
- newLatestBlock: latestBlock,
760
- previousLatestBlock: await this.getSyncedLatestBlockNum(),
761
- txsToDelete: Array.from(txsToDelete.keys()),
762
- });
763
-
764
- // delete invalid txs (both pending and mined)
765
- await this.txPool.deleteTxs(Array.from(txsToDelete.values()));
766
-
767
- // everything left in the mined set was built against a block on the proven chain so its still valid
768
- // move back to pending the txs that were reorged out of the chain, unless txPoolDeleteTxsAfterReorg is set,
769
- // in which case we clean them up to avoid potential reorg loops
770
- // NOTE: we can't move _all_ txs back to pending because the tx pool could keep hold of mined txs for longer
771
- // (see this.keepProvenTxsFor)
772
- const minedTxsFromReorg: TxHash[] = [];
773
- for (const [txHash, blockNumber] of minedTxs) {
774
- // We keep the txsToDelete out of this list as they have already been deleted above
775
- if (blockNumber > latestBlock && !txsToDelete.has(txHash.toString())) {
776
- minedTxsFromReorg.push(txHash);
777
- }
710
+ /**
711
+ * Returns true if the prune is an epoch prune (new checkpoint number is less than old).
712
+ * If the checkpoint number stays the same or increases, the prune is within a checkpoint.
713
+ */
714
+ private async isEpochPrune(newCheckpoint: CheckpointId): Promise<boolean> {
715
+ const tips = await this.l2Tips.getL2Tips();
716
+ const oldCheckpointNumber = tips.checkpointed.checkpoint.number;
717
+ if (oldCheckpointNumber <= CheckpointNumber.INITIAL) {
718
+ return false;
719
+ }
720
+ const newCheckpointNumber = newCheckpoint.number;
721
+ // We check that the new checkpoint number is less than the old checkpoint number in order to consider it an epoch prune.
722
+ // To be more certain that it is an epoch prune, we will check that at least 2 checkpoints were removed.
723
+ // This means we should avoid thinking checkpoints removed by L1 re-orgs are epoch prunes
724
+ const thresholdForEpochPrune = CheckpointNumber(oldCheckpointNumber - 2);
725
+ const isEpochPrune = newCheckpointNumber <= thresholdForEpochPrune;
726
+ if (isEpochPrune) {
727
+ this.log.info(`Detected epoch prune to ${newCheckpointNumber}`, {
728
+ oldCheckpointNumber,
729
+ newCheckpointNumber,
730
+ thresholdForEpochPrune,
731
+ });
778
732
  }
733
+ return isEpochPrune;
734
+ }
779
735
 
780
- if (this.config.txPoolDeleteTxsAfterReorg) {
781
- this.log.info(`Deleting ${minedTxsFromReorg.length} mined txs from reorg`);
782
- await this.txPool.deleteTxs(minedTxsFromReorg);
736
+ /** Checks if the slot has changed and calls prepareForSlot if so. */
737
+ private async maybeCallPrepareForSlot(): Promise<void> {
738
+ // If we have a proposed checkpoint available, we want to prepare the target slot - otherwise we prepare the current slot
739
+ const l2Tips = await this.l2Tips.getL2Tips();
740
+ const hasProposedCheckpoint = l2Tips.proposedCheckpoint.checkpoint.number > l2Tips.checkpointed.checkpoint.number;
741
+
742
+ let slot;
743
+ if (this.epochCache.isProposerPipeliningEnabled() && hasProposedCheckpoint) {
744
+ const { targetSlot } = this.epochCache.getTargetAndNextSlot();
745
+ slot = targetSlot;
783
746
  } else {
784
- await this.txPool.markMinedAsPending(minedTxsFromReorg, latestBlock);
747
+ const { currentSlot } = this.epochCache.getCurrentAndNextSlot();
748
+ slot = currentSlot;
749
+ }
750
+ if (slot <= this.lastSlotProcessed) {
751
+ return;
785
752
  }
753
+ this.lastSlotProcessed = slot;
754
+ await this.txPool.prepareForSlot(slot);
786
755
  }
787
756
 
788
757
  private async startServiceIfSynched() {
@@ -822,16 +791,28 @@ export class P2PClient<T extends P2PClientType = P2PClientType.Full>
822
791
  this.log.debug(`Moved from state ${P2PClientState[oldState]} to ${P2PClientState[this.currentState]}`);
823
792
  }
824
793
 
825
- public validate(txs: Tx[]): Promise<void> {
826
- return this.p2pService.validate(txs);
794
+ public validateTxsReceivedInBlockProposal(txs: Tx[]): Promise<void> {
795
+ return this.p2pService.validateTxsReceivedInBlockProposal(txs);
796
+ }
797
+
798
+ /**
799
+ * Protects existing transactions by hash for a given slot.
800
+ * Returns hashes of transactions that weren't found in the pool.
801
+ * @param txHashes - Hashes of the transactions to protect.
802
+ * @param blockHeader - The block header providing slot context.
803
+ * @returns Hashes of transactions not found in the pool.
804
+ */
805
+ public protectTxs(txHashes: TxHash[], blockHeader: BlockHeader): Promise<TxHash[]> {
806
+ return this.txPool.protectTxs(txHashes, blockHeader);
827
807
  }
828
808
 
829
809
  /**
830
- * Marks transactions as non-evictable in the pool.
831
- * @param txHashes - Hashes of the transactions to mark as non-evictable.
810
+ * Prepares the pool for a new slot.
811
+ * Unprotects transactions from earlier slots and validates them.
812
+ * @param slotNumber - The slot number to prepare for
832
813
  */
833
- public markTxsAsNonEvictable(txHashes: TxHash[]): Promise<void> {
834
- return this.txPool.markTxsAsNonEvictable(txHashes);
814
+ public async prepareForSlot(slotNumber: SlotNumber): Promise<void> {
815
+ await this.txPool.prepareForSlot(slotNumber);
835
816
  }
836
817
 
837
818
  public handleAuthRequestFromPeer(authRequest: AuthRequest, peerId: PeerId): Promise<StatusMessage> {