@aztec/p2p 0.0.1-commit.e2b2873ed → 0.0.1-commit.e304674f1

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 (407) hide show
  1. package/README.md +129 -3
  2. package/dest/client/factory.d.ts +7 -7
  3. package/dest/client/factory.d.ts.map +1 -1
  4. package/dest/client/factory.js +37 -30
  5. package/dest/client/interface.d.ts +22 -20
  6. package/dest/client/interface.d.ts.map +1 -1
  7. package/dest/client/p2p_client.d.ts +11 -19
  8. package/dest/client/p2p_client.d.ts.map +1 -1
  9. package/dest/client/p2p_client.js +83 -102
  10. package/dest/client/test/tx_proposal_collector/proposal_tx_collector_worker.js +20 -10
  11. package/dest/config.d.ts +43 -15
  12. package/dest/config.d.ts.map +1 -1
  13. package/dest/config.js +91 -37
  14. package/dest/errors/p2p-service.error.d.ts +9 -0
  15. package/dest/errors/p2p-service.error.d.ts.map +1 -0
  16. package/dest/errors/p2p-service.error.js +10 -0
  17. package/dest/errors/tx-pool.error.d.ts +8 -0
  18. package/dest/errors/tx-pool.error.d.ts.map +1 -0
  19. package/dest/errors/tx-pool.error.js +9 -0
  20. package/dest/index.d.ts +1 -2
  21. package/dest/index.d.ts.map +1 -1
  22. package/dest/index.js +0 -1
  23. package/dest/mem_pools/attestation_pool/attestation_pool.d.ts +7 -5
  24. package/dest/mem_pools/attestation_pool/attestation_pool.d.ts.map +1 -1
  25. package/dest/mem_pools/attestation_pool/attestation_pool.js +16 -6
  26. package/dest/mem_pools/attestation_pool/attestation_pool_test_suite.js +6 -6
  27. package/dest/mem_pools/attestation_pool/mocks.d.ts +2 -2
  28. package/dest/mem_pools/attestation_pool/mocks.d.ts.map +1 -1
  29. package/dest/mem_pools/attestation_pool/mocks.js +2 -2
  30. package/dest/mem_pools/index.d.ts +1 -2
  31. package/dest/mem_pools/index.d.ts.map +1 -1
  32. package/dest/mem_pools/instrumentation.d.ts +4 -2
  33. package/dest/mem_pools/instrumentation.d.ts.map +1 -1
  34. package/dest/mem_pools/instrumentation.js +16 -14
  35. package/dest/mem_pools/tx_pool_v2/deleted_pool.d.ts +30 -13
  36. package/dest/mem_pools/tx_pool_v2/deleted_pool.d.ts.map +1 -1
  37. package/dest/mem_pools/tx_pool_v2/deleted_pool.js +91 -20
  38. package/dest/mem_pools/tx_pool_v2/eviction/eviction_manager.d.ts +3 -3
  39. package/dest/mem_pools/tx_pool_v2/eviction/eviction_manager.d.ts.map +1 -1
  40. package/dest/mem_pools/tx_pool_v2/eviction/eviction_manager.js +18 -9
  41. package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.d.ts +1 -1
  42. package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.d.ts.map +1 -1
  43. package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.js +7 -3
  44. package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_pre_add_rule.d.ts +3 -3
  45. package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_pre_add_rule.d.ts.map +1 -1
  46. package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_pre_add_rule.js +12 -4
  47. package/dest/mem_pools/tx_pool_v2/eviction/index.d.ts +2 -2
  48. package/dest/mem_pools/tx_pool_v2/eviction/index.d.ts.map +1 -1
  49. package/dest/mem_pools/tx_pool_v2/eviction/index.js +1 -1
  50. package/dest/mem_pools/tx_pool_v2/eviction/interfaces.d.ts +54 -5
  51. package/dest/mem_pools/tx_pool_v2/eviction/interfaces.d.ts.map +1 -1
  52. package/dest/mem_pools/tx_pool_v2/eviction/interfaces.js +8 -0
  53. package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_mining_rule.js +7 -5
  54. package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_reorg_rule.js +7 -5
  55. package/dest/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.d.ts +2 -2
  56. package/dest/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.d.ts.map +1 -1
  57. package/dest/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.js +14 -6
  58. package/dest/mem_pools/tx_pool_v2/eviction/low_priority_pre_add_rule.d.ts +4 -4
  59. package/dest/mem_pools/tx_pool_v2/eviction/low_priority_pre_add_rule.d.ts.map +1 -1
  60. package/dest/mem_pools/tx_pool_v2/eviction/low_priority_pre_add_rule.js +16 -4
  61. package/dest/mem_pools/tx_pool_v2/eviction/nullifier_conflict_rule.d.ts +3 -3
  62. package/dest/mem_pools/tx_pool_v2/eviction/nullifier_conflict_rule.d.ts.map +1 -1
  63. package/dest/mem_pools/tx_pool_v2/eviction/nullifier_conflict_rule.js +3 -3
  64. package/dest/mem_pools/tx_pool_v2/index.d.ts +2 -2
  65. package/dest/mem_pools/tx_pool_v2/index.d.ts.map +1 -1
  66. package/dest/mem_pools/tx_pool_v2/index.js +1 -1
  67. package/dest/mem_pools/tx_pool_v2/instrumentation.d.ts +15 -0
  68. package/dest/mem_pools/tx_pool_v2/instrumentation.d.ts.map +1 -0
  69. package/dest/mem_pools/tx_pool_v2/instrumentation.js +43 -0
  70. package/dest/mem_pools/tx_pool_v2/interfaces.d.ts +28 -10
  71. package/dest/mem_pools/tx_pool_v2/interfaces.d.ts.map +1 -1
  72. package/dest/mem_pools/tx_pool_v2/interfaces.js +5 -1
  73. package/dest/mem_pools/tx_pool_v2/tx_metadata.d.ts +56 -15
  74. package/dest/mem_pools/tx_pool_v2/tx_metadata.d.ts.map +1 -1
  75. package/dest/mem_pools/tx_pool_v2/tx_metadata.js +112 -19
  76. package/dest/mem_pools/tx_pool_v2/tx_pool_indices.d.ts +12 -3
  77. package/dest/mem_pools/tx_pool_v2/tx_pool_indices.d.ts.map +1 -1
  78. package/dest/mem_pools/tx_pool_v2/tx_pool_indices.js +50 -45
  79. package/dest/mem_pools/tx_pool_v2/tx_pool_v2.d.ts +12 -5
  80. package/dest/mem_pools/tx_pool_v2/tx_pool_v2.d.ts.map +1 -1
  81. package/dest/mem_pools/tx_pool_v2/tx_pool_v2.js +17 -6
  82. package/dest/mem_pools/tx_pool_v2/tx_pool_v2_impl.d.ts +14 -5
  83. package/dest/mem_pools/tx_pool_v2/tx_pool_v2_impl.d.ts.map +1 -1
  84. package/dest/mem_pools/tx_pool_v2/tx_pool_v2_impl.js +319 -147
  85. package/dest/msg_validators/attestation_validator/attestation_validator.d.ts +1 -1
  86. package/dest/msg_validators/attestation_validator/attestation_validator.d.ts.map +1 -1
  87. package/dest/msg_validators/attestation_validator/attestation_validator.js +5 -4
  88. package/dest/msg_validators/clock_tolerance.d.ts +1 -1
  89. package/dest/msg_validators/clock_tolerance.d.ts.map +1 -1
  90. package/dest/msg_validators/clock_tolerance.js +4 -3
  91. package/dest/msg_validators/proposal_validator/block_proposal_validator.d.ts +6 -4
  92. package/dest/msg_validators/proposal_validator/block_proposal_validator.d.ts.map +1 -1
  93. package/dest/msg_validators/proposal_validator/block_proposal_validator.js +10 -2
  94. package/dest/msg_validators/proposal_validator/checkpoint_proposal_validator.d.ts +6 -4
  95. package/dest/msg_validators/proposal_validator/checkpoint_proposal_validator.d.ts.map +1 -1
  96. package/dest/msg_validators/proposal_validator/checkpoint_proposal_validator.js +16 -2
  97. package/dest/msg_validators/proposal_validator/proposal_validator.d.ts +13 -8
  98. package/dest/msg_validators/proposal_validator/proposal_validator.d.ts.map +1 -1
  99. package/dest/msg_validators/proposal_validator/proposal_validator.js +53 -41
  100. package/dest/msg_validators/tx_validator/aggregate_tx_validator.d.ts +2 -2
  101. package/dest/msg_validators/tx_validator/aggregate_tx_validator.d.ts.map +1 -1
  102. package/dest/msg_validators/tx_validator/aggregate_tx_validator.js +3 -3
  103. package/dest/msg_validators/tx_validator/allowed_public_setup.d.ts +2 -1
  104. package/dest/msg_validators/tx_validator/allowed_public_setup.d.ts.map +1 -1
  105. package/dest/msg_validators/tx_validator/allowed_public_setup.js +24 -20
  106. package/dest/msg_validators/tx_validator/allowed_setup_helpers.d.ts +17 -0
  107. package/dest/msg_validators/tx_validator/allowed_setup_helpers.d.ts.map +1 -0
  108. package/dest/msg_validators/tx_validator/allowed_setup_helpers.js +24 -0
  109. package/dest/msg_validators/tx_validator/contract_instance_validator.d.ts +9 -0
  110. package/dest/msg_validators/tx_validator/contract_instance_validator.d.ts.map +1 -0
  111. package/dest/msg_validators/tx_validator/contract_instance_validator.js +48 -0
  112. package/dest/msg_validators/tx_validator/data_validator.d.ts +1 -1
  113. package/dest/msg_validators/tx_validator/data_validator.d.ts.map +1 -1
  114. package/dest/msg_validators/tx_validator/data_validator.js +35 -2
  115. package/dest/msg_validators/tx_validator/factory.d.ts +133 -6
  116. package/dest/msg_validators/tx_validator/factory.d.ts.map +1 -1
  117. package/dest/msg_validators/tx_validator/factory.js +247 -60
  118. package/dest/msg_validators/tx_validator/fee_payer_balance.d.ts +1 -1
  119. package/dest/msg_validators/tx_validator/fee_payer_balance.d.ts.map +1 -1
  120. package/dest/msg_validators/tx_validator/fee_payer_balance.js +6 -2
  121. package/dest/msg_validators/tx_validator/gas_validator.d.ts +67 -3
  122. package/dest/msg_validators/tx_validator/gas_validator.d.ts.map +1 -1
  123. package/dest/msg_validators/tx_validator/gas_validator.js +112 -43
  124. package/dest/msg_validators/tx_validator/index.d.ts +3 -1
  125. package/dest/msg_validators/tx_validator/index.d.ts.map +1 -1
  126. package/dest/msg_validators/tx_validator/index.js +2 -0
  127. package/dest/msg_validators/tx_validator/metadata_validator.d.ts +1 -1
  128. package/dest/msg_validators/tx_validator/metadata_validator.d.ts.map +1 -1
  129. package/dest/msg_validators/tx_validator/metadata_validator.js +4 -4
  130. package/dest/msg_validators/tx_validator/nullifier_cache.d.ts +14 -0
  131. package/dest/msg_validators/tx_validator/nullifier_cache.d.ts.map +1 -0
  132. package/dest/msg_validators/tx_validator/nullifier_cache.js +24 -0
  133. package/dest/msg_validators/tx_validator/phases_validator.d.ts +22 -2
  134. package/dest/msg_validators/tx_validator/phases_validator.d.ts.map +1 -1
  135. package/dest/msg_validators/tx_validator/phases_validator.js +72 -24
  136. package/dest/msg_validators/tx_validator/timestamp_validator.d.ts +2 -2
  137. package/dest/msg_validators/tx_validator/timestamp_validator.d.ts.map +1 -1
  138. package/dest/msg_validators/tx_validator/timestamp_validator.js +6 -6
  139. package/dest/services/dummy_service.d.ts +7 -5
  140. package/dest/services/dummy_service.d.ts.map +1 -1
  141. package/dest/services/dummy_service.js +9 -5
  142. package/dest/services/encoding.d.ts +6 -2
  143. package/dest/services/encoding.d.ts.map +1 -1
  144. package/dest/services/encoding.js +16 -9
  145. package/dest/services/gossipsub/topic_score_params.d.ts +18 -6
  146. package/dest/services/gossipsub/topic_score_params.d.ts.map +1 -1
  147. package/dest/services/gossipsub/topic_score_params.js +32 -10
  148. package/dest/services/libp2p/libp2p_service.d.ts +29 -36
  149. package/dest/services/libp2p/libp2p_service.d.ts.map +1 -1
  150. package/dest/services/libp2p/libp2p_service.js +213 -197
  151. package/dest/services/peer-manager/metrics.d.ts +3 -1
  152. package/dest/services/peer-manager/metrics.d.ts.map +1 -1
  153. package/dest/services/peer-manager/metrics.js +6 -0
  154. package/dest/services/peer-manager/peer_manager.d.ts +6 -2
  155. package/dest/services/peer-manager/peer_manager.d.ts.map +1 -1
  156. package/dest/services/peer-manager/peer_manager.js +24 -9
  157. package/dest/services/peer-manager/peer_scoring.d.ts +7 -2
  158. package/dest/services/peer-manager/peer_scoring.d.ts.map +1 -1
  159. package/dest/services/peer-manager/peer_scoring.js +32 -10
  160. package/dest/services/reqresp/batch-tx-requester/batch_tx_requester.d.ts +12 -8
  161. package/dest/services/reqresp/batch-tx-requester/batch_tx_requester.d.ts.map +1 -1
  162. package/dest/services/reqresp/batch-tx-requester/batch_tx_requester.js +83 -106
  163. package/dest/services/reqresp/batch-tx-requester/interface.d.ts +4 -7
  164. package/dest/services/reqresp/batch-tx-requester/interface.d.ts.map +1 -1
  165. package/dest/services/reqresp/batch-tx-requester/missing_txs.d.ts +11 -13
  166. package/dest/services/reqresp/batch-tx-requester/missing_txs.d.ts.map +1 -1
  167. package/dest/services/reqresp/batch-tx-requester/missing_txs.js +31 -46
  168. package/dest/services/reqresp/batch-tx-requester/peer_collection.d.ts +19 -11
  169. package/dest/services/reqresp/batch-tx-requester/peer_collection.d.ts.map +1 -1
  170. package/dest/services/reqresp/batch-tx-requester/peer_collection.js +52 -15
  171. package/dest/services/reqresp/batch-tx-requester/tx_validator.js +2 -2
  172. package/dest/services/reqresp/interface.d.ts +1 -9
  173. package/dest/services/reqresp/interface.d.ts.map +1 -1
  174. package/dest/services/reqresp/interface.js +0 -11
  175. package/dest/services/reqresp/metrics.d.ts +1 -1
  176. package/dest/services/reqresp/metrics.d.ts.map +1 -1
  177. package/dest/services/reqresp/metrics.js +0 -1
  178. package/dest/services/reqresp/protocols/index.d.ts +1 -2
  179. package/dest/services/reqresp/protocols/index.d.ts.map +1 -1
  180. package/dest/services/reqresp/protocols/index.js +0 -1
  181. package/dest/services/reqresp/protocols/tx.d.ts +1 -1
  182. package/dest/services/reqresp/protocols/tx.d.ts.map +1 -1
  183. package/dest/services/reqresp/protocols/tx.js +1 -3
  184. package/dest/services/reqresp/rate-limiter/rate_limiter.d.ts +5 -4
  185. package/dest/services/reqresp/rate-limiter/rate_limiter.d.ts.map +1 -1
  186. package/dest/services/reqresp/rate-limiter/rate_limiter.js +10 -8
  187. package/dest/services/reqresp/rate-limiter/rate_limits.d.ts +1 -1
  188. package/dest/services/reqresp/rate-limiter/rate_limits.d.ts.map +1 -1
  189. package/dest/services/reqresp/rate-limiter/rate_limits.js +0 -10
  190. package/dest/services/reqresp/reqresp.d.ts +1 -1
  191. package/dest/services/reqresp/reqresp.d.ts.map +1 -1
  192. package/dest/services/reqresp/reqresp.js +20 -11
  193. package/dest/services/service.d.ts +9 -4
  194. package/dest/services/service.d.ts.map +1 -1
  195. package/dest/services/tx_collection/config.d.ts +13 -1
  196. package/dest/services/tx_collection/config.d.ts.map +1 -1
  197. package/dest/services/tx_collection/config.js +30 -0
  198. package/dest/services/tx_collection/fast_tx_collection.d.ts +1 -4
  199. package/dest/services/tx_collection/fast_tx_collection.d.ts.map +1 -1
  200. package/dest/services/tx_collection/fast_tx_collection.js +65 -75
  201. package/dest/services/tx_collection/file_store_tx_collection.d.ts +38 -29
  202. package/dest/services/tx_collection/file_store_tx_collection.d.ts.map +1 -1
  203. package/dest/services/tx_collection/file_store_tx_collection.js +126 -77
  204. package/dest/services/tx_collection/file_store_tx_source.d.ts +17 -6
  205. package/dest/services/tx_collection/file_store_tx_source.d.ts.map +1 -1
  206. package/dest/services/tx_collection/file_store_tx_source.js +53 -10
  207. package/dest/services/tx_collection/instrumentation.d.ts +1 -1
  208. package/dest/services/tx_collection/instrumentation.d.ts.map +1 -1
  209. package/dest/services/tx_collection/instrumentation.js +2 -1
  210. package/dest/services/tx_collection/proposal_tx_collector.d.ts +7 -7
  211. package/dest/services/tx_collection/proposal_tx_collector.d.ts.map +1 -1
  212. package/dest/services/tx_collection/proposal_tx_collector.js +5 -4
  213. package/dest/services/tx_collection/request_tracker.d.ts +53 -0
  214. package/dest/services/tx_collection/request_tracker.d.ts.map +1 -0
  215. package/dest/services/tx_collection/request_tracker.js +84 -0
  216. package/dest/services/tx_collection/slow_tx_collection.d.ts +5 -3
  217. package/dest/services/tx_collection/slow_tx_collection.d.ts.map +1 -1
  218. package/dest/services/tx_collection/slow_tx_collection.js +17 -12
  219. package/dest/services/tx_collection/tx_collection.d.ts +9 -9
  220. package/dest/services/tx_collection/tx_collection.d.ts.map +1 -1
  221. package/dest/services/tx_collection/tx_collection.js +26 -10
  222. package/dest/services/tx_collection/tx_collection_sink.d.ts +6 -5
  223. package/dest/services/tx_collection/tx_collection_sink.d.ts.map +1 -1
  224. package/dest/services/tx_collection/tx_collection_sink.js +13 -22
  225. package/dest/services/tx_collection/tx_source.d.ts +13 -7
  226. package/dest/services/tx_collection/tx_source.d.ts.map +1 -1
  227. package/dest/services/tx_collection/tx_source.js +26 -7
  228. package/dest/services/tx_file_store/tx_file_store.d.ts +3 -2
  229. package/dest/services/tx_file_store/tx_file_store.d.ts.map +1 -1
  230. package/dest/services/tx_file_store/tx_file_store.js +9 -6
  231. package/dest/services/tx_provider.d.ts +3 -3
  232. package/dest/services/tx_provider.d.ts.map +1 -1
  233. package/dest/services/tx_provider.js +4 -4
  234. package/dest/test-helpers/make-test-p2p-clients.d.ts +5 -6
  235. package/dest/test-helpers/make-test-p2p-clients.d.ts.map +1 -1
  236. package/dest/test-helpers/make-test-p2p-clients.js +1 -2
  237. package/dest/test-helpers/mock-pubsub.d.ts +4 -4
  238. package/dest/test-helpers/mock-pubsub.d.ts.map +1 -1
  239. package/dest/test-helpers/mock-pubsub.js +8 -2
  240. package/dest/test-helpers/reqresp-nodes.d.ts +2 -3
  241. package/dest/test-helpers/reqresp-nodes.d.ts.map +1 -1
  242. package/dest/test-helpers/reqresp-nodes.js +2 -4
  243. package/dest/test-helpers/testbench-utils.d.ts +8 -3
  244. package/dest/test-helpers/testbench-utils.d.ts.map +1 -1
  245. package/dest/test-helpers/testbench-utils.js +30 -4
  246. package/dest/testbench/p2p_client_testbench_worker.d.ts +2 -2
  247. package/dest/testbench/p2p_client_testbench_worker.d.ts.map +1 -1
  248. package/dest/testbench/p2p_client_testbench_worker.js +78 -26
  249. package/dest/testbench/worker_client_manager.d.ts +10 -1
  250. package/dest/testbench/worker_client_manager.d.ts.map +1 -1
  251. package/dest/testbench/worker_client_manager.js +55 -3
  252. package/dest/util.d.ts +3 -3
  253. package/dest/util.d.ts.map +1 -1
  254. package/package.json +14 -14
  255. package/src/client/factory.ts +68 -48
  256. package/src/client/interface.ts +26 -21
  257. package/src/client/p2p_client.ts +91 -132
  258. package/src/client/test/tx_proposal_collector/proposal_tx_collector_worker.ts +33 -14
  259. package/src/config.ts +133 -43
  260. package/src/errors/p2p-service.error.ts +11 -0
  261. package/src/errors/tx-pool.error.ts +12 -0
  262. package/src/index.ts +0 -1
  263. package/src/mem_pools/attestation_pool/attestation_pool.ts +20 -9
  264. package/src/mem_pools/attestation_pool/attestation_pool_test_suite.ts +6 -6
  265. package/src/mem_pools/attestation_pool/mocks.ts +2 -1
  266. package/src/mem_pools/index.ts +0 -3
  267. package/src/mem_pools/instrumentation.ts +17 -13
  268. package/src/mem_pools/tx_pool_v2/README.md +52 -28
  269. package/src/mem_pools/tx_pool_v2/deleted_pool.ts +109 -22
  270. package/src/mem_pools/tx_pool_v2/eviction/eviction_manager.ts +21 -8
  271. package/src/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.ts +7 -3
  272. package/src/mem_pools/tx_pool_v2/eviction/fee_payer_balance_pre_add_rule.ts +18 -4
  273. package/src/mem_pools/tx_pool_v2/eviction/index.ts +4 -0
  274. package/src/mem_pools/tx_pool_v2/eviction/interfaces.ts +59 -4
  275. package/src/mem_pools/tx_pool_v2/eviction/invalid_txs_after_mining_rule.ts +5 -5
  276. package/src/mem_pools/tx_pool_v2/eviction/invalid_txs_after_reorg_rule.ts +5 -5
  277. package/src/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.ts +14 -9
  278. package/src/mem_pools/tx_pool_v2/eviction/low_priority_pre_add_rule.ts +33 -6
  279. package/src/mem_pools/tx_pool_v2/eviction/nullifier_conflict_rule.ts +4 -3
  280. package/src/mem_pools/tx_pool_v2/index.ts +1 -1
  281. package/src/mem_pools/tx_pool_v2/instrumentation.ts +69 -0
  282. package/src/mem_pools/tx_pool_v2/interfaces.ts +30 -10
  283. package/src/mem_pools/tx_pool_v2/tx_metadata.ts +163 -27
  284. package/src/mem_pools/tx_pool_v2/tx_pool_indices.ts +58 -45
  285. package/src/mem_pools/tx_pool_v2/tx_pool_v2.ts +34 -8
  286. package/src/mem_pools/tx_pool_v2/tx_pool_v2_impl.ts +353 -143
  287. package/src/msg_validators/attestation_validator/README.md +49 -0
  288. package/src/msg_validators/attestation_validator/attestation_validator.ts +5 -4
  289. package/src/msg_validators/clock_tolerance.ts +4 -3
  290. package/src/msg_validators/proposal_validator/README.md +123 -0
  291. package/src/msg_validators/proposal_validator/block_proposal_validator.ts +14 -4
  292. package/src/msg_validators/proposal_validator/checkpoint_proposal_validator.ts +20 -7
  293. package/src/msg_validators/proposal_validator/proposal_validator.ts +69 -45
  294. package/src/msg_validators/tx_validator/README.md +119 -0
  295. package/src/msg_validators/tx_validator/aggregate_tx_validator.ts +3 -3
  296. package/src/msg_validators/tx_validator/allowed_public_setup.ts +22 -27
  297. package/src/msg_validators/tx_validator/allowed_setup_helpers.ts +31 -0
  298. package/src/msg_validators/tx_validator/contract_instance_validator.ts +56 -0
  299. package/src/msg_validators/tx_validator/data_validator.ts +42 -1
  300. package/src/msg_validators/tx_validator/factory.ts +394 -78
  301. package/src/msg_validators/tx_validator/fee_payer_balance.ts +6 -2
  302. package/src/msg_validators/tx_validator/gas_validator.ts +145 -33
  303. package/src/msg_validators/tx_validator/index.ts +2 -0
  304. package/src/msg_validators/tx_validator/metadata_validator.ts +12 -4
  305. package/src/msg_validators/tx_validator/nullifier_cache.ts +30 -0
  306. package/src/msg_validators/tx_validator/phases_validator.ts +82 -27
  307. package/src/msg_validators/tx_validator/timestamp_validator.ts +7 -7
  308. package/src/services/dummy_service.ts +12 -7
  309. package/src/services/encoding.ts +16 -8
  310. package/src/services/gossipsub/README.md +29 -14
  311. package/src/services/gossipsub/topic_score_params.ts +49 -13
  312. package/src/services/libp2p/libp2p_service.ts +228 -223
  313. package/src/services/peer-manager/metrics.ts +7 -0
  314. package/src/services/peer-manager/peer_manager.ts +28 -9
  315. package/src/services/peer-manager/peer_scoring.ts +27 -5
  316. package/src/services/reqresp/README.md +229 -0
  317. package/src/services/reqresp/batch-tx-requester/README.md +46 -7
  318. package/src/services/reqresp/batch-tx-requester/batch_tx_requester.ts +79 -112
  319. package/src/services/reqresp/batch-tx-requester/interface.ts +3 -6
  320. package/src/services/reqresp/batch-tx-requester/missing_txs.ts +30 -71
  321. package/src/services/reqresp/batch-tx-requester/peer_collection.ts +68 -24
  322. package/src/services/reqresp/batch-tx-requester/tx_validator.ts +2 -2
  323. package/src/services/reqresp/interface.ts +0 -11
  324. package/src/services/reqresp/metrics.ts +0 -1
  325. package/src/services/reqresp/protocols/index.ts +0 -1
  326. package/src/services/reqresp/protocols/tx.ts +1 -3
  327. package/src/services/reqresp/rate-limiter/rate_limiter.ts +13 -9
  328. package/src/services/reqresp/rate-limiter/rate_limits.ts +0 -10
  329. package/src/services/reqresp/reqresp.ts +23 -13
  330. package/src/services/service.ts +17 -3
  331. package/src/services/tx_collection/config.ts +42 -0
  332. package/src/services/tx_collection/fast_tx_collection.ts +71 -76
  333. package/src/services/tx_collection/file_store_tx_collection.ts +143 -93
  334. package/src/services/tx_collection/file_store_tx_source.ts +69 -10
  335. package/src/services/tx_collection/instrumentation.ts +7 -1
  336. package/src/services/tx_collection/proposal_tx_collector.ts +9 -13
  337. package/src/services/tx_collection/request_tracker.ts +127 -0
  338. package/src/services/tx_collection/slow_tx_collection.ts +17 -13
  339. package/src/services/tx_collection/tx_collection.ts +46 -17
  340. package/src/services/tx_collection/tx_collection_sink.ts +15 -29
  341. package/src/services/tx_collection/tx_source.ts +28 -8
  342. package/src/services/tx_file_store/tx_file_store.ts +6 -4
  343. package/src/services/tx_provider.ts +2 -2
  344. package/src/test-helpers/make-test-p2p-clients.ts +1 -3
  345. package/src/test-helpers/mock-pubsub.ts +13 -6
  346. package/src/test-helpers/reqresp-nodes.ts +3 -8
  347. package/src/test-helpers/testbench-utils.ts +41 -6
  348. package/src/testbench/p2p_client_testbench_worker.ts +89 -29
  349. package/src/testbench/worker_client_manager.ts +68 -6
  350. package/src/util.ts +8 -2
  351. package/dest/mem_pools/tx_pool/aztec_kv_tx_pool.d.ts +0 -125
  352. package/dest/mem_pools/tx_pool/aztec_kv_tx_pool.d.ts.map +0 -1
  353. package/dest/mem_pools/tx_pool/aztec_kv_tx_pool.js +0 -596
  354. package/dest/mem_pools/tx_pool/eviction/eviction_manager.d.ts +0 -32
  355. package/dest/mem_pools/tx_pool/eviction/eviction_manager.d.ts.map +0 -1
  356. package/dest/mem_pools/tx_pool/eviction/eviction_manager.js +0 -112
  357. package/dest/mem_pools/tx_pool/eviction/eviction_strategy.d.ts +0 -157
  358. package/dest/mem_pools/tx_pool/eviction/eviction_strategy.d.ts.map +0 -1
  359. package/dest/mem_pools/tx_pool/eviction/eviction_strategy.js +0 -52
  360. package/dest/mem_pools/tx_pool/eviction/fee_payer_balance_eviction_rule.d.ts +0 -16
  361. package/dest/mem_pools/tx_pool/eviction/fee_payer_balance_eviction_rule.d.ts.map +0 -1
  362. package/dest/mem_pools/tx_pool/eviction/fee_payer_balance_eviction_rule.js +0 -122
  363. package/dest/mem_pools/tx_pool/eviction/invalid_txs_after_mining_rule.d.ts +0 -17
  364. package/dest/mem_pools/tx_pool/eviction/invalid_txs_after_mining_rule.d.ts.map +0 -1
  365. package/dest/mem_pools/tx_pool/eviction/invalid_txs_after_mining_rule.js +0 -84
  366. package/dest/mem_pools/tx_pool/eviction/invalid_txs_after_reorg_rule.d.ts +0 -19
  367. package/dest/mem_pools/tx_pool/eviction/invalid_txs_after_reorg_rule.d.ts.map +0 -1
  368. package/dest/mem_pools/tx_pool/eviction/invalid_txs_after_reorg_rule.js +0 -78
  369. package/dest/mem_pools/tx_pool/eviction/low_priority_eviction_rule.d.ts +0 -26
  370. package/dest/mem_pools/tx_pool/eviction/low_priority_eviction_rule.d.ts.map +0 -1
  371. package/dest/mem_pools/tx_pool/eviction/low_priority_eviction_rule.js +0 -84
  372. package/dest/mem_pools/tx_pool/eviction/nullifier_conflict_pre_add_rule.d.ts +0 -25
  373. package/dest/mem_pools/tx_pool/eviction/nullifier_conflict_pre_add_rule.d.ts.map +0 -1
  374. package/dest/mem_pools/tx_pool/eviction/nullifier_conflict_pre_add_rule.js +0 -57
  375. package/dest/mem_pools/tx_pool/index.d.ts +0 -3
  376. package/dest/mem_pools/tx_pool/index.d.ts.map +0 -1
  377. package/dest/mem_pools/tx_pool/index.js +0 -2
  378. package/dest/mem_pools/tx_pool/priority.d.ts +0 -12
  379. package/dest/mem_pools/tx_pool/priority.d.ts.map +0 -1
  380. package/dest/mem_pools/tx_pool/priority.js +0 -15
  381. package/dest/mem_pools/tx_pool/tx_pool.d.ts +0 -127
  382. package/dest/mem_pools/tx_pool/tx_pool.d.ts.map +0 -1
  383. package/dest/mem_pools/tx_pool/tx_pool.js +0 -3
  384. package/dest/mem_pools/tx_pool/tx_pool_test_suite.d.ts +0 -7
  385. package/dest/mem_pools/tx_pool/tx_pool_test_suite.d.ts.map +0 -1
  386. package/dest/mem_pools/tx_pool/tx_pool_test_suite.js +0 -400
  387. package/dest/msg_validators/proposal_validator/proposal_validator_test_suite.d.ts +0 -23
  388. package/dest/msg_validators/proposal_validator/proposal_validator_test_suite.d.ts.map +0 -1
  389. package/dest/msg_validators/proposal_validator/proposal_validator_test_suite.js +0 -212
  390. package/dest/services/reqresp/protocols/block.d.ts +0 -9
  391. package/dest/services/reqresp/protocols/block.d.ts.map +0 -1
  392. package/dest/services/reqresp/protocols/block.js +0 -32
  393. package/src/mem_pools/tx_pool/README.md +0 -270
  394. package/src/mem_pools/tx_pool/aztec_kv_tx_pool.ts +0 -746
  395. package/src/mem_pools/tx_pool/eviction/eviction_manager.ts +0 -132
  396. package/src/mem_pools/tx_pool/eviction/eviction_strategy.ts +0 -208
  397. package/src/mem_pools/tx_pool/eviction/fee_payer_balance_eviction_rule.ts +0 -162
  398. package/src/mem_pools/tx_pool/eviction/invalid_txs_after_mining_rule.ts +0 -104
  399. package/src/mem_pools/tx_pool/eviction/invalid_txs_after_reorg_rule.ts +0 -93
  400. package/src/mem_pools/tx_pool/eviction/low_priority_eviction_rule.ts +0 -106
  401. package/src/mem_pools/tx_pool/eviction/nullifier_conflict_pre_add_rule.ts +0 -75
  402. package/src/mem_pools/tx_pool/index.ts +0 -2
  403. package/src/mem_pools/tx_pool/priority.ts +0 -20
  404. package/src/mem_pools/tx_pool/tx_pool.ts +0 -141
  405. package/src/mem_pools/tx_pool/tx_pool_test_suite.ts +0 -319
  406. package/src/msg_validators/proposal_validator/proposal_validator_test_suite.ts +0 -230
  407. package/src/services/reqresp/protocols/block.ts +0 -37
