@aztec/p2p 0.0.1-commit.6d3c34e → 0.0.1-commit.7cf39cb55

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 (475) hide show
  1. package/dest/bootstrap/bootstrap.d.ts +4 -3
  2. package/dest/bootstrap/bootstrap.d.ts.map +1 -1
  3. package/dest/bootstrap/bootstrap.js +4 -4
  4. package/dest/client/factory.d.ts +5 -5
  5. package/dest/client/factory.d.ts.map +1 -1
  6. package/dest/client/factory.js +50 -13
  7. package/dest/client/interface.d.ts +37 -15
  8. package/dest/client/interface.d.ts.map +1 -1
  9. package/dest/client/p2p_client.d.ts +37 -36
  10. package/dest/client/p2p_client.d.ts.map +1 -1
  11. package/dest/client/p2p_client.js +126 -139
  12. package/dest/client/test/tx_proposal_collector/proposal_tx_collector_worker.d.ts +2 -0
  13. package/dest/client/test/tx_proposal_collector/proposal_tx_collector_worker.d.ts.map +1 -0
  14. package/dest/client/test/tx_proposal_collector/proposal_tx_collector_worker.js +305 -0
  15. package/dest/client/test/tx_proposal_collector/proposal_tx_collector_worker_protocol.d.ts +73 -0
  16. package/dest/client/test/tx_proposal_collector/proposal_tx_collector_worker_protocol.d.ts.map +1 -0
  17. package/dest/client/test/tx_proposal_collector/proposal_tx_collector_worker_protocol.js +8 -0
  18. package/dest/config.d.ts +33 -3
  19. package/dest/config.d.ts.map +1 -1
  20. package/dest/config.js +23 -4
  21. package/dest/index.d.ts +2 -1
  22. package/dest/index.d.ts.map +1 -1
  23. package/dest/index.js +1 -0
  24. package/dest/mem_pools/attestation_pool/attestation_pool.d.ts +104 -88
  25. package/dest/mem_pools/attestation_pool/attestation_pool.d.ts.map +1 -1
  26. package/dest/mem_pools/attestation_pool/attestation_pool.js +441 -3
  27. package/dest/mem_pools/attestation_pool/attestation_pool_test_suite.d.ts +2 -2
  28. package/dest/mem_pools/attestation_pool/attestation_pool_test_suite.d.ts.map +1 -1
  29. package/dest/mem_pools/attestation_pool/attestation_pool_test_suite.js +373 -96
  30. package/dest/mem_pools/attestation_pool/index.d.ts +2 -3
  31. package/dest/mem_pools/attestation_pool/index.d.ts.map +1 -1
  32. package/dest/mem_pools/attestation_pool/index.js +1 -2
  33. package/dest/mem_pools/attestation_pool/mocks.d.ts +4 -2
  34. package/dest/mem_pools/attestation_pool/mocks.d.ts.map +1 -1
  35. package/dest/mem_pools/attestation_pool/mocks.js +8 -5
  36. package/dest/mem_pools/index.d.ts +3 -2
  37. package/dest/mem_pools/index.d.ts.map +1 -1
  38. package/dest/mem_pools/index.js +1 -1
  39. package/dest/mem_pools/instrumentation.d.ts +1 -1
  40. package/dest/mem_pools/instrumentation.d.ts.map +1 -1
  41. package/dest/mem_pools/instrumentation.js +2 -2
  42. package/dest/mem_pools/interface.d.ts +5 -5
  43. package/dest/mem_pools/interface.d.ts.map +1 -1
  44. package/dest/mem_pools/tx_pool/aztec_kv_tx_pool.d.ts +15 -10
  45. package/dest/mem_pools/tx_pool/aztec_kv_tx_pool.d.ts.map +1 -1
  46. package/dest/mem_pools/tx_pool/aztec_kv_tx_pool.js +91 -50
  47. package/dest/mem_pools/tx_pool/eviction/eviction_manager.d.ts +19 -5
  48. package/dest/mem_pools/tx_pool/eviction/eviction_manager.d.ts.map +1 -1
  49. package/dest/mem_pools/tx_pool/eviction/eviction_manager.js +59 -3
  50. package/dest/mem_pools/tx_pool/eviction/eviction_strategy.d.ts +79 -5
  51. package/dest/mem_pools/tx_pool/eviction/eviction_strategy.d.ts.map +1 -1
  52. package/dest/mem_pools/tx_pool/eviction/eviction_strategy.js +47 -0
  53. package/dest/mem_pools/tx_pool/eviction/fee_payer_balance_eviction_rule.d.ts +16 -0
  54. package/dest/mem_pools/tx_pool/eviction/fee_payer_balance_eviction_rule.d.ts.map +1 -0
  55. package/dest/mem_pools/tx_pool/eviction/fee_payer_balance_eviction_rule.js +122 -0
  56. package/dest/mem_pools/tx_pool/eviction/invalid_txs_after_mining_rule.d.ts +2 -2
  57. package/dest/mem_pools/tx_pool/eviction/invalid_txs_after_mining_rule.d.ts.map +1 -1
  58. package/dest/mem_pools/tx_pool/eviction/invalid_txs_after_reorg_rule.d.ts +4 -4
  59. package/dest/mem_pools/tx_pool/eviction/invalid_txs_after_reorg_rule.d.ts.map +1 -1
  60. package/dest/mem_pools/tx_pool/eviction/invalid_txs_after_reorg_rule.js +2 -0
  61. package/dest/mem_pools/tx_pool/eviction/low_priority_eviction_rule.d.ts +2 -2
  62. package/dest/mem_pools/tx_pool/eviction/low_priority_eviction_rule.d.ts.map +1 -1
  63. package/dest/mem_pools/tx_pool/eviction/nullifier_conflict_pre_add_rule.d.ts +25 -0
  64. package/dest/mem_pools/tx_pool/eviction/nullifier_conflict_pre_add_rule.d.ts.map +1 -0
  65. package/dest/mem_pools/tx_pool/eviction/nullifier_conflict_pre_add_rule.js +57 -0
  66. package/dest/mem_pools/tx_pool_v2/archive/index.d.ts +2 -0
  67. package/dest/mem_pools/tx_pool_v2/archive/index.d.ts.map +1 -0
  68. package/dest/mem_pools/tx_pool_v2/archive/index.js +1 -0
  69. package/dest/mem_pools/tx_pool_v2/archive/tx_archive.d.ts +43 -0
  70. package/dest/mem_pools/tx_pool_v2/archive/tx_archive.d.ts.map +1 -0
  71. package/dest/mem_pools/tx_pool_v2/archive/tx_archive.js +103 -0
  72. package/dest/mem_pools/tx_pool_v2/deleted_pool.d.ts +102 -0
  73. package/dest/mem_pools/tx_pool_v2/deleted_pool.d.ts.map +1 -0
  74. package/dest/mem_pools/tx_pool_v2/deleted_pool.js +242 -0
  75. package/dest/mem_pools/tx_pool_v2/eviction/eviction_manager.d.ts +47 -0
  76. package/dest/mem_pools/tx_pool_v2/eviction/eviction_manager.d.ts.map +1 -0
  77. package/dest/mem_pools/tx_pool_v2/eviction/eviction_manager.js +119 -0
  78. package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.d.ts +17 -0
  79. package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.d.ts.map +1 -0
  80. package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.js +93 -0
  81. package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_pre_add_rule.d.ts +19 -0
  82. package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_pre_add_rule.d.ts.map +1 -0
  83. package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_pre_add_rule.js +89 -0
  84. package/dest/mem_pools/tx_pool_v2/eviction/index.d.ts +10 -0
  85. package/dest/mem_pools/tx_pool_v2/eviction/index.d.ts.map +1 -0
  86. package/dest/mem_pools/tx_pool_v2/eviction/index.js +11 -0
  87. package/dest/mem_pools/tx_pool_v2/eviction/interfaces.d.ts +131 -0
  88. package/dest/mem_pools/tx_pool_v2/eviction/interfaces.d.ts.map +1 -0
  89. package/dest/mem_pools/tx_pool_v2/eviction/interfaces.js +17 -0
  90. package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_mining_rule.d.ts +15 -0
  91. package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_mining_rule.d.ts.map +1 -0
  92. package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_mining_rule.js +65 -0
  93. package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_reorg_rule.d.ts +17 -0
  94. package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_reorg_rule.d.ts.map +1 -0
  95. package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_reorg_rule.js +93 -0
  96. package/dest/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.d.ts +16 -0
  97. package/dest/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.d.ts.map +1 -0
  98. package/dest/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.js +72 -0
  99. package/dest/mem_pools/tx_pool_v2/eviction/low_priority_pre_add_rule.d.ts +20 -0
  100. package/dest/mem_pools/tx_pool_v2/eviction/low_priority_pre_add_rule.d.ts.map +1 -0
  101. package/dest/mem_pools/tx_pool_v2/eviction/low_priority_pre_add_rule.js +63 -0
  102. package/dest/mem_pools/tx_pool_v2/eviction/nullifier_conflict_rule.d.ts +15 -0
  103. package/dest/mem_pools/tx_pool_v2/eviction/nullifier_conflict_rule.d.ts.map +1 -0
  104. package/dest/mem_pools/tx_pool_v2/eviction/nullifier_conflict_rule.js +19 -0
  105. package/dest/mem_pools/tx_pool_v2/index.d.ts +6 -0
  106. package/dest/mem_pools/tx_pool_v2/index.d.ts.map +1 -0
  107. package/dest/mem_pools/tx_pool_v2/index.js +5 -0
  108. package/dest/mem_pools/tx_pool_v2/interfaces.d.ts +201 -0
  109. package/dest/mem_pools/tx_pool_v2/interfaces.d.ts.map +1 -0
  110. package/dest/mem_pools/tx_pool_v2/interfaces.js +7 -0
  111. package/dest/mem_pools/tx_pool_v2/tx_metadata.d.ts +95 -0
  112. package/dest/mem_pools/tx_pool_v2/tx_metadata.d.ts.map +1 -0
  113. package/dest/mem_pools/tx_pool_v2/tx_metadata.js +128 -0
  114. package/dest/mem_pools/tx_pool_v2/tx_pool_bench_metrics.d.ts +26 -0
  115. package/dest/mem_pools/tx_pool_v2/tx_pool_bench_metrics.d.ts.map +1 -0
  116. package/dest/mem_pools/tx_pool_v2/tx_pool_bench_metrics.js +70 -0
  117. package/dest/mem_pools/tx_pool_v2/tx_pool_indices.d.ts +105 -0
  118. package/dest/mem_pools/tx_pool_v2/tx_pool_indices.d.ts.map +1 -0
  119. package/dest/mem_pools/tx_pool_v2/tx_pool_indices.js +345 -0
  120. package/dest/mem_pools/tx_pool_v2/tx_pool_v2.d.ts +57 -0
  121. package/dest/mem_pools/tx_pool_v2/tx_pool_v2.d.ts.map +1 -0
  122. package/dest/mem_pools/tx_pool_v2/tx_pool_v2.js +160 -0
  123. package/dest/mem_pools/tx_pool_v2/tx_pool_v2_impl.d.ts +71 -0
  124. package/dest/mem_pools/tx_pool_v2/tx_pool_v2_impl.d.ts.map +1 -0
  125. package/dest/mem_pools/tx_pool_v2/tx_pool_v2_impl.js +780 -0
  126. package/dest/msg_validators/attestation_validator/attestation_validator.d.ts +3 -3
  127. package/dest/msg_validators/attestation_validator/attestation_validator.d.ts.map +1 -1
  128. package/dest/msg_validators/attestation_validator/attestation_validator.js +41 -10
  129. package/dest/msg_validators/attestation_validator/fisherman_attestation_validator.d.ts +5 -5
  130. package/dest/msg_validators/attestation_validator/fisherman_attestation_validator.d.ts.map +1 -1
  131. package/dest/msg_validators/attestation_validator/fisherman_attestation_validator.js +18 -6
  132. package/dest/msg_validators/clock_tolerance.d.ts +21 -0
  133. package/dest/msg_validators/clock_tolerance.d.ts.map +1 -0
  134. package/dest/msg_validators/clock_tolerance.js +37 -0
  135. package/dest/msg_validators/proposal_validator/proposal_validator.d.ts +3 -3
  136. package/dest/msg_validators/proposal_validator/proposal_validator.d.ts.map +1 -1
  137. package/dest/msg_validators/proposal_validator/proposal_validator.js +55 -31
  138. package/dest/msg_validators/proposal_validator/proposal_validator_test_suite.d.ts +3 -3
  139. package/dest/msg_validators/proposal_validator/proposal_validator_test_suite.d.ts.map +1 -1
  140. package/dest/msg_validators/proposal_validator/proposal_validator_test_suite.js +93 -64
  141. package/dest/msg_validators/tx_validator/aggregate_tx_validator.d.ts +3 -3
  142. package/dest/msg_validators/tx_validator/aggregate_tx_validator.d.ts.map +1 -1
  143. package/dest/msg_validators/tx_validator/archive_cache.d.ts +3 -3
  144. package/dest/msg_validators/tx_validator/archive_cache.d.ts.map +1 -1
  145. package/dest/msg_validators/tx_validator/archive_cache.js +1 -1
  146. package/dest/msg_validators/tx_validator/block_header_validator.d.ts +20 -6
  147. package/dest/msg_validators/tx_validator/block_header_validator.d.ts.map +1 -1
  148. package/dest/msg_validators/tx_validator/block_header_validator.js +4 -3
  149. package/dest/msg_validators/tx_validator/data_validator.d.ts +3 -1
  150. package/dest/msg_validators/tx_validator/data_validator.d.ts.map +1 -1
  151. package/dest/msg_validators/tx_validator/data_validator.js +4 -1
  152. package/dest/msg_validators/tx_validator/double_spend_validator.d.ts +15 -4
  153. package/dest/msg_validators/tx_validator/double_spend_validator.d.ts.map +1 -1
  154. package/dest/msg_validators/tx_validator/double_spend_validator.js +7 -6
  155. package/dest/msg_validators/tx_validator/factory.d.ts +8 -3
  156. package/dest/msg_validators/tx_validator/factory.d.ts.map +1 -1
  157. package/dest/msg_validators/tx_validator/factory.js +21 -11
  158. package/dest/msg_validators/tx_validator/fee_payer_balance.d.ts +10 -0
  159. package/dest/msg_validators/tx_validator/fee_payer_balance.d.ts.map +1 -0
  160. package/dest/msg_validators/tx_validator/fee_payer_balance.js +20 -0
  161. package/dest/msg_validators/tx_validator/gas_validator.d.ts +3 -2
  162. package/dest/msg_validators/tx_validator/gas_validator.d.ts.map +1 -1
  163. package/dest/msg_validators/tx_validator/gas_validator.js +11 -16
  164. package/dest/msg_validators/tx_validator/index.d.ts +2 -1
  165. package/dest/msg_validators/tx_validator/index.d.ts.map +1 -1
  166. package/dest/msg_validators/tx_validator/index.js +1 -0
  167. package/dest/msg_validators/tx_validator/metadata_validator.d.ts +3 -2
  168. package/dest/msg_validators/tx_validator/metadata_validator.d.ts.map +1 -1
  169. package/dest/msg_validators/tx_validator/metadata_validator.js +2 -2
  170. package/dest/msg_validators/tx_validator/phases_validator.d.ts +3 -2
  171. package/dest/msg_validators/tx_validator/phases_validator.d.ts.map +1 -1
  172. package/dest/msg_validators/tx_validator/phases_validator.js +3 -3
  173. package/dest/msg_validators/tx_validator/size_validator.d.ts +8 -0
  174. package/dest/msg_validators/tx_validator/size_validator.d.ts.map +1 -0
  175. package/dest/msg_validators/tx_validator/size_validator.js +23 -0
  176. package/dest/msg_validators/tx_validator/timestamp_validator.d.ts +22 -5
  177. package/dest/msg_validators/tx_validator/timestamp_validator.d.ts.map +1 -1
  178. package/dest/msg_validators/tx_validator/timestamp_validator.js +4 -4
  179. package/dest/msg_validators/tx_validator/tx_permitted_validator.d.ts +3 -2
  180. package/dest/msg_validators/tx_validator/tx_permitted_validator.d.ts.map +1 -1
  181. package/dest/msg_validators/tx_validator/tx_permitted_validator.js +2 -2
  182. package/dest/msg_validators/tx_validator/tx_proof_validator.d.ts +3 -2
  183. package/dest/msg_validators/tx_validator/tx_proof_validator.d.ts.map +1 -1
  184. package/dest/msg_validators/tx_validator/tx_proof_validator.js +2 -2
  185. package/dest/services/data_store.d.ts +1 -1
  186. package/dest/services/data_store.d.ts.map +1 -1
  187. package/dest/services/data_store.js +10 -6
  188. package/dest/services/discv5/discV5_service.js +1 -1
  189. package/dest/services/dummy_service.d.ts +22 -2
  190. package/dest/services/dummy_service.d.ts.map +1 -1
  191. package/dest/services/dummy_service.js +45 -0
  192. package/dest/services/encoding.d.ts +2 -2
  193. package/dest/services/encoding.d.ts.map +1 -1
  194. package/dest/services/encoding.js +4 -5
  195. package/dest/services/gossipsub/index.d.ts +3 -0
  196. package/dest/services/gossipsub/index.d.ts.map +1 -0
  197. package/dest/services/gossipsub/index.js +2 -0
  198. package/dest/services/gossipsub/scoring.d.ts +21 -3
  199. package/dest/services/gossipsub/scoring.d.ts.map +1 -1
  200. package/dest/services/gossipsub/scoring.js +24 -7
  201. package/dest/services/gossipsub/topic_score_params.d.ts +161 -0
  202. package/dest/services/gossipsub/topic_score_params.d.ts.map +1 -0
  203. package/dest/services/gossipsub/topic_score_params.js +324 -0
  204. package/dest/services/index.d.ts +2 -1
  205. package/dest/services/index.d.ts.map +1 -1
  206. package/dest/services/index.js +1 -0
  207. package/dest/services/libp2p/instrumentation.d.ts +1 -1
  208. package/dest/services/libp2p/instrumentation.d.ts.map +1 -1
  209. package/dest/services/libp2p/instrumentation.js +19 -8
  210. package/dest/services/libp2p/libp2p_service.d.ts +91 -36
  211. package/dest/services/libp2p/libp2p_service.d.ts.map +1 -1
  212. package/dest/services/libp2p/libp2p_service.js +407 -303
  213. package/dest/services/peer-manager/metrics.d.ts +2 -2
  214. package/dest/services/peer-manager/metrics.d.ts.map +1 -1
  215. package/dest/services/peer-manager/metrics.js +20 -5
  216. package/dest/services/peer-manager/peer_scoring.d.ts +1 -1
  217. package/dest/services/peer-manager/peer_scoring.d.ts.map +1 -1
  218. package/dest/services/peer-manager/peer_scoring.js +33 -4
  219. package/dest/services/reqresp/batch-tx-requester/batch_tx_requester.d.ts +47 -0
  220. package/dest/services/reqresp/batch-tx-requester/batch_tx_requester.d.ts.map +1 -0
  221. package/dest/services/reqresp/batch-tx-requester/batch_tx_requester.js +566 -0
  222. package/dest/services/reqresp/batch-tx-requester/config.d.ts +17 -0
  223. package/dest/services/reqresp/batch-tx-requester/config.d.ts.map +1 -0
  224. package/dest/services/reqresp/batch-tx-requester/config.js +27 -0
  225. package/dest/services/reqresp/batch-tx-requester/interface.d.ts +50 -0
  226. package/dest/services/reqresp/batch-tx-requester/interface.d.ts.map +1 -0
  227. package/dest/services/reqresp/batch-tx-requester/interface.js +1 -0
  228. package/dest/services/reqresp/batch-tx-requester/missing_txs.d.ts +37 -0
  229. package/dest/services/reqresp/batch-tx-requester/missing_txs.d.ts.map +1 -0
  230. package/dest/services/reqresp/batch-tx-requester/missing_txs.js +151 -0
  231. package/dest/services/reqresp/batch-tx-requester/peer_collection.d.ts +54 -0
  232. package/dest/services/reqresp/batch-tx-requester/peer_collection.d.ts.map +1 -0
  233. package/dest/services/reqresp/batch-tx-requester/peer_collection.js +139 -0
  234. package/dest/services/reqresp/batch-tx-requester/tx_validator.d.ts +20 -0
  235. package/dest/services/reqresp/batch-tx-requester/tx_validator.d.ts.map +1 -0
  236. package/dest/services/reqresp/batch-tx-requester/tx_validator.js +21 -0
  237. package/dest/services/reqresp/connection-sampler/batch_connection_sampler.d.ts +22 -3
  238. package/dest/services/reqresp/connection-sampler/batch_connection_sampler.d.ts.map +1 -1
  239. package/dest/services/reqresp/connection-sampler/batch_connection_sampler.js +63 -4
  240. package/dest/services/reqresp/connection-sampler/connection_sampler.d.ts +2 -1
  241. package/dest/services/reqresp/connection-sampler/connection_sampler.d.ts.map +1 -1
  242. package/dest/services/reqresp/connection-sampler/connection_sampler.js +12 -0
  243. package/dest/services/reqresp/constants.d.ts +12 -0
  244. package/dest/services/reqresp/constants.d.ts.map +1 -0
  245. package/dest/services/reqresp/constants.js +7 -0
  246. package/dest/services/reqresp/interface.d.ts +12 -1
  247. package/dest/services/reqresp/interface.d.ts.map +1 -1
  248. package/dest/services/reqresp/interface.js +15 -1
  249. package/dest/services/reqresp/metrics.d.ts +6 -5
  250. package/dest/services/reqresp/metrics.d.ts.map +1 -1
  251. package/dest/services/reqresp/metrics.js +17 -5
  252. package/dest/services/reqresp/protocols/block_txs/bitvector.d.ts +5 -1
  253. package/dest/services/reqresp/protocols/block_txs/bitvector.d.ts.map +1 -1
  254. package/dest/services/reqresp/protocols/block_txs/bitvector.js +12 -0
  255. package/dest/services/reqresp/protocols/block_txs/block_txs_handler.d.ts +7 -5
  256. package/dest/services/reqresp/protocols/block_txs/block_txs_handler.d.ts.map +1 -1
  257. package/dest/services/reqresp/protocols/block_txs/block_txs_handler.js +27 -9
  258. package/dest/services/reqresp/protocols/block_txs/block_txs_reqresp.d.ts +29 -6
  259. package/dest/services/reqresp/protocols/block_txs/block_txs_reqresp.d.ts.map +1 -1
  260. package/dest/services/reqresp/protocols/block_txs/block_txs_reqresp.js +59 -13
  261. package/dest/services/reqresp/protocols/status.d.ts +1 -1
  262. package/dest/services/reqresp/protocols/status.d.ts.map +1 -1
  263. package/dest/services/reqresp/protocols/status.js +2 -1
  264. package/dest/services/reqresp/protocols/tx.d.ts +7 -1
  265. package/dest/services/reqresp/protocols/tx.d.ts.map +1 -1
  266. package/dest/services/reqresp/protocols/tx.js +20 -0
  267. package/dest/services/reqresp/reqresp.d.ts +6 -1
  268. package/dest/services/reqresp/reqresp.d.ts.map +1 -1
  269. package/dest/services/reqresp/reqresp.js +69 -26
  270. package/dest/services/service.d.ts +38 -1
  271. package/dest/services/service.d.ts.map +1 -1
  272. package/dest/services/tx_collection/config.d.ts +22 -1
  273. package/dest/services/tx_collection/config.d.ts.map +1 -1
  274. package/dest/services/tx_collection/config.js +55 -1
  275. package/dest/services/tx_collection/fast_tx_collection.d.ts +7 -4
  276. package/dest/services/tx_collection/fast_tx_collection.d.ts.map +1 -1
  277. package/dest/services/tx_collection/fast_tx_collection.js +34 -13
  278. package/dest/services/tx_collection/file_store_tx_collection.d.ts +53 -0
  279. package/dest/services/tx_collection/file_store_tx_collection.d.ts.map +1 -0
  280. package/dest/services/tx_collection/file_store_tx_collection.js +165 -0
  281. package/dest/services/tx_collection/file_store_tx_source.d.ts +28 -0
  282. package/dest/services/tx_collection/file_store_tx_source.d.ts.map +1 -0
  283. package/dest/services/tx_collection/file_store_tx_source.js +59 -0
  284. package/dest/services/tx_collection/index.d.ts +3 -1
  285. package/dest/services/tx_collection/index.d.ts.map +1 -1
  286. package/dest/services/tx_collection/index.js +2 -0
  287. package/dest/services/tx_collection/instrumentation.d.ts +1 -1
  288. package/dest/services/tx_collection/instrumentation.d.ts.map +1 -1
  289. package/dest/services/tx_collection/instrumentation.js +9 -2
  290. package/dest/services/tx_collection/proposal_tx_collector.d.ts +48 -0
  291. package/dest/services/tx_collection/proposal_tx_collector.d.ts.map +1 -0
  292. package/dest/services/tx_collection/proposal_tx_collector.js +49 -0
  293. package/dest/services/tx_collection/slow_tx_collection.d.ts +8 -4
  294. package/dest/services/tx_collection/slow_tx_collection.d.ts.map +1 -1
  295. package/dest/services/tx_collection/slow_tx_collection.js +55 -23
  296. package/dest/services/tx_collection/tx_collection.d.ts +25 -13
  297. package/dest/services/tx_collection/tx_collection.d.ts.map +1 -1
  298. package/dest/services/tx_collection/tx_collection.js +79 -7
  299. package/dest/services/tx_collection/tx_collection_sink.d.ts +15 -6
  300. package/dest/services/tx_collection/tx_collection_sink.d.ts.map +1 -1
  301. package/dest/services/tx_collection/tx_collection_sink.js +13 -7
  302. package/dest/services/tx_file_store/config.d.ts +16 -0
  303. package/dest/services/tx_file_store/config.d.ts.map +1 -0
  304. package/dest/services/tx_file_store/config.js +22 -0
  305. package/dest/services/tx_file_store/index.d.ts +4 -0
  306. package/dest/services/tx_file_store/index.d.ts.map +1 -0
  307. package/dest/services/tx_file_store/index.js +3 -0
  308. package/dest/services/tx_file_store/instrumentation.d.ts +15 -0
  309. package/dest/services/tx_file_store/instrumentation.d.ts.map +1 -0
  310. package/dest/services/tx_file_store/instrumentation.js +29 -0
  311. package/dest/services/tx_file_store/tx_file_store.d.ts +48 -0
  312. package/dest/services/tx_file_store/tx_file_store.d.ts.map +1 -0
  313. package/dest/services/tx_file_store/tx_file_store.js +152 -0
  314. package/dest/services/tx_provider.d.ts +5 -5
  315. package/dest/services/tx_provider.d.ts.map +1 -1
  316. package/dest/services/tx_provider.js +5 -4
  317. package/dest/services/tx_provider_instrumentation.d.ts +1 -1
  318. package/dest/services/tx_provider_instrumentation.d.ts.map +1 -1
  319. package/dest/services/tx_provider_instrumentation.js +5 -5
  320. package/dest/test-helpers/index.d.ts +3 -1
  321. package/dest/test-helpers/index.d.ts.map +1 -1
  322. package/dest/test-helpers/index.js +2 -0
  323. package/dest/test-helpers/make-test-p2p-clients.d.ts +3 -3
  324. package/dest/test-helpers/make-test-p2p-clients.d.ts.map +1 -1
  325. package/dest/test-helpers/mock-pubsub.d.ts +27 -1
  326. package/dest/test-helpers/mock-pubsub.d.ts.map +1 -1
  327. package/dest/test-helpers/mock-pubsub.js +97 -2
  328. package/dest/test-helpers/reqresp-nodes.d.ts +1 -1
  329. package/dest/test-helpers/reqresp-nodes.d.ts.map +1 -1
  330. package/dest/test-helpers/reqresp-nodes.js +2 -1
  331. package/dest/test-helpers/test_tx_provider.d.ts +40 -0
  332. package/dest/test-helpers/test_tx_provider.d.ts.map +1 -0
  333. package/dest/test-helpers/test_tx_provider.js +41 -0
  334. package/dest/test-helpers/testbench-utils.d.ts +160 -0
  335. package/dest/test-helpers/testbench-utils.d.ts.map +1 -0
  336. package/dest/test-helpers/testbench-utils.js +366 -0
  337. package/dest/testbench/p2p_client_testbench_worker.d.ts +28 -2
  338. package/dest/testbench/p2p_client_testbench_worker.d.ts.map +1 -1
  339. package/dest/testbench/p2p_client_testbench_worker.js +213 -133
  340. package/dest/testbench/worker_client_manager.d.ts +51 -6
  341. package/dest/testbench/worker_client_manager.d.ts.map +1 -1
  342. package/dest/testbench/worker_client_manager.js +226 -44
  343. package/package.json +16 -16
  344. package/src/bootstrap/bootstrap.ts +7 -4
  345. package/src/client/factory.ts +90 -22
  346. package/src/client/interface.ts +45 -14
  347. package/src/client/p2p_client.ts +168 -166
  348. package/src/client/test/tx_proposal_collector/README.md +227 -0
  349. package/src/client/test/tx_proposal_collector/proposal_tx_collector_worker.ts +336 -0
  350. package/src/client/test/tx_proposal_collector/proposal_tx_collector_worker_protocol.ts +43 -0
  351. package/src/config.ts +48 -4
  352. package/src/index.ts +1 -0
  353. package/src/mem_pools/attestation_pool/attestation_pool.ts +496 -91
  354. package/src/mem_pools/attestation_pool/attestation_pool_test_suite.ts +460 -112
  355. package/src/mem_pools/attestation_pool/index.ts +9 -2
  356. package/src/mem_pools/attestation_pool/mocks.ts +6 -4
  357. package/src/mem_pools/index.ts +4 -1
  358. package/src/mem_pools/instrumentation.ts +2 -1
  359. package/src/mem_pools/interface.ts +4 -4
  360. package/src/mem_pools/tx_pool/README.md +28 -13
  361. package/src/mem_pools/tx_pool/aztec_kv_tx_pool.ts +130 -75
  362. package/src/mem_pools/tx_pool/eviction/eviction_manager.ts +66 -5
  363. package/src/mem_pools/tx_pool/eviction/eviction_strategy.ts +119 -4
  364. package/src/mem_pools/tx_pool/eviction/fee_payer_balance_eviction_rule.ts +162 -0
  365. package/src/mem_pools/tx_pool/eviction/invalid_txs_after_reorg_rule.ts +4 -2
  366. package/src/mem_pools/tx_pool/eviction/nullifier_conflict_pre_add_rule.ts +75 -0
  367. package/src/mem_pools/tx_pool_v2/README.md +275 -0
  368. package/src/mem_pools/tx_pool_v2/archive/index.ts +1 -0
  369. package/src/mem_pools/tx_pool_v2/archive/tx_archive.ts +120 -0
  370. package/src/mem_pools/tx_pool_v2/deleted_pool.ts +310 -0
  371. package/src/mem_pools/tx_pool_v2/eviction/eviction_manager.ts +147 -0
  372. package/src/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.ts +121 -0
  373. package/src/mem_pools/tx_pool_v2/eviction/fee_payer_balance_pre_add_rule.ts +111 -0
  374. package/src/mem_pools/tx_pool_v2/eviction/index.ts +23 -0
  375. package/src/mem_pools/tx_pool_v2/eviction/interfaces.ts +164 -0
  376. package/src/mem_pools/tx_pool_v2/eviction/invalid_txs_after_mining_rule.ts +74 -0
  377. package/src/mem_pools/tx_pool_v2/eviction/invalid_txs_after_reorg_rule.ts +101 -0
  378. package/src/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.ts +88 -0
  379. package/src/mem_pools/tx_pool_v2/eviction/low_priority_pre_add_rule.ts +72 -0
  380. package/src/mem_pools/tx_pool_v2/eviction/nullifier_conflict_rule.ts +31 -0
  381. package/src/mem_pools/tx_pool_v2/index.ts +12 -0
  382. package/src/mem_pools/tx_pool_v2/interfaces.ts +233 -0
  383. package/src/mem_pools/tx_pool_v2/tx_metadata.ts +211 -0
  384. package/src/mem_pools/tx_pool_v2/tx_pool_bench_metrics.ts +77 -0
  385. package/src/mem_pools/tx_pool_v2/tx_pool_indices.ts +433 -0
  386. package/src/mem_pools/tx_pool_v2/tx_pool_v2.ts +218 -0
  387. package/src/mem_pools/tx_pool_v2/tx_pool_v2_impl.ts +924 -0
  388. package/src/msg_validators/attestation_validator/attestation_validator.ts +26 -14
  389. package/src/msg_validators/attestation_validator/fisherman_attestation_validator.ts +16 -10
  390. package/src/msg_validators/clock_tolerance.ts +51 -0
  391. package/src/msg_validators/proposal_validator/proposal_validator.ts +31 -31
  392. package/src/msg_validators/proposal_validator/proposal_validator_test_suite.ts +91 -67
  393. package/src/msg_validators/tx_validator/aggregate_tx_validator.ts +2 -2
  394. package/src/msg_validators/tx_validator/archive_cache.ts +3 -3
  395. package/src/msg_validators/tx_validator/block_header_validator.ts +21 -8
  396. package/src/msg_validators/tx_validator/data_validator.ts +6 -2
  397. package/src/msg_validators/tx_validator/double_spend_validator.ts +15 -9
  398. package/src/msg_validators/tx_validator/factory.ts +64 -23
  399. package/src/msg_validators/tx_validator/fee_payer_balance.ts +40 -0
  400. package/src/msg_validators/tx_validator/gas_validator.ts +17 -28
  401. package/src/msg_validators/tx_validator/index.ts +1 -0
  402. package/src/msg_validators/tx_validator/metadata_validator.ts +6 -3
  403. package/src/msg_validators/tx_validator/phases_validator.ts +5 -3
  404. package/src/msg_validators/tx_validator/size_validator.ts +22 -0
  405. package/src/msg_validators/tx_validator/timestamp_validator.ts +25 -17
  406. package/src/msg_validators/tx_validator/tx_permitted_validator.ts +8 -3
  407. package/src/msg_validators/tx_validator/tx_proof_validator.ts +8 -3
  408. package/src/services/data_store.ts +10 -7
  409. package/src/services/discv5/discV5_service.ts +1 -1
  410. package/src/services/dummy_service.ts +57 -0
  411. package/src/services/encoding.ts +4 -5
  412. package/src/services/gossipsub/README.md +626 -0
  413. package/src/services/gossipsub/index.ts +2 -0
  414. package/src/services/gossipsub/scoring.ts +29 -5
  415. package/src/services/gossipsub/topic_score_params.ts +451 -0
  416. package/src/services/index.ts +1 -0
  417. package/src/services/libp2p/instrumentation.ts +20 -7
  418. package/src/services/libp2p/libp2p_service.ts +435 -314
  419. package/src/services/peer-manager/metrics.ts +21 -4
  420. package/src/services/peer-manager/peer_scoring.ts +29 -1
  421. package/src/services/reqresp/batch-tx-requester/README.md +305 -0
  422. package/src/services/reqresp/batch-tx-requester/batch_tx_requester.ts +706 -0
  423. package/src/services/reqresp/batch-tx-requester/config.ts +40 -0
  424. package/src/services/reqresp/batch-tx-requester/interface.ts +57 -0
  425. package/src/services/reqresp/batch-tx-requester/missing_txs.ts +209 -0
  426. package/src/services/reqresp/batch-tx-requester/peer_collection.ts +205 -0
  427. package/src/services/reqresp/batch-tx-requester/tx_validator.ts +37 -0
  428. package/src/services/reqresp/connection-sampler/batch_connection_sampler.ts +65 -4
  429. package/src/services/reqresp/connection-sampler/connection_sampler.ts +16 -0
  430. package/src/services/reqresp/constants.ts +14 -0
  431. package/src/services/reqresp/interface.ts +29 -1
  432. package/src/services/reqresp/metrics.ts +34 -9
  433. package/src/services/reqresp/protocols/block_txs/bitvector.ts +16 -0
  434. package/src/services/reqresp/protocols/block_txs/block_txs_handler.ts +35 -12
  435. package/src/services/reqresp/protocols/block_txs/block_txs_reqresp.ts +74 -9
  436. package/src/services/reqresp/protocols/status.ts +5 -3
  437. package/src/services/reqresp/protocols/tx.ts +22 -0
  438. package/src/services/reqresp/reqresp.ts +79 -22
  439. package/src/services/service.ts +44 -0
  440. package/src/services/tx_collection/config.ts +83 -1
  441. package/src/services/tx_collection/fast_tx_collection.ts +44 -19
  442. package/src/services/tx_collection/file_store_tx_collection.ts +198 -0
  443. package/src/services/tx_collection/file_store_tx_source.ts +73 -0
  444. package/src/services/tx_collection/index.ts +6 -0
  445. package/src/services/tx_collection/instrumentation.ts +11 -2
  446. package/src/services/tx_collection/proposal_tx_collector.ts +112 -0
  447. package/src/services/tx_collection/slow_tx_collection.ts +66 -32
  448. package/src/services/tx_collection/tx_collection.ts +117 -21
  449. package/src/services/tx_collection/tx_collection_sink.ts +17 -7
  450. package/src/services/tx_file_store/config.ts +37 -0
  451. package/src/services/tx_file_store/index.ts +3 -0
  452. package/src/services/tx_file_store/instrumentation.ts +36 -0
  453. package/src/services/tx_file_store/tx_file_store.ts +175 -0
  454. package/src/services/tx_provider.ts +10 -9
  455. package/src/services/tx_provider_instrumentation.ts +11 -5
  456. package/src/test-helpers/index.ts +2 -0
  457. package/src/test-helpers/make-test-p2p-clients.ts +3 -3
  458. package/src/test-helpers/mock-pubsub.ts +133 -3
  459. package/src/test-helpers/reqresp-nodes.ts +2 -1
  460. package/src/test-helpers/test_tx_provider.ts +64 -0
  461. package/src/test-helpers/testbench-utils.ts +430 -0
  462. package/src/testbench/p2p_client_testbench_worker.ts +322 -127
  463. package/src/testbench/worker_client_manager.ts +304 -47
  464. package/dest/mem_pools/attestation_pool/kv_attestation_pool.d.ts +0 -40
  465. package/dest/mem_pools/attestation_pool/kv_attestation_pool.d.ts.map +0 -1
  466. package/dest/mem_pools/attestation_pool/kv_attestation_pool.js +0 -218
  467. package/dest/mem_pools/attestation_pool/memory_attestation_pool.d.ts +0 -31
  468. package/dest/mem_pools/attestation_pool/memory_attestation_pool.d.ts.map +0 -1
  469. package/dest/mem_pools/attestation_pool/memory_attestation_pool.js +0 -180
  470. package/dest/mem_pools/tx_pool/eviction/insufficient_fee_payer_balance_rule.d.ts +0 -15
  471. package/dest/mem_pools/tx_pool/eviction/insufficient_fee_payer_balance_rule.d.ts.map +0 -1
  472. package/dest/mem_pools/tx_pool/eviction/insufficient_fee_payer_balance_rule.js +0 -88
  473. package/src/mem_pools/attestation_pool/kv_attestation_pool.ts +0 -320
  474. package/src/mem_pools/attestation_pool/memory_attestation_pool.ts +0 -264
  475. package/src/mem_pools/tx_pool/eviction/insufficient_fee_payer_balance_rule.ts +0 -108
