@aztec/p2p 0.0.1-commit.b655e406 → 0.0.1-commit.c0b82b2

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