@@ -370,14 +370,15 @@ 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, _dec9, _initProto;
373
+ var _dec, _dec1, _dec2, _dec3, _dec4, _dec5, _dec6, _initProto;
374
374
  import { BlockNumber } from '@aztec/foundation/branded-types';
375
+ import { maxBy } from '@aztec/foundation/collection';
375
376
  import { createLibp2pComponentLogger, createLogger } from '@aztec/foundation/log';
376
377
  import { RunningPromise } from '@aztec/foundation/running-promise';
377
378
  import { Timer } from '@aztec/foundation/timer';
378
379
  import { protocolContractsHash } from '@aztec/protocol-contracts';
379
380
  import { GasFees } from '@aztec/stdlib/gas';
380
- import { BlockProposal, CheckpointAttestation, CheckpointProposal, P2PClientType, P2PMessage, PeerErrorSeverity, TopicType, createTopicString, getTopicsForClientAndConfig, metricsTopicStrToLabels } from '@aztec/stdlib/p2p';
381
+ import { BlockProposal, CheckpointAttestation, CheckpointProposal, P2PMessage, PeerErrorSeverity, PeerErrorSeverityByHarshness, TopicType, createTopicString, getTopicsForConfig, metricsTopicStrToLabels } from '@aztec/stdlib/p2p';
381
382
  import { MerkleTreeId } from '@aztec/stdlib/trees';