@@ -0,0 +1,112 @@
1
+ import type { Logger } from '@aztec/foundation/log';
2
+ import type { DateProvider } from '@aztec/foundation/timer';
3
+ import type { Tx, TxHash } from '@aztec/stdlib/tx';
4
+
5
+ import type { PeerId } from '@libp2p/interface';
6
+
7
+ import { BatchTxRequester } from '../reqresp/batch-tx-requester/batch_tx_requester.js';
8
+ import type { BatchTxRequesterConfig } from '../reqresp/batch-tx-requester/config.js';
9
+ import type { BatchTxRequesterLibP2PService } from '../reqresp/batch-tx-requester/interface.js';
10
+ import type { IBatchRequestTxValidator } from '../reqresp/batch-tx-requester/tx_validator.js';
11
+ import { type BlockTxsSource, ReqRespSubProtocol, chunkTxHashesRequest } from '../reqresp/index.js';
12
+
13
+ /**
14
+ * Strategy interface for collecting missing transactions for a block or proposal.
15
+ * Allows swapping between different tx collection implementations for benchmarking.
16
+ */
17
+ export interface MissingTxsCollector {
18
+ /**
19
+ * Collect missing transactions for a block or proposal.
20
+ * @param txHashes - The transaction hashes to collect
21
+ * @param blockTxsSource - The block or proposal containing the transactions
22
+ * @param pinnedPeer - Optional peer expected to have the transactions
23
+ * @param timeoutMs - Timeout in milliseconds
24
+ * @returns The collected transactions
25
+ */
26
+ collectTxs(
27
+ txHashes: TxHash[],
28
+ blockTxsSource: BlockTxsSource,
29
+ pinnedPeer: PeerId | undefined,
30
+ timeoutMs: number,
31
+ ): Promise<Tx[]>;
32
+ }
33
+
34
+ /**
35
+ * Collects transactions using the BatchTxRequester implementation.
36
+ * This uses a smart/dumb peer strategy with parallel workers.
37
+ */
38
+ export class BatchTxRequesterCollector implements MissingTxsCollector {
39
+ constructor(
40
+ private p2pService: BatchTxRequesterLibP2PService,
41
+ private log: Logger,
42
+ private dateProvider: DateProvider,
43
+ private txValidator?: IBatchRequestTxValidator,
44
+ private batchTxRequesterConfig?: Partial<BatchTxRequesterConfig>,
45
+ ) {}
46
+
47
+ async collectTxs(
48
+ txHashes: TxHash[],
49
+ blockTxsSource: BlockTxsSource,
50
+ pinnedPeer: PeerId | undefined,
51
+ timeoutMs: number,
52
+ ): Promise<Tx[]> {
53
+ const {
54
+ batchTxRequesterSmartParallelWorkerCount: smartParallelWorkerCount,
55
+ batchTxRequesterDumbParallelWorkerCount: dumbParallelWorkerCount,
56
+ batchTxRequesterTxBatchSize: txBatchSize,
57
+ batchTxRequesterBadPeerThreshold: badPeerThreshold,
58
+ } = this.batchTxRequesterConfig ?? {};
59
+
60
+ const batchRequester = new BatchTxRequester(
61
+ txHashes,
62
+ blockTxsSource,
63
+ pinnedPeer,
64
+ timeoutMs,
65
+ this.p2pService,
66
+ this.log,
67
+ this.dateProvider,
68
+ {
69
+ smartParallelWorkerCount,
70
+ dumbParallelWorkerCount,
71
+ txBatchSize,
72
+ badPeerThreshold,
73
+ txValidator: this.txValidator,
74
+ },
75
+ );
76
+
77
+ return await BatchTxRequester.collectAllTxs(batchRequester.run());
78
+ }
79
+ }
80
+
81
+ const DEFAULT_MAX_PEERS = 10;
82
+ const DEFAULT_MAX_RETRY_ATTEMPTS = 3;
83
+
84
+ /**
85
+ * Collects transactions using the sendBatchRequest implementation from ReqResp.
86
+ * This is the original implementation that balances requests across peers.
87
+ */
88
+ export class SendBatchRequestCollector implements MissingTxsCollector {
89
+ constructor(
90
+ private p2pService: BatchTxRequesterLibP2PService,
91
+ private maxPeers: number = DEFAULT_MAX_PEERS,
92
+ private maxRetryAttempts: number = DEFAULT_MAX_RETRY_ATTEMPTS,
93
+ ) {}
94
+
95
+ async collectTxs(
96
+ txHashes: TxHash[],
97
+ _blockTxsSource: BlockTxsSource,
98
+ pinnedPeer: PeerId | undefined,
99
+ timeoutMs: number,
100
+ ): Promise<Tx[]> {
101
+ const txs = await this.p2pService.reqResp.sendBatchRequest<ReqRespSubProtocol.TX>(
102
+ ReqRespSubProtocol.TX,
103
+ chunkTxHashesRequest(txHashes),
104
+ pinnedPeer,
105
+ timeoutMs,
106
+ this.maxPeers,
107
+ this.maxRetryAttempts,
108
+ );
109
+
110
+ return txs.flat();
111
+ }
112
+ }
@@ -4,7 +4,7 @@ import { type Logger, createLogger } from '@aztec/foundation/log';
4
4
  import { boundInclusive } from '@aztec/foundation/number';
