@aztec/p2p 0.0.1-commit.7d4e6cd → 0.0.1-commit.808bf7f90

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 (496) 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 +7 -6
  5. package/dest/client/factory.d.ts.map +1 -1
  6. package/dest/client/factory.js +53 -14
  7. package/dest/client/interface.d.ts +43 -23
  8. package/dest/client/interface.d.ts.map +1 -1
  9. package/dest/client/p2p_client.d.ts +40 -42
  10. package/dest/client/p2p_client.d.ts.map +1 -1
  11. package/dest/client/p2p_client.js +157 -146
  12. package/dest/client/test/tx_proposal_collector/proposal_tx_collector_worker.d.ts +2 -0
  13. package/dest/client/test/tx_proposal_collector/proposal_tx_collector_worker.d.ts.map +1 -0
  14. package/dest/client/test/tx_proposal_collector/proposal_tx_collector_worker.js +305 -0
  15. package/dest/client/test/tx_proposal_collector/proposal_tx_collector_worker_protocol.d.ts +73 -0
  16. package/dest/client/test/tx_proposal_collector/proposal_tx_collector_worker_protocol.d.ts.map +1 -0
  17. package/dest/client/test/tx_proposal_collector/proposal_tx_collector_worker_protocol.js +8 -0
  18. package/dest/config.d.ts +35 -7
  19. package/dest/config.d.ts.map +1 -1
  20. package/dest/config.js +23 -9
  21. package/dest/errors/tx-pool.error.d.ts +8 -0
  22. package/dest/errors/tx-pool.error.d.ts.map +1 -0
  23. package/dest/errors/tx-pool.error.js +9 -0
  24. package/dest/index.d.ts +2 -1
  25. package/dest/index.d.ts.map +1 -1
  26. package/dest/index.js +1 -0
  27. package/dest/mem_pools/attestation_pool/attestation_pool.d.ts +104 -88
  28. package/dest/mem_pools/attestation_pool/attestation_pool.d.ts.map +1 -1
  29. package/dest/mem_pools/attestation_pool/attestation_pool.js +441 -3
  30. package/dest/mem_pools/attestation_pool/attestation_pool_test_suite.d.ts +2 -2
  31. package/dest/mem_pools/attestation_pool/attestation_pool_test_suite.d.ts.map +1 -1
  32. package/dest/mem_pools/attestation_pool/attestation_pool_test_suite.js +373 -96
  33. package/dest/mem_pools/attestation_pool/index.d.ts +2 -3
  34. package/dest/mem_pools/attestation_pool/index.d.ts.map +1 -1
  35. package/dest/mem_pools/attestation_pool/index.js +1 -2
  36. package/dest/mem_pools/attestation_pool/mocks.d.ts +4 -2
  37. package/dest/mem_pools/attestation_pool/mocks.d.ts.map +1 -1
  38. package/dest/mem_pools/attestation_pool/mocks.js +8 -5
  39. package/dest/mem_pools/index.d.ts +3 -2
  40. package/dest/mem_pools/index.d.ts.map +1 -1
  41. package/dest/mem_pools/index.js +1 -1
  42. package/dest/mem_pools/instrumentation.d.ts +1 -1
  43. package/dest/mem_pools/instrumentation.d.ts.map +1 -1
  44. package/dest/mem_pools/instrumentation.js +2 -2
  45. package/dest/mem_pools/interface.d.ts +5 -5
  46. package/dest/mem_pools/interface.d.ts.map +1 -1
  47. package/dest/mem_pools/tx_pool/aztec_kv_tx_pool.d.ts +15 -10
  48. package/dest/mem_pools/tx_pool/aztec_kv_tx_pool.d.ts.map +1 -1
  49. package/dest/mem_pools/tx_pool/aztec_kv_tx_pool.js +91 -50
  50. package/dest/mem_pools/tx_pool/eviction/eviction_manager.d.ts +19 -5
  51. package/dest/mem_pools/tx_pool/eviction/eviction_manager.d.ts.map +1 -1
  52. package/dest/mem_pools/tx_pool/eviction/eviction_manager.js +59 -3
  53. package/dest/mem_pools/tx_pool/eviction/eviction_strategy.d.ts +79 -5
  54. package/dest/mem_pools/tx_pool/eviction/eviction_strategy.d.ts.map +1 -1
  55. package/dest/mem_pools/tx_pool/eviction/eviction_strategy.js +47 -0
  56. package/dest/mem_pools/tx_pool/eviction/fee_payer_balance_eviction_rule.d.ts +16 -0
  57. package/dest/mem_pools/tx_pool/eviction/fee_payer_balance_eviction_rule.d.ts.map +1 -0
  58. package/dest/mem_pools/tx_pool/eviction/fee_payer_balance_eviction_rule.js +122 -0
  59. package/dest/mem_pools/tx_pool/eviction/invalid_txs_after_mining_rule.d.ts +2 -2
  60. package/dest/mem_pools/tx_pool/eviction/invalid_txs_after_mining_rule.d.ts.map +1 -1
  61. package/dest/mem_pools/tx_pool/eviction/invalid_txs_after_mining_rule.js +3 -3
  62. package/dest/mem_pools/tx_pool/eviction/invalid_txs_after_reorg_rule.d.ts +4 -4
  63. package/dest/mem_pools/tx_pool/eviction/invalid_txs_after_reorg_rule.d.ts.map +1 -1
  64. package/dest/mem_pools/tx_pool/eviction/invalid_txs_after_reorg_rule.js +2 -0
  65. package/dest/mem_pools/tx_pool/eviction/low_priority_eviction_rule.d.ts +2 -2
  66. package/dest/mem_pools/tx_pool/eviction/low_priority_eviction_rule.d.ts.map +1 -1
  67. package/dest/mem_pools/tx_pool/eviction/nullifier_conflict_pre_add_rule.d.ts +25 -0
  68. package/dest/mem_pools/tx_pool/eviction/nullifier_conflict_pre_add_rule.d.ts.map +1 -0
  69. package/dest/mem_pools/tx_pool/eviction/nullifier_conflict_pre_add_rule.js +57 -0
  70. package/dest/mem_pools/tx_pool_v2/archive/index.d.ts +2 -0
  71. package/dest/mem_pools/tx_pool_v2/archive/index.d.ts.map +1 -0
  72. package/dest/mem_pools/tx_pool_v2/archive/index.js +1 -0
  73. package/dest/mem_pools/tx_pool_v2/archive/tx_archive.d.ts +43 -0
  74. package/dest/mem_pools/tx_pool_v2/archive/tx_archive.d.ts.map +1 -0
  75. package/dest/mem_pools/tx_pool_v2/archive/tx_archive.js +103 -0
  76. package/dest/mem_pools/tx_pool_v2/deleted_pool.d.ts +104 -0
  77. package/dest/mem_pools/tx_pool_v2/deleted_pool.d.ts.map +1 -0
  78. package/dest/mem_pools/tx_pool_v2/deleted_pool.js +251 -0
  79. package/dest/mem_pools/tx_pool_v2/eviction/eviction_manager.d.ts +47 -0
  80. package/dest/mem_pools/tx_pool_v2/eviction/eviction_manager.d.ts.map +1 -0
  81. package/dest/mem_pools/tx_pool_v2/eviction/eviction_manager.js +128 -0
  82. package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.d.ts +17 -0
  83. package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.d.ts.map +1 -0
  84. package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.js +93 -0
  85. package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_pre_add_rule.d.ts +19 -0
  86. package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_pre_add_rule.d.ts.map +1 -0
  87. package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_pre_add_rule.js +95 -0
  88. package/dest/mem_pools/tx_pool_v2/eviction/index.d.ts +10 -0
  89. package/dest/mem_pools/tx_pool_v2/eviction/index.d.ts.map +1 -0
  90. package/dest/mem_pools/tx_pool_v2/eviction/index.js +11 -0
  91. package/dest/mem_pools/tx_pool_v2/eviction/interfaces.d.ts +174 -0
  92. package/dest/mem_pools/tx_pool_v2/eviction/interfaces.d.ts.map +1 -0
  93. package/dest/mem_pools/tx_pool_v2/eviction/interfaces.js +25 -0
  94. package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_mining_rule.d.ts +15 -0
  95. package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_mining_rule.d.ts.map +1 -0
  96. package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_mining_rule.js +65 -0
  97. package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_reorg_rule.d.ts +17 -0
  98. package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_reorg_rule.d.ts.map +1 -0
  99. package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_reorg_rule.js +93 -0
  100. package/dest/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.d.ts +16 -0
  101. package/dest/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.d.ts.map +1 -0
  102. package/dest/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.js +78 -0
  103. package/dest/mem_pools/tx_pool_v2/eviction/low_priority_pre_add_rule.d.ts +20 -0
  104. package/dest/mem_pools/tx_pool_v2/eviction/low_priority_pre_add_rule.d.ts.map +1 -0
  105. package/dest/mem_pools/tx_pool_v2/eviction/low_priority_pre_add_rule.js +73 -0
  106. package/dest/mem_pools/tx_pool_v2/eviction/nullifier_conflict_rule.d.ts +15 -0
  107. package/dest/mem_pools/tx_pool_v2/eviction/nullifier_conflict_rule.d.ts.map +1 -0
  108. package/dest/mem_pools/tx_pool_v2/eviction/nullifier_conflict_rule.js +19 -0
  109. package/dest/mem_pools/tx_pool_v2/index.d.ts +6 -0
  110. package/dest/mem_pools/tx_pool_v2/index.d.ts.map +1 -0
  111. package/dest/mem_pools/tx_pool_v2/index.js +5 -0
  112. package/dest/mem_pools/tx_pool_v2/instrumentation.d.ts +15 -0
  113. package/dest/mem_pools/tx_pool_v2/instrumentation.d.ts.map +1 -0
  114. package/dest/mem_pools/tx_pool_v2/instrumentation.js +43 -0
  115. package/dest/mem_pools/tx_pool_v2/interfaces.d.ts +211 -0
  116. package/dest/mem_pools/tx_pool_v2/interfaces.d.ts.map +1 -0
  117. package/dest/mem_pools/tx_pool_v2/interfaces.js +9 -0
  118. package/dest/mem_pools/tx_pool_v2/tx_metadata.d.ts +97 -0
  119. package/dest/mem_pools/tx_pool_v2/tx_metadata.d.ts.map +1 -0
  120. package/dest/mem_pools/tx_pool_v2/tx_metadata.js +152 -0
  121. package/dest/mem_pools/tx_pool_v2/tx_pool_bench_metrics.d.ts +26 -0
  122. package/dest/mem_pools/tx_pool_v2/tx_pool_bench_metrics.d.ts.map +1 -0
  123. package/dest/mem_pools/tx_pool_v2/tx_pool_bench_metrics.js +70 -0
  124. package/dest/mem_pools/tx_pool_v2/tx_pool_indices.d.ts +108 -0
  125. package/dest/mem_pools/tx_pool_v2/tx_pool_indices.d.ts.map +1 -0
  126. package/dest/mem_pools/tx_pool_v2/tx_pool_indices.js +355 -0
  127. package/dest/mem_pools/tx_pool_v2/tx_pool_v2.d.ts +60 -0
  128. package/dest/mem_pools/tx_pool_v2/tx_pool_v2.d.ts.map +1 -0
  129. package/dest/mem_pools/tx_pool_v2/tx_pool_v2.js +161 -0
  130. package/dest/mem_pools/tx_pool_v2/tx_pool_v2_impl.d.ts +77 -0
  131. package/dest/mem_pools/tx_pool_v2/tx_pool_v2_impl.d.ts.map +1 -0
  132. package/dest/mem_pools/tx_pool_v2/tx_pool_v2_impl.js +896 -0
  133. package/dest/msg_validators/attestation_validator/attestation_validator.d.ts +3 -3
  134. package/dest/msg_validators/attestation_validator/attestation_validator.d.ts.map +1 -1
  135. package/dest/msg_validators/attestation_validator/attestation_validator.js +41 -10
  136. package/dest/msg_validators/attestation_validator/fisherman_attestation_validator.d.ts +5 -5
  137. package/dest/msg_validators/attestation_validator/fisherman_attestation_validator.d.ts.map +1 -1
  138. package/dest/msg_validators/attestation_validator/fisherman_attestation_validator.js +18 -6
  139. package/dest/msg_validators/clock_tolerance.d.ts +21 -0
  140. package/dest/msg_validators/clock_tolerance.d.ts.map +1 -0
  141. package/dest/msg_validators/clock_tolerance.js +37 -0
  142. package/dest/msg_validators/proposal_validator/proposal_validator.d.ts +3 -3
  143. package/dest/msg_validators/proposal_validator/proposal_validator.d.ts.map +1 -1
  144. package/dest/msg_validators/proposal_validator/proposal_validator.js +55 -31
  145. package/dest/msg_validators/proposal_validator/proposal_validator_test_suite.d.ts +3 -3
  146. package/dest/msg_validators/proposal_validator/proposal_validator_test_suite.d.ts.map +1 -1
  147. package/dest/msg_validators/proposal_validator/proposal_validator_test_suite.js +93 -64
  148. package/dest/msg_validators/tx_validator/aggregate_tx_validator.d.ts +3 -3
  149. package/dest/msg_validators/tx_validator/aggregate_tx_validator.d.ts.map +1 -1
  150. package/dest/msg_validators/tx_validator/archive_cache.d.ts +3 -3
  151. package/dest/msg_validators/tx_validator/archive_cache.d.ts.map +1 -1
  152. package/dest/msg_validators/tx_validator/archive_cache.js +1 -1
  153. package/dest/msg_validators/tx_validator/block_header_validator.d.ts +20 -6
  154. package/dest/msg_validators/tx_validator/block_header_validator.d.ts.map +1 -1
  155. package/dest/msg_validators/tx_validator/block_header_validator.js +4 -3
  156. package/dest/msg_validators/tx_validator/data_validator.d.ts +3 -1
  157. package/dest/msg_validators/tx_validator/data_validator.d.ts.map +1 -1
  158. package/dest/msg_validators/tx_validator/data_validator.js +4 -1
  159. package/dest/msg_validators/tx_validator/double_spend_validator.d.ts +15 -4
  160. package/dest/msg_validators/tx_validator/double_spend_validator.d.ts.map +1 -1
  161. package/dest/msg_validators/tx_validator/double_spend_validator.js +7 -6
  162. package/dest/msg_validators/tx_validator/factory.d.ts +8 -3
  163. package/dest/msg_validators/tx_validator/factory.d.ts.map +1 -1
  164. package/dest/msg_validators/tx_validator/factory.js +21 -11
  165. package/dest/msg_validators/tx_validator/fee_payer_balance.d.ts +10 -0
  166. package/dest/msg_validators/tx_validator/fee_payer_balance.d.ts.map +1 -0
  167. package/dest/msg_validators/tx_validator/fee_payer_balance.js +20 -0
  168. package/dest/msg_validators/tx_validator/gas_validator.d.ts +3 -2
  169. package/dest/msg_validators/tx_validator/gas_validator.d.ts.map +1 -1
  170. package/dest/msg_validators/tx_validator/gas_validator.js +14 -19
  171. package/dest/msg_validators/tx_validator/index.d.ts +2 -1
  172. package/dest/msg_validators/tx_validator/index.d.ts.map +1 -1
  173. package/dest/msg_validators/tx_validator/index.js +1 -0
  174. package/dest/msg_validators/tx_validator/metadata_validator.d.ts +3 -2
  175. package/dest/msg_validators/tx_validator/metadata_validator.d.ts.map +1 -1
  176. package/dest/msg_validators/tx_validator/metadata_validator.js +2 -2
  177. package/dest/msg_validators/tx_validator/phases_validator.d.ts +3 -2
  178. package/dest/msg_validators/tx_validator/phases_validator.d.ts.map +1 -1
  179. package/dest/msg_validators/tx_validator/phases_validator.js +3 -3
  180. package/dest/msg_validators/tx_validator/size_validator.d.ts +8 -0
  181. package/dest/msg_validators/tx_validator/size_validator.d.ts.map +1 -0
  182. package/dest/msg_validators/tx_validator/size_validator.js +23 -0
  183. package/dest/msg_validators/tx_validator/timestamp_validator.d.ts +22 -5
  184. package/dest/msg_validators/tx_validator/timestamp_validator.d.ts.map +1 -1
  185. package/dest/msg_validators/tx_validator/timestamp_validator.js +8 -8
  186. package/dest/msg_validators/tx_validator/tx_permitted_validator.d.ts +3 -2
  187. package/dest/msg_validators/tx_validator/tx_permitted_validator.d.ts.map +1 -1
  188. package/dest/msg_validators/tx_validator/tx_permitted_validator.js +2 -2
  189. package/dest/msg_validators/tx_validator/tx_proof_validator.d.ts +3 -2
  190. package/dest/msg_validators/tx_validator/tx_proof_validator.d.ts.map +1 -1
  191. package/dest/msg_validators/tx_validator/tx_proof_validator.js +2 -2
  192. package/dest/services/data_store.d.ts +1 -1
  193. package/dest/services/data_store.d.ts.map +1 -1
  194. package/dest/services/data_store.js +10 -6
  195. package/dest/services/discv5/discV5_service.js +1 -1
  196. package/dest/services/dummy_service.d.ts +24 -3
  197. package/dest/services/dummy_service.d.ts.map +1 -1
  198. package/dest/services/dummy_service.js +48 -0
  199. package/dest/services/encoding.d.ts +2 -2
  200. package/dest/services/encoding.d.ts.map +1 -1
  201. package/dest/services/encoding.js +6 -6
  202. package/dest/services/gossipsub/index.d.ts +3 -0
  203. package/dest/services/gossipsub/index.d.ts.map +1 -0
  204. package/dest/services/gossipsub/index.js +2 -0
  205. package/dest/services/gossipsub/scoring.d.ts +21 -3
  206. package/dest/services/gossipsub/scoring.d.ts.map +1 -1
  207. package/dest/services/gossipsub/scoring.js +24 -7
  208. package/dest/services/gossipsub/topic_score_params.d.ts +173 -0
  209. package/dest/services/gossipsub/topic_score_params.d.ts.map +1 -0
  210. package/dest/services/gossipsub/topic_score_params.js +346 -0
  211. package/dest/services/index.d.ts +2 -1
  212. package/dest/services/index.d.ts.map +1 -1
  213. package/dest/services/index.js +1 -0
  214. package/dest/services/libp2p/instrumentation.d.ts +1 -1
  215. package/dest/services/libp2p/instrumentation.d.ts.map +1 -1
  216. package/dest/services/libp2p/instrumentation.js +19 -8
  217. package/dest/services/libp2p/libp2p_service.d.ts +92 -36
  218. package/dest/services/libp2p/libp2p_service.d.ts.map +1 -1
  219. package/dest/services/libp2p/libp2p_service.js +413 -305
  220. package/dest/services/peer-manager/metrics.d.ts +2 -2
  221. package/dest/services/peer-manager/metrics.d.ts.map +1 -1
  222. package/dest/services/peer-manager/metrics.js +20 -5
  223. package/dest/services/peer-manager/peer_scoring.d.ts +1 -1
  224. package/dest/services/peer-manager/peer_scoring.d.ts.map +1 -1
  225. package/dest/services/peer-manager/peer_scoring.js +33 -4
  226. package/dest/services/reqresp/batch-tx-requester/batch_tx_requester.d.ts +48 -0
  227. package/dest/services/reqresp/batch-tx-requester/batch_tx_requester.d.ts.map +1 -0
  228. package/dest/services/reqresp/batch-tx-requester/batch_tx_requester.js +562 -0
  229. package/dest/services/reqresp/batch-tx-requester/config.d.ts +17 -0
  230. package/dest/services/reqresp/batch-tx-requester/config.d.ts.map +1 -0
  231. package/dest/services/reqresp/batch-tx-requester/config.js +27 -0
  232. package/dest/services/reqresp/batch-tx-requester/interface.d.ts +46 -0
  233. package/dest/services/reqresp/batch-tx-requester/interface.d.ts.map +1 -0
  234. package/dest/services/reqresp/batch-tx-requester/interface.js +1 -0
  235. package/dest/services/reqresp/batch-tx-requester/missing_txs.d.ts +34 -0
  236. package/dest/services/reqresp/batch-tx-requester/missing_txs.d.ts.map +1 -0
  237. package/dest/services/reqresp/batch-tx-requester/missing_txs.js +130 -0
  238. package/dest/services/reqresp/batch-tx-requester/peer_collection.d.ts +54 -0
  239. package/dest/services/reqresp/batch-tx-requester/peer_collection.d.ts.map +1 -0
  240. package/dest/services/reqresp/batch-tx-requester/peer_collection.js +139 -0
  241. package/dest/services/reqresp/batch-tx-requester/tx_validator.d.ts +20 -0
  242. package/dest/services/reqresp/batch-tx-requester/tx_validator.d.ts.map +1 -0
  243. package/dest/services/reqresp/batch-tx-requester/tx_validator.js +21 -0
  244. package/dest/services/reqresp/connection-sampler/batch_connection_sampler.d.ts +22 -3
  245. package/dest/services/reqresp/connection-sampler/batch_connection_sampler.d.ts.map +1 -1
  246. package/dest/services/reqresp/connection-sampler/batch_connection_sampler.js +63 -4
  247. package/dest/services/reqresp/connection-sampler/connection_sampler.d.ts +2 -1
  248. package/dest/services/reqresp/connection-sampler/connection_sampler.d.ts.map +1 -1
  249. package/dest/services/reqresp/connection-sampler/connection_sampler.js +12 -0
  250. package/dest/services/reqresp/constants.d.ts +12 -0
  251. package/dest/services/reqresp/constants.d.ts.map +1 -0
  252. package/dest/services/reqresp/constants.js +7 -0
  253. package/dest/services/reqresp/interface.d.ts +12 -1
  254. package/dest/services/reqresp/interface.d.ts.map +1 -1
  255. package/dest/services/reqresp/interface.js +15 -1
  256. package/dest/services/reqresp/metrics.d.ts +6 -5
  257. package/dest/services/reqresp/metrics.d.ts.map +1 -1
  258. package/dest/services/reqresp/metrics.js +17 -5
  259. package/dest/services/reqresp/protocols/block_txs/bitvector.d.ts +5 -1
  260. package/dest/services/reqresp/protocols/block_txs/bitvector.d.ts.map +1 -1
  261. package/dest/services/reqresp/protocols/block_txs/bitvector.js +12 -0
  262. package/dest/services/reqresp/protocols/block_txs/block_txs_handler.d.ts +7 -5
  263. package/dest/services/reqresp/protocols/block_txs/block_txs_handler.d.ts.map +1 -1
  264. package/dest/services/reqresp/protocols/block_txs/block_txs_handler.js +27 -9
  265. package/dest/services/reqresp/protocols/block_txs/block_txs_reqresp.d.ts +29 -6
  266. package/dest/services/reqresp/protocols/block_txs/block_txs_reqresp.d.ts.map +1 -1
  267. package/dest/services/reqresp/protocols/block_txs/block_txs_reqresp.js +59 -13
  268. package/dest/services/reqresp/protocols/status.d.ts +1 -1
  269. package/dest/services/reqresp/protocols/status.d.ts.map +1 -1
  270. package/dest/services/reqresp/protocols/status.js +2 -1
  271. package/dest/services/reqresp/protocols/tx.d.ts +7 -1
  272. package/dest/services/reqresp/protocols/tx.d.ts.map +1 -1
  273. package/dest/services/reqresp/protocols/tx.js +20 -0
  274. package/dest/services/reqresp/reqresp.d.ts +6 -1
  275. package/dest/services/reqresp/reqresp.d.ts.map +1 -1
  276. package/dest/services/reqresp/reqresp.js +69 -26
  277. package/dest/services/service.d.ts +41 -2
  278. package/dest/services/service.d.ts.map +1 -1
  279. package/dest/services/tx_collection/config.d.ts +22 -1
  280. package/dest/services/tx_collection/config.d.ts.map +1 -1
  281. package/dest/services/tx_collection/config.js +55 -1
  282. package/dest/services/tx_collection/fast_tx_collection.d.ts +7 -4
  283. package/dest/services/tx_collection/fast_tx_collection.d.ts.map +1 -1
  284. package/dest/services/tx_collection/fast_tx_collection.js +71 -44
  285. package/dest/services/tx_collection/file_store_tx_collection.d.ts +53 -0
  286. package/dest/services/tx_collection/file_store_tx_collection.d.ts.map +1 -0
  287. package/dest/services/tx_collection/file_store_tx_collection.js +167 -0
  288. package/dest/services/tx_collection/file_store_tx_source.d.ts +37 -0
  289. package/dest/services/tx_collection/file_store_tx_source.d.ts.map +1 -0
  290. package/dest/services/tx_collection/file_store_tx_source.js +90 -0
  291. package/dest/services/tx_collection/index.d.ts +3 -1
  292. package/dest/services/tx_collection/index.d.ts.map +1 -1
  293. package/dest/services/tx_collection/index.js +2 -0
  294. package/dest/services/tx_collection/instrumentation.d.ts +1 -1
  295. package/dest/services/tx_collection/instrumentation.d.ts.map +1 -1
  296. package/dest/services/tx_collection/instrumentation.js +10 -2
  297. package/dest/services/tx_collection/missing_txs_tracker.d.ts +32 -0
  298. package/dest/services/tx_collection/missing_txs_tracker.d.ts.map +1 -0
  299. package/dest/services/tx_collection/missing_txs_tracker.js +27 -0
  300. package/dest/services/tx_collection/proposal_tx_collector.d.ts +49 -0
  301. package/dest/services/tx_collection/proposal_tx_collector.d.ts.map +1 -0
  302. package/dest/services/tx_collection/proposal_tx_collector.js +50 -0
  303. package/dest/services/tx_collection/slow_tx_collection.d.ts +9 -5
  304. package/dest/services/tx_collection/slow_tx_collection.d.ts.map +1 -1
  305. package/dest/services/tx_collection/slow_tx_collection.js +60 -26
  306. package/dest/services/tx_collection/tx_collection.d.ts +29 -16
  307. package/dest/services/tx_collection/tx_collection.d.ts.map +1 -1
  308. package/dest/services/tx_collection/tx_collection.js +79 -7
  309. package/dest/services/tx_collection/tx_collection_sink.d.ts +18 -8
  310. package/dest/services/tx_collection/tx_collection_sink.d.ts.map +1 -1
  311. package/dest/services/tx_collection/tx_collection_sink.js +26 -29
  312. package/dest/services/tx_collection/tx_source.d.ts +8 -3
  313. package/dest/services/tx_collection/tx_source.d.ts.map +1 -1
  314. package/dest/services/tx_collection/tx_source.js +19 -2
  315. package/dest/services/tx_file_store/config.d.ts +16 -0
  316. package/dest/services/tx_file_store/config.d.ts.map +1 -0
  317. package/dest/services/tx_file_store/config.js +22 -0
  318. package/dest/services/tx_file_store/index.d.ts +4 -0
  319. package/dest/services/tx_file_store/index.d.ts.map +1 -0
  320. package/dest/services/tx_file_store/index.js +3 -0
  321. package/dest/services/tx_file_store/instrumentation.d.ts +15 -0
  322. package/dest/services/tx_file_store/instrumentation.d.ts.map +1 -0
  323. package/dest/services/tx_file_store/instrumentation.js +29 -0
  324. package/dest/services/tx_file_store/tx_file_store.d.ts +48 -0
  325. package/dest/services/tx_file_store/tx_file_store.d.ts.map +1 -0
  326. package/dest/services/tx_file_store/tx_file_store.js +152 -0
  327. package/dest/services/tx_provider.d.ts +5 -5
  328. package/dest/services/tx_provider.d.ts.map +1 -1
  329. package/dest/services/tx_provider.js +5 -4
  330. package/dest/services/tx_provider_instrumentation.d.ts +1 -1
  331. package/dest/services/tx_provider_instrumentation.d.ts.map +1 -1
  332. package/dest/services/tx_provider_instrumentation.js +5 -5
  333. package/dest/test-helpers/index.d.ts +3 -1
  334. package/dest/test-helpers/index.d.ts.map +1 -1
  335. package/dest/test-helpers/index.js +2 -0
  336. package/dest/test-helpers/make-test-p2p-clients.d.ts +3 -3
  337. package/dest/test-helpers/make-test-p2p-clients.d.ts.map +1 -1
  338. package/dest/test-helpers/mock-pubsub.d.ts +29 -2
  339. package/dest/test-helpers/mock-pubsub.d.ts.map +1 -1
  340. package/dest/test-helpers/mock-pubsub.js +103 -2
  341. package/dest/test-helpers/reqresp-nodes.d.ts +1 -1
  342. package/dest/test-helpers/reqresp-nodes.d.ts.map +1 -1
  343. package/dest/test-helpers/reqresp-nodes.js +2 -1
  344. package/dest/test-helpers/test_tx_provider.d.ts +40 -0
  345. package/dest/test-helpers/test_tx_provider.d.ts.map +1 -0
  346. package/dest/test-helpers/test_tx_provider.js +41 -0
  347. package/dest/test-helpers/testbench-utils.d.ts +163 -0
  348. package/dest/test-helpers/testbench-utils.d.ts.map +1 -0
  349. package/dest/test-helpers/testbench-utils.js +366 -0
  350. package/dest/testbench/p2p_client_testbench_worker.d.ts +28 -2
  351. package/dest/testbench/p2p_client_testbench_worker.d.ts.map +1 -1
  352. package/dest/testbench/p2p_client_testbench_worker.js +215 -135
  353. package/dest/testbench/worker_client_manager.d.ts +51 -6
  354. package/dest/testbench/worker_client_manager.d.ts.map +1 -1
  355. package/dest/testbench/worker_client_manager.js +226 -44
  356. package/dest/util.d.ts +2 -2
  357. package/dest/util.d.ts.map +1 -1
  358. package/package.json +16 -16
  359. package/src/bootstrap/bootstrap.ts +7 -4
  360. package/src/client/factory.ts +96 -24
  361. package/src/client/interface.ts +59 -23
  362. package/src/client/p2p_client.ts +201 -172
  363. package/src/client/test/tx_proposal_collector/README.md +227 -0
  364. package/src/client/test/tx_proposal_collector/proposal_tx_collector_worker.ts +346 -0
  365. package/src/client/test/tx_proposal_collector/proposal_tx_collector_worker_protocol.ts +43 -0
  366. package/src/config.ts +49 -13
  367. package/src/errors/tx-pool.error.ts +12 -0
  368. package/src/index.ts +1 -0
  369. package/src/mem_pools/attestation_pool/attestation_pool.ts +496 -91
  370. package/src/mem_pools/attestation_pool/attestation_pool_test_suite.ts +460 -112
  371. package/src/mem_pools/attestation_pool/index.ts +9 -2
  372. package/src/mem_pools/attestation_pool/mocks.ts +7 -4
  373. package/src/mem_pools/index.ts +4 -1
  374. package/src/mem_pools/instrumentation.ts +2 -1
  375. package/src/mem_pools/interface.ts +4 -4
  376. package/src/mem_pools/tx_pool/README.md +29 -14
  377. package/src/mem_pools/tx_pool/aztec_kv_tx_pool.ts +130 -75
  378. package/src/mem_pools/tx_pool/eviction/eviction_manager.ts +66 -5
  379. package/src/mem_pools/tx_pool/eviction/eviction_strategy.ts +119 -4
  380. package/src/mem_pools/tx_pool/eviction/fee_payer_balance_eviction_rule.ts +162 -0
  381. package/src/mem_pools/tx_pool/eviction/invalid_txs_after_mining_rule.ts +3 -3
  382. package/src/mem_pools/tx_pool/eviction/invalid_txs_after_reorg_rule.ts +4 -2
  383. package/src/mem_pools/tx_pool/eviction/nullifier_conflict_pre_add_rule.ts +75 -0
  384. package/src/mem_pools/tx_pool_v2/README.md +275 -0
  385. package/src/mem_pools/tx_pool_v2/archive/index.ts +1 -0
  386. package/src/mem_pools/tx_pool_v2/archive/tx_archive.ts +120 -0
  387. package/src/mem_pools/tx_pool_v2/deleted_pool.ts +321 -0
  388. package/src/mem_pools/tx_pool_v2/eviction/eviction_manager.ts +160 -0
  389. package/src/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.ts +121 -0
  390. package/src/mem_pools/tx_pool_v2/eviction/fee_payer_balance_pre_add_rule.ts +122 -0
  391. package/src/mem_pools/tx_pool_v2/eviction/index.ts +27 -0
  392. package/src/mem_pools/tx_pool_v2/eviction/interfaces.ts +209 -0
  393. package/src/mem_pools/tx_pool_v2/eviction/invalid_txs_after_mining_rule.ts +74 -0
  394. package/src/mem_pools/tx_pool_v2/eviction/invalid_txs_after_reorg_rule.ts +101 -0
  395. package/src/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.ts +91 -0
  396. package/src/mem_pools/tx_pool_v2/eviction/low_priority_pre_add_rule.ts +90 -0
  397. package/src/mem_pools/tx_pool_v2/eviction/nullifier_conflict_rule.ts +31 -0
  398. package/src/mem_pools/tx_pool_v2/index.ts +12 -0
  399. package/src/mem_pools/tx_pool_v2/instrumentation.ts +69 -0
  400. package/src/mem_pools/tx_pool_v2/interfaces.ts +242 -0
  401. package/src/mem_pools/tx_pool_v2/tx_metadata.ts +242 -0
  402. package/src/mem_pools/tx_pool_v2/tx_pool_bench_metrics.ts +77 -0
  403. package/src/mem_pools/tx_pool_v2/tx_pool_indices.ts +444 -0
  404. package/src/mem_pools/tx_pool_v2/tx_pool_v2.ts +223 -0
  405. package/src/mem_pools/tx_pool_v2/tx_pool_v2_impl.ts +1069 -0
  406. package/src/msg_validators/attestation_validator/attestation_validator.ts +26 -14
  407. package/src/msg_validators/attestation_validator/fisherman_attestation_validator.ts +16 -10
  408. package/src/msg_validators/clock_tolerance.ts +51 -0
  409. package/src/msg_validators/proposal_validator/proposal_validator.ts +31 -31
  410. package/src/msg_validators/proposal_validator/proposal_validator_test_suite.ts +91 -67
  411. package/src/msg_validators/tx_validator/aggregate_tx_validator.ts +2 -2
  412. package/src/msg_validators/tx_validator/archive_cache.ts +3 -3
  413. package/src/msg_validators/tx_validator/block_header_validator.ts +21 -8
  414. package/src/msg_validators/tx_validator/data_validator.ts +6 -2
  415. package/src/msg_validators/tx_validator/double_spend_validator.ts +15 -9
  416. package/src/msg_validators/tx_validator/factory.ts +64 -23
  417. package/src/msg_validators/tx_validator/fee_payer_balance.ts +40 -0
  418. package/src/msg_validators/tx_validator/gas_validator.ts +28 -31
  419. package/src/msg_validators/tx_validator/index.ts +1 -0
  420. package/src/msg_validators/tx_validator/metadata_validator.ts +6 -3
  421. package/src/msg_validators/tx_validator/phases_validator.ts +5 -3
  422. package/src/msg_validators/tx_validator/size_validator.ts +22 -0
  423. package/src/msg_validators/tx_validator/timestamp_validator.ts +29 -21
  424. package/src/msg_validators/tx_validator/tx_permitted_validator.ts +8 -3
  425. package/src/msg_validators/tx_validator/tx_proof_validator.ts +8 -3
  426. package/src/services/data_store.ts +10 -7
  427. package/src/services/discv5/discV5_service.ts +1 -1
  428. package/src/services/dummy_service.ts +62 -1
  429. package/src/services/encoding.ts +6 -6
  430. package/src/services/gossipsub/README.md +641 -0
  431. package/src/services/gossipsub/index.ts +2 -0
  432. package/src/services/gossipsub/scoring.ts +29 -5
  433. package/src/services/gossipsub/topic_score_params.ts +487 -0
  434. package/src/services/index.ts +1 -0
  435. package/src/services/libp2p/instrumentation.ts +20 -7
  436. package/src/services/libp2p/libp2p_service.ts +442 -316
  437. package/src/services/peer-manager/metrics.ts +21 -4
  438. package/src/services/peer-manager/peer_scoring.ts +29 -1
  439. package/src/services/reqresp/batch-tx-requester/README.md +305 -0
  440. package/src/services/reqresp/batch-tx-requester/batch_tx_requester.ts +706 -0
  441. package/src/services/reqresp/batch-tx-requester/config.ts +40 -0
  442. package/src/services/reqresp/batch-tx-requester/interface.ts +53 -0
  443. package/src/services/reqresp/batch-tx-requester/missing_txs.ts +161 -0
  444. package/src/services/reqresp/batch-tx-requester/peer_collection.ts +205 -0
  445. package/src/services/reqresp/batch-tx-requester/tx_validator.ts +37 -0
  446. package/src/services/reqresp/connection-sampler/batch_connection_sampler.ts +65 -4
  447. package/src/services/reqresp/connection-sampler/connection_sampler.ts +16 -0
  448. package/src/services/reqresp/constants.ts +14 -0
  449. package/src/services/reqresp/interface.ts +29 -1
  450. package/src/services/reqresp/metrics.ts +34 -9
  451. package/src/services/reqresp/protocols/block_txs/bitvector.ts +16 -0
  452. package/src/services/reqresp/protocols/block_txs/block_txs_handler.ts +35 -12
  453. package/src/services/reqresp/protocols/block_txs/block_txs_reqresp.ts +74 -9
  454. package/src/services/reqresp/protocols/status.ts +5 -3
  455. package/src/services/reqresp/protocols/tx.ts +22 -0
  456. package/src/services/reqresp/reqresp.ts +79 -22
  457. package/src/services/service.ts +54 -1
  458. package/src/services/tx_collection/config.ts +83 -1
  459. package/src/services/tx_collection/fast_tx_collection.ts +93 -47
  460. package/src/services/tx_collection/file_store_tx_collection.ts +202 -0
  461. package/src/services/tx_collection/file_store_tx_source.ts +117 -0
  462. package/src/services/tx_collection/index.ts +6 -0
  463. package/src/services/tx_collection/instrumentation.ts +17 -2
  464. package/src/services/tx_collection/missing_txs_tracker.ts +52 -0
  465. package/src/services/tx_collection/proposal_tx_collector.ts +113 -0
  466. package/src/services/tx_collection/slow_tx_collection.ts +68 -35
  467. package/src/services/tx_collection/tx_collection.ts +121 -24
  468. package/src/services/tx_collection/tx_collection_sink.ts +30 -34
  469. package/src/services/tx_collection/tx_source.ts +22 -3
  470. package/src/services/tx_file_store/config.ts +37 -0
  471. package/src/services/tx_file_store/index.ts +3 -0
  472. package/src/services/tx_file_store/instrumentation.ts +36 -0
  473. package/src/services/tx_file_store/tx_file_store.ts +175 -0
  474. package/src/services/tx_provider.ts +10 -9
  475. package/src/services/tx_provider_instrumentation.ts +11 -5
  476. package/src/test-helpers/index.ts +2 -0
  477. package/src/test-helpers/make-test-p2p-clients.ts +3 -3
  478. package/src/test-helpers/mock-pubsub.ts +143 -3
  479. package/src/test-helpers/reqresp-nodes.ts +2 -1
  480. package/src/test-helpers/test_tx_provider.ts +64 -0
  481. package/src/test-helpers/testbench-utils.ts +430 -0
  482. package/src/testbench/p2p_client_testbench_worker.ts +332 -130
  483. package/src/testbench/worker_client_manager.ts +304 -47
  484. package/src/util.ts +7 -1
  485. package/dest/mem_pools/attestation_pool/kv_attestation_pool.d.ts +0 -40
  486. package/dest/mem_pools/attestation_pool/kv_attestation_pool.d.ts.map +0 -1
  487. package/dest/mem_pools/attestation_pool/kv_attestation_pool.js +0 -218
  488. package/dest/mem_pools/attestation_pool/memory_attestation_pool.d.ts +0 -31
  489. package/dest/mem_pools/attestation_pool/memory_attestation_pool.d.ts.map +0 -1
  490. package/dest/mem_pools/attestation_pool/memory_attestation_pool.js +0 -180
  491. package/dest/mem_pools/tx_pool/eviction/insufficient_fee_payer_balance_rule.d.ts +0 -15
  492. package/dest/mem_pools/tx_pool/eviction/insufficient_fee_payer_balance_rule.d.ts.map +0 -1
  493. package/dest/mem_pools/tx_pool/eviction/insufficient_fee_payer_balance_rule.js +0 -88
  494. package/src/mem_pools/attestation_pool/kv_attestation_pool.ts +0 -320
  495. package/src/mem_pools/attestation_pool/memory_attestation_pool.ts +0 -264
  496. package/src/mem_pools/tx_pool/eviction/insufficient_fee_payer_balance_rule.ts +0 -108