382
383
  import { Tx } from '@aztec/stdlib/tx';
383
384
  import { compressComponentVersions } from '@aztec/stdlib/versioning';
@@ -394,9 +395,10 @@ import { mplex } from '@libp2p/mplex';
394
395
  import { tcp } from '@libp2p/tcp';
395
396
  import { ENR } from '@nethermindeth/enr';
396
397
  import { createLibp2p } from 'libp2p';
398
+ import { CheckpointProposalReceivedCallbackNotRegisteredError } from '../../errors/p2p-service.error.js';
397
399
  import { BlockProposalValidator, CheckpointAttestationValidator, CheckpointProposalValidator, DoubleSpendTxValidator, FishermanAttestationValidator, getDefaultAllowedSetupFunctions } from '../../msg_validators/index.js';
398
400
  import { MessageSeenValidator } from '../../msg_validators/msg_seen_validator/msg_seen_validator.js';
399
- import { createTxMessageValidators, createTxReqRespValidator } from '../../msg_validators/tx_validator/factory.js';
401
+ import { createFirstStageTxValidationsForGossipedTransactions, createSecondStageTxValidationsForGossipedTransactions, createTxValidatorForBlockProposalReceivedTxs, createTxValidatorForReqResponseReceivedTxs } from '../../msg_validators/tx_validator/factory.js';
400
402
  import { GossipSubEvent } from '../../types/index.js';