5
5
  import { RunningPromise } from '@aztec/foundation/promise';
6
6
  import { DateProvider } from '@aztec/foundation/timer';
7
- import type { L2BlockNew } from '@aztec/stdlib/block';
7
+ import type { L2Block } from '@aztec/stdlib/block';
8
8
  import { type L1RollupConstants, getEpochAtSlot, getTimestampRangeForEpoch } from '@aztec/stdlib/epoch-helpers';
9
9
  import { type Tx, TxHash } from '@aztec/stdlib/tx';
10
10
 
@@ -76,7 +76,7 @@ export class SlowTxCollection {
76
76
  }
77
77
 
78
78
  /** Starts collecting the given tx hashes for the given L2Block in the slow loop */
79
- public startCollecting(block: L2BlockNew, txHashes: TxHash[]) {
79
+ public startCollecting(block: L2Block, txHashes: TxHash[]) {
80
80
  const slot = block.header.getSlot();
81
81
  const deadline = this.getDeadlineForSlot(slot);
82
82
  if (+deadline < this.dateProvider.now()) {
@@ -91,6 +91,7 @@ export class SlowTxCollection {
91
91
 
92
92
  for (const txHash of txHashes) {
93
93
  this.missingTxs.set(txHash.toString(), {
94
+ block,
94
95
  blockNumber: block.number,
95
96
  deadline: this.getDeadlineForSlot(block.header.getSlot()),
96
97
  readyForReqResp: this.nodes.length === 0, // If we have no nodes, we can start reqresp immediately
@@ -109,18 +110,26 @@ export class SlowTxCollection {
109
110
 
110
111
  // Gather all missing txs that are not in fast collection and request them from the node
111
112
  const missingTxs = this.getMissingTxsForSlowCollection();
112
- const missingTxHashes = missingTxs.map(([txHash]) => txHash).map(TxHash.fromString);
113
- if (missingTxHashes.length === 0) {
113
+ if (missingTxs.length === 0) {
114
114
  return;
115
115
  }
116
116
 
117
- // Request in chunks to avoid hitting RPC limits
118
- for (const batch of chunk(missingTxHashes, this.config.txCollectionNodeRpcMaxBatchSize)) {
119
- await this.txCollectionSink.collect(txHashes => node.getTxsByHash(txHashes), batch, {
120
- description: `node ${node.getInfo()}`,
121
- node: node.getInfo(),
122
- method: 'slow-node-rpc',
123
- });
117
+ // Group by block so we pass the correct mined context to the sink
118
+ for (const entries of this.groupByBlock(missingTxs)) {
119
+ const block = entries[0][1].block;
120
+ const txHashes = entries.map(([txHash]) => TxHash.fromString(txHash));
121
+ for (const batch of chunk(txHashes, this.config.txCollectionNodeRpcMaxBatchSize)) {
122
+ await this.txCollectionSink.collect(
123
+ hashes => node.getTxsByHash(hashes),
124
+ batch,
125
+ {
126
+ description: `node ${node.getInfo()}`,
127
+ node: node.getInfo(),
128
+ method: 'slow-node-rpc',
129
+ },
130
+ { type: 'mined', block },
131
+ );
132
+ }
124
133
  }
125
134
 
126
135
  // Mark every tx that is still missing as ready for reqresp.
@@ -149,25 +158,30 @@ export class SlowTxCollection {
149
158
 
150
159
  const pinnedPeer = undefined;
151
160
  const timeoutMs = this.config.txCollectionSlowReqRespTimeoutMs;
152
- const maxPeers = boundInclusive(Math.ceil(missingTxs.length / 3), 4, 16);
153
161
  const maxRetryAttempts = 3;
154
- // Send a batch request via reqresp for the missing txs
155
- await this.txCollectionSink.collect(
156
- async txHashes => {
157
- const txs = await this.reqResp.sendBatchRequest<ReqRespSubProtocol.TX>(
158
- ReqRespSubProtocol.TX,
159
- chunkTxHashesRequest(txHashes),
160
- pinnedPeer,
161
- timeoutMs,
162
- maxPeers,
163
- maxRetryAttempts,
164
- );
165
162
 
166
- return txs.flat();
167
- },
168
- missingTxs.map(([txHash]) => TxHash.fromString(txHash)),
169
- { description: 'slow reqresp', timeoutMs, method: 'slow-req-resp' },
170
- );
163
+ // Group by block so we pass the correct mined context to the sink
164
+ for (const entries of this.groupByBlock(missingTxs)) {
165
+ const block = entries[0][1].block;
166
+ const txHashes = entries.map(([txHash]) => TxHash.fromString(txHash));
167
+ const maxPeers = boundInclusive(Math.ceil(txHashes.length / 3), 4, 16);
168
+ await this.txCollectionSink.collect(
169
+ async hashes => {
170
+ const txs = await this.reqResp.sendBatchRequest<ReqRespSubProtocol.TX>(
171
+ ReqRespSubProtocol.TX,
172
+ chunkTxHashesRequest(hashes),
173
+ pinnedPeer,
174
+ timeoutMs,
175
+ maxPeers,
176
+ maxRetryAttempts,
177
+ );
178
+ return txs.flat();
179
+ },
180
+ txHashes,
181
+ { description: 'slow reqresp', timeoutMs, method: 'slow-req-resp' },
182
+ { type: 'mined', block },
183
+ );
184
+ }
171
185
  }
172
186
 
173
187
  /** Retrieves all missing txs for the slow collection process. This is, all missing txs that are not part of a fast request. */
@@ -223,11 +237,31 @@ export class SlowTxCollection {
223
237
  }
224
238
  }
225
239
 
240
+ /** Groups missing tx entries by block number. */
241
+ private groupByBlock(entries: [string, MissingTxInfo][]): [string, MissingTxInfo][][] {
242
+ const groups = new Map<number, [string, MissingTxInfo][]>();
243
+ for (const entry of entries) {
244
+ const bn = +entry[1].blockNumber;
245
+ let group = groups.get(bn);
246
+ if (!group) {
247
+ group = [];
248
+ groups.set(bn, group);
249
+ }
250
+ group.push(entry);
251
+ }
252
+ return [...groups.values()];
253
+ }
254
+
226
255
  /** Computes the proof submission deadline for a given slot, a tx mined in this slot is no longer interesting after this deadline */
227
256
  private getDeadlineForSlot(slotNumber: SlotNumber): Date {
228
- const epoch = getEpochAtSlot(slotNumber, this.constants);
229
- const submissionEndEpoch = EpochNumber(epoch + this.constants.proofSubmissionEpochs);
230
- const submissionEndTimestamp = getTimestampRangeForEpoch(submissionEndEpoch, this.constants)[1];
231
- return new Date(Number(submissionEndTimestamp) * 1000);
257
+ return getProofDeadlineForSlot(slotNumber, this.constants);
232
258
  }
233
259
  }
260
+
261
+ /** Computes the proof submission deadline for a given slot. A tx mined in this slot is no longer interesting after this deadline. */
262
+ export function getProofDeadlineForSlot(slotNumber: SlotNumber, constants: L1RollupConstants): Date {
263
+ const epoch = getEpochAtSlot(slotNumber, constants);
264
+ const submissionEndEpoch = EpochNumber(epoch + constants.proofSubmissionEpochs);
265
+ const submissionEndTimestamp = getTimestampRangeForEpoch(submissionEndEpoch, constants)[1];
266
+ return new Date(Number(submissionEndTimestamp) * 1000);
267
+ }
@@ -2,8 +2,9 @@ import { BlockNumber } from '@aztec/foundation/branded-types';
2
2
  import { compactArray } from '@aztec/foundation/collection';
3
3
  import { type Logger, createLogger } from '@aztec/foundation/log';
4
4
  import { type PromiseWithResolvers, RunningPromise } from '@aztec/foundation/promise';
5
+ import { sleep } from '@aztec/foundation/sleep';
5
6
  import { DateProvider } from '@aztec/foundation/timer';
6
- import type { L2BlockInfo, L2BlockNew } from '@aztec/stdlib/block';
7
+ import type { L2Block, L2BlockInfo } from '@aztec/stdlib/block';
7
8
  import type { L1RollupConstants } from '@aztec/stdlib/epoch-helpers';
8
9
  import type { BlockProposal } from '@aztec/stdlib/p2p';
9
10
  import { Tx, TxHash } from '@aztec/stdlib/tx';
@@ -11,21 +12,22 @@ import { type TelemetryClient, getTelemetryClient } from '@aztec/telemetry-clien
11
12
 
12
13
  import type { PeerId } from '@libp2p/interface';
13
14
 
14
- import type { TxPool } from '../../mem_pools/index.js';
15
- import type { TxPoolEvents } from '../../mem_pools/tx_pool/tx_pool.js';
16
- import type { ReqRespInterface } from '../reqresp/interface.js';
15
+ import type { TxPoolV2, TxPoolV2Events } from '../../mem_pools/tx_pool_v2/interfaces.js';
16
+ import type { BatchTxRequesterLibP2PService } from '../reqresp/batch-tx-requester/interface.js';
17
17
  import type { TxCollectionConfig } from './config.js';
18
18
  import { FastTxCollection } from './fast_tx_collection.js';
19
- import { SlowTxCollection } from './slow_tx_collection.js';
20
- import { TxCollectionSink } from './tx_collection_sink.js';
19
+ import { FileStoreTxCollection } from './file_store_tx_collection.js';
20
+ import type { FileStoreTxSource } from './file_store_tx_source.js';
21
+ import { SlowTxCollection, getProofDeadlineForSlot } from './slow_tx_collection.js';
22
+ import { type TxAddContext, TxCollectionSink } from './tx_collection_sink.js';
21
23
  import type { TxSource } from './tx_source.js';
22
24
 
23
- export type CollectionMethod = 'fast-req-resp' | 'fast-node-rpc' | 'slow-req-resp' | 'slow-node-rpc';
25
+ export type CollectionMethod = 'fast-req-resp' | 'fast-node-rpc' | 'slow-req-resp' | 'slow-node-rpc' | 'file-store';
24
26
 
25
- export type MissingTxInfo = { blockNumber: BlockNumber; deadline: Date; readyForReqResp: boolean };
27
+ export type MissingTxInfo = { block: L2Block; blockNumber: BlockNumber; deadline: Date; readyForReqResp: boolean };
26
28
 
27
29
  export type FastCollectionRequestInput =
28
- | { type: 'block'; block: L2BlockNew }
30
+ | { type: 'block'; block: L2Block }
29
31
  | { type: 'proposal'; blockProposal: BlockProposal; blockNumber: BlockNumber };
30
32
 
31
33
  export type FastCollectionRequest = FastCollectionRequestInput & {
@@ -54,6 +56,12 @@ export class TxCollection {
54
56
  /** Fast collection methods */
55
57
  protected readonly fastCollection: FastTxCollection;
56
58
 
59
+ /** File store collection for slow (mined block) path */
60
+ protected readonly fileStoreSlowCollection: FileStoreTxCollection;
61
+
62
+ /** File store collection for fast (proposal/proving) path */
63
+ protected readonly fileStoreFastCollection: FileStoreTxCollection;
64
+
57
65
  /** Loop for periodically reconciling found transactions from the tx pool in case we missed some */
58
66
  private readonly reconcileFoundTxsLoop: RunningPromise;
59
67
 
@@ -61,17 +69,24 @@ export class TxCollection {
61
69
  private readonly txCollectionSink: TxCollectionSink;
62
70
 
63
71
  /** Handler for the txs-added event from the tx pool */
64
- protected readonly handleTxsAddedToPool: TxPoolEvents['txs-added'];
72
+ protected readonly handleTxsAddedToPool: TxPoolV2Events['txs-added'];
65
73
 
66
74
  /** Handler for the txs-added event from the tx collection sink */
67
- protected readonly handleTxsFound: TxPoolEvents['txs-added'];
75
+ protected readonly handleTxsFound: TxPoolV2Events['txs-added'];
76
+
77
+ /** Whether the service has been started. */
78
+ private started = false;
79
+
80
+ /** Whether file store sources are configured. */
81
+ private readonly hasFileStoreSources: boolean;
68
82
 
69
83
  constructor(
70
- private readonly reqResp: Pick<ReqRespInterface, 'sendBatchRequest'>,
84
+ private readonly p2pService: BatchTxRequesterLibP2PService,
71
85
  private readonly nodes: TxSource[],
72
86
  private readonly constants: L1RollupConstants,
73
- private readonly txPool: TxPool,
87
+ private readonly txPool: TxPoolV2,
74
88
  private readonly config: TxCollectionConfig,
89
+ fileStoreSources: FileStoreTxSource[] = [],
75
90
  private readonly dateProvider: DateProvider = new DateProvider(),
76
91
  telemetryClient: TelemetryClient = getTelemetryClient(),
77
92
  private readonly log: Logger = createLogger('p2p:tx_collection_service'),
@@ -79,7 +94,7 @@ export class TxCollection {
79
94
  this.txCollectionSink = new TxCollectionSink(this.txPool, telemetryClient, this.log);
80
95
 
81
96
  this.fastCollection = new FastTxCollection(
82
- this.reqResp,
97
+ this.p2pService,
83
98
  this.nodes,
84
99
  this.txCollectionSink,
85
100
  this.config,
@@ -88,7 +103,7 @@ export class TxCollection {
88
103
  );
89
104
 
90
105
  this.slowCollection = new SlowTxCollection(
91
- this.reqResp,
106
+ this.p2pService.reqResp,
92
107
  this.nodes,
93
108
  this.txCollectionSink,
94
109
  this.fastCollection,
@@ -98,18 +113,42 @@ export class TxCollection {
98
113
  this.log,
99
114
  );
100
115
 
116
+ this.hasFileStoreSources = fileStoreSources.length > 0;
117
+ this.fileStoreSlowCollection = new FileStoreTxCollection(
118
+ fileStoreSources,
119
+ this.txCollectionSink,
120
+ {
121
+ workerCount: config.txCollectionFileStoreSlowWorkerCount,
122
+ backoffBaseMs: config.txCollectionFileStoreSlowBackoffBaseMs,
123
+ backoffMaxMs: config.txCollectionFileStoreSlowBackoffMaxMs,
124
+ },
125
+ this.dateProvider,
126
+ this.log,
127
+ );
128
+ this.fileStoreFastCollection = new FileStoreTxCollection(
129
+ fileStoreSources,
130
+ this.txCollectionSink,
131
+ {
132
+ workerCount: config.txCollectionFileStoreFastWorkerCount,
133
+ backoffBaseMs: config.txCollectionFileStoreFastBackoffBaseMs,
134
+ backoffMaxMs: config.txCollectionFileStoreFastBackoffMaxMs,
135
+ },
136
+ this.dateProvider,
137
+ this.log,
138
+ );
139
+
101
140
  this.reconcileFoundTxsLoop = new RunningPromise(
102
141
  () => this.reconcileFoundTxsWithPool(),
103
142
  this.log,
104
143
  this.config.txCollectionReconcileIntervalMs,
105
144
  );
106
145
 
107
- this.handleTxsFound = (args: Parameters<TxPoolEvents['txs-added']>[0]) => {
146
+ this.handleTxsFound = (args: Parameters<TxPoolV2Events['txs-added']>[0]) => {
108
147
  this.foundTxs(args.txs);
109
148
  };
110
149
  this.txCollectionSink.on('txs-added', this.handleTxsFound);
111
150
 
112
- this.handleTxsAddedToPool = (args: Parameters<TxPoolEvents['txs-added']>[0]) => {
151
+ this.handleTxsAddedToPool = (args: Parameters<TxPoolV2Events['txs-added']>[0]) => {
113
152
  const { txs, source } = args;
114
153
  if (source !== 'tx-collection') {
115
154
  this.foundTxs(txs);
@@ -120,7 +159,10 @@ export class TxCollection {
120
159
 
121
160
  /** Starts all collection loops. */
122
161
  public start(): Promise<void> {
162
+ this.started = true;
123
163
  this.slowCollection.start();
164
+ this.fileStoreSlowCollection.start();
165
+ this.fileStoreFastCollection.start();
124
166
  this.reconcileFoundTxsLoop.start();
125
167
 
126
168
  // TODO(palla/txs): Collect mined unproven tx hashes for txs we dont have in the pool and populate missingTxs on startup
@@ -129,7 +171,14 @@ export class TxCollection {
129
171
 
130
172
  /** Stops all activity. */
131
173
  public async stop() {
132
- await Promise.all([this.slowCollection.stop(), this.fastCollection.stop(), this.reconcileFoundTxsLoop.stop()]);
174
+ this.started = false;
175
+ await Promise.all([
176
+ this.slowCollection.stop(),
177
+ this.fastCollection.stop(),
178
+ this.fileStoreSlowCollection.stop(),
179
+ this.fileStoreFastCollection.stop(),
180
+ this.reconcileFoundTxsLoop.stop(),
181
+ ]);
133
182
 
134
183
  this.txPool.removeListener('txs-added', this.handleTxsAddedToPool);
135
184
  this.txCollectionSink.removeListener('txs-added', this.handleTxsFound);
@@ -146,8 +195,26 @@ export class TxCollection {
146
195
  }
147
196
 
148
197
  /** Starts collecting the given tx hashes for the given L2Block in the slow loop */
149
- public startCollecting(block: L2BlockNew, txHashes: TxHash[]) {
150
- return this.slowCollection.startCollecting(block, txHashes);
198
+ public startCollecting(block: L2Block, txHashes: TxHash[]) {
199
+ this.slowCollection.startCollecting(block, txHashes);
200
+
201
+ // Delay file store collection to give P2P methods time to find txs first
202
+ if (this.hasFileStoreSources) {
203
+ const context: TxAddContext = { type: 'mined', block };
204
+ const deadline = getProofDeadlineForSlot(block.header.getSlot(), this.constants);
205
+ sleep(this.config.txCollectionFileStoreSlowDelayMs)
206
+ .then(() => {
207
+ if (this.started) {
208
+ // Only queue txs that are still missing after the delay
209
+ const stillMissing = new Set(this.slowCollection.getMissingTxHashes().map(h => h.toString()));
210
+ const remaining = txHashes.filter(h => stillMissing.has(h.toString()));
211
+ if (remaining.length > 0) {
212
+ this.fileStoreSlowCollection.startCollecting(remaining, context, deadline);
213
+ }
214
+ }
215
+ })
216
+ .catch(err => this.log.error('Error in file store slow delay', err));
217
+ }
151
218
  }
152
219
 
153
220
  /** Collects the set of txs for the given block proposal as fast as possible */
@@ -162,7 +229,7 @@ export class TxCollection {
162
229
 
163
230
  /** Collects the set of txs for the given mined block as fast as possible */
164
231
  public collectFastForBlock(
165
- block: L2BlockNew,
232
+ block: L2Block,
166
233
  txHashes: TxHash[] | string[],
167
234
  opts: { deadline: Date; pinnedPeer?: PeerId },
168
235
  ) {
@@ -175,13 +242,38 @@ export class TxCollection {
175
242
  txHashes: TxHash[] | string[],
176
243
  opts: { deadline: Date; pinnedPeer?: PeerId },
177
244
  ) {
245
+ const hashes = txHashes.map(h => (typeof h === 'string' ? TxHash.fromString(h) : h));
246
+
247
+ // Delay file store collection to give P2P methods time to find txs first
248
+ if (this.hasFileStoreSources) {
249
+ const context = this.getAddContextForInput(input);
250
+ sleep(this.config.txCollectionFileStoreFastDelayMs)
251
+ .then(() => {
252
+ if (this.started) {
253
+ this.fileStoreFastCollection.startCollecting(hashes, context, opts.deadline);
254
+ }
255
+ })
256
+ .catch(err => this.log.error('Error in file store fast delay', err));
257
+ }
258
+
178
259
  return this.fastCollection.collectFastFor(input, txHashes, opts);
179
260
  }
180
261
 
262
+ /** Returns the TxAddContext for the given fast collection request input */
263
+ private getAddContextForInput(input: FastCollectionRequestInput): TxAddContext {
264
+ if (input.type === 'proposal') {
265
+ return { type: 'proposal', blockHeader: input.blockProposal.blockHeader };
266
+ } else {
267
+ return { type: 'mined', block: input.block };
268
+ }
269
+ }
270
+
181
271
  /** Mark the given txs as found. Stops collecting them. */
182
272
  private foundTxs(txs: Tx[]) {
183
273
  this.slowCollection.foundTxs(txs);
184
274
  this.fastCollection.foundTxs(txs);
275
+ this.fileStoreSlowCollection.foundTxs(txs);
276
+ this.fileStoreFastCollection.foundTxs(txs);
185
277
  }
186
278
 
187
279
  /**
@@ -191,6 +283,8 @@ export class TxCollection {
191
283
  public stopCollectingForBlocksUpTo(blockNumber: BlockNumber): void {
192
284
  this.slowCollection.stopCollectingForBlocksUpTo(blockNumber);
193
285
  this.fastCollection.stopCollectingForBlocksUpTo(blockNumber);
286
+ this.fileStoreSlowCollection.clearPending();
287
+ this.fileStoreFastCollection.clearPending();
194
288
  }
195
289
 
196
290
  /**
@@ -200,6 +294,8 @@ export class TxCollection {
200
294
  public stopCollectingForBlocksAfter(blockNumber: BlockNumber): void {
201
295
  this.slowCollection.stopCollectingForBlocksAfter(blockNumber);
202
296
  this.fastCollection.stopCollectingForBlocksAfter(blockNumber);
297
+ this.fileStoreSlowCollection.clearPending();
298
+ this.fileStoreFastCollection.clearPending();
203
299
  }
204
300
 
205
301
  /** Every now and then, check if the pool has received one of the txs we are looking for, just to catch any race conditions */
@@ -1,24 +1,28 @@
1
1
  import type { Logger } from '@aztec/foundation/log';
2
2
  import { elapsed } from '@aztec/foundation/timer';
3
3
  import type { TypedEventEmitter } from '@aztec/foundation/types';
4
- import { Tx, type TxHash } from '@aztec/stdlib/tx';
4
+ import type { L2Block } from '@aztec/stdlib/block';
5
+ import type { BlockHeader, Tx, TxHash } from '@aztec/stdlib/tx';
5
6
  import type { TelemetryClient } from '@aztec/telemetry-client';
6
7
 
7
8
  import EventEmitter from 'node:events';
8
9
 
9
- import type { TxPool, TxPoolEvents } from '../../mem_pools/tx_pool/tx_pool.js';
10
+ import type { TxPoolV2, TxPoolV2Events } from '../../mem_pools/tx_pool_v2/interfaces.js';
10
11
  import { TxCollectionInstrumentation } from './instrumentation.js';
11
12
  import type { CollectionMethod } from './tx_collection.js';
12
13
 
14
+ /** Context determining how collected txs should be added to the pool. */
15
+ export type TxAddContext = { type: 'proposal'; blockHeader: BlockHeader } | { type: 'mined'; block: L2Block };
16
+
13
17
  /**
14
18
  * Executes collection requests from the fast and slow collection loops, and handles collected txs
15
19
  * by adding them to the tx pool and emitting events, as well as handling logging and metrics.
16
20
  */
17
- export class TxCollectionSink extends (EventEmitter as new () => TypedEventEmitter<TxPoolEvents>) {
21
+ export class TxCollectionSink extends (EventEmitter as new () => TypedEventEmitter<TxPoolV2Events>) {
18
22
  private readonly instrumentation: TxCollectionInstrumentation;
19
23
 
20
24
  constructor(
21
- private readonly txPool: TxPool,
25
+ private readonly txPool: TxPoolV2,
22
26
  telemetryClient: TelemetryClient,
23
27
  private readonly log: Logger,
24
28
  ) {
@@ -30,6 +34,7 @@ export class TxCollectionSink extends (EventEmitter as new () => TypedEventEmitt
30
34
  collectValidTxsFn: (txHashes: TxHash[]) => Promise<(Tx | undefined)[]>,
31
35
  requested: TxHash[],
32
36
  info: Record<string, any> & { description: string; method: CollectionMethod },
37
+ context: TxAddContext,
33
38
  ) {
34
39
  this.log.trace(`Requesting ${requested.length} txs via ${info.description}`, {
35
40
  ...info,
@@ -99,12 +104,13 @@ export class TxCollectionSink extends (EventEmitter as new () => TypedEventEmitt
99
104
  },
100
105
  );
101
106
 
102
- return await this.foundTxs(validTxs, { ...info, duration });
107
+ return await this.foundTxs(validTxs, { ...info, duration }, context);
103
108
  }
104
109
 
105
110
  private async foundTxs(
106
111
  txs: Tx[],
107
112
  info: Record<string, any> & { description: string; method: CollectionMethod; duration: number },
113
+ context: TxAddContext,
108
114
  ) {
109
115
  // Report metrics for the collection
110
116
  this.instrumentation.increaseTxsFor(info.method, txs.length, info.duration);
@@ -112,9 +118,13 @@ export class TxCollectionSink extends (EventEmitter as new () => TypedEventEmitt
112
118
  // Mark txs as found in the slow missing txs set and all fast requests
113
119
  this.emit('txs-added', { txs });
114
120
 
115
- // Add the txs to the tx pool (should not fail, but we catch it just in case)
121
+ // Add the txs to the tx pool using the appropriate method based on context
116
122
  try {
117
- await this.txPool.addTxs(txs, { source: `tx-collection` });
123
+ if (context.type === 'mined') {
124
+ await this.txPool.addMinedTxs(txs, context.block.header, { source: 'tx-collection' });
125
+ } else {
126
+ await this.txPool.addProtectedTxs(txs, context.blockHeader, { source: 'tx-collection' });
127
+ }
118
128
  } catch (err) {
119
129
  this.log.error(`Error adding txs to the pool via ${info.description}`, err, {
120
130
  ...info,
@@ -0,0 +1,37 @@
1
+ import { type ConfigMappingsType, booleanConfigHelper, numberConfigHelper } from '@aztec/foundation/config';
2
+
3
+ /**
4
+ * Configuration for the TxFileStore service.
5
+ */
6
+ export type TxFileStoreConfig = {
7
+ /** URL for uploading txs to file storage (s3://, gs://, file://) */
8
+ txFileStoreUrl?: string;
9
+ /** Max concurrent uploads */
10
+ txFileStoreUploadConcurrency: number;
11
+ /** Max queue size to prevent unbounded memory growth */
12
+ txFileStoreMaxQueueSize: number;
13
+ /** Enable tx file store upload */
14
+ txFileStoreEnabled: boolean;
15
+ };
16
+
17
+ export const txFileStoreConfigMappings: ConfigMappingsType<TxFileStoreConfig> = {
18
+ txFileStoreUrl: {
19
+ env: 'TX_FILE_STORE_URL',
20
+ description: 'URL for uploading txs to file storage (s3://, gs://, file://)',
21
+ },
22
+ txFileStoreUploadConcurrency: {
23
+ env: 'TX_FILE_STORE_UPLOAD_CONCURRENCY',
24
+ description: 'Maximum number of concurrent tx uploads',
25
+ ...numberConfigHelper(10),
26
+ },
27
+ txFileStoreMaxQueueSize: {
28
+ env: 'TX_FILE_STORE_MAX_QUEUE_SIZE',
29
+ description: 'Maximum queue size for pending uploads (oldest dropped when exceeded)',
30
+ ...numberConfigHelper(1000),
31
+ },
32
+ txFileStoreEnabled: {
33
+ env: 'TX_FILE_STORE_ENABLED',
34
+ description: 'Enable uploading transactions to file storage',
35
+ ...booleanConfigHelper(false),
36
+ },
37
+ };
@@ -0,0 +1,3 @@
1
+ export { TxFileStore } from './tx_file_store.js';
2
+ export { TxFileStoreInstrumentation } from './instrumentation.js';
3
+ export { type TxFileStoreConfig, txFileStoreConfigMappings } from './config.js';
@@ -0,0 +1,36 @@
1
+ import { type Gauge, type Histogram, Metrics, type TelemetryClient, type UpDownCounter } from '@aztec/telemetry-client';
2
+
3
+ /** Instrumentation for the TxFileStore service. */
4
+ export class TxFileStoreInstrumentation {
5
+ private uploadsSuccess: UpDownCounter;
6
+ private uploadsFailed: UpDownCounter;
7
+ private uploadsSkipped: UpDownCounter;
8
+ private uploadDuration: Histogram;
9
+ private queueSize: Gauge;
10
+
11
+ constructor(client: TelemetryClient, name: string) {
12
+ const meter = client.getMeter(name);
13
+ this.uploadsSuccess = meter.createUpDownCounter(Metrics.TX_FILE_STORE_UPLOADS_SUCCESS);
14
+ this.uploadsFailed = meter.createUpDownCounter(Metrics.TX_FILE_STORE_UPLOADS_FAILED);
15
+ this.uploadsSkipped = meter.createUpDownCounter(Metrics.TX_FILE_STORE_UPLOADS_SKIPPED);
16
+ this.uploadDuration = meter.createHistogram(Metrics.TX_FILE_STORE_UPLOAD_DURATION);
17
+ this.queueSize = meter.createGauge(Metrics.TX_FILE_STORE_QUEUE_SIZE);
18
+ }
19
+
20
+ recordUploadSuccess(durationMs: number) {
21
+ this.uploadsSuccess.add(1);
22
+ this.uploadDuration.record(durationMs);
23
+ }
24
+
25
+ recordUploadFailed() {
26
+ this.uploadsFailed.add(1);
27
+ }
28
+
29
+ recordUploadSkipped() {
30
+ this.uploadsSkipped.add(1);
31
+ }
32
+
33
+ recordQueueSize(size: number) {
34
+ this.queueSize.record(size);
35
+ }
36
+ }