@@ -370,14 +370,11 @@ function applyDecs2203RFactory() {
370
370
  function _apply_decs_2203_r(targetClass, memberDecs, classDecs, parentClass) {
371
371
  return (_apply_decs_2203_r = applyDecs2203RFactory())(targetClass, memberDecs, classDecs, parentClass);
372
372
  }
373
- var _dec, _dec1, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _initProto;
373
+ var _dec, _dec1, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _initProto;
374
374
  import { BlockNumber } from '@aztec/foundation/branded-types';
375
- import { randomInt } from '@aztec/foundation/crypto/random';
376
- import { Fr } from '@aztec/foundation/curves/bn254';
377
375
  import { createLibp2pComponentLogger, createLogger } from '@aztec/foundation/log';
378
376
  import { RunningPromise } from '@aztec/foundation/running-promise';
379
377
  import { Timer } from '@aztec/foundation/timer';
380
- import { getVKTreeRoot } from '@aztec/noir-protocol-circuits-types/vk-tree';
381
378
  import { protocolContractsHash } from '@aztec/protocol-contracts';
382
379
  import { GasFees } from '@aztec/stdlib/gas';
383
380
  import { BlockProposal, CheckpointAttestation, CheckpointProposal, P2PClientType, P2PMessage, PeerErrorSeverity, TopicType, createTopicString, getTopicsForClientAndConfig, metricsTopicStrToLabels } from '@aztec/stdlib/p2p';
@@ -386,7 +383,7 @@ import { Tx } from '@aztec/stdlib/tx';
386
383
  import { compressComponentVersions } from '@aztec/stdlib/versioning';
387
384
  import { Attributes, OtelMetricsAdapter, SpanStatusCode, WithTracer, trackSpan } from '@aztec/telemetry-client';
388
385
  import { gossipsub } from '@chainsafe/libp2p-gossipsub';
389
- import { createPeerScoreParams, createTopicScoreParams } from '@chainsafe/libp2p-gossipsub/score';
386
+ import { createPeerScoreParams } from '@chainsafe/libp2p-gossipsub/score';
390
387
  import { SignaturePolicy } from '@chainsafe/libp2p-gossipsub/types';
391
388
  import { noise } from '@chainsafe/libp2p-noise';
392
389
  import { yamux } from '@chainsafe/libp2p-yamux';
@@ -397,51 +394,50 @@ import { mplex } from '@libp2p/mplex';
397
394
  import { tcp } from '@libp2p/tcp';
398
395
  import { ENR } from '@nethermindeth/enr';
399
396
  import { createLibp2p } from 'libp2p';
400
- import { ProposalSlotCapExceededError } from '../../errors/attestation-pool.error.js';
401
- import { BlockProposalValidator, CheckpointAttestationValidator, CheckpointProposalValidator, FishermanAttestationValidator } from '../../msg_validators/index.js';
397
+ import { BlockProposalValidator, CheckpointAttestationValidator, CheckpointProposalValidator, DoubleSpendTxValidator, FishermanAttestationValidator, getDefaultAllowedSetupFunctions } from '../../msg_validators/index.js';
402
398
  import { MessageSeenValidator } from '../../msg_validators/msg_seen_validator/msg_seen_validator.js';
403
- import { getDefaultAllowedSetupFunctions } from '../../msg_validators/tx_validator/allowed_public_setup.js';
404
- import { createTxMessageValidators } from '../../msg_validators/tx_validator/factory.js';
405
- import { AggregateTxValidator, DataTxValidator, DoubleSpendTxValidator, MetadataTxValidator, TxProofValidator } from '../../msg_validators/tx_validator/index.js';
399
+ import { createTxMessageValidators, createTxReqRespValidator } from '../../msg_validators/tx_validator/factory.js';
406
400
  import { GossipSubEvent } from '../../types/index.js';
407
401
  import { convertToMultiaddr } from '../../util.js';
408
402
  import { getVersions } from '../../versioning.js';
409
403
  import { AztecDatastore } from '../data_store.js';
410
404
  import { DiscV5Service } from '../discv5/discV5_service.js';
411
405
  import { SnappyTransform, fastMsgIdFn, getMsgIdFn, msgIdToStrFn } from '../encoding.js';
412
- import { gossipScoreThresholds } from '../gossipsub/scoring.js';
406
+ import { APP_SPECIFIC_WEIGHT, gossipScoreThresholds } from '../gossipsub/scoring.js';
407
+ import { createAllTopicScoreParams } from '../gossipsub/topic_score_params.js';
413
408
  import { PeerManager } from '../peer-manager/peer_manager.js';
414
409
  import { PeerScoring } from '../peer-manager/peer_scoring.js';
415
- import { DEFAULT_SUB_PROTOCOL_VALIDATORS, ReqRespSubProtocol, ValidationError } from '../reqresp/interface.js';
416
- import { reqRespBlockTxsHandler } from '../reqresp/protocols/block_txs/block_txs_handler.js';
417
- import { reqGoodbyeHandler } from '../reqresp/protocols/goodbye.js';
418
- import { pingHandler, reqRespBlockHandler, reqRespStatusHandler, reqRespTxHandler } from '../reqresp/protocols/index.js';
410
+ import { DEFAULT_SUB_PROTOCOL_VALIDATORS, ReqRespSubProtocol, ValidationError } from '../reqresp/index.js';
411
+ import { pingHandler, reqGoodbyeHandler, reqRespBlockHandler, reqRespBlockTxsHandler, reqRespStatusHandler, reqRespTxHandler } from '../reqresp/index.js';
419
412
  import { ReqResp } from '../reqresp/reqresp.js';
420
413
  import { P2PInstrumentation } from './instrumentation.js';
421
- _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
414
+ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId, attestation)=>({
415
+ [Attributes.SLOT_NUMBER]: attestation.payload.header.slotNumber.toString()
416
+ })), _dec1 = trackSpan('Libp2pService.validateAndStoreBlockProposal', (_peerId, block)=>({
417
+ [Attributes.BLOCK_NUMBER]: block.blockNumber.toString(),
418
+ [Attributes.SLOT_NUMBER]: block.slotNumber.toString()
419
+ })), _dec2 = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
422
420
  [Attributes.SLOT_NUMBER]: block.slotNumber,