401
403
  import { convertToMultiaddr } from '../../util.js';
402
404
  import { getVersions } from '../../versioning.js';
@@ -407,8 +409,7 @@ import { APP_SPECIFIC_WEIGHT, gossipScoreThresholds } from '../gossipsub/scoring
407
409
  import { createAllTopicScoreParams } from '../gossipsub/topic_score_params.js';
408
410
  import { PeerManager } from '../peer-manager/peer_manager.js';
409
411
  import { PeerScoring } from '../peer-manager/peer_scoring.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';
412
+ import { DEFAULT_SUB_PROTOCOL_VALIDATORS, ReqRespSubProtocol, ValidationError, pingHandler, reqGoodbyeHandler, reqRespBlockTxsHandler, reqRespStatusHandler, reqRespTxHandler } from '../reqresp/index.js';
412
413
  import { ReqResp } from '../reqresp/reqresp.js';
413
414
  import { P2PInstrumentation } from './instrumentation.js';
414
415
  _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId, attestation)=>({
@@ -430,19 +431,10 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
430
431
  [Attributes.BLOCK_ARCHIVE]: request.archiveRoot.toString()
431
432
  })), _dec6 = trackSpan('Libp2pService.validateRequestedTx', (requestedTxHash, _responseTx)=>({
432
433
  [Attributes.TX_HASH]: requestedTxHash.toString()
433
- })), _dec7 = trackSpan('Libp2pService.validateRequestedBlock', (requestedBlockNumber, _responseBlock)=>({
434
- [Attributes.BLOCK_NUMBER]: requestedBlockNumber.toString()
435
- })), _dec8 = trackSpan('Libp2pService.validatePropagatedTx', (tx)=>({
436
- [Attributes.TX_HASH]: tx.getTxHash().toString()
437
- })), _dec9 = trackSpan('Libp2pService.validateCheckpointAttestation', async (_, attestation)=>({
438
- [Attributes.SLOT_NUMBER]: attestation.payload.header.slotNumber,
439
- [Attributes.BLOCK_ARCHIVE]: attestation.archive.toString(),
440
- [Attributes.P2P_ID]: await attestation.p2pMessageLoggingIdentifier().then((i)=>i.toString())
441
434
  }));