423
421
  [Attributes.BLOCK_ARCHIVE]: block.archive.toString(),
424
422
  [Attributes.P2P_ID]: await block.p2pMessageLoggingIdentifier().then((i)=>i.toString())
425
- })), _dec1 = trackSpan('Libp2pService.processValidCheckpointProposal', async (checkpoint)=>({
423
+ })), _dec3 = trackSpan('Libp2pService.validateAndStoreCheckpointProposal', (_peerId, checkpoint)=>({
424
+ [Attributes.SLOT_NUMBER]: checkpoint.slotNumber.toString()
425
+ })), _dec4 = trackSpan('Libp2pService.processValidCheckpointProposal', async (checkpoint)=>({
426
426
  [Attributes.SLOT_NUMBER]: checkpoint.slotNumber,
427
427
  [Attributes.BLOCK_ARCHIVE]: checkpoint.archive.toString(),
428
428
  [Attributes.P2P_ID]: await checkpoint.p2pMessageLoggingIdentifier().then((i)=>i.toString())
429
- })), _dec2 = trackSpan('Libp2pService.validateRequestedBlockTxs', (request)=>({
430
- [Attributes.BLOCK_HASH]: request.blockHash.toString()
431
- })), _dec3 = trackSpan('Libp2pService.validateRequestedTx', (requestedTxHash, _responseTx)=>({
429
+ })), _dec5 = trackSpan('Libp2pService.validateRequestedBlockTxs', (request)=>({
430
+ [Attributes.BLOCK_ARCHIVE]: request.archiveRoot.toString()
431
+ })), _dec6 = trackSpan('Libp2pService.validateRequestedTx', (requestedTxHash, _responseTx)=>({
432
432
  [Attributes.TX_HASH]: requestedTxHash.toString()
433
- })), _dec4 = trackSpan('Libp2pService.validateRequestedBlock', (requestedBlockNumber, _responseBlock)=>({
433
+ })), _dec7 = trackSpan('Libp2pService.validateRequestedBlock', (requestedBlockNumber, _responseBlock)=>({
434
434
  [Attributes.BLOCK_NUMBER]: requestedBlockNumber.toString()
435
- })), _dec5 = trackSpan('Libp2pService.validatePropagatedTx', (tx)=>({
435
+ })), _dec8 = trackSpan('Libp2pService.validatePropagatedTx', (tx)=>({
436
436
  [Attributes.TX_HASH]: tx.getTxHash().toString()
437
- })), _dec6 = trackSpan('Libp2pService.validateCheckpointAttestation', async (_, attestation)=>({
437
+ })), _dec9 = trackSpan('Libp2pService.validateCheckpointAttestation', async (_, attestation)=>({
438
438
  [Attributes.SLOT_NUMBER]: attestation.payload.header.slotNumber,
439
439
  [Attributes.BLOCK_ARCHIVE]: attestation.archive.toString(),
440
440
  [Attributes.P2P_ID]: await attestation.p2pMessageLoggingIdentifier().then((i)=>i.toString())
441
- })), _dec7 = trackSpan('Libp2pService.validateBlockProposal', (_peerId, block)=>({
442
- [Attributes.SLOT_NUMBER]: block.slotNumber.toString()
443
- })), _dec8 = trackSpan('Libp2pService.validateCheckpointProposal', (_peerId, checkpoint)=>({
444
- [Attributes.SLOT_NUMBER]: checkpoint.slotNumber.toString()
445
441
  }));
446
442
  /**
447
443
  * Lib P2P implementation of the P2PService interface.
@@ -462,47 +458,52 @@ _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
462
458
  [
463
459
  _dec,
464
460
  2,
465
- "processValidBlockProposal"
461
+ "validateAndStoreCheckpointAttestation"
466
462
  ],
467
463
  [
468
464
  _dec1,
469
465
  2,
470
- "processValidCheckpointProposal"
466
+ "validateAndStoreBlockProposal"
471
467
  ],
472
468
  [
473
469
  _dec2,
474
470
  2,
475
- "validateRequestedBlockTxs"
471
+ "processValidBlockProposal"
476
472
  ],
477
473
  [
478
474
  _dec3,
479
475
  2,
480
- "validateRequestedTxs"
476
+ "validateAndStoreCheckpointProposal"
481
477
  ],
482
478
  [
483
479
  _dec4,
484
480
  2,
485
- "validateRequestedBlock"
481
+ "processValidCheckpointProposal"
486
482
  ],
487
483
  [
488
484
  _dec5,
489
485
  2,
490
- "validatePropagatedTx"
486
+ "validateRequestedBlockTxs"
491
487
  ],
492
488
  [
493
489
  _dec6,
494
490
  2,
495
- "validateCheckpointAttestation"
491
+ "validateRequestedTxs"
496
492
  ],
497
493
  [
498
494
  _dec7,
499
495
  2,
500
- "validateBlockProposal"
496
+ "validateRequestedBlock"
501
497
  ],
502
498
  [
503
499
  _dec8,
504
500
  2,
505
- "validateCheckpointProposal"
501
+ "validatePropagatedTx"
502
+ ],
503
+ [
504
+ _dec9,
505
+ 2,
506
+ "validateCheckpointAttestation"
506
507
  ]
507
508
  ], []));
508
509
  }
@@ -515,6 +516,8 @@ _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
515
516
  protocolVersion;
516
517
  topicStrings;
517
518
  feesCache;
519
+ /** Callback invoked when a duplicate proposal is detected (triggers slashing). */ duplicateProposalCallback;
520
+ /** Callback invoked when a duplicate attestation is detected (triggers slashing). */ duplicateAttestationCallback;
518
521
  /**
519
522
  * Callback for when a block is received from a peer.
520
523
  * @param block - The block received from the peer.
@@ -578,8 +581,8 @@ _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
578
581
  const { p2pPort, maxPeerCount, listenAddress } = config;
579
582
  const bindAddrTcp = convertToMultiaddr(listenAddress, p2pPort, 'tcp');
580
583
  const datastore = new AztecDatastore(peerStore);
581
- const otelMetricsAdapter = new OtelMetricsAdapter(telemetry);
582
- const peerDiscoveryService = new DiscV5Service(peerId, config, packageVersion, telemetry, createLogger(`${logger.module}:discv5_service`));
584
+ const otelMetricsAdapter = new OtelMetricsAdapter(telemetry, logger.getBindings());
585
+ const peerDiscoveryService = new DiscV5Service(peerId, config, packageVersion, telemetry, createLogger(`${logger.module}:discv5_service`, logger.getBindings()));
583
586
  // Seed libp2p's bootstrap discovery with private and trusted peers
584
587
  const bootstrapNodes = [
585
588
  ...config.privatePeers,
@@ -593,10 +596,6 @@ _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
593
596
  }
594
597
  const versions = getVersions(config);
595
598
  const protocolVersion = compressComponentVersions(versions);
596
- const txTopic = createTopicString(TopicType.tx, protocolVersion);
597
- const blockProposalTopic = createTopicString(TopicType.block_proposal, protocolVersion);
598
- const checkpointProposalTopic = createTopicString(TopicType.checkpoint_proposal, protocolVersion);
599
- const checkpointAttestationTopic = createTopicString(TopicType.checkpoint_attestation, protocolVersion);
600
599
  const preferredPeersEnrs = config.preferredPeers.map((enr)=>ENR.decodeTxt(enr));
601
600
  const directPeers = (await Promise.all(preferredPeersEnrs.map(async (enr)=>{
602
601
  const peerId = await enr.peerId();
@@ -614,6 +613,15 @@ _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
614
613
  const announceTcpMultiaddr = config.p2pIp ? [
615
614
  convertToMultiaddr(config.p2pIp, p2pPort, 'tcp')
616
615
  ] : [];
616
+ // Create dynamic topic score params based on network configuration
617
+ const l1Constants = epochCache.getL1Constants();
618
+ const topicScoreParams = createAllTopicScoreParams(protocolVersion, {
619
+ slotDurationMs: l1Constants.slotDuration * 1000,
620
+ heartbeatIntervalMs: config.gossipsubInterval,
621
+ targetCommitteeSize: l1Constants.targetCommitteeSize,
622
+ blockDurationMs: config.blockDurationMs,
623
+ expectedBlockProposalsPerSlot: config.expectedBlockProposalsPerSlot
624
+ });
617
625
  const node = await createLibp2p({
618
626
  start: false,
619
627
  peerId,
@@ -714,41 +722,24 @@ _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
714
722
  scoreParams: createPeerScoreParams({
715
723
  // IPColocation factor can be disabled for local testing - default to -5
716
724
  IPColocationFactorWeight: config.debugDisableColocationPenalty ? 0 : -5.0,
717
- topics: {
718
- [txTopic]: createTopicScoreParams({
719
- topicWeight: 1,
720
- invalidMessageDeliveriesWeight: -20,
721
- invalidMessageDeliveriesDecay: 0.5
722
- }),
723
- [blockProposalTopic]: createTopicScoreParams({
724
- topicWeight: 1,
725
- invalidMessageDeliveriesWeight: -20,
726
- invalidMessageDeliveriesDecay: 0.5
727
- }),
728
- [checkpointProposalTopic]: createTopicScoreParams({
729
- topicWeight: 1,
730
- invalidMessageDeliveriesWeight: -20,
731
- invalidMessageDeliveriesDecay: 0.5
732
- }),
733
- [checkpointAttestationTopic]: createTopicScoreParams({
734
- topicWeight: 1,
735
- invalidMessageDeliveriesWeight: -20,
736
- invalidMessageDeliveriesDecay: 0.5
737
- })
738
- }
725
+ topics: topicScoreParams
739
726
  })
740
727
  }),
741
728
  components: (components)=>({
742
729
  connectionManager: components.connectionManager
743
730
  })
744
731
  },
745
- logger: createLibp2pComponentLogger(logger.module)
732
+ logger: createLibp2pComponentLogger(logger.module, logger.getBindings())
746
733
  });
747
734
  const peerScoring = new PeerScoring(config, telemetry);
748
735
  const reqresp = new ReqResp(config, node, peerScoring, createLogger(`${logger.module}:reqresp`));
749
736
  const peerManager = new PeerManager(node, peerDiscoveryService, config, telemetry, createLogger(`${logger.module}:peer_manager`), peerScoring, reqresp, worldStateSynchronizer, protocolVersion, epochCache);
750
- // Update gossipsub score params
751
- node.services.pubsub.score.params.appSpecificWeight = 10;
737
+ // Configure application-specific scoring for gossipsub.
738
+ // The weight scales app score to align with gossipsub thresholds:
739
+ // - Disconnect (-50) × 10 = -500 = gossipThreshold (stops receiving gossip)
740
+ // - Ban (-100) × 10 = -1000 = publishThreshold (cannot publish)
741
+ // Note: positive topic scores can offset penalties, so alignment is best-effort.
742
+ node.services.pubsub.score.params.appSpecificWeight = APP_SPECIFIC_WEIGHT;
752
743
  node.services.pubsub.score.params.appSpecificScore = (peerId)=>peerManager.shouldDisableP2PGossip(peerId) ? -Infinity : peerManager.getPeerScore(peerId);
753
744
  return new LibP2PService(clientType, config, node, peerDiscoveryService, reqresp, peerManager, mempools, l2BlockSource, epochCache, proofVerifier, worldStateSynchronizer, telemetry, logger);
754
745
  }
@@ -778,7 +769,7 @@ _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
778
769
  [ReqRespSubProtocol.BLOCK]: blockHandler.bind(this)
779
770
  };
780
771
  if (!this.config.disableTransactions) {
781
- const blockTxsHandler = reqRespBlockTxsHandler(this.mempools.attestationPool, this.mempools.txPool);
772
+ const blockTxsHandler = reqRespBlockTxsHandler(this.mempools.attestationPool, this.archiver, this.mempools.txPool);
782
773
  requestResponseHandlers[ReqRespSubProtocol.BLOCK_TXS] = blockTxsHandler.bind(this);
783
774
  }
784
775
  if (!this.config.disableTransactions) {
@@ -843,6 +834,9 @@ _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
843
834
  getPeers(includePending) {
844
835
  return this.peerManager.getPeers(includePending);
845
836
  }
837
+ getGossipMeshPeerCount(topicType) {
838
+ return this.node.services.pubsub.getMeshPeers(this.topicStrings[topicType]).length;
839
+ }
846
840
  handleGossipSubEvent(e) {
847
841
  this.logger.trace(`Received PUBSUB message.`);
848
842
  const safeJob = async ()=>{
@@ -862,6 +856,9 @@ _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
862
856
  */ sendBatchRequest(protocol, requests, pinnedPeerId) {
863
857
  return this.reqresp.sendBatchRequest(protocol, requests, pinnedPeerId);
864
858
  }
859
+ sendRequestToPeer(peerId, subProtocol, payload, dialTimeout) {
860
+ return this.reqresp.sendRequestToPeer(peerId, subProtocol, payload, dialTimeout);
861
+ }
865
862
  /**
866
863
  * Get the ENR of the node
867
864
  * @returns The ENR of the node
@@ -875,6 +872,19 @@ _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
875
872
  this.checkpointReceivedCallback = callback;
876
873
  }
877
874
  /**
875
+ * Registers a callback to be invoked when a duplicate proposal is detected.
876
+ * This callback is triggered on the first duplicate (when count goes from 1 to 2).
877
+ */ registerDuplicateProposalCallback(callback) {
878
+ this.duplicateProposalCallback = callback;
879
+ }
880
+ /**
881
+ * Registers a callback to be invoked when a duplicate attestation is detected.
882
+ * A validator signing attestations for different proposals at the same slot.
883
+ * This callback is triggered on the first duplicate (when count goes from 1 to 2).
884
+ */ registerDuplicateAttestationCallback(callback) {
885
+ this.duplicateAttestationCallback = callback;
886
+ }
887
+ /**
878
888
  * Subscribes to a topic.
879
889
  * @param topic - The topic to subscribe to.
880
890
  */ subscribeToTopic(topic) {
@@ -1056,25 +1066,42 @@ _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
1056
1066
  const validationFunc = async ()=>{
1057
1067
  const tx = Tx.fromBuffer(payloadData);
1058
1068
  const isValid = await this.validatePropagatedTx(tx, source);
1059
- const exists = isValid && await this.mempools.txPool.hasTx(tx.getTxHash());
1069
+ if (!isValid) {
1070
+ this.logger.trace(`Rejecting invalid propagated tx`, {
1071
+ [Attributes.P2P_ID]: source.toString()
1072
+ });
1073
+ return {
1074
+ result: TopicValidatorResult.Reject
1075
+ };
1076
+ }
1077
+ // Propagate only on pool acceptance
1078
+ const txHash = tx.getTxHash();
1079
+ const addResult = await this.mempools.txPool.addPendingTxs([
1080
+ tx
1081
+ ], {
1082
+ source: 'gossip'
1083
+ });
1084
+ const wasAccepted = addResult.accepted.some((h)=>h.equals(txHash));
1085
+ const wasIgnored = addResult.ignored.some((h)=>h.equals(txHash));
1060
1086
  this.logger.trace(`Validate propagated tx`, {
1061
1087
  isValid,
1062
- exists,
1088
+ wasAccepted,
1089
+ wasIgnored,
1063
1090
  [Attributes.P2P_ID]: source.toString()
1064
1091
  });
1065
- if (!isValid) {
1092
+ if (wasAccepted) {
1066
1093
  return {
1067
- result: TopicValidatorResult.Reject
1094
+ result: TopicValidatorResult.Accept,
1095
+ obj: tx
1068
1096
  };
1069
- } else if (exists) {
1097
+ } else if (wasIgnored) {
1070
1098
  return {
1071
1099
  result: TopicValidatorResult.Ignore,
1072
1100
  obj: tx
1073
1101
  };
1074
1102
  } else {
1075
1103
  return {
1076
- result: TopicValidatorResult.Accept,
1077
- obj: tx
1104
+ result: TopicValidatorResult.Reject
1078
1105
  };
1079
1106
  }
1080
1107
  };
@@ -1082,131 +1109,190 @@ _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
1082
1109
  if (result !== TopicValidatorResult.Accept || !tx) {
1083
1110
  return;
1084
1111
  }
1112
+ // Tx was accepted into pool and will be propagated - just log and record metrics
1085
1113
  const txHash = tx.getTxHash();
1086
1114
  const txHashString = txHash.toString();
1087
1115
  this.logger.verbose(`Received tx ${txHashString} from external peer ${source.toString()} via gossip`, {
1088
1116
  source: source.toString(),
1089
1117
  txHash: txHashString
1090
1118
  });
1091
- if (this.config.dropTransactions && randomInt(1000) < this.config.dropTransactionsProbability * 1000) {
1092
- this.logger.warn(`Intentionally dropping tx ${txHashString} (probability rule)`);
1093
- return;
1094
- }
1095
1119
  this.instrumentation.incrementTxReceived(1);
1096
- await this.mempools.txPool.addTxs([
1097
- tx
1098
- ]);
1099
1120
  }
1100
1121
  /**
1101
1122
  * Process a checkpoint attestation from a peer.
1102
1123
  * Validates the attestation and adds it to the pool.
1103
1124
  */ async processCheckpointAttestationFromPeer(payloadData, msgId, source) {
1104
- const validationFunc = async ()=>{
1105
- const attestation = CheckpointAttestation.fromBuffer(payloadData);
1106
- const pool = this.mempools.attestationPool;
1107
- const isValid = await this.validateCheckpointAttestation(source, attestation);
1108
- const exists = isValid && await pool.hasCheckpointAttestation(attestation);
1109
- let canAdd = true;
1110
- if (isValid && !exists) {
1111
- const slot = attestation.payload.header.slotNumber;
1112
- const { committee } = await this.epochCache.getCommittee(slot);
1113
- const committeeSize = committee?.length ?? 0;
1114
- canAdd = await pool.canAddCheckpointAttestation(attestation, committeeSize);
1115
- }
1116
- this.logger.trace(`Validate propagated checkpoint attestation`, {
1117
- isValid,
1118
- exists,
1119
- canAdd,
1120
- [Attributes.SLOT_NUMBER]: attestation.payload.header.slotNumber.toString(),
1121
- [Attributes.P2P_ID]: source.toString()
1122
- });
1123
- if (!isValid) {
1124
- return {
1125
- result: TopicValidatorResult.Reject
1126
- };
1127
- } else if (exists) {
1128
- return {
1129
- result: TopicValidatorResult.Ignore,
1130
- obj: attestation
1131
- };
1132
- } else if (!canAdd) {
1133
- this.logger.warn(`Dropping checkpoint attestation due to per-(slot, proposalId) attestation cap`, {
1134
- slot: attestation.payload.header.slotNumber.toString(),
1135
- archive: attestation.archive.toString(),
1136
- source: source.toString()
1137
- });
1138
- return {
1139
- result: TopicValidatorResult.Ignore,
1140
- obj: attestation
1141
- };
1142
- } else {
1143
- return {
1144
- result: TopicValidatorResult.Accept,
1145
- obj: attestation
1146
- };
1147
- }
1148
- };
1149
- const { result, obj: attestation } = await this.validateReceivedMessage(validationFunc, msgId, source, TopicType.checkpoint_attestation);
1125
+ const { result, obj: attestation } = await this.validateReceivedMessage(()=>this.validateAndStoreCheckpointAttestation(source, CheckpointAttestation.fromBuffer(payloadData)), msgId, source, TopicType.checkpoint_attestation);
1150
1126
  if (result !== TopicValidatorResult.Accept || !attestation) {
1151
1127
  return;
1152
1128
  }
1153
- this.logger.debug(`Received checkpoint attestation for slot ${attestation.slotNumber} from external peer ${source.toString()}`, {
1129
+ this.logger.verbose(`Received valid checkpoint attestation for slot ${attestation.slotNumber} from external peer ${source.toString()}`, {
1154
1130
  p2pMessageIdentifier: await attestation.p2pMessageLoggingIdentifier(),
1155
1131
  slot: attestation.slotNumber,
1156
1132
  archive: attestation.archive.toString(),
1157
1133
  source: source.toString()
1158
1134
  });
1159
- await this.mempools.attestationPool.addCheckpointAttestations([
1160
- attestation
1161
- ]);
1162
1135
  }
1163
- async processBlockFromPeer(payloadData, msgId, source) {
1164
- const validationFunc = async ()=>{
1165
- const block = BlockProposal.fromBuffer(payloadData);
1166
- const isValid = await this.validateBlockProposal(source, block);
1167
- const pool = this.mempools.attestationPool;
1168
- const exists = isValid && await pool.hasBlockProposal(block);
1169
- const canAdd = isValid && await pool.canAddProposal(block);
1170
- this.logger.trace(`Validate propagated block proposal`, {
1171
- isValid,
1172
- exists,
1173
- canAdd,
1174
- [Attributes.SLOT_NUMBER]: block.slotNumber.toString(),
1175
- [Attributes.P2P_ID]: source.toString()
1136
+ /** Validates a checkpoint attestation and adds it to the pool. Penalizes the peer if validation fails. */ async validateAndStoreCheckpointAttestation(peerId, attestation) {
1137
+ const validationResult = await this.checkpointAttestationValidator.validate(attestation);
1138
+ if (validationResult.result === 'reject') {
1139
+ this.logger.warn(`Penalizing peer ${peerId} for checkpoint attestation validation failure`);
1140
+ this.peerManager.penalizePeer(peerId, validationResult.severity);
1141
+ return {
1142
+ result: TopicValidatorResult.Reject
1143
+ };
1144
+ }
1145
+ if (validationResult.result === 'ignore') {
1146
+ return {
1147
+ result: TopicValidatorResult.Ignore,
1148
+ obj: attestation
1149
+ };
1150
+ }
1151
+ // Try to add the attestation: this handles existence check, cap check, and adding in one call
1152
+ // count is the number of attestations by this signer for this slot (for duplicate detection)
1153
+ const slot = attestation.payload.header.slotNumber;
1154
+ const { added, alreadyExists, count } = await this.mempools.attestationPool.tryAddCheckpointAttestation(attestation);
1155
+ this.logger.trace(`Validate propagated checkpoint attestation`, {
1156
+ added,
1157
+ alreadyExists,
1158
+ count,
1159
+ [Attributes.SLOT_NUMBER]: slot.toString(),
1160
+ [Attributes.P2P_ID]: peerId.toString()
1161
+ });
1162
+ // Exact same attestation received, no need to re-broadcast
1163
+ if (alreadyExists) {
1164
+ return {
1165
+ result: TopicValidatorResult.Ignore,
1166
+ obj: attestation
1167
+ };
1168
+ }
1169
+ // Could not add (cap reached for signer), no need to re-broadcast
1170
+ if (!added) {
1171
+ this.logger.warn(`Dropping checkpoint attestation due to cap`, {
1172
+ slot: slot.toString(),
1173
+ archive: attestation.archive.toString(),
1174
+ source: peerId.toString(),
1175
+ attester: attestation.getSender()?.toString(),
1176
+ count
1176
1177
  });
1177
- if (!isValid) {
1178
- return {
1179
- result: TopicValidatorResult.Reject
1180
- };
1181
- } else if (exists) {
1182
- return {
1183
- result: TopicValidatorResult.Ignore,
1184
- obj: block
1185
- };
1186
- } else if (!canAdd) {
1187
- this.peerManager.penalizePeer(source, PeerErrorSeverity.MidToleranceError);
1188
- this.logger.warn(`Penalizing peer for block proposal exceeding per-slot cap`, {
1189
- slot: block.slotNumber.toString(),
1190
- archive: block.archive.toString(),
1191
- source: source.toString()
1178
+ return {
1179
+ result: TopicValidatorResult.Ignore,
1180
+ obj: attestation
1181
+ };
1182
+ }
1183
+ // Check if this is a duplicate attestation (signer attested to a different proposal at the same slot)
1184
+ // count is the number of attestations by this signer for this slot
1185
+ if (count === 2) {
1186
+ const attester = attestation.getSender();
1187
+ if (attester) {
1188
+ this.logger.warn(`Detected duplicate attestation (equivocation) at slot ${slot}`, {
1189
+ slot: slot.toString(),
1190
+ archive: attestation.archive.toString(),
1191
+ source: peerId.toString(),
1192
+ attester: attester.toString()
1193
+ });
1194
+ this.duplicateAttestationCallback?.({
1195
+ slot,
1196
+ attester
1192
1197
  });
1193
- return {
1194
- result: TopicValidatorResult.Reject
1195
- };
1196
- } else {
1197
- return {
1198
- result: TopicValidatorResult.Accept,
1199
- obj: block
1200
- };
1201
1198
  }
1199
+ }
1200
+ // Attestation was added successfully - accept it so other nodes can also detect the equivocation
1201
+ return {
1202
+ result: TopicValidatorResult.Accept,
1203
+ obj: attestation
1202
1204
  };
1203
- const { result, obj: block } = await this.validateReceivedMessage(validationFunc, msgId, source, TopicType.block_proposal);
1204
- if (!result || !block) {
1205
+ }
1206
+ async processBlockFromPeer(payloadData, msgId, source) {
1207
+ const { result, obj: block, metadata: { isEquivocated } = {} } = await this.validateReceivedMessage(()=>this.validateAndStoreBlockProposal(source, BlockProposal.fromBuffer(payloadData)), msgId, source, TopicType.block_proposal);
1208
+ // If not accepted or equivocated, return
1209
+ if (result !== TopicValidatorResult.Accept || !block || isEquivocated) {
1205
1210
  return;
1206
1211
  }
1207
1212
  await this.processValidBlockProposal(block, source);
1208
1213
  }
1209
- // REVIEW: callback pattern https://github.com/AztecProtocol/aztec-packages/issues/7963
1214
+ /** Validates a block proposal. Triggers a penalization to the peer that sent it if invalid. Adds to the mempool if valid. */ async validateAndStoreBlockProposal(peerId, block) {
1215
+ const validationResult = await this.blockProposalValidator.validate(block);
1216
+ if (validationResult.result === 'reject') {
1217
+ this.logger.warn(`Penalizing peer ${peerId} for block proposal validation failure`);
1218
+ this.peerManager.penalizePeer(peerId, validationResult.severity);
1219
+ return {
1220
+ result: TopicValidatorResult.Reject
1221
+ };
1222
+ }
1223
+ if (validationResult.result === 'ignore') {
1224
+ return {
1225
+ result: TopicValidatorResult.Ignore,
1226
+ obj: block
1227
+ };
1228
+ }
1229
+ // Try to add the proposal: this handles existence check, cap check, and adding in one call
1230
+ const { added, alreadyExists, count } = await this.mempools.attestationPool.tryAddBlockProposal(block);
1231
+ const isEquivocated = count !== undefined && count > 1;
1232
+ // Duplicate proposal received, no need to re-broadcast
1233
+ if (alreadyExists) {
1234
+ this.logger.debug(`Ignoring duplicate block proposal received`, {
1235
+ ...block.toBlockInfo(),
1236
+ indexWithinCheckpoint: block.indexWithinCheckpoint,
1237
+ proposer: block.getSender()?.toString(),
1238
+ source: peerId.toString()
1239
+ });
1240
+ return {
1241
+ result: TopicValidatorResult.Ignore,
1242
+ obj: block,
1243
+ metadata: {
1244
+ isEquivocated
1245
+ }
1246
+ };
1247
+ }
1248
+ // Too many blocks received for this slot and index, penalize peer and do not re-broadcast
1249
+ if (!added) {
1250
+ this.peerManager.penalizePeer(peerId, PeerErrorSeverity.HighToleranceError);
1251
+ this.logger.warn(`Penalizing peer for block proposal exceeding per-position cap`, {
1252
+ ...block.toBlockInfo(),
1253
+ indexWithinCheckpoint: block.indexWithinCheckpoint,
1254
+ count,
1255
+ proposer: block.getSender()?.toString(),
1256
+ source: peerId.toString()
1257
+ });
1258
+ return {
1259
+ result: TopicValidatorResult.Reject,
1260
+ metadata: {
1261
+ isEquivocated
1262
+ }
1263
+ };
1264
+ }
1265
+ // If this was a duplicate proposal, do not process it, but do invoke the duplicate callback,
1266
+ // and do re-broadcast it so other nodes in the network know to slash the proposer
1267
+ if (isEquivocated) {
1268
+ const proposer = block.getSender();
1269
+ this.logger.warn(`Detected duplicate block proposal (equivocation) at slot ${block.slotNumber}`, {
1270
+ ...block.toBlockInfo(),
1271
+ source: peerId.toString(),
1272
+ proposer: proposer?.toString()
1273
+ });
1274
+ // Invoke the duplicate callback on the first duplicate spotted only
1275
+ if (proposer && count === 2) {
1276
+ this.duplicateProposalCallback?.({
1277
+ slot: block.slotNumber,
1278
+ proposer,
1279
+ type: 'block'
1280
+ });
1281
+ }
1282
+ return {
1283
+ result: TopicValidatorResult.Accept,
1284
+ obj: block,
1285
+ metadata: {
1286
+ isEquivocated
1287
+ }
1288
+ };
1289
+ }
1290
+ // Otherwise, we're good to go!
1291
+ return {
1292
+ result: TopicValidatorResult.Accept,
1293
+ obj: block
1294
+ };
1295
+ }
1210
1296
  // REFACTOR(palla): This method should be moved to the p2p_client or to a separate component,
1211
1297
  // should not be here as it does not deal with p2p networking.
1212
1298
  async processValidBlockProposal(block, sender) {
@@ -1216,23 +1302,8 @@ _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
1216
1302
  source: sender.toString(),
1217
1303
  ...block.toBlockInfo()
1218
1304
  });
1219
- // Attempt to add proposal
1220
- try {
1221
- await this.mempools.attestationPool.addBlockProposal(block);
1222
- } catch (err) {
1223
- // Drop proposals if we hit per-slot cap in the attestation pool; rethrow unknown errors
1224
- if (err instanceof ProposalSlotCapExceededError) {
1225
- this.logger.warn(`Dropping block proposal due to per-slot proposal cap`, {
1226
- slot: String(slot),
1227
- archive: block.archive.toString(),
1228
- error: err.message
1229
- });
1230
- return;
1231
- }
1232
- throw err;
1233
- }
1234
- // Mark the txs in this proposal as non-evictable
1235
- await this.mempools.txPool.markTxsAsNonEvictable(block.txHashes);
1305
+ // Mark the txs in this proposal as protected
1306
+ await this.mempools.txPool.protectTxs(block.txHashes, block.blockHeader);
1236
1307
  // Call the block received callback to validate the proposal.
1237
1308
  // Note: Validators do NOT attest to individual blocks, only to checkpoint proposals.
1238
1309
  const isValid = await this.blockReceivedCallback(block, sender);
@@ -1244,56 +1315,135 @@ _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
1244
1315
  * Handle a gossiped checkpoint proposal.
1245
1316
  * Validates and processes the checkpoint proposal, then triggers the callback for attestation.
1246
1317
  */ async handleGossipedCheckpointProposal(payloadData, msgId, source) {
1247
- // TODO(palla/mbps): This pattern is repeated across multiple message handlers, consider abstracting it.
1248
- const validationFunc = async ()=>{
1249
- const checkpoint = CheckpointProposal.fromBuffer(payloadData);
1250
- const isValid = await this.validateCheckpointProposal(source, checkpoint);
1251
- const pool = this.mempools.attestationPool;
1252
- const exists = isValid && await pool.hasCheckpointProposal(checkpoint);
1253
- const canAdd = isValid && await pool.canAddCheckpointProposal(checkpoint);
1254
- this.logger.trace(`Validate propagated checkpoint proposal`, {
1255
- isValid,
1256
- exists,
1257
- canAdd,
1318
+ const { result, obj: checkpoint, metadata: { isEquivocated, processBlock } = {} } = await this.validateReceivedMessage(()=>this.validateAndStoreCheckpointProposal(source, CheckpointProposal.fromBuffer(payloadData)), msgId, source, TopicType.checkpoint_proposal);
1319
+ // If the checkpoint contained a valid last block, we process it even if the checkpoint itself is to be rejected
1320
+ // TODO(palla/mbps): Is this ok? Should we be considering a block from a checkpoint that was equivocated?
1321
+ if (processBlock && checkpoint?.getBlockProposal()) {
1322
+ await this.processValidBlockProposal(checkpoint.getBlockProposal(), source);
1323
+ }
1324
+ if (result !== TopicValidatorResult.Accept || !checkpoint || isEquivocated) {
1325
+ return;
1326
+ }
1327
+ await this.processValidCheckpointProposal(checkpoint.toCore(), source);
1328
+ }
1329
+ /**
1330
+ * Validates a checkpoint proposal. Penalizes peer if validation fails. Adds the checkpoint and
1331
+ * its last block (if present) to the mempool if valid. Triggers equivocation detection on both.
1332
+ */ async validateAndStoreCheckpointProposal(peerId, checkpoint) {
1333
+ const validationResult = await this.checkpointProposalValidator.validate(checkpoint);
1334
+ if (validationResult.result === 'reject') {
1335
+ this.logger.warn(`Penalizing peer ${peerId} for checkpoint proposal validation failure`);
1336
+ this.peerManager.penalizePeer(peerId, validationResult.severity);
1337
+ return {
1338
+ result: TopicValidatorResult.Reject
1339
+ };
1340
+ }
1341
+ if (validationResult.result === 'ignore') {
1342
+ return {
1343
+ result: TopicValidatorResult.Ignore,
1344
+ obj: checkpoint
1345
+ };
1346
+ }
1347
+ // Extract and try to add the block proposal first if present
1348
+ const blockProposal = checkpoint.getBlockProposal();
1349
+ let processBlock = false;
1350
+ if (blockProposal) {
1351
+ this.logger.debug(`Validating block proposal from propagated checkpoint`, {
1258
1352
  [Attributes.SLOT_NUMBER]: checkpoint.slotNumber.toString(),
1259
- [Attributes.P2P_ID]: source.toString()
1353
+ [Attributes.P2P_ID]: peerId.toString()
1260
1354
  });
1261
- if (!isValid) {
1262
- return {
1263
- result: TopicValidatorResult.Reject
1264
- };
1265
- } else if (exists) {
1266
- return {
1267
- result: TopicValidatorResult.Ignore,
1268
- obj: checkpoint
1269
- };
1270
- } else if (!canAdd) {
1271
- this.peerManager.penalizePeer(source, PeerErrorSeverity.MidToleranceError);
1272
- this.logger.warn(`Penalizing peer for checkpoint proposal exceeding per-slot cap`, {
1273
- slot: checkpoint.slotNumber.toString(),
1274
- archive: checkpoint.archive.toString(),
1275
- source: source.toString()
1355
+ const { result, obj, metadata: { isEquivocated } = {} } = await this.validateAndStoreBlockProposal(peerId, blockProposal);
1356
+ if (result === TopicValidatorResult.Reject || !obj || isEquivocated) {
1357
+ this.logger.debug(`Rejecting checkpoint due to invalid last block proposal`, {
1358
+ [Attributes.SLOT_NUMBER]: checkpoint.slotNumber.toString(),
1359
+ [Attributes.P2P_ID]: peerId.toString(),
1360
+ isEquivocated,
1361
+ result
1276
1362
  });
1277
1363
  return {
1278
1364
  result: TopicValidatorResult.Reject
1279
1365
  };
1280
- } else {
1281
- return {
1282
- result: TopicValidatorResult.Accept,
1283
- obj: checkpoint
1284
- };
1366
+ } else if (result === TopicValidatorResult.Accept && obj && !isEquivocated) {
1367
+ processBlock = true;
1285
1368
  }
1286
- };
1287
- const { result, obj: checkpoint } = await this.validateReceivedMessage(validationFunc, msgId, source, TopicType.checkpoint_proposal);
1288
- if (result !== TopicValidatorResult.Accept || !checkpoint) {
1289
- return;
1290
1369
  }
1291
- await this.processValidCheckpointProposal(checkpoint, source);
1370
+ // Try to add the checkpoint proposal core: this handles existence check, cap check, and adding in one call
1371
+ const checkpointCore = checkpoint.toCore();
1372
+ const tryAddResult = await this.mempools.attestationPool.tryAddCheckpointProposal(checkpointCore);
1373
+ const { added, alreadyExists, count } = tryAddResult;
1374
+ const isEquivocated = count !== undefined && count > 1;
1375
+ // Duplicate proposal received, do not re-broadcast
1376
+ if (alreadyExists) {
1377
+ this.logger.debug(`Ignoring duplicate checkpoint proposal received`, {
1378
+ ...checkpoint.toCheckpointInfo(),
1379
+ source: peerId.toString()
1380
+ });
1381
+ return {
1382
+ result: TopicValidatorResult.Ignore,
1383
+ obj: checkpoint,
1384
+ metadata: {
1385
+ isEquivocated,
1386
+ processBlock
1387
+ }
1388
+ };
1389
+ }
1390
+ // Too many checkpoint proposals received for this slot, penalize peer and do not re-broadcast
1391
+ // Note: We still return the checkpoint obj so the lastBlock can be processed if valid
1392
+ if (!added) {
1393
+ this.peerManager.penalizePeer(peerId, PeerErrorSeverity.HighToleranceError);
1394
+ this.logger.warn(`Penalizing peer for checkpoint proposal exceeding per-slot cap`, {
1395
+ ...checkpoint.toCheckpointInfo(),
1396
+ count,
1397
+ source: peerId.toString()
1398
+ });
1399
+ return {
1400
+ result: TopicValidatorResult.Reject,
1401
+ obj: checkpoint,
1402
+ metadata: {
1403
+ isEquivocated,
1404
+ processBlock
1405
+ }
1406
+ };
1407
+ }
1408
+ // If this was a duplicate proposal, do not process it, but do invoke the duplicate callback,
1409
+ // and do re-broadcast it so other nodes in the network know to slash the proposer
1410
+ if (isEquivocated) {
1411
+ const proposer = checkpoint.getSender();
1412
+ this.logger.warn(`Detected duplicate checkpoint proposal (equivocation) at slot ${checkpoint.slotNumber}`, {
1413
+ ...checkpoint.toCheckpointInfo(),
1414
+ source: peerId.toString(),
1415
+ proposer: proposer?.toString()
1416
+ });
1417
+ // Invoke the duplicate callback on the first duplicate spotted only
1418
+ if (proposer && count === 2) {
1419
+ this.duplicateProposalCallback?.({
1420
+ slot: checkpoint.slotNumber,
1421
+ proposer,
1422
+ type: 'checkpoint'
1423
+ });
1424
+ }
1425
+ return {
1426
+ result: TopicValidatorResult.Accept,
1427
+ obj: checkpoint,
1428
+ metadata: {
1429
+ isEquivocated,
1430
+ processBlock
1431
+ }
1432
+ };
1433
+ }
1434
+ // Otherwise, we're good to go!
1435
+ return {
1436
+ result: TopicValidatorResult.Accept,
1437
+ obj: checkpoint,
1438
+ metadata: {
1439
+ processBlock,
1440
+ isEquivocated
1441
+ }
1442
+ };
1292
1443
  }
1293
1444
  /**
1294
1445
  * Process a validated checkpoint proposal.
1295
- * Extracts and processes the last block proposal (if present) first, then processes the checkpoint.
1296
- * The block callback is invoked before the checkpoint callback.
1446
+ * Note: The proposal was already added to the pool by tryAddCheckpointProposal in handleGossipedCheckpointProposal.
1297
1447
  */ async processValidCheckpointProposal(checkpoint, sender) {
1298
1448
  const slot = checkpoint.slotNumber;
1299
1449
  this.logger.verbose(`Received checkpoint proposal for slot ${slot} from external peer ${sender.toString()}.`, {
@@ -1302,33 +1452,12 @@ _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
1302
1452
  archive: checkpoint.archive.toString(),
1303
1453
  source: sender.toString()
1304
1454
  });
1305
- // Extract block proposal before adding to pool (pool stores them separately)
1306
- const blockProposal = checkpoint.getBlockProposal();
1307
- // Add proposal to the pool (this extracts and stores block proposal separately)
1308
- await this.mempools.attestationPool.addCheckpointProposal(checkpoint);
1309
- // Mark txs as non-evictable if present (from the last block)
1310
- if (checkpoint.txHashes.length > 0) {
1311
- await this.mempools.txPool.markTxsAsNonEvictable(checkpoint.txHashes);
1312
- }
1313
- // If there was a last block proposal, invoke the block callback first for validation.
1314
- // Note: The block proposal is already stored in the pool by addCheckpointProposal.
1315
- if (blockProposal) {
1316
- const isValid = await this.blockReceivedCallback(blockProposal, sender);
1317
- if (!isValid) {
1318
- this.logger.warn(`Block proposal from checkpoint failed validation`, {
1319
- slot: slot.toString(),
1320
- archive: checkpoint.archive.toString(),
1321
- blockNumber: blockProposal.blockNumber.toString()
1322
- });
1323
- return;
1324
- }
1325
- }
1326
1455
  // Call the checkpoint received callback with the core version (without lastBlock)
1327
1456
  // to validate and potentially generate attestations
1328
- const attestations = await this.checkpointReceivedCallback(checkpoint.toCore(), sender);
1457
+ const attestations = await this.checkpointReceivedCallback(checkpoint, sender);
1329
1458
  if (attestations && attestations.length > 0) {
1330
1459
  // If the callback returned attestations, add them to the pool and propagate them
1331
- await this.mempools.attestationPool.addCheckpointAttestations(attestations);
1460
+ await this.mempools.attestationPool.addOwnCheckpointAttestations(attestations);
1332
1461
  for (const attestation of attestations){
1333
1462
  await this.propagate(attestation);
1334
1463
  }
@@ -1357,9 +1486,9 @@ _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
1357
1486
  */ async validateRequestedBlockTxs(request, response, peerId) {
1358
1487
  const requestedTxValidator = this.createRequestedTxValidator();
1359
1488
  try {
1360
- if (!response.blockHash.equals(request.blockHash)) {
1489
+ if (!response.archiveRoot.equals(request.archiveRoot)) {
1361
1490
  this.peerManager.penalizePeer(peerId, PeerErrorSeverity.MidToleranceError);
1362
- throw new ValidationError(`Received block txs for unexpected block: expected ${request.blockHash.toString()}, got ${response.blockHash.toString()}`);
1491
+ throw new ValidationError(`Received block txs for unexpected archive root: expected ${request.archiveRoot.toString()}, got ${response.archiveRoot.toString()}`);
1363
1492
  }
1364
1493
  if (response.txIndices.getLength() !== request.txIndices.getLength()) {
1365
1494
  this.peerManager.penalizePeer(peerId, PeerErrorSeverity.MidToleranceError);
@@ -1382,7 +1511,7 @@ _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
1382
1511
  throw new ValidationError(`Received more txs (${response.txs.length}) than requested-and-available (${maxReturnable})`);
1383
1512
  }
1384
1513
  // Given proposal (should have locally), ensure returned txs are valid subset and match request indices
1385
- const proposal = await this.mempools.attestationPool.getBlockProposal(request.blockHash.toString());
1514
+ const proposal = await this.mempools.attestationPool.getBlockProposal(request.archiveRoot.toString());
1386
1515
  if (proposal) {
1387
1516
  // Build intersected indices
1388
1517
  const intersectIdx = request.txIndices.getTrueIndices().filter((i)=>response.txIndices.isSet(i));
@@ -1401,7 +1530,7 @@ _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
1401
1530
  }
1402
1531
  } else {
1403
1532
  // No local proposal, cannot check the membership/order of the returned txs
1404
- this.logger.warn(`Block proposal not found for block hash ${request.blockHash.toString()}; cannot validate membership/order of returned txs`);
1533
+ this.logger.warn(`Block proposal not found for archive root ${request.archiveRoot.toString()}; cannot validate membership/order of returned txs`);
1405
1534
  return false;
1406
1535
  }
1407
1536
  await Promise.all(response.txs.map((tx)=>this.validateRequestedTx(tx, peerId, requestedTxValidator)));
@@ -1431,7 +1560,7 @@ _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
1431
1560
  */ async validateRequestedTxs(requestedTxHash, responseTx, peerId) {
1432
1561
  const requested = new Set(requestedTxHash.map((h)=>h.toString()));
1433
1562
  const requestedTxValidator = this.createRequestedTxValidator();
1434
- //TODO: (mralj) - this is somewhat naive implementation, if single tx is invlid we consider the whole response invalid.
1563
+ //TODO: (mralj) - this is somewhat naive implementation, if single tx is invalid we consider the whole response invalid.
1435
1564
  // I think we should still extract the valid txs and return them, so that we can still use the response.
1436
1565
  try {
1437
1566
  await Promise.all(responseTx.map((tx)=>this.validateRequestedTx(tx, peerId, requestedTxValidator, requested)));
@@ -1484,20 +1613,8 @@ _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
1484
1613
  return false;
1485
1614
  }
1486
1615
  }
1487
- createRequestedTxValidator() {
1488
- return new AggregateTxValidator(new DataTxValidator(), new MetadataTxValidator({
1489
- l1ChainId: new Fr(this.config.l1ChainId),
1490
- rollupVersion: new Fr(this.config.rollupVersion),
1491
- protocolContractsHash,
1492
- vkTreeRoot: getVKTreeRoot()
1493
- }), new TxProofValidator(this.proofVerifier));
1494
- }
1495
1616
  async validateRequestedTx(tx, peerId, txValidator, requested) {
1496
1617
  const penalize = (severity)=>this.peerManager.penalizePeer(peerId, severity);
1497
- if (!await tx.validateTxHash()) {
1498
- penalize(PeerErrorSeverity.MidToleranceError);
1499
- throw new ValidationError(`Received tx with invalid hash ${tx.getTxHash().toString()}.`);
1500
- }
1501
1618
  if (requested && !requested.has(tx.getTxHash().toString())) {
1502
1619
  penalize(PeerErrorSeverity.MidToleranceError);
1503
1620
  throw new ValidationError(`Received tx with hash ${tx.getTxHash().toString()} that was not requested.`);
@@ -1508,9 +1625,15 @@ _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
1508
1625
  throw new ValidationError(`Received tx with hash ${tx.getTxHash().toString()} that is invalid.`);
1509
1626
  }
1510
1627
  }
1628
+ createRequestedTxValidator() {
1629
+ return createTxReqRespValidator(this.proofVerifier, {
1630
+ l1ChainId: this.config.l1ChainId,
1631
+ rollupVersion: this.config.rollupVersion
1632
+ });
1633
+ }
1511
1634
  async validatePropagatedTx(tx, peerId) {
1512
1635
  const currentBlockNumber = await this.archiver.getBlockNumber();
1513
- // We accept transactions if they are not expired by the next slot (checked based on the IncludeByTimestamp field)
1636
+ // We accept transactions if they are not expired by the next slot (checked based on the ExpirationTimestamp field)
1514
1637
  const { ts: nextSlotTimestamp } = this.epochCache.getEpochAndSlotInNextL1Slot();
1515
1638
  const messageValidators = await this.createMessageValidators(currentBlockNumber, nextSlotTimestamp);
1516
1639
  for (const validator of messageValidators){
@@ -1542,9 +1665,23 @@ _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
1542
1665
  };
1543
1666
  return gasFees;
1544
1667
  }
1668
+ /**
1669
+ * Get the BatchTxRequesterLibP2PService dependencies for creating BatchTxRequester instances
1670
+ */ getBatchTxRequesterService() {
1671
+ return {
1672
+ reqResp: this.reqresp,
1673
+ connectionSampler: this.reqresp.getConnectionSampler(),
1674
+ txValidatorConfig: {
1675
+ l1ChainId: this.config.l1ChainId,
1676
+ rollupVersion: this.config.rollupVersion,
1677
+ proofVerifier: this.proofVerifier
1678
+ },
1679
+ peerScoring: this.peerManager
1680
+ };
1681
+ }
1545
1682
  async validate(txs) {
1546
1683
  const currentBlockNumber = await this.archiver.getBlockNumber();
1547
- // We accept transactions if they are not expired by the next slot (checked based on the IncludeByTimestamp field)
1684
+ // We accept transactions if they are not expired by the next slot (checked based on the ExpirationTimestamp field)
1548
1685
  const { ts: nextSlotTimestamp } = this.epochCache.getEpochAndSlotInNextL1Slot();
1549
1686
  const messageValidators = await this.createMessageValidators(currentBlockNumber, nextSlotTimestamp);
1550
1687
  await Promise.all(txs.map(async (tx)=>{
@@ -1573,7 +1710,7 @@ _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
1573
1710
  const gasFees = await this.getGasFees(currentBlockNumber);
1574
1711
  const allowedInSetup = this.config.txPublicSetupAllowList ?? await getDefaultAllowedSetupFunctions();
1575
1712
  const blockNumberInWhichTheTxIsConsideredToBeIncluded = BlockNumber(currentBlockNumber + 1);
1576
- return createTxMessageValidators(nextSlotTimestamp, blockNumberInWhichTheTxIsConsideredToBeIncluded, this.worldStateSynchronizer, gasFees, this.config.l1ChainId, this.config.rollupVersion, protocolContractsHash, this.archiver, this.proofVerifier, !this.config.disableTransactions, allowedInSetup);
1713
+ return createTxMessageValidators(nextSlotTimestamp, blockNumberInWhichTheTxIsConsideredToBeIncluded, this.worldStateSynchronizer, gasFees, this.config.l1ChainId, this.config.rollupVersion, protocolContractsHash, this.archiver, this.proofVerifier, !this.config.disableTransactions, allowedInSetup, this.logger.getBindings());
1577
1714
  }
1578
1715
  /**
1579
1716
  * Run validations on a tx.
@@ -1632,7 +1769,7 @@ _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
1632
1769
  const indices = await merkleTree.findLeafIndices(MerkleTreeId.NULLIFIER_TREE, nullifiers);
1633
1770
  return indices.map((index)=>index !== undefined);
1634
1771
  }
1635
- });
1772
+ }, this.logger.getBindings());
1636
1773
  const validSnapshot = await snapshotValidator.validateTx(tx);
1637
1774
  if (validSnapshot.result !== 'valid') {
1638
1775
  return PeerErrorSeverity.LowToleranceError;
@@ -1645,41 +1782,12 @@ _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
1645
1782
  * @param attestation - The checkpoint attestation to validate.
1646
1783
  * @returns True if the checkpoint attestation is valid, false otherwise.
1647
1784
  */ async validateCheckpointAttestation(peerId, attestation) {
1648
- const severity = await this.checkpointAttestationValidator.validate(attestation);
1649
- if (severity) {
1650
- this.logger.debug(`Penalizing peer ${peerId} for checkpoint attestation validation failure`);
1651
- this.peerManager.penalizePeer(peerId, severity);
1652
- return false;
1785
+ const result = await this.checkpointAttestationValidator.validate(attestation);
1786
+ if (result.result === 'reject') {
1787
+ this.logger.warn(`Penalizing peer ${peerId} for checkpoint attestation validation failure`);
1788
+ this.peerManager.penalizePeer(peerId, result.severity);
1653
1789
  }
1654
- return true;
1655
- }
1656
- /**
1657
- * Validate a block proposal.
1658
- *
1659
- * @param block - The block proposal to validate.
1660
- * @returns True if the block proposal is valid, false otherwise.
1661
- */ async validateBlockProposal(peerId, block) {
1662
- const severity = await this.blockProposalValidator.validate(block);
1663
- if (severity) {
1664
- this.logger.debug(`Penalizing peer ${peerId} for block proposal validation failure`);
1665
- this.peerManager.penalizePeer(peerId, severity);
1666
- return false;
1667
- }
1668
- return true;
1669
- }
1670
- /**
1671
- * Validate a checkpoint proposal.
1672
- *
1673
- * @param checkpoint - The checkpoint proposal to validate.
1674
- * @returns True if the checkpoint proposal is valid, false otherwise.
1675
- */ async validateCheckpointProposal(peerId, checkpoint) {
1676
- const severity = await this.checkpointProposalValidator.validate(checkpoint);
1677
- if (severity) {
1678
- this.logger.debug(`Penalizing peer ${peerId} for checkpoint proposal validation failure`);
1679
- this.peerManager.penalizePeer(peerId, severity);
1680
- return false;
1681
- }
1682
- return true;
1790
+ return result;
1683
1791
  }
1684
1792
  getPeerScore(peerId) {
1685
1793
  return this.node.services.pubsub.score.score(peerId.toString());