442
435
  /**
443
436
  * Lib P2P implementation of the P2PService interface.
444
437
  */ export class LibP2PService extends WithTracer {
445
- clientType;
446
438
  config;
447
439
  node;
448
440
  peerDiscoveryService;
@@ -489,21 +481,6 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
489
481
  _dec6,
490
482
  2,
491
483
  "validateRequestedTxs"
492
- ],
493
- [
494
- _dec7,
495
- 2,
496
- "validateRequestedBlock"
497
- ],
498
- [
499
- _dec8,
500
- 2,
501
- "validatePropagatedTx"
502
- ],
503
- [
504
- _dec9,
505
- 2,
506
- "validateCheckpointAttestation"
507
484
  ]
508
485
  ], []));
509
486
  }
@@ -527,13 +504,18 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
527
504
  * Callback for when a checkpoint proposal is received from a peer.
528
505
  * @param checkpoint - The checkpoint proposal received from the peer.
529
506
  * @returns The attestations for the checkpoint, if any.
530
- */ checkpointReceivedCallback;
507
+ */ allNodesCheckpointReceivedCallback;
508
+ /**
509
+ * Callback for when a checkpoint proposal is received - specifically for validators - from a peer.
510
+ * @param checkpoint - The checkpoint proposal received from the peer.
511
+ * @returns The attestations for the checkpoint, if any.
512
+ */ validatorCheckpointReceivedCallback;
531
513
  gossipSubEventHandler;
532
514
  instrumentation;
533
515
  telemetry;
534
516
  logger;
535
- constructor(clientType, config, node, peerDiscoveryService, reqresp, peerManager, mempools, archiver, epochCache, proofVerifier, worldStateSynchronizer, telemetry, logger = createLogger('p2p:libp2p_service')){
536
- super(telemetry, 'LibP2PService'), this.clientType = clientType, this.config = config, this.node = node, this.peerDiscoveryService = peerDiscoveryService, this.reqresp = reqresp, this.peerManager = peerManager, this.mempools = mempools, this.archiver = archiver, this.epochCache = epochCache, this.proofVerifier = proofVerifier, this.worldStateSynchronizer = worldStateSynchronizer, this.msgIdSeenValidators = (_initProto(this), {}), this.protocolVersion = '', this.topicStrings = {};
517
+ constructor(config, node, peerDiscoveryService, reqresp, peerManager, mempools, archiver, epochCache, proofVerifier, worldStateSynchronizer, telemetry, logger = createLogger('p2p:libp2p_service')){
518
+ super(telemetry, 'LibP2PService'), this.config = config, this.node = node, this.peerDiscoveryService = peerDiscoveryService, this.reqresp = reqresp, this.peerManager = peerManager, this.mempools = mempools, this.archiver = archiver, this.epochCache = epochCache, this.proofVerifier = proofVerifier, this.worldStateSynchronizer = worldStateSynchronizer, this.msgIdSeenValidators = (_initProto(this), {}), this.protocolVersion = '', this.topicStrings = {};
537
519
  this.telemetry = telemetry;
538
520
  // Create child logger with fisherman prefix if in fisherman mode
539
521
  this.logger = config.fishermanMode ? logger.createChild('[FISHERMAN]') : logger;
@@ -549,22 +531,24 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
549
531
  this.topicStrings[TopicType.block_proposal] = createTopicString(TopicType.block_proposal, this.protocolVersion);
550
532
  this.topicStrings[TopicType.checkpoint_proposal] = createTopicString(TopicType.checkpoint_proposal, this.protocolVersion);
551
533
  this.topicStrings[TopicType.checkpoint_attestation] = createTopicString(TopicType.checkpoint_attestation, this.protocolVersion);
552
- this.blockProposalValidator = new BlockProposalValidator(epochCache, {
553
- txsPermitted: !config.disableTransactions
554
- });
555
- this.checkpointProposalValidator = new CheckpointProposalValidator(epochCache, {
556
- txsPermitted: !config.disableTransactions
557
- });
534
+ const proposalValidatorOpts = {
535
+ txsPermitted: !config.disableTransactions,
536
+ maxTxsPerBlock: config.validateMaxTxsPerBlock ?? config.validateMaxTxsPerCheckpoint
537
+ };
538
+ this.blockProposalValidator = new BlockProposalValidator(epochCache, proposalValidatorOpts);
539
+ this.checkpointProposalValidator = new CheckpointProposalValidator(epochCache, proposalValidatorOpts);
558
540
  this.checkpointAttestationValidator = config.fishermanMode ? new FishermanAttestationValidator(epochCache, mempools.attestationPool, telemetry) : new CheckpointAttestationValidator(epochCache);
559
541
  this.gossipSubEventHandler = this.handleGossipSubEvent.bind(this);
560
542
  this.blockReceivedCallback = async (block)=>{
561
- this.logger.debug(`Handler not yet registered: Block received callback not set. Received block for slot ${block.slotNumber} from peer.`, {
543
+ this.logger.warn(`Handler for block received not yet registered on P2P service. Received block ${block.blockNumber} for slot ${block.slotNumber} from peer.`, {
562
544
  p2pMessageIdentifier: await block.p2pMessageLoggingIdentifier()
563
545
  });
564
- return false;
546
+ return true;
565
547
  };
566
- this.checkpointReceivedCallback = (checkpoint)=>{
567
- this.logger.debug(`Handler not yet registered: Checkpoint received callback not set. Received checkpoint for slot ${checkpoint.slotNumber} from peer.`);
548
+ this.allNodesCheckpointReceivedCallback = (_checkpoint)=>{
549
+ throw new CheckpointProposalReceivedCallbackNotRegisteredError();
550
+ };
551
+ this.validatorCheckpointReceivedCallback = (_checkpoint)=>{
568
552
  return Promise.resolve(undefined);
569
553
  };
570
554
  }
@@ -576,7 +560,7 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
576
560
  * @param config - The configuration to use when creating the service.
577
561
  * @param txPool - The transaction pool to be accessed by the service.
578
562
  * @returns The new service.
579
- */ static async new(clientType, config, peerId, deps) {
563
+ */ static async new(config, peerId, deps) {
580
564
  const { worldStateSynchronizer, epochCache, l2BlockSource, mempools, proofVerifier, peerStore, telemetry, logger, packageVersion } = deps;
581
565
  const { p2pPort, maxPeerCount, listenAddress } = config;
582
566
  const bindAddrTcp = convertToMultiaddr(listenAddress, p2pPort, 'tcp');
@@ -619,7 +603,8 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
619
603
  slotDurationMs: l1Constants.slotDuration * 1000,
620
604
  heartbeatIntervalMs: config.gossipsubInterval,
621
605
  targetCommitteeSize: l1Constants.targetCommitteeSize,
622
- blockDurationMs: config.blockDurationMs
606
+ blockDurationMs: config.blockDurationMs,
607
+ expectedBlockProposalsPerSlot: config.expectedBlockProposalsPerSlot
623
608
  });
624
609
  const node = await createLibp2p({
625
610
  start: false,
@@ -740,7 +725,7 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
740
725
  // Note: positive topic scores can offset penalties, so alignment is best-effort.
741
726
  node.services.pubsub.score.params.appSpecificWeight = APP_SPECIFIC_WEIGHT;
742
727
  node.services.pubsub.score.params.appSpecificScore = (peerId)=>peerManager.shouldDisableP2PGossip(peerId) ? -Infinity : peerManager.getPeerScore(peerId);
743
- return new LibP2PService(clientType, config, node, peerDiscoveryService, reqresp, peerManager, mempools, l2BlockSource, epochCache, proofVerifier, worldStateSynchronizer, telemetry, logger);
728
+ return new LibP2PService(config, node, peerDiscoveryService, reqresp, peerManager, mempools, l2BlockSource, epochCache, proofVerifier, worldStateSynchronizer, telemetry, logger);
744
729
  }
745
730
  /**
746
731
  * Starts the LibP2P service.
@@ -759,13 +744,11 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
759
744
  // Create request response protocol handlers
760
745
  const txHandler = reqRespTxHandler(this.mempools);
761
746
  const goodbyeHandler = reqGoodbyeHandler(this.peerManager);
762
- const blockHandler = reqRespBlockHandler(this.archiver);
763
747
  const statusHandler = reqRespStatusHandler(this.protocolVersion, this.worldStateSynchronizer, this.logger);
764
748
  const requestResponseHandlers = {
765
749
  [ReqRespSubProtocol.PING]: pingHandler,
766
750
  [ReqRespSubProtocol.STATUS]: statusHandler.bind(this),
767
- [ReqRespSubProtocol.GOODBYE]: goodbyeHandler.bind(this),
768
- [ReqRespSubProtocol.BLOCK]: blockHandler.bind(this)
751
+ [ReqRespSubProtocol.GOODBYE]: goodbyeHandler.bind(this)
769
752
  };
770
753
  if (!this.config.disableTransactions) {
771
754
  const blockTxsHandler = reqRespBlockTxsHandler(this.mempools.attestationPool, this.archiver, this.mempools.txPool);
@@ -778,14 +761,13 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
778
761
  const reqrespSubProtocolValidators = {
779
762
  ...DEFAULT_SUB_PROTOCOL_VALIDATORS,
780
763
  [ReqRespSubProtocol.TX]: this.validateRequestedTxs.bind(this),
781
- [ReqRespSubProtocol.BLOCK_TXS]: this.validateRequestedBlockTxs.bind(this),
782
- [ReqRespSubProtocol.BLOCK]: this.validateRequestedBlock.bind(this)
764
+ [ReqRespSubProtocol.BLOCK_TXS]: this.validateRequestedBlockTxs.bind(this)
783
765
  };
784
766
  await this.peerManager.initializePeers();
785
767
  await this.reqresp.start(requestResponseHandlers, reqrespSubProtocolValidators);
786
768
  await this.node.start();
787
769
  // Subscribe to standard GossipSub topics by default
788
- for (const topic of getTopicsForClientAndConfig(this.clientType, this.config.disableTransactions)){
770
+ for (const topic of getTopicsForConfig(this.config.disableTransactions)){
789
771
  this.subscribeToTopic(this.topicStrings[topic]);
790
772
  }
791
773
  // add GossipSub listener
@@ -833,6 +815,9 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
833
815
  getPeers(includePending) {
834
816
  return this.peerManager.getPeers(includePending);
835
817
  }
818
+ getGossipMeshPeerCount(topicType) {
819
+ return this.node.services.pubsub.getMeshPeers(this.topicStrings[topicType]).length;
820
+ }
836
821
  handleGossipSubEvent(e) {
837
822
  this.logger.trace(`Received PUBSUB message.`);
838
823
  const safeJob = async ()=>{
@@ -864,8 +849,14 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
864
849
  registerBlockReceivedCallback(callback) {
865
850
  this.blockReceivedCallback = callback;
866
851
  }
867
- registerCheckpointReceivedCallback(callback) {
868
- this.checkpointReceivedCallback = callback;
852
+ registerValidatorCheckpointReceivedCallback(callback) {
853
+ this.validatorCheckpointReceivedCallback = callback;
854
+ }
855
+ registerAllNodesCheckpointReceivedCallback(callback) {
856
+ this.allNodesCheckpointReceivedCallback = callback;
857
+ }
858
+ async notifyOwnCheckpointProposal(checkpoint) {
859
+ await this.allNodesCheckpointReceivedCallback(checkpoint, this.node.peerId);
869
860
  }
870
861
  /**
871
862
  * Registers a callback to be invoked when a duplicate proposal is detected.
@@ -931,6 +922,12 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
931
922
  if (!validator || !validator.addMessage(msgId)) {
932
923
  this.instrumentation.incMessagePrevalidationStatus(false, topicType);
933
924
  this.node.services.pubsub.reportMessageValidationResult(msgId, source.toString(), TopicValidatorResult.Ignore);
925
+ if (topicType === TopicType.tx) {
926
+ this.logger.verbose(`Ignoring already-seen tx gossip message`, {
927
+ msgId,
928
+ source: source.toString()
929
+ });
930
+ }
934
931
  return {
935
932
  result: false,
936
933
  topicType
@@ -991,9 +988,7 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
991
988
  if (msg.topic === this.topicStrings[TopicType.tx]) {
992
989
  await this.handleGossipedTx(p2pMessage.payload, msgId, source);
993
990
  } else if (msg.topic === this.topicStrings[TopicType.checkpoint_attestation]) {
994
- if (this.clientType === P2PClientType.Full) {
995
- await this.processCheckpointAttestationFromPeer(p2pMessage.payload, msgId, source);
996
- }
991
+ await this.processCheckpointAttestationFromPeer(p2pMessage.payload, msgId, source);
997
992
  } else if (msg.topic === this.topicStrings[TopicType.block_proposal]) {
998
993
  await this.processBlockFromPeer(p2pMessage.payload, msgId, source);
999
994
  } else if (msg.topic === this.topicStrings[TopicType.checkpoint_proposal]) {
@@ -1038,39 +1033,119 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
1038
1033
  return;
1039
1034
  }
1040
1035
  async validateReceivedMessage(validationFunc, msgId, source, topicType) {
1036
+ // Default to reject result with a penalty if validation function throws an error
1041
1037
  let resultAndObj = {
1042
- result: TopicValidatorResult.Reject
1038
+ result: TopicValidatorResult.Reject,
1039
+ severity: PeerErrorSeverity.MidToleranceError
1043
1040
  };
1044
1041
  const timer = new Timer();
1045
1042
  try {
1046
1043
  resultAndObj = await validationFunc();
1047
1044
  } catch (err) {
1048
- this.peerManager.penalizePeer(source, PeerErrorSeverity.LowToleranceError);
1049
- this.logger.error(`Error deserializing and validating gossipsub message`, err, {
1045
+ this.logger.error(`Error validating gossipsub message`, err, {
1050
1046
  msgId,
1051
1047
  source: source.toString(),
1052
1048
  topicType
1053
1049
  });
1054
1050
  }
1055
1051
  if (resultAndObj.result === TopicValidatorResult.Accept) {
1052
+ this.logger.debug(`Message ${topicType} accepted by validator`, {
1053
+ msgId,
1054
+ source: source.toString(),
1055
+ topicType
1056
+ });
1056
1057
  this.instrumentation.recordMessageValidation(topicType, timer);
1058
+ } else if (resultAndObj.result === TopicValidatorResult.Reject) {
1059
+ this.logger.warn(`Message ${topicType} rejected by validator with severity ${resultAndObj.severity}`, {
1060
+ msgId,
1061
+ source: source.toString(),
1062
+ topicType,
1063
+ severity: resultAndObj.severity
1064
+ });
1065
+ this.peerManager.penalizePeer(source, resultAndObj.severity);
1066
+ } else {
1067
+ this.logger.trace(`Message ${topicType} ignored by validator`, {
1068
+ msgId,
1069
+ source: source.toString(),
1070
+ topicType
1071
+ });
1057
1072
  }
1058
1073
  this.node.services.pubsub.reportMessageValidationResult(msgId, source.toString(), resultAndObj.result);
1059
1074
  return resultAndObj;
1060
1075
  }
1076
+ tryDeserialize(deserializeFunc, msgId, source) {
1077
+ try {
1078
+ return deserializeFunc();
1079
+ } catch (err) {
1080
+ this.logger.warn(`Failed to deserialize gossipsub message from buffer`, {
1081
+ err,
1082
+ msgId,
1083
+ source: source.toString()
1084
+ });
1085
+ return undefined;
1086
+ }
1087
+ }
1061
1088
  async handleGossipedTx(payloadData, msgId, source) {
1062
1089
  const validationFunc = async ()=>{
1063
- const tx = Tx.fromBuffer(payloadData);
1064
- const isValid = await this.validatePropagatedTx(tx, source);
1065
- if (!isValid) {
1066
- this.logger.trace(`Rejecting invalid propagated tx`, {
1067
- [Attributes.P2P_ID]: source.toString()
1090
+ const tx = this.tryDeserialize(()=>Tx.fromBuffer(payloadData), msgId, source);
1091
+ if (!tx) {
1092
+ return {
1093
+ result: TopicValidatorResult.Reject,
1094
+ severity: PeerErrorSeverity.LowToleranceError
1095
+ };
1096
+ }
1097
+ const currentBlockNumber = await this.archiver.getBlockNumber();
1098
+ const { ts: nextSlotTimestamp } = this.epochCache.getEpochAndSlotInNextL1Slot();
1099
+ // Stage 1: fast validators (metadata, data, timestamps, double-spend, gas, phases, block header)
1100
+ const firstStageValidators = await this.createFirstStageMessageValidators(currentBlockNumber, nextSlotTimestamp);
1101
+ const firstStageOutcome = await this.runValidations(tx, firstStageValidators);
1102
+ if (!firstStageOutcome.allPassed) {
1103
+ const { name } = firstStageOutcome.failure;
1104
+ let { severity } = firstStageOutcome.failure;
1105
+ // Double spend validator has a special case handler. We perform more detailed examination
1106
+ // as to how recently the nullifier was entered into the tree and if the transaction should
1107
+ // have 'known' the nullifier existed. This determines the severity of the penalty applied to the peer.
1108
+ if (name === 'doubleSpendValidator') {
1109
+ const txBlockNumber = BlockNumber(currentBlockNumber + 1);
1110
+ severity = await this.handleDoubleSpendFailure(tx, txBlockNumber);
1111
+ }
1112
+ this.logger.verbose(`Rejecting gossiped tx ${tx.getTxHash().toString()}: stage 1 validation failed`, {
1113
+ validator: name,
1114
+ severity,
1115
+ source: source.toString()
1116
+ });
1117
+ return {
1118
+ result: TopicValidatorResult.Reject,
1119
+ severity
1120
+ };
1121
+ }
1122
+ // Pool pre-check: see if the pool would accept this tx before doing expensive proof verification
1123
+ const canAdd = await this.mempools.txPool.canAddPendingTx(tx);
1124
+ if (canAdd === 'ignored') {
1125
+ this.logger.verbose(`Ignoring gossiped tx ${tx.getTxHash().toString()}: pool pre-check returned ignored`, {
1126
+ source: source.toString()
1068
1127
  });
1069
1128
  return {
1070
- result: TopicValidatorResult.Reject
1129
+ result: TopicValidatorResult.Ignore,
1130
+ obj: tx
1071
1131
  };
1072
1132
  }
1073
- // Propagate only on pool acceptance
1133
+ // Stage 2: expensive proof verification
1134
+ const secondStageValidators = this.createSecondStageMessageValidators();
1135
+ const secondStageOutcome = await this.runValidations(tx, secondStageValidators);
1136
+ if (!secondStageOutcome.allPassed) {
1137
+ const { severity, name } = secondStageOutcome.failure;
1138
+ this.logger.verbose(`Rejecting gossiped tx ${tx.getTxHash().toString()}: stage 2 validation failed`, {
1139
+ validator: name,
1140
+ severity,
1141
+ source: source.toString()
1142
+ });
1143
+ return {
1144
+ result: TopicValidatorResult.Reject,
1145
+ severity
1146
+ };
1147
+ }
1148
+ // Pool add: persist the tx
1074
1149
  const txHash = tx.getTxHash();
1075
1150
  const addResult = await this.mempools.txPool.addPendingTxs([
1076
1151
  tx
@@ -1079,8 +1154,7 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
1079
1154
  });
1080
1155
  const wasAccepted = addResult.accepted.some((h)=>h.equals(txHash));
1081
1156
  const wasIgnored = addResult.ignored.some((h)=>h.equals(txHash));
1082
- this.logger.trace(`Validate propagated tx`, {
1083
- isValid,
1157
+ this.logger.verbose(`Validate propagated tx ${txHash.toString()}`, {
1084
1158
  wasAccepted,
1085
1159
  wasIgnored,
1086
1160
  [Attributes.P2P_ID]: source.toString()
@@ -1096,8 +1170,13 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
1096
1170
  obj: tx
1097
1171
  };
1098
1172
  } else {
1173
+ this.logger.warn(`Gossiped tx ${txHash.toString()} unexpectedly rejected by pool`, {
1174
+ source: source.toString(),
1175
+ txHash: txHash.toString()
1176
+ });
1099
1177
  return {
1100
- result: TopicValidatorResult.Reject
1178
+ result: TopicValidatorResult.Reject,
1179
+ severity: PeerErrorSeverity.HighToleranceError
1101
1180
  };
1102
1181
  }
1103
1182
  };
@@ -1118,7 +1197,16 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
1118
1197
  * Process a checkpoint attestation from a peer.
1119
1198
  * Validates the attestation and adds it to the pool.
1120
1199
  */ async processCheckpointAttestationFromPeer(payloadData, msgId, source) {
1121
- const { result, obj: attestation } = await this.validateReceivedMessage(()=>this.validateAndStoreCheckpointAttestation(source, CheckpointAttestation.fromBuffer(payloadData)), msgId, source, TopicType.checkpoint_attestation);
1200
+ const { result, obj: attestation } = await this.validateReceivedMessage(()=>{
1201
+ const attestation = this.tryDeserialize(()=>CheckpointAttestation.fromBuffer(payloadData), msgId, source);
1202
+ if (!attestation) {
1203
+ return Promise.resolve({
1204
+ result: TopicValidatorResult.Reject,
1205
+ severity: PeerErrorSeverity.LowToleranceError
1206
+ });
1207
+ }
1208
+ return this.validateAndStoreCheckpointAttestation(source, attestation);
1209
+ }, msgId, source, TopicType.checkpoint_attestation);
1122
1210
  if (result !== TopicValidatorResult.Accept || !attestation) {
1123
1211
  return;
1124
1212
  }
@@ -1133,9 +1221,9 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
1133
1221
  const validationResult = await this.checkpointAttestationValidator.validate(attestation);
1134
1222
  if (validationResult.result === 'reject') {
1135
1223
  this.logger.warn(`Penalizing peer ${peerId} for checkpoint attestation validation failure`);
1136
- this.peerManager.penalizePeer(peerId, validationResult.severity);
1137
1224
  return {
1138
- result: TopicValidatorResult.Reject
1225
+ result: TopicValidatorResult.Reject,
1226
+ severity: validationResult.severity
1139
1227
  };
1140
1228
  }
1141
1229
  if (validationResult.result === 'ignore') {
@@ -1162,9 +1250,9 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
1162
1250
  obj: attestation
1163
1251
  };
1164
1252
  }
1165
- // Could not add (cap reached for signer), no need to re-broadcast
1253
+ // Could not add (cap reached for signer), penalize and do not re-broadcast
1166
1254
  if (!added) {
1167
- this.logger.warn(`Dropping checkpoint attestation due to cap`, {
1255
+ this.logger.warn(`Rejecting checkpoint attestation due to cap`, {
1168
1256
  slot: slot.toString(),
1169
1257
  archive: attestation.archive.toString(),
1170
1258
  source: peerId.toString(),
@@ -1172,8 +1260,8 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
1172
1260
  count
1173
1261
  });
1174
1262
  return {
1175
- result: TopicValidatorResult.Ignore,
1176
- obj: attestation
1263
+ result: TopicValidatorResult.Reject,
1264
+ severity: PeerErrorSeverity.HighToleranceError
1177
1265
  };
1178
1266
  }
1179
1267
  // Check if this is a duplicate attestation (signer attested to a different proposal at the same slot)
@@ -1211,9 +1299,9 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
1211
1299
  const validationResult = await this.blockProposalValidator.validate(block);
1212
1300
  if (validationResult.result === 'reject') {
1213
1301
  this.logger.warn(`Penalizing peer ${peerId} for block proposal validation failure`);
1214
- this.peerManager.penalizePeer(peerId, validationResult.severity);
1215
1302
  return {
1216
- result: TopicValidatorResult.Reject
1303
+ result: TopicValidatorResult.Reject,
1304
+ severity: validationResult.severity
1217
1305
  };
1218
1306
  }
1219
1307
  if (validationResult.result === 'ignore') {
@@ -1243,7 +1331,6 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
1243
1331
  }
1244
1332
  // Too many blocks received for this slot and index, penalize peer and do not re-broadcast
1245
1333
  if (!added) {
1246
- this.peerManager.penalizePeer(peerId, PeerErrorSeverity.HighToleranceError);
1247
1334
  this.logger.warn(`Penalizing peer for block proposal exceeding per-position cap`, {
1248
1335
  ...block.toBlockInfo(),
1249
1336
  indexWithinCheckpoint: block.indexWithinCheckpoint,
@@ -1255,7 +1342,8 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
1255
1342
  result: TopicValidatorResult.Reject,
1256
1343
  metadata: {
1257
1344
  isEquivocated
1258
- }
1345
+ },
1346
+ severity: PeerErrorSeverity.HighToleranceError
1259
1347
  };
1260
1348
  }
1261
1349
  // If this was a duplicate proposal, do not process it, but do invoke the duplicate callback,
@@ -1304,7 +1392,7 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
1304
1392
  // Note: Validators do NOT attest to individual blocks, only to checkpoint proposals.
1305
1393
  const isValid = await this.blockReceivedCallback(block, sender);
1306
1394
  if (!isValid) {
1307
- this.logger.warn(`Block proposal validation failed for block ${block.blockNumber}`, block.toBlockInfo());
1395
+ this.logger.info(`Block proposal validation failed for block ${block.blockNumber}`, block.toBlockInfo());
1308
1396
  }
1309
1397
  }
1310
1398
  /**
@@ -1329,9 +1417,9 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
1329
1417
  const validationResult = await this.checkpointProposalValidator.validate(checkpoint);
1330
1418
  if (validationResult.result === 'reject') {
1331
1419
  this.logger.warn(`Penalizing peer ${peerId} for checkpoint proposal validation failure`);
1332
- this.peerManager.penalizePeer(peerId, validationResult.severity);
1333
1420
  return {
1334
- result: TopicValidatorResult.Reject
1421
+ result: TopicValidatorResult.Reject,
1422
+ severity: validationResult.severity
1335
1423
  };
1336
1424
  }
1337
1425
  if (validationResult.result === 'ignore') {
@@ -1348,18 +1436,20 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
1348
1436
  [Attributes.SLOT_NUMBER]: checkpoint.slotNumber.toString(),
1349
1437
  [Attributes.P2P_ID]: peerId.toString()
1350
1438
  });
1351
- const { result, obj, metadata: { isEquivocated } = {} } = await this.validateAndStoreBlockProposal(peerId, blockProposal);
1352
- if (result === TopicValidatorResult.Reject || !obj || isEquivocated) {
1439
+ const blockProposalResult = await this.validateAndStoreBlockProposal(peerId, blockProposal);
1440
+ const { obj, metadata: { isEquivocated } = {} } = blockProposalResult;
1441
+ if (blockProposalResult.result === TopicValidatorResult.Reject || !obj || isEquivocated) {
1353
1442
  this.logger.debug(`Rejecting checkpoint due to invalid last block proposal`, {
1354
1443
  [Attributes.SLOT_NUMBER]: checkpoint.slotNumber.toString(),
1355
1444
  [Attributes.P2P_ID]: peerId.toString(),
1356
1445
  isEquivocated,
1357
- result
1446
+ result: blockProposalResult.result
1358
1447
  });
1359
1448
  return {
1360
- result: TopicValidatorResult.Reject
1449
+ result: TopicValidatorResult.Reject,
1450
+ severity: 'severity' in blockProposalResult ? blockProposalResult.severity : PeerErrorSeverity.MidToleranceError
1361
1451
  };
1362
- } else if (result === TopicValidatorResult.Accept && obj && !isEquivocated) {
1452
+ } else if (blockProposalResult.result === TopicValidatorResult.Accept && obj && !isEquivocated) {
1363
1453
  processBlock = true;
1364
1454
  }
1365
1455
  }
@@ -1386,7 +1476,6 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
1386
1476
  // Too many checkpoint proposals received for this slot, penalize peer and do not re-broadcast
1387
1477
  // Note: We still return the checkpoint obj so the lastBlock can be processed if valid
1388
1478
  if (!added) {
1389
- this.peerManager.penalizePeer(peerId, PeerErrorSeverity.HighToleranceError);
1390
1479
  this.logger.warn(`Penalizing peer for checkpoint proposal exceeding per-slot cap`, {
1391
1480
  ...checkpoint.toCheckpointInfo(),
1392
1481
  count,
@@ -1398,7 +1487,8 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
1398
1487
  metadata: {
1399
1488
  isEquivocated,
1400
1489
  processBlock
1401
- }
1490
+ },
1491
+ severity: PeerErrorSeverity.HighToleranceError
1402
1492
  };
1403
1493
  }
1404
1494
  // If this was a duplicate proposal, do not process it, but do invoke the duplicate callback,
@@ -1448,9 +1538,10 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
1448
1538
  archive: checkpoint.archive.toString(),
1449
1539
  source: sender.toString()
1450
1540
  });
1541
+ await this.allNodesCheckpointReceivedCallback(checkpoint, sender);
1451
1542
  // Call the checkpoint received callback with the core version (without lastBlock)
1452
1543
  // to validate and potentially generate attestations
1453
- const attestations = await this.checkpointReceivedCallback(checkpoint, sender);
1544
+ const attestations = await this.validatorCheckpointReceivedCallback(checkpoint, sender);
1454
1545
  if (attestations && attestations.length > 0) {
1455
1546
  // If the callback returned attestations, add them to the pool and propagate them
1456
1547
  await this.mempools.attestationPool.addOwnCheckpointAttestations(attestations);
@@ -1570,45 +1661,6 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
1570
1661
  return false;
1571
1662
  }
1572
1663
  }
1573
- /**
1574
- * Validates a BLOCK response.
1575
- *
1576
- * If a local copy exists, enforces hash equality. If missing, rejects (no penalty) since the hash cannot be verified.
1577
- * Penalizes on block number mismatch or hash mismatch.
1578
- *
1579
- * @param requestedBlockNumber - The requested block number.
1580
- * @param responseBlock - The block returned by the peer.
1581
- * @param peerId - The peer that returned the block.
1582
- * @returns True if the response is valid, false otherwise.
1583
- */ async validateRequestedBlock(requestedBlockNumber, responseBlock, peerId) {
1584
- try {
1585
- const reqNum = Number(requestedBlockNumber.toString());
1586
- if (responseBlock.number !== reqNum) {
1587
- this.peerManager.penalizePeer(peerId, PeerErrorSeverity.LowToleranceError);
1588
- return false;
1589
- }
1590
- const local = await this.archiver.getBlock(BlockNumber(reqNum));
1591
- if (!local) {
1592
- // We are missing the local block; we cannot verify the hash yet. Reject without penalizing.
1593
- // TODO: Consider extending this validator to accept an expected hash or
1594
- // performing quorum-based checks when using P2P syncing prior to L1 sync.
1595
- this.logger.warn(`Local block ${reqNum} not found; rejecting BLOCK response without hash verification`);
1596
- return false;
1597
- }
1598
- const [localHash, respHash] = await Promise.all([
1599
- local.hash(),
1600
- responseBlock.hash()
1601
- ]);
1602
- if (!localHash.equals(respHash)) {
1603
- this.peerManager.penalizePeer(peerId, PeerErrorSeverity.MidToleranceError);
1604
- return false;
1605
- }
1606
- return true;
1607
- } catch (e) {
1608
- this.logger.warn(`Error validating requested block`, e);
1609
- return false;
1610
- }
1611
- }
1612
1664
  async validateRequestedTx(tx, peerId, txValidator, requested) {
1613
1665
  const penalize = (severity)=>this.peerManager.penalizePeer(peerId, severity);
1614
1666
  if (requested && !requested.has(tx.getTxHash().toString())) {
@@ -1622,33 +1674,11 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
1622
1674
  }
1623
1675
  }
1624
1676
  createRequestedTxValidator() {
1625
- return createTxReqRespValidator(this.proofVerifier, {
1677
+ return createTxValidatorForReqResponseReceivedTxs(this.proofVerifier, {
1626
1678
  l1ChainId: this.config.l1ChainId,
1627
1679
  rollupVersion: this.config.rollupVersion
1628
1680
  });
1629
1681
  }
1630
- async validatePropagatedTx(tx, peerId) {
1631
- const currentBlockNumber = await this.archiver.getBlockNumber();
1632
- // We accept transactions if they are not expired by the next slot (checked based on the IncludeByTimestamp field)
1633
- const { ts: nextSlotTimestamp } = this.epochCache.getEpochAndSlotInNextL1Slot();
1634
- const messageValidators = await this.createMessageValidators(currentBlockNumber, nextSlotTimestamp);
1635
- for (const validator of messageValidators){
1636
- const outcome = await this.runValidations(tx, validator);
1637
- if (outcome.allPassed) {
1638
- continue;
1639
- }
1640
- const { name } = outcome.failure;
1641
- let { severity } = outcome.failure;
1642
- // Double spend validator has a special case handler
1643
- if (name === 'doubleSpendValidator') {
1644
- const txBlockNumber = BlockNumber(currentBlockNumber + 1); // tx is expected to be in the next block
1645
- severity = await this.handleDoubleSpendFailure(tx, txBlockNumber);
1646
- }
1647
- this.peerManager.penalizePeer(peerId, severity);
1648
- return false;
1649
- }
1650
- return true;
1651
- }
1652
1682
  async getGasFees(blockNumber) {
1653
1683
  if (blockNumber === this.feesCache?.blockNumber) {
1654
1684
  return this.feesCache.gasFees;
@@ -1675,38 +1705,35 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
1675
1705
  peerScoring: this.peerManager
1676
1706
  };
1677
1707
  }
1678
- async validate(txs) {
1679
- const currentBlockNumber = await this.archiver.getBlockNumber();
1680
- // We accept transactions if they are not expired by the next slot (checked based on the IncludeByTimestamp field)
1681
- const { ts: nextSlotTimestamp } = this.epochCache.getEpochAndSlotInNextL1Slot();
1682
- const messageValidators = await this.createMessageValidators(currentBlockNumber, nextSlotTimestamp);
1683
- await Promise.all(txs.map(async (tx)=>{
1684
- for (const validator of messageValidators){
1685
- const outcome = await this.runValidations(tx, validator);
1686
- if (!outcome.allPassed) {
1687
- throw new Error('Invalid tx detected', {
1688
- cause: {
1689
- outcome
1690
- }
1691
- });
1692
- }
1693
- }
1708
+ async validateTxsReceivedInBlockProposal(txs) {
1709
+ const validator = createTxValidatorForBlockProposalReceivedTxs(this.proofVerifier, {
1710
+ l1ChainId: this.config.l1ChainId,
1711
+ rollupVersion: this.config.rollupVersion
1712
+ }, this.logger.getBindings());
1713
+ const results = await Promise.all(txs.map(async (tx)=>{
1714
+ const result = await validator.validateTx(tx);
1715
+ return result.result !== 'invalid';
1694
1716
  }));
1717
+ if (results.some((value)=>value === false)) {
1718
+ throw new Error('Invalid tx detected');
1719
+ }
1695
1720
  }
1696
- /**
1697
- * Create message validators for the given block number and timestamp.
1698
- *
1699
- * Each validator is a pair of a validator and a severity.
1700
- * If a validator fails, the peer is penalized with the severity of the validator.
1701
- *
1702
- * @param currentBlockNumber - The current synced block number.
1703
- * @param nextSlotTimestamp - The timestamp of the next slot (used to validate txs are not expired).
1704
- * @returns The message validators.
1705
- */ async createMessageValidators(currentBlockNumber, nextSlotTimestamp) {
1721
+ /** Creates the first stage (fast) validators for gossiped transactions. */ async createFirstStageMessageValidators(currentBlockNumber, nextSlotTimestamp) {
1706
1722
  const gasFees = await this.getGasFees(currentBlockNumber);
1707
- const allowedInSetup = this.config.txPublicSetupAllowList ?? await getDefaultAllowedSetupFunctions();
1708
- const blockNumberInWhichTheTxIsConsideredToBeIncluded = BlockNumber(currentBlockNumber + 1);
1709
- 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());
1723
+ const allowedInSetup = [
1724
+ ...await getDefaultAllowedSetupFunctions(),
1725
+ ...this.config.txPublicSetupAllowListExtend ?? []
1726
+ ];
1727
+ const blockNumber = BlockNumber(currentBlockNumber + 1);
1728
+ const l1Constants = await this.archiver.getL1Constants();
1729
+ return createFirstStageTxValidationsForGossipedTransactions(nextSlotTimestamp, blockNumber, this.worldStateSynchronizer, gasFees, this.config.l1ChainId, this.config.rollupVersion, protocolContractsHash, this.archiver, !this.config.disableTransactions, allowedInSetup, this.logger.getBindings(), {
1730
+ rollupManaLimit: l1Constants.rollupManaLimit,
1731
+ maxBlockL2Gas: this.config.validateMaxL2BlockGas,
1732
+ maxBlockDAGas: this.config.validateMaxDABlockGas
1733
+ });
1734
+ }
1735
+ /** Creates the second stage (expensive proof verification) validators for gossiped transactions. */ createSecondStageMessageValidators() {
1736
+ return createSecondStageTxValidationsForGossipedTransactions(this.proofVerifier, this.logger.getBindings());
1710
1737
  }
1711
1738
  /**
1712
1739
  * Run validations on a tx.
@@ -1724,8 +1751,10 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
1724
1751
  });
1725
1752
  // A promise that resolves when all validations have been run
1726
1753
  const allValidations = await Promise.all(validationPromises);
1727
- const failed = allValidations.find((x)=>!x.isValid);
1728
- if (failed) {
1754
+ const failures = allValidations.filter((x)=>!x.isValid);
1755
+ if (failures.length > 0) {
1756
+ // Pick the most severe failure (lowest tolerance = harshest penalty)
1757
+ const failed = maxBy(failures, (f)=>PeerErrorSeverityByHarshness.indexOf(f.severity));
1729
1758
  return {
1730
1759
  allPassed: false,
1731
1760
  failure: {
@@ -1772,19 +1801,6 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
1772
1801
  }
1773
1802
  return PeerErrorSeverity.HighToleranceError;
1774
1803
  }
1775
- /**
1776
- * Validate a checkpoint attestation.
1777
- *
1778
- * @param attestation - The checkpoint attestation to validate.
1779
- * @returns True if the checkpoint attestation is valid, false otherwise.
1780
- */ async validateCheckpointAttestation(peerId, attestation) {
1781
- const result = await this.checkpointAttestationValidator.validate(attestation);
1782
- if (result.result === 'reject') {
1783
- this.logger.warn(`Penalizing peer ${peerId} for checkpoint attestation validation failure`);
1784
- this.peerManager.penalizePeer(peerId, result.severity);
1785
- }
1786
- return result;
1787
- }
1788
1804
  getPeerScore(peerId) {
1789
1805
  return this.node.services.pubsub.score.score(peerId.toString());
1790
1806
  }