@aztec/p2p 0.0.1-commit.6d63667d → 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 (220) hide show
  1. package/dest/client/factory.d.ts +5 -5
  2. package/dest/client/factory.d.ts.map +1 -1
  3. package/dest/client/factory.js +44 -10
  4. package/dest/client/interface.d.ts +37 -15
  5. package/dest/client/interface.d.ts.map +1 -1
  6. package/dest/client/p2p_client.d.ts +35 -36
  7. package/dest/client/p2p_client.d.ts.map +1 -1
  8. package/dest/client/p2p_client.js +114 -138
  9. package/dest/client/test/tx_proposal_collector/proposal_tx_collector_worker.js +1 -1
  10. package/dest/config.d.ts +22 -4
  11. package/dest/config.d.ts.map +1 -1
  12. package/dest/config.js +16 -1
  13. package/dest/index.d.ts +2 -1
  14. package/dest/index.d.ts.map +1 -1
  15. package/dest/index.js +1 -0
  16. package/dest/mem_pools/attestation_pool/attestation_pool.d.ts +104 -88
  17. package/dest/mem_pools/attestation_pool/attestation_pool.d.ts.map +1 -1
  18. package/dest/mem_pools/attestation_pool/attestation_pool.js +441 -3
  19. package/dest/mem_pools/attestation_pool/attestation_pool_test_suite.d.ts +2 -2
  20. package/dest/mem_pools/attestation_pool/attestation_pool_test_suite.d.ts.map +1 -1
  21. package/dest/mem_pools/attestation_pool/attestation_pool_test_suite.js +353 -87
  22. package/dest/mem_pools/attestation_pool/index.d.ts +2 -3
  23. package/dest/mem_pools/attestation_pool/index.d.ts.map +1 -1
  24. package/dest/mem_pools/attestation_pool/index.js +1 -2
  25. package/dest/mem_pools/index.d.ts +3 -2
  26. package/dest/mem_pools/index.d.ts.map +1 -1
  27. package/dest/mem_pools/index.js +1 -1
  28. package/dest/mem_pools/interface.d.ts +5 -5
  29. package/dest/mem_pools/interface.d.ts.map +1 -1
  30. package/dest/mem_pools/tx_pool_v2/deleted_pool.d.ts +102 -0
  31. package/dest/mem_pools/tx_pool_v2/deleted_pool.d.ts.map +1 -0
  32. package/dest/mem_pools/tx_pool_v2/deleted_pool.js +242 -0
  33. package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.d.ts +1 -1
  34. package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.d.ts.map +1 -1
  35. package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.js +3 -0
  36. package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_mining_rule.js +3 -1
  37. package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_reorg_rule.js +3 -1
  38. package/dest/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.d.ts +1 -1
  39. package/dest/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.d.ts.map +1 -1
  40. package/dest/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.js +3 -1
  41. package/dest/mem_pools/tx_pool_v2/index.d.ts +2 -1
  42. package/dest/mem_pools/tx_pool_v2/index.d.ts.map +1 -1
  43. package/dest/mem_pools/tx_pool_v2/index.js +1 -0
  44. package/dest/mem_pools/tx_pool_v2/interfaces.d.ts +7 -3
  45. package/dest/mem_pools/tx_pool_v2/interfaces.d.ts.map +1 -1
  46. package/dest/mem_pools/tx_pool_v2/interfaces.js +2 -1
  47. package/dest/mem_pools/tx_pool_v2/tx_metadata.d.ts +27 -3
  48. package/dest/mem_pools/tx_pool_v2/tx_metadata.d.ts.map +1 -1
  49. package/dest/mem_pools/tx_pool_v2/tx_metadata.js +37 -4
  50. package/dest/mem_pools/tx_pool_v2/tx_pool_indices.d.ts +8 -2
  51. package/dest/mem_pools/tx_pool_v2/tx_pool_indices.d.ts.map +1 -1
  52. package/dest/mem_pools/tx_pool_v2/tx_pool_indices.js +15 -2
  53. package/dest/mem_pools/tx_pool_v2/tx_pool_v2.d.ts +4 -2
  54. package/dest/mem_pools/tx_pool_v2/tx_pool_v2.d.ts.map +1 -1
  55. package/dest/mem_pools/tx_pool_v2/tx_pool_v2.js +6 -2
  56. package/dest/mem_pools/tx_pool_v2/tx_pool_v2_impl.d.ts +4 -2
  57. package/dest/mem_pools/tx_pool_v2/tx_pool_v2_impl.d.ts.map +1 -1
  58. package/dest/mem_pools/tx_pool_v2/tx_pool_v2_impl.js +110 -78
  59. package/dest/msg_validators/attestation_validator/fisherman_attestation_validator.d.ts +3 -3
  60. package/dest/msg_validators/attestation_validator/fisherman_attestation_validator.d.ts.map +1 -1
  61. package/dest/msg_validators/tx_validator/aggregate_tx_validator.d.ts +3 -3
  62. package/dest/msg_validators/tx_validator/aggregate_tx_validator.d.ts.map +1 -1
  63. package/dest/msg_validators/tx_validator/block_header_validator.d.ts +16 -3
  64. package/dest/msg_validators/tx_validator/block_header_validator.d.ts.map +1 -1
  65. package/dest/msg_validators/tx_validator/block_header_validator.js +1 -1
  66. package/dest/msg_validators/tx_validator/double_spend_validator.d.ts +13 -3
  67. package/dest/msg_validators/tx_validator/double_spend_validator.d.ts.map +1 -1
  68. package/dest/msg_validators/tx_validator/double_spend_validator.js +4 -4
  69. package/dest/msg_validators/tx_validator/timestamp_validator.d.ts +20 -4
  70. package/dest/msg_validators/tx_validator/timestamp_validator.d.ts.map +1 -1
  71. package/dest/msg_validators/tx_validator/timestamp_validator.js +2 -2
  72. package/dest/services/dummy_service.d.ts +10 -2
  73. package/dest/services/dummy_service.d.ts.map +1 -1
  74. package/dest/services/dummy_service.js +6 -0
  75. package/dest/services/encoding.d.ts +2 -2
  76. package/dest/services/encoding.d.ts.map +1 -1
  77. package/dest/services/encoding.js +2 -2
  78. package/dest/services/gossipsub/index.d.ts +3 -0
  79. package/dest/services/gossipsub/index.d.ts.map +1 -0
  80. package/dest/services/gossipsub/index.js +2 -0
  81. package/dest/services/gossipsub/scoring.d.ts +21 -3
  82. package/dest/services/gossipsub/scoring.d.ts.map +1 -1
  83. package/dest/services/gossipsub/scoring.js +24 -7
  84. package/dest/services/gossipsub/topic_score_params.d.ts +161 -0
  85. package/dest/services/gossipsub/topic_score_params.d.ts.map +1 -0
  86. package/dest/services/gossipsub/topic_score_params.js +324 -0
  87. package/dest/services/libp2p/libp2p_service.d.ts +84 -35
  88. package/dest/services/libp2p/libp2p_service.d.ts.map +1 -1
  89. package/dest/services/libp2p/libp2p_service.js +364 -265
  90. package/dest/services/peer-manager/peer_scoring.d.ts +1 -1
  91. package/dest/services/peer-manager/peer_scoring.d.ts.map +1 -1
  92. package/dest/services/peer-manager/peer_scoring.js +25 -2
  93. package/dest/services/reqresp/interface.d.ts +10 -1
  94. package/dest/services/reqresp/interface.d.ts.map +1 -1
  95. package/dest/services/reqresp/interface.js +15 -1
  96. package/dest/services/reqresp/protocols/block_txs/block_txs_handler.d.ts +4 -3
  97. package/dest/services/reqresp/protocols/block_txs/block_txs_handler.d.ts.map +1 -1
  98. package/dest/services/reqresp/protocols/block_txs/block_txs_reqresp.d.ts +7 -1
  99. package/dest/services/reqresp/protocols/block_txs/block_txs_reqresp.d.ts.map +1 -1
  100. package/dest/services/reqresp/protocols/block_txs/block_txs_reqresp.js +15 -0
  101. package/dest/services/reqresp/protocols/tx.d.ts +7 -1
  102. package/dest/services/reqresp/protocols/tx.d.ts.map +1 -1
  103. package/dest/services/reqresp/protocols/tx.js +20 -0
  104. package/dest/services/reqresp/reqresp.d.ts +1 -1
  105. package/dest/services/reqresp/reqresp.d.ts.map +1 -1
  106. package/dest/services/reqresp/reqresp.js +11 -4
  107. package/dest/services/service.d.ts +35 -1
  108. package/dest/services/service.d.ts.map +1 -1
  109. package/dest/services/tx_collection/config.d.ts +19 -1
  110. package/dest/services/tx_collection/config.d.ts.map +1 -1
  111. package/dest/services/tx_collection/config.js +46 -0
  112. package/dest/services/tx_collection/fast_tx_collection.d.ts +3 -1
  113. package/dest/services/tx_collection/fast_tx_collection.d.ts.map +1 -1
  114. package/dest/services/tx_collection/fast_tx_collection.js +17 -3
  115. package/dest/services/tx_collection/file_store_tx_collection.d.ts +53 -0
  116. package/dest/services/tx_collection/file_store_tx_collection.d.ts.map +1 -0
  117. package/dest/services/tx_collection/file_store_tx_collection.js +165 -0
  118. package/dest/services/tx_collection/file_store_tx_source.d.ts +28 -0
  119. package/dest/services/tx_collection/file_store_tx_source.d.ts.map +1 -0
  120. package/dest/services/tx_collection/file_store_tx_source.js +59 -0
  121. package/dest/services/tx_collection/index.d.ts +2 -1
  122. package/dest/services/tx_collection/index.d.ts.map +1 -1
  123. package/dest/services/tx_collection/index.js +1 -0
  124. package/dest/services/tx_collection/slow_tx_collection.d.ts +6 -2
  125. package/dest/services/tx_collection/slow_tx_collection.d.ts.map +1 -1
  126. package/dest/services/tx_collection/slow_tx_collection.js +55 -23
  127. package/dest/services/tx_collection/tx_collection.d.ts +19 -7
  128. package/dest/services/tx_collection/tx_collection.d.ts.map +1 -1
  129. package/dest/services/tx_collection/tx_collection.js +75 -3
  130. package/dest/services/tx_collection/tx_collection_sink.d.ts +15 -6
  131. package/dest/services/tx_collection/tx_collection_sink.d.ts.map +1 -1
  132. package/dest/services/tx_collection/tx_collection_sink.js +13 -7
  133. package/dest/services/tx_file_store/config.d.ts +1 -3
  134. package/dest/services/tx_file_store/config.d.ts.map +1 -1
  135. package/dest/services/tx_file_store/config.js +0 -4
  136. package/dest/services/tx_file_store/tx_file_store.d.ts +4 -3
  137. package/dest/services/tx_file_store/tx_file_store.d.ts.map +1 -1
  138. package/dest/services/tx_file_store/tx_file_store.js +8 -5
  139. package/dest/services/tx_provider.d.ts +3 -3
  140. package/dest/services/tx_provider.d.ts.map +1 -1
  141. package/dest/services/tx_provider.js +5 -4
  142. package/dest/test-helpers/make-test-p2p-clients.d.ts +3 -3
  143. package/dest/test-helpers/make-test-p2p-clients.d.ts.map +1 -1
  144. package/dest/test-helpers/mock-pubsub.d.ts +27 -1
  145. package/dest/test-helpers/mock-pubsub.d.ts.map +1 -1
  146. package/dest/test-helpers/mock-pubsub.js +97 -2
  147. package/dest/test-helpers/reqresp-nodes.d.ts +1 -1
  148. package/dest/test-helpers/reqresp-nodes.d.ts.map +1 -1
  149. package/dest/test-helpers/reqresp-nodes.js +2 -1
  150. package/dest/test-helpers/testbench-utils.d.ts +40 -38
  151. package/dest/test-helpers/testbench-utils.d.ts.map +1 -1
  152. package/dest/test-helpers/testbench-utils.js +128 -59
  153. package/dest/testbench/p2p_client_testbench_worker.js +2 -2
  154. package/package.json +14 -14
  155. package/src/client/factory.ts +81 -13
  156. package/src/client/interface.ts +45 -14
  157. package/src/client/p2p_client.ts +151 -161
  158. package/src/client/test/tx_proposal_collector/proposal_tx_collector_worker.ts +1 -1
  159. package/src/config.ts +34 -2
  160. package/src/index.ts +1 -0
  161. package/src/mem_pools/attestation_pool/attestation_pool.ts +496 -91
  162. package/src/mem_pools/attestation_pool/attestation_pool_test_suite.ts +442 -102
  163. package/src/mem_pools/attestation_pool/index.ts +9 -2
  164. package/src/mem_pools/index.ts +4 -1
  165. package/src/mem_pools/interface.ts +4 -4
  166. package/src/mem_pools/tx_pool_v2/README.md +75 -9
  167. package/src/mem_pools/tx_pool_v2/deleted_pool.ts +310 -0
  168. package/src/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.ts +3 -0
  169. package/src/mem_pools/tx_pool_v2/eviction/invalid_txs_after_mining_rule.ts +1 -1
  170. package/src/mem_pools/tx_pool_v2/eviction/invalid_txs_after_reorg_rule.ts +1 -1
  171. package/src/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.ts +3 -1
  172. package/src/mem_pools/tx_pool_v2/index.ts +1 -0
  173. package/src/mem_pools/tx_pool_v2/interfaces.ts +8 -2
  174. package/src/mem_pools/tx_pool_v2/tx_metadata.ts +55 -5
  175. package/src/mem_pools/tx_pool_v2/tx_pool_indices.ts +18 -2
  176. package/src/mem_pools/tx_pool_v2/tx_pool_v2.ts +7 -1
  177. package/src/mem_pools/tx_pool_v2/tx_pool_v2_impl.ts +122 -80
  178. package/src/msg_validators/attestation_validator/fisherman_attestation_validator.ts +2 -2
  179. package/src/msg_validators/tx_validator/aggregate_tx_validator.ts +2 -2
  180. package/src/msg_validators/tx_validator/block_header_validator.ts +15 -3
  181. package/src/msg_validators/tx_validator/double_spend_validator.ts +11 -6
  182. package/src/msg_validators/tx_validator/timestamp_validator.ts +19 -14
  183. package/src/services/dummy_service.ts +12 -0
  184. package/src/services/encoding.ts +2 -2
  185. package/src/services/gossipsub/README.md +626 -0
  186. package/src/services/gossipsub/index.ts +2 -0
  187. package/src/services/gossipsub/scoring.ts +29 -5
  188. package/src/services/gossipsub/topic_score_params.ts +451 -0
  189. package/src/services/libp2p/libp2p_service.ts +360 -269
  190. package/src/services/peer-manager/peer_scoring.ts +25 -0
  191. package/src/services/reqresp/interface.ts +26 -1
  192. package/src/services/reqresp/protocols/block_txs/block_txs_handler.ts +4 -3
  193. package/src/services/reqresp/protocols/block_txs/block_txs_reqresp.ts +17 -0
  194. package/src/services/reqresp/protocols/tx.ts +22 -0
  195. package/src/services/reqresp/reqresp.ts +13 -3
  196. package/src/services/service.ts +40 -0
  197. package/src/services/tx_collection/config.ts +68 -0
  198. package/src/services/tx_collection/fast_tx_collection.ts +14 -2
  199. package/src/services/tx_collection/file_store_tx_collection.ts +198 -0
  200. package/src/services/tx_collection/file_store_tx_source.ts +73 -0
  201. package/src/services/tx_collection/index.ts +1 -0
  202. package/src/services/tx_collection/slow_tx_collection.ts +64 -30
  203. package/src/services/tx_collection/tx_collection.ts +109 -13
  204. package/src/services/tx_collection/tx_collection_sink.ts +17 -7
  205. package/src/services/tx_file_store/config.ts +0 -6
  206. package/src/services/tx_file_store/tx_file_store.ts +9 -7
  207. package/src/services/tx_provider.ts +8 -7
  208. package/src/test-helpers/make-test-p2p-clients.ts +3 -3
  209. package/src/test-helpers/mock-pubsub.ts +133 -3
  210. package/src/test-helpers/reqresp-nodes.ts +2 -1
  211. package/src/test-helpers/testbench-utils.ts +127 -71
  212. package/src/testbench/p2p_client_testbench_worker.ts +2 -2
  213. package/dest/mem_pools/attestation_pool/kv_attestation_pool.d.ts +0 -40
  214. package/dest/mem_pools/attestation_pool/kv_attestation_pool.d.ts.map +0 -1
  215. package/dest/mem_pools/attestation_pool/kv_attestation_pool.js +0 -218
  216. package/dest/mem_pools/attestation_pool/memory_attestation_pool.d.ts +0 -31
  217. package/dest/mem_pools/attestation_pool/memory_attestation_pool.d.ts.map +0 -1
  218. package/dest/mem_pools/attestation_pool/memory_attestation_pool.js +0 -180
  219. package/src/mem_pools/attestation_pool/kv_attestation_pool.ts +0 -320
  220. package/src/mem_pools/attestation_pool/memory_attestation_pool.ts +0 -264
@@ -370,9 +370,8 @@ function applyDecs2203RFactory() {
370
370
  function _apply_decs_2203_r(targetClass, memberDecs, classDecs, parentClass) {
371
371
  return (_apply_decs_2203_r = applyDecs2203RFactory())(targetClass, memberDecs, classDecs, parentClass);
372
372
  }
373
- var _dec, _dec1, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _initProto;
373
+ var _dec, _dec1, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _initProto;
374
374
  import { BlockNumber } from '@aztec/foundation/branded-types';
375
- import { randomInt } from '@aztec/foundation/crypto/random';
376
375
  import { createLibp2pComponentLogger, createLogger } from '@aztec/foundation/log';
377
376
  import { RunningPromise } from '@aztec/foundation/running-promise';
378
377
  import { Timer } from '@aztec/foundation/timer';
@@ -384,7 +383,7 @@ import { Tx } from '@aztec/stdlib/tx';
384
383
  import { compressComponentVersions } from '@aztec/stdlib/versioning';
385
384
  import { Attributes, OtelMetricsAdapter, SpanStatusCode, WithTracer, trackSpan } from '@aztec/telemetry-client';
386
385
  import { gossipsub } from '@chainsafe/libp2p-gossipsub';
387
- import { createPeerScoreParams, createTopicScoreParams } from '@chainsafe/libp2p-gossipsub/score';
386
+ import { createPeerScoreParams } from '@chainsafe/libp2p-gossipsub/score';
388
387
  import { SignaturePolicy } from '@chainsafe/libp2p-gossipsub/types';
389
388
  import { noise } from '@chainsafe/libp2p-noise';
390
389
  import { yamux } from '@chainsafe/libp2p-yamux';
@@ -395,7 +394,6 @@ import { mplex } from '@libp2p/mplex';
395
394
  import { tcp } from '@libp2p/tcp';
396
395
  import { ENR } from '@nethermindeth/enr';
397
396
  import { createLibp2p } from 'libp2p';
398
- import { ProposalSlotCapExceededError } from '../../errors/attestation-pool.error.js';
399
397
  import { BlockProposalValidator, CheckpointAttestationValidator, CheckpointProposalValidator, DoubleSpendTxValidator, FishermanAttestationValidator, getDefaultAllowedSetupFunctions } from '../../msg_validators/index.js';
400
398
  import { MessageSeenValidator } from '../../msg_validators/msg_seen_validator/msg_seen_validator.js';
401
399
  import { createTxMessageValidators, createTxReqRespValidator } from '../../msg_validators/tx_validator/factory.js';
@@ -405,37 +403,41 @@ import { getVersions } from '../../versioning.js';
405
403
  import { AztecDatastore } from '../data_store.js';
406
404
  import { DiscV5Service } from '../discv5/discV5_service.js';
407
405
  import { SnappyTransform, fastMsgIdFn, getMsgIdFn, msgIdToStrFn } from '../encoding.js';
408
- import { gossipScoreThresholds } from '../gossipsub/scoring.js';
406
+ import { APP_SPECIFIC_WEIGHT, gossipScoreThresholds } from '../gossipsub/scoring.js';
407
+ import { createAllTopicScoreParams } from '../gossipsub/topic_score_params.js';
409
408
  import { PeerManager } from '../peer-manager/peer_manager.js';
410
409
  import { PeerScoring } from '../peer-manager/peer_scoring.js';
411
410
  import { DEFAULT_SUB_PROTOCOL_VALIDATORS, ReqRespSubProtocol, ValidationError } from '../reqresp/index.js';
412
411
  import { pingHandler, reqGoodbyeHandler, reqRespBlockHandler, reqRespBlockTxsHandler, reqRespStatusHandler, reqRespTxHandler } from '../reqresp/index.js';
413
412
  import { ReqResp } from '../reqresp/reqresp.js';
414
413
  import { P2PInstrumentation } from './instrumentation.js';
415
- _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
414
+ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId, attestation)=>({
415
+ [Attributes.SLOT_NUMBER]: attestation.payload.header.slotNumber.toString()
416
+ })), _dec1 = trackSpan('Libp2pService.validateAndStoreBlockProposal', (_peerId, block)=>({
417
+ [Attributes.BLOCK_NUMBER]: block.blockNumber.toString(),
418
+ [Attributes.SLOT_NUMBER]: block.slotNumber.toString()
419
+ })), _dec2 = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
416
420
  [Attributes.SLOT_NUMBER]: block.slotNumber,
417
421
  [Attributes.BLOCK_ARCHIVE]: block.archive.toString(),
418
422
  [Attributes.P2P_ID]: await block.p2pMessageLoggingIdentifier().then((i)=>i.toString())
419
- })), _dec1 = trackSpan('Libp2pService.processValidCheckpointProposal', async (checkpoint)=>({
423
+ })), _dec3 = trackSpan('Libp2pService.validateAndStoreCheckpointProposal', (_peerId, checkpoint)=>({
424
+ [Attributes.SLOT_NUMBER]: checkpoint.slotNumber.toString()
425
+ })), _dec4 = trackSpan('Libp2pService.processValidCheckpointProposal', async (checkpoint)=>({
420
426
  [Attributes.SLOT_NUMBER]: checkpoint.slotNumber,
421
427
  [Attributes.BLOCK_ARCHIVE]: checkpoint.archive.toString(),
422
428
  [Attributes.P2P_ID]: await checkpoint.p2pMessageLoggingIdentifier().then((i)=>i.toString())
423
- })), _dec2 = trackSpan('Libp2pService.validateRequestedBlockTxs', (request)=>({
429
+ })), _dec5 = trackSpan('Libp2pService.validateRequestedBlockTxs', (request)=>({
424
430
  [Attributes.BLOCK_ARCHIVE]: request.archiveRoot.toString()
425
- })), _dec3 = trackSpan('Libp2pService.validateRequestedTx', (requestedTxHash, _responseTx)=>({
431
+ })), _dec6 = trackSpan('Libp2pService.validateRequestedTx', (requestedTxHash, _responseTx)=>({
426
432
  [Attributes.TX_HASH]: requestedTxHash.toString()
427
- })), _dec4 = trackSpan('Libp2pService.validateRequestedBlock', (requestedBlockNumber, _responseBlock)=>({
433
+ })), _dec7 = trackSpan('Libp2pService.validateRequestedBlock', (requestedBlockNumber, _responseBlock)=>({
428
434
  [Attributes.BLOCK_NUMBER]: requestedBlockNumber.toString()
429
- })), _dec5 = trackSpan('Libp2pService.validatePropagatedTx', (tx)=>({
435
+ })), _dec8 = trackSpan('Libp2pService.validatePropagatedTx', (tx)=>({
430
436
  [Attributes.TX_HASH]: tx.getTxHash().toString()
431
- })), _dec6 = trackSpan('Libp2pService.validateCheckpointAttestation', async (_, attestation)=>({
437
+ })), _dec9 = trackSpan('Libp2pService.validateCheckpointAttestation', async (_, attestation)=>({
432
438
  [Attributes.SLOT_NUMBER]: attestation.payload.header.slotNumber,
433
439
  [Attributes.BLOCK_ARCHIVE]: attestation.archive.toString(),
434
440
  [Attributes.P2P_ID]: await attestation.p2pMessageLoggingIdentifier().then((i)=>i.toString())
435
- })), _dec7 = trackSpan('Libp2pService.validateBlockProposal', (_peerId, block)=>({
436
- [Attributes.SLOT_NUMBER]: block.slotNumber.toString()
437
- })), _dec8 = trackSpan('Libp2pService.validateCheckpointProposal', (_peerId, checkpoint)=>({
438
- [Attributes.SLOT_NUMBER]: checkpoint.slotNumber.toString()
439
441
  }));
440
442
  /**
441
443
  * Lib P2P implementation of the P2PService interface.
@@ -456,47 +458,52 @@ _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
456
458
  [
457
459
  _dec,
458
460
  2,
459
- "processValidBlockProposal"
461
+ "validateAndStoreCheckpointAttestation"
460
462
  ],
461
463
  [
462
464
  _dec1,
463
465
  2,
464
- "processValidCheckpointProposal"
466
+ "validateAndStoreBlockProposal"
465
467
  ],
466
468
  [
467
469
  _dec2,
468
470
  2,
469
- "validateRequestedBlockTxs"
471
+ "processValidBlockProposal"
470
472
  ],
471
473
  [
472
474
  _dec3,
473
475
  2,
474
- "validateRequestedTxs"
476
+ "validateAndStoreCheckpointProposal"
475
477
  ],
476
478
  [
477
479
  _dec4,
478
480
  2,
479
- "validateRequestedBlock"
481
+ "processValidCheckpointProposal"
480
482
  ],
481
483
  [
482
484
  _dec5,
483
485
  2,
484
- "validatePropagatedTx"
486
+ "validateRequestedBlockTxs"
485
487
  ],
486
488
  [
487
489
  _dec6,
488
490
  2,
489
- "validateCheckpointAttestation"
491
+ "validateRequestedTxs"
490
492
  ],
491
493
  [
492
494
  _dec7,
493
495
  2,
494
- "validateBlockProposal"
496
+ "validateRequestedBlock"
495
497
  ],
496
498
  [
497
499
  _dec8,
498
500
  2,
499
- "validateCheckpointProposal"
501
+ "validatePropagatedTx"
502
+ ],
503
+ [
504
+ _dec9,
505
+ 2,
506
+ "validateCheckpointAttestation"
500
507
  ]
501
508
  ], []));
502
509
  }
@@ -509,6 +516,8 @@ _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
509
516
  protocolVersion;
510
517
  topicStrings;
511
518
  feesCache;
519
+ /** Callback invoked when a duplicate proposal is detected (triggers slashing). */ duplicateProposalCallback;
520
+ /** Callback invoked when a duplicate attestation is detected (triggers slashing). */ duplicateAttestationCallback;
512
521
  /**
513
522
  * Callback for when a block is received from a peer.
514
523
  * @param block - The block received from the peer.
@@ -587,10 +596,6 @@ _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
587
596
  }
588
597
  const versions = getVersions(config);
589
598
  const protocolVersion = compressComponentVersions(versions);
590
- const txTopic = createTopicString(TopicType.tx, protocolVersion);
591
- const blockProposalTopic = createTopicString(TopicType.block_proposal, protocolVersion);
592
- const checkpointProposalTopic = createTopicString(TopicType.checkpoint_proposal, protocolVersion);
593
- const checkpointAttestationTopic = createTopicString(TopicType.checkpoint_attestation, protocolVersion);
594
599
  const preferredPeersEnrs = config.preferredPeers.map((enr)=>ENR.decodeTxt(enr));
595
600
  const directPeers = (await Promise.all(preferredPeersEnrs.map(async (enr)=>{
596
601
  const peerId = await enr.peerId();
@@ -608,6 +613,14 @@ _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
608
613
  const announceTcpMultiaddr = config.p2pIp ? [
609
614
  convertToMultiaddr(config.p2pIp, p2pPort, 'tcp')
610
615
  ] : [];
616
+ // Create dynamic topic score params based on network configuration
617
+ const l1Constants = epochCache.getL1Constants();
618
+ const topicScoreParams = createAllTopicScoreParams(protocolVersion, {
619
+ slotDurationMs: l1Constants.slotDuration * 1000,
620
+ heartbeatIntervalMs: config.gossipsubInterval,
621
+ targetCommitteeSize: l1Constants.targetCommitteeSize,
622
+ blockDurationMs: config.blockDurationMs
623
+ });
611
624
  const node = await createLibp2p({
612
625
  start: false,
613
626
  peerId,
@@ -708,28 +721,7 @@ _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
708
721
  scoreParams: createPeerScoreParams({
709
722
  // IPColocation factor can be disabled for local testing - default to -5
710
723
  IPColocationFactorWeight: config.debugDisableColocationPenalty ? 0 : -5.0,
711
- topics: {
712
- [txTopic]: createTopicScoreParams({
713
- topicWeight: 1,
714
- invalidMessageDeliveriesWeight: -20,
715
- invalidMessageDeliveriesDecay: 0.5
716
- }),
717
- [blockProposalTopic]: createTopicScoreParams({
718
- topicWeight: 1,
719
- invalidMessageDeliveriesWeight: -20,
720
- invalidMessageDeliveriesDecay: 0.5
721
- }),
722
- [checkpointProposalTopic]: createTopicScoreParams({
723
- topicWeight: 1,
724
- invalidMessageDeliveriesWeight: -20,
725
- invalidMessageDeliveriesDecay: 0.5
726
- }),
727
- [checkpointAttestationTopic]: createTopicScoreParams({
728
- topicWeight: 1,
729
- invalidMessageDeliveriesWeight: -20,
730
- invalidMessageDeliveriesDecay: 0.5
731
- })
732
- }
724
+ topics: topicScoreParams
733
725
  })
734
726
  }),
735
727
  components: (components)=>({
@@ -741,8 +733,12 @@ _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
741
733
  const peerScoring = new PeerScoring(config, telemetry);
742
734
  const reqresp = new ReqResp(config, node, peerScoring, createLogger(`${logger.module}:reqresp`));
743
735
  const peerManager = new PeerManager(node, peerDiscoveryService, config, telemetry, createLogger(`${logger.module}:peer_manager`), peerScoring, reqresp, worldStateSynchronizer, protocolVersion, epochCache);
744
- // Update gossipsub score params
745
- node.services.pubsub.score.params.appSpecificWeight = 10;
736
+ // Configure application-specific scoring for gossipsub.
737
+ // The weight scales app score to align with gossipsub thresholds:
738
+ // - Disconnect (-50) × 10 = -500 = gossipThreshold (stops receiving gossip)
739
+ // - Ban (-100) × 10 = -1000 = publishThreshold (cannot publish)
740
+ // Note: positive topic scores can offset penalties, so alignment is best-effort.
741
+ node.services.pubsub.score.params.appSpecificWeight = APP_SPECIFIC_WEIGHT;
746
742
  node.services.pubsub.score.params.appSpecificScore = (peerId)=>peerManager.shouldDisableP2PGossip(peerId) ? -Infinity : peerManager.getPeerScore(peerId);
747
743
  return new LibP2PService(clientType, config, node, peerDiscoveryService, reqresp, peerManager, mempools, l2BlockSource, epochCache, proofVerifier, worldStateSynchronizer, telemetry, logger);
748
744
  }
@@ -872,6 +868,19 @@ _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
872
868
  this.checkpointReceivedCallback = callback;
873
869
  }
874
870
  /**
871
+ * Registers a callback to be invoked when a duplicate proposal is detected.
872
+ * This callback is triggered on the first duplicate (when count goes from 1 to 2).
873
+ */ registerDuplicateProposalCallback(callback) {
874
+ this.duplicateProposalCallback = callback;
875
+ }
876
+ /**
877
+ * Registers a callback to be invoked when a duplicate attestation is detected.
878
+ * A validator signing attestations for different proposals at the same slot.
879
+ * This callback is triggered on the first duplicate (when count goes from 1 to 2).
880
+ */ registerDuplicateAttestationCallback(callback) {
881
+ this.duplicateAttestationCallback = callback;
882
+ }
883
+ /**
875
884
  * Subscribes to a topic.
876
885
  * @param topic - The topic to subscribe to.
877
886
  */ subscribeToTopic(topic) {
@@ -1053,25 +1062,42 @@ _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
1053
1062
  const validationFunc = async ()=>{
1054
1063
  const tx = Tx.fromBuffer(payloadData);
1055
1064
  const isValid = await this.validatePropagatedTx(tx, source);
1056
- const exists = isValid && await this.mempools.txPool.hasTx(tx.getTxHash());
1065
+ if (!isValid) {
1066
+ this.logger.trace(`Rejecting invalid propagated tx`, {
1067
+ [Attributes.P2P_ID]: source.toString()
1068
+ });
1069
+ return {
1070
+ result: TopicValidatorResult.Reject
1071
+ };
1072
+ }
1073
+ // Propagate only on pool acceptance
1074
+ const txHash = tx.getTxHash();
1075
+ const addResult = await this.mempools.txPool.addPendingTxs([
1076
+ tx
1077
+ ], {
1078
+ source: 'gossip'
1079
+ });
1080
+ const wasAccepted = addResult.accepted.some((h)=>h.equals(txHash));
1081
+ const wasIgnored = addResult.ignored.some((h)=>h.equals(txHash));
1057
1082
  this.logger.trace(`Validate propagated tx`, {
1058
1083
  isValid,
1059
- exists,
1084
+ wasAccepted,
1085
+ wasIgnored,
1060
1086
  [Attributes.P2P_ID]: source.toString()
1061
1087
  });
1062
- if (!isValid) {
1088
+ if (wasAccepted) {
1063
1089
  return {
1064
- result: TopicValidatorResult.Reject
1090
+ result: TopicValidatorResult.Accept,
1091
+ obj: tx
1065
1092
  };
1066
- } else if (exists) {
1093
+ } else if (wasIgnored) {
1067
1094
  return {
1068
1095
  result: TopicValidatorResult.Ignore,
1069
1096
  obj: tx
1070
1097
  };
1071
1098
  } else {
1072
1099
  return {
1073
- result: TopicValidatorResult.Accept,
1074
- obj: tx
1100
+ result: TopicValidatorResult.Reject
1075
1101
  };
1076
1102
  }
1077
1103
  };
@@ -1079,133 +1105,190 @@ _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
1079
1105
  if (result !== TopicValidatorResult.Accept || !tx) {
1080
1106
  return;
1081
1107
  }
1108
+ // Tx was accepted into pool and will be propagated - just log and record metrics
1082
1109
  const txHash = tx.getTxHash();
1083
1110
  const txHashString = txHash.toString();
1084
1111
  this.logger.verbose(`Received tx ${txHashString} from external peer ${source.toString()} via gossip`, {
1085
1112
  source: source.toString(),
1086
1113
  txHash: txHashString
1087
1114
  });
1088
- if (this.config.dropTransactions && randomInt(1000) < this.config.dropTransactionsProbability * 1000) {
1089
- this.logger.warn(`Intentionally dropping tx ${txHashString} (probability rule)`);
1090
- return;
1091
- }
1092
1115
  this.instrumentation.incrementTxReceived(1);
1093
- await this.mempools.txPool.addTxs([
1094
- tx
1095
- ]);
1096
1116
  }
1097
1117
  /**
1098
1118
  * Process a checkpoint attestation from a peer.
1099
1119
  * Validates the attestation and adds it to the pool.
1100
1120
  */ async processCheckpointAttestationFromPeer(payloadData, msgId, source) {
1101
- const validationFunc = async ()=>{
1102
- const attestation = CheckpointAttestation.fromBuffer(payloadData);
1103
- const pool = this.mempools.attestationPool;
1104
- const validationResult = await this.validateCheckpointAttestation(source, attestation);
1105
- const isValid = validationResult.result === 'accept';
1106
- const exists = isValid && await pool.hasCheckpointAttestation(attestation);
1107
- let canAdd = true;
1108
- if (isValid && !exists) {
1109
- const slot = attestation.payload.header.slotNumber;
1110
- const { committee } = await this.epochCache.getCommittee(slot);
1111
- const committeeSize = committee?.length ?? 0;
1112
- canAdd = await pool.canAddCheckpointAttestation(attestation, committeeSize);
1113
- }
1114
- this.logger.trace(`Validate propagated checkpoint attestation`, {
1115
- isValid,
1116
- exists,
1117
- canAdd,
1118
- [Attributes.SLOT_NUMBER]: attestation.payload.header.slotNumber.toString(),
1119
- [Attributes.P2P_ID]: source.toString()
1120
- });
1121
- if (validationResult.result === 'reject') {
1122
- return {
1123
- result: TopicValidatorResult.Reject
1124
- };
1125
- } else if (validationResult.result === 'ignore' || exists) {
1126
- return {
1127
- result: TopicValidatorResult.Ignore,
1128
- obj: attestation
1129
- };
1130
- } else if (!canAdd) {
1131
- this.logger.warn(`Dropping checkpoint attestation due to per-(slot, proposalId) attestation cap`, {
1132
- slot: attestation.payload.header.slotNumber.toString(),
1133
- archive: attestation.archive.toString(),
1134
- source: source.toString()
1135
- });
1136
- return {
1137
- result: TopicValidatorResult.Ignore,
1138
- obj: attestation
1139
- };
1140
- } else {
1141
- return {
1142
- result: TopicValidatorResult.Accept,
1143
- obj: attestation
1144
- };
1145
- }
1146
- };
1147
- const { result, obj: attestation } = await this.validateReceivedMessage(validationFunc, msgId, source, TopicType.checkpoint_attestation);
1121
+ const { result, obj: attestation } = await this.validateReceivedMessage(()=>this.validateAndStoreCheckpointAttestation(source, CheckpointAttestation.fromBuffer(payloadData)), msgId, source, TopicType.checkpoint_attestation);
1148
1122
  if (result !== TopicValidatorResult.Accept || !attestation) {
1149
1123
  return;
1150
1124
  }
1151
- this.logger.debug(`Received checkpoint attestation for slot ${attestation.slotNumber} from external peer ${source.toString()}`, {
1125
+ this.logger.verbose(`Received valid checkpoint attestation for slot ${attestation.slotNumber} from external peer ${source.toString()}`, {
1152
1126
  p2pMessageIdentifier: await attestation.p2pMessageLoggingIdentifier(),
1153
1127
  slot: attestation.slotNumber,
1154
1128
  archive: attestation.archive.toString(),
1155
1129
  source: source.toString()
1156
1130
  });
1157
- await this.mempools.attestationPool.addCheckpointAttestations([
1158
- attestation
1159
- ]);
1160
1131
  }
1161
- async processBlockFromPeer(payloadData, msgId, source) {
1162
- const validationFunc = async ()=>{
1163
- const block = BlockProposal.fromBuffer(payloadData);
1164
- const validationResult = await this.validateBlockProposal(source, block);
1165
- const isValid = validationResult.result === 'accept';
1166
- const pool = this.mempools.attestationPool;
1167
- const exists = isValid && await pool.hasBlockProposal(block);
1168
- const canAdd = isValid && await pool.canAddProposal(block);
1169
- this.logger.trace(`Validate propagated block proposal`, {
1170
- isValid,
1171
- exists,
1172
- canAdd,
1173
- [Attributes.SLOT_NUMBER]: block.slotNumber.toString(),
1174
- [Attributes.P2P_ID]: source.toString()
1132
+ /** Validates a checkpoint attestation and adds it to the pool. Penalizes the peer if validation fails. */ async validateAndStoreCheckpointAttestation(peerId, attestation) {
1133
+ const validationResult = await this.checkpointAttestationValidator.validate(attestation);
1134
+ if (validationResult.result === 'reject') {
1135
+ this.logger.warn(`Penalizing peer ${peerId} for checkpoint attestation validation failure`);
1136
+ this.peerManager.penalizePeer(peerId, validationResult.severity);
1137
+ return {
1138
+ result: TopicValidatorResult.Reject
1139
+ };
1140
+ }
1141
+ if (validationResult.result === 'ignore') {
1142
+ return {
1143
+ result: TopicValidatorResult.Ignore,
1144
+ obj: attestation
1145
+ };
1146
+ }
1147
+ // Try to add the attestation: this handles existence check, cap check, and adding in one call
1148
+ // count is the number of attestations by this signer for this slot (for duplicate detection)
1149
+ const slot = attestation.payload.header.slotNumber;
1150
+ const { added, alreadyExists, count } = await this.mempools.attestationPool.tryAddCheckpointAttestation(attestation);
1151
+ this.logger.trace(`Validate propagated checkpoint attestation`, {
1152
+ added,
1153
+ alreadyExists,
1154
+ count,
1155
+ [Attributes.SLOT_NUMBER]: slot.toString(),
1156
+ [Attributes.P2P_ID]: peerId.toString()
1157
+ });
1158
+ // Exact same attestation received, no need to re-broadcast
1159
+ if (alreadyExists) {
1160
+ return {
1161
+ result: TopicValidatorResult.Ignore,
1162
+ obj: attestation
1163
+ };
1164
+ }
1165
+ // Could not add (cap reached for signer), no need to re-broadcast
1166
+ if (!added) {
1167
+ this.logger.warn(`Dropping checkpoint attestation due to cap`, {
1168
+ slot: slot.toString(),
1169
+ archive: attestation.archive.toString(),
1170
+ source: peerId.toString(),
1171
+ attester: attestation.getSender()?.toString(),
1172
+ count
1175
1173
  });
1176
- if (validationResult.result === 'reject') {
1177
- return {
1178
- result: TopicValidatorResult.Reject
1179
- };
1180
- } else if (validationResult.result === 'ignore' || exists) {
1181
- return {
1182
- result: TopicValidatorResult.Ignore,
1183
- obj: block
1184
- };
1185
- } else if (!canAdd) {
1186
- this.peerManager.penalizePeer(source, PeerErrorSeverity.MidToleranceError);
1187
- this.logger.warn(`Penalizing peer for block proposal exceeding per-slot cap`, {
1188
- slot: block.slotNumber.toString(),
1189
- archive: block.archive.toString(),
1190
- source: source.toString()
1174
+ return {
1175
+ result: TopicValidatorResult.Ignore,
1176
+ obj: attestation
1177
+ };
1178
+ }
1179
+ // Check if this is a duplicate attestation (signer attested to a different proposal at the same slot)
1180
+ // count is the number of attestations by this signer for this slot
1181
+ if (count === 2) {
1182
+ const attester = attestation.getSender();
1183
+ if (attester) {
1184
+ this.logger.warn(`Detected duplicate attestation (equivocation) at slot ${slot}`, {
1185
+ slot: slot.toString(),
1186
+ archive: attestation.archive.toString(),
1187
+ source: peerId.toString(),
1188
+ attester: attester.toString()
1189
+ });
1190
+ this.duplicateAttestationCallback?.({
1191
+ slot,
1192
+ attester
1191
1193
  });
1192
- return {
1193
- result: TopicValidatorResult.Reject
1194
- };
1195
- } else {
1196
- return {
1197
- result: TopicValidatorResult.Accept,
1198
- obj: block
1199
- };
1200
1194
  }
1195
+ }
1196
+ // Attestation was added successfully - accept it so other nodes can also detect the equivocation
1197
+ return {
1198
+ result: TopicValidatorResult.Accept,
1199
+ obj: attestation
1201
1200
  };
1202
- const { result, obj: block } = await this.validateReceivedMessage(validationFunc, msgId, source, TopicType.block_proposal);
1203
- if (!result || !block) {
1201
+ }
1202
+ async processBlockFromPeer(payloadData, msgId, source) {
1203
+ const { result, obj: block, metadata: { isEquivocated } = {} } = await this.validateReceivedMessage(()=>this.validateAndStoreBlockProposal(source, BlockProposal.fromBuffer(payloadData)), msgId, source, TopicType.block_proposal);
1204
+ // If not accepted or equivocated, return
1205
+ if (result !== TopicValidatorResult.Accept || !block || isEquivocated) {
1204
1206
  return;
1205
1207
  }
1206
1208
  await this.processValidBlockProposal(block, source);
1207
1209
  }
1208
- // REVIEW: callback pattern https://github.com/AztecProtocol/aztec-packages/issues/7963
1210
+ /** Validates a block proposal. Triggers a penalization to the peer that sent it if invalid. Adds to the mempool if valid. */ async validateAndStoreBlockProposal(peerId, block) {
1211
+ const validationResult = await this.blockProposalValidator.validate(block);
1212
+ if (validationResult.result === 'reject') {
1213
+ this.logger.warn(`Penalizing peer ${peerId} for block proposal validation failure`);
1214
+ this.peerManager.penalizePeer(peerId, validationResult.severity);
1215
+ return {
1216
+ result: TopicValidatorResult.Reject
1217
+ };
1218
+ }
1219
+ if (validationResult.result === 'ignore') {
1220
+ return {
1221
+ result: TopicValidatorResult.Ignore,
1222
+ obj: block
1223
+ };
1224
+ }
1225
+ // Try to add the proposal: this handles existence check, cap check, and adding in one call
1226
+ const { added, alreadyExists, count } = await this.mempools.attestationPool.tryAddBlockProposal(block);
1227
+ const isEquivocated = count !== undefined && count > 1;
1228
+ // Duplicate proposal received, no need to re-broadcast
1229
+ if (alreadyExists) {
1230
+ this.logger.debug(`Ignoring duplicate block proposal received`, {
1231
+ ...block.toBlockInfo(),
1232
+ indexWithinCheckpoint: block.indexWithinCheckpoint,
1233
+ proposer: block.getSender()?.toString(),
1234
+ source: peerId.toString()
1235
+ });
1236
+ return {
1237
+ result: TopicValidatorResult.Ignore,
1238
+ obj: block,
1239
+ metadata: {
1240
+ isEquivocated
1241
+ }
1242
+ };
1243
+ }
1244
+ // Too many blocks received for this slot and index, penalize peer and do not re-broadcast
1245
+ if (!added) {
1246
+ this.peerManager.penalizePeer(peerId, PeerErrorSeverity.HighToleranceError);
1247
+ this.logger.warn(`Penalizing peer for block proposal exceeding per-position cap`, {
1248
+ ...block.toBlockInfo(),
1249
+ indexWithinCheckpoint: block.indexWithinCheckpoint,
1250
+ count,
1251
+ proposer: block.getSender()?.toString(),
1252
+ source: peerId.toString()
1253
+ });
1254
+ return {
1255
+ result: TopicValidatorResult.Reject,
1256
+ metadata: {
1257
+ isEquivocated
1258
+ }
1259
+ };
1260
+ }
1261
+ // If this was a duplicate proposal, do not process it, but do invoke the duplicate callback,
1262
+ // and do re-broadcast it so other nodes in the network know to slash the proposer
1263
+ if (isEquivocated) {
1264
+ const proposer = block.getSender();
1265
+ this.logger.warn(`Detected duplicate block proposal (equivocation) at slot ${block.slotNumber}`, {
1266
+ ...block.toBlockInfo(),
1267
+ source: peerId.toString(),
1268
+ proposer: proposer?.toString()
1269
+ });
1270
+ // Invoke the duplicate callback on the first duplicate spotted only
1271
+ if (proposer && count === 2) {
1272
+ this.duplicateProposalCallback?.({
1273
+ slot: block.slotNumber,
1274
+ proposer,
1275
+ type: 'block'
1276
+ });
1277
+ }
1278
+ return {
1279
+ result: TopicValidatorResult.Accept,
1280
+ obj: block,
1281
+ metadata: {
1282
+ isEquivocated
1283
+ }
1284
+ };
1285
+ }
1286
+ // Otherwise, we're good to go!
1287
+ return {
1288
+ result: TopicValidatorResult.Accept,
1289
+ obj: block
1290
+ };
1291
+ }
1209
1292
  // REFACTOR(palla): This method should be moved to the p2p_client or to a separate component,
1210
1293
  // should not be here as it does not deal with p2p networking.
1211
1294
  async processValidBlockProposal(block, sender) {
@@ -1215,23 +1298,8 @@ _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
1215
1298
  source: sender.toString(),
1216
1299
  ...block.toBlockInfo()
1217
1300
  });
1218
- // Attempt to add proposal
1219
- try {
1220
- await this.mempools.attestationPool.addBlockProposal(block);
1221
- } catch (err) {
1222
- // Drop proposals if we hit per-slot cap in the attestation pool; rethrow unknown errors
1223
- if (err instanceof ProposalSlotCapExceededError) {
1224
- this.logger.warn(`Dropping block proposal due to per-slot proposal cap`, {
1225
- slot: String(slot),
1226
- archive: block.archive.toString(),
1227
- error: err.message
1228
- });
1229
- return;
1230
- }
1231
- throw err;
1232
- }
1233
- // Mark the txs in this proposal as non-evictable
1234
- await this.mempools.txPool.markTxsAsNonEvictable(block.txHashes);
1301
+ // Mark the txs in this proposal as protected
1302
+ await this.mempools.txPool.protectTxs(block.txHashes, block.blockHeader);
1235
1303
  // Call the block received callback to validate the proposal.
1236
1304
  // Note: Validators do NOT attest to individual blocks, only to checkpoint proposals.
1237
1305
  const isValid = await this.blockReceivedCallback(block, sender);
@@ -1243,57 +1311,135 @@ _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
1243
1311
  * Handle a gossiped checkpoint proposal.
1244
1312
  * Validates and processes the checkpoint proposal, then triggers the callback for attestation.
1245
1313
  */ async handleGossipedCheckpointProposal(payloadData, msgId, source) {
1246
- // TODO(palla/mbps): This pattern is repeated across multiple message handlers, consider abstracting it.
1247
- const validationFunc = async ()=>{
1248
- const checkpoint = CheckpointProposal.fromBuffer(payloadData);
1249
- const validationResult = await this.validateCheckpointProposal(source, checkpoint);
1250
- const isValid = validationResult.result === 'accept';
1251
- const pool = this.mempools.attestationPool;
1252
- const exists = isValid && await pool.hasCheckpointProposal(checkpoint);
1253
- const canAdd = isValid && await pool.canAddCheckpointProposal(checkpoint);
1254
- this.logger.trace(`Validate propagated checkpoint proposal`, {
1255
- isValid,
1256
- exists,
1257
- canAdd,
1314
+ const { result, obj: checkpoint, metadata: { isEquivocated, processBlock } = {} } = await this.validateReceivedMessage(()=>this.validateAndStoreCheckpointProposal(source, CheckpointProposal.fromBuffer(payloadData)), msgId, source, TopicType.checkpoint_proposal);
1315
+ // If the checkpoint contained a valid last block, we process it even if the checkpoint itself is to be rejected
1316
+ // TODO(palla/mbps): Is this ok? Should we be considering a block from a checkpoint that was equivocated?
1317
+ if (processBlock && checkpoint?.getBlockProposal()) {
1318
+ await this.processValidBlockProposal(checkpoint.getBlockProposal(), source);
1319
+ }
1320
+ if (result !== TopicValidatorResult.Accept || !checkpoint || isEquivocated) {
1321
+ return;
1322
+ }
1323
+ await this.processValidCheckpointProposal(checkpoint.toCore(), source);
1324
+ }
1325
+ /**
1326
+ * Validates a checkpoint proposal. Penalizes peer if validation fails. Adds the checkpoint and
1327
+ * its last block (if present) to the mempool if valid. Triggers equivocation detection on both.
1328
+ */ async validateAndStoreCheckpointProposal(peerId, checkpoint) {
1329
+ const validationResult = await this.checkpointProposalValidator.validate(checkpoint);
1330
+ if (validationResult.result === 'reject') {
1331
+ this.logger.warn(`Penalizing peer ${peerId} for checkpoint proposal validation failure`);
1332
+ this.peerManager.penalizePeer(peerId, validationResult.severity);
1333
+ return {
1334
+ result: TopicValidatorResult.Reject
1335
+ };
1336
+ }
1337
+ if (validationResult.result === 'ignore') {
1338
+ return {
1339
+ result: TopicValidatorResult.Ignore,
1340
+ obj: checkpoint
1341
+ };
1342
+ }
1343
+ // Extract and try to add the block proposal first if present
1344
+ const blockProposal = checkpoint.getBlockProposal();
1345
+ let processBlock = false;
1346
+ if (blockProposal) {
1347
+ this.logger.debug(`Validating block proposal from propagated checkpoint`, {
1258
1348
  [Attributes.SLOT_NUMBER]: checkpoint.slotNumber.toString(),
1259
- [Attributes.P2P_ID]: source.toString()
1349
+ [Attributes.P2P_ID]: peerId.toString()
1260
1350
  });
1261
- if (validationResult.result === 'reject') {
1262
- return {
1263
- result: TopicValidatorResult.Reject
1264
- };
1265
- } else if (validationResult.result === 'ignore' || exists) {
1266
- return {
1267
- result: TopicValidatorResult.Ignore,
1268
- obj: checkpoint
1269
- };
1270
- } else if (!canAdd) {
1271
- this.peerManager.penalizePeer(source, PeerErrorSeverity.MidToleranceError);
1272
- this.logger.warn(`Penalizing peer for checkpoint proposal exceeding per-slot cap`, {
1273
- slot: checkpoint.slotNumber.toString(),
1274
- archive: checkpoint.archive.toString(),
1275
- source: source.toString()
1351
+ const { result, obj, metadata: { isEquivocated } = {} } = await this.validateAndStoreBlockProposal(peerId, blockProposal);
1352
+ if (result === TopicValidatorResult.Reject || !obj || isEquivocated) {
1353
+ this.logger.debug(`Rejecting checkpoint due to invalid last block proposal`, {
1354
+ [Attributes.SLOT_NUMBER]: checkpoint.slotNumber.toString(),
1355
+ [Attributes.P2P_ID]: peerId.toString(),
1356
+ isEquivocated,
1357
+ result
1276
1358
  });
1277
1359
  return {
1278
1360
  result: TopicValidatorResult.Reject
1279
1361
  };
1280
- } else {
1281
- return {
1282
- result: TopicValidatorResult.Accept,
1283
- obj: checkpoint
1284
- };
1362
+ } else if (result === TopicValidatorResult.Accept && obj && !isEquivocated) {
1363
+ processBlock = true;
1285
1364
  }
1286
- };
1287
- const { result, obj: checkpoint } = await this.validateReceivedMessage(validationFunc, msgId, source, TopicType.checkpoint_proposal);
1288
- if (result !== TopicValidatorResult.Accept || !checkpoint) {
1289
- return;
1290
1365
  }
1291
- await this.processValidCheckpointProposal(checkpoint, source);
1366
+ // Try to add the checkpoint proposal core: this handles existence check, cap check, and adding in one call
1367
+ const checkpointCore = checkpoint.toCore();
1368
+ const tryAddResult = await this.mempools.attestationPool.tryAddCheckpointProposal(checkpointCore);
1369
+ const { added, alreadyExists, count } = tryAddResult;
1370
+ const isEquivocated = count !== undefined && count > 1;
1371
+ // Duplicate proposal received, do not re-broadcast
1372
+ if (alreadyExists) {
1373
+ this.logger.debug(`Ignoring duplicate checkpoint proposal received`, {
1374
+ ...checkpoint.toCheckpointInfo(),
1375
+ source: peerId.toString()
1376
+ });
1377
+ return {
1378
+ result: TopicValidatorResult.Ignore,
1379
+ obj: checkpoint,
1380
+ metadata: {
1381
+ isEquivocated,
1382
+ processBlock
1383
+ }
1384
+ };
1385
+ }
1386
+ // Too many checkpoint proposals received for this slot, penalize peer and do not re-broadcast
1387
+ // Note: We still return the checkpoint obj so the lastBlock can be processed if valid
1388
+ if (!added) {
1389
+ this.peerManager.penalizePeer(peerId, PeerErrorSeverity.HighToleranceError);
1390
+ this.logger.warn(`Penalizing peer for checkpoint proposal exceeding per-slot cap`, {
1391
+ ...checkpoint.toCheckpointInfo(),
1392
+ count,
1393
+ source: peerId.toString()
1394
+ });
1395
+ return {
1396
+ result: TopicValidatorResult.Reject,
1397
+ obj: checkpoint,
1398
+ metadata: {
1399
+ isEquivocated,
1400
+ processBlock
1401
+ }
1402
+ };
1403
+ }
1404
+ // If this was a duplicate proposal, do not process it, but do invoke the duplicate callback,
1405
+ // and do re-broadcast it so other nodes in the network know to slash the proposer
1406
+ if (isEquivocated) {
1407
+ const proposer = checkpoint.getSender();
1408
+ this.logger.warn(`Detected duplicate checkpoint proposal (equivocation) at slot ${checkpoint.slotNumber}`, {
1409
+ ...checkpoint.toCheckpointInfo(),
1410
+ source: peerId.toString(),
1411
+ proposer: proposer?.toString()
1412
+ });
1413
+ // Invoke the duplicate callback on the first duplicate spotted only
1414
+ if (proposer && count === 2) {
1415
+ this.duplicateProposalCallback?.({
1416
+ slot: checkpoint.slotNumber,
1417
+ proposer,
1418
+ type: 'checkpoint'
1419
+ });
1420
+ }
1421
+ return {
1422
+ result: TopicValidatorResult.Accept,
1423
+ obj: checkpoint,
1424
+ metadata: {
1425
+ isEquivocated,
1426
+ processBlock
1427
+ }
1428
+ };
1429
+ }
1430
+ // Otherwise, we're good to go!
1431
+ return {
1432
+ result: TopicValidatorResult.Accept,
1433
+ obj: checkpoint,
1434
+ metadata: {
1435
+ processBlock,
1436
+ isEquivocated
1437
+ }
1438
+ };
1292
1439
  }
1293
1440
  /**
1294
1441
  * Process a validated checkpoint proposal.
1295
- * Extracts and processes the last block proposal (if present) first, then processes the checkpoint.
1296
- * The block callback is invoked before the checkpoint callback.
1442
+ * Note: The proposal was already added to the pool by tryAddCheckpointProposal in handleGossipedCheckpointProposal.
1297
1443
  */ async processValidCheckpointProposal(checkpoint, sender) {
1298
1444
  const slot = checkpoint.slotNumber;
1299
1445
  this.logger.verbose(`Received checkpoint proposal for slot ${slot} from external peer ${sender.toString()}.`, {
@@ -1302,33 +1448,12 @@ _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
1302
1448
  archive: checkpoint.archive.toString(),
1303
1449
  source: sender.toString()
1304
1450
  });
1305
- // Extract block proposal before adding to pool (pool stores them separately)
1306
- const blockProposal = checkpoint.getBlockProposal();
1307
- // Add proposal to the pool (this extracts and stores block proposal separately)
1308
- await this.mempools.attestationPool.addCheckpointProposal(checkpoint);
1309
- // Mark txs as non-evictable if present (from the last block)
1310
- if (checkpoint.txHashes.length > 0) {
1311
- await this.mempools.txPool.markTxsAsNonEvictable(checkpoint.txHashes);
1312
- }
1313
- // If there was a last block proposal, invoke the block callback first for validation.
1314
- // Note: The block proposal is already stored in the pool by addCheckpointProposal.
1315
- if (blockProposal) {
1316
- const isValid = await this.blockReceivedCallback(blockProposal, sender);
1317
- if (!isValid) {
1318
- this.logger.warn(`Block proposal from checkpoint failed validation`, {
1319
- slot: slot.toString(),
1320
- archive: checkpoint.archive.toString(),
1321
- blockNumber: blockProposal.blockNumber.toString()
1322
- });
1323
- return;
1324
- }
1325
- }
1326
1451
  // Call the checkpoint received callback with the core version (without lastBlock)
1327
1452
  // to validate and potentially generate attestations
1328
- const attestations = await this.checkpointReceivedCallback(checkpoint.toCore(), sender);
1453
+ const attestations = await this.checkpointReceivedCallback(checkpoint, sender);
1329
1454
  if (attestations && attestations.length > 0) {
1330
1455
  // If the callback returned attestations, add them to the pool and propagate them
1331
- await this.mempools.attestationPool.addCheckpointAttestations(attestations);
1456
+ await this.mempools.attestationPool.addOwnCheckpointAttestations(attestations);
1332
1457
  for (const attestation of attestations){
1333
1458
  await this.propagate(attestation);
1334
1459
  }
@@ -1655,33 +1780,7 @@ _dec = trackSpan('Libp2pService.processValidBlockProposal', async (block)=>({
1655
1780
  */ async validateCheckpointAttestation(peerId, attestation) {
1656
1781
  const result = await this.checkpointAttestationValidator.validate(attestation);
1657
1782
  if (result.result === 'reject') {
1658
- this.logger.debug(`Penalizing peer ${peerId} for checkpoint attestation validation failure`);
1659
- this.peerManager.penalizePeer(peerId, result.severity);
1660
- }
1661
- return result;
1662
- }
1663
- /**
1664
- * Validate a block proposal.
1665
- *
1666
- * @param block - The block proposal to validate.
1667
- * @returns True if the block proposal is valid, false otherwise.
1668
- */ async validateBlockProposal(peerId, block) {
1669
- const result = await this.blockProposalValidator.validate(block);
1670
- if (result.result === 'reject') {
1671
- this.logger.debug(`Penalizing peer ${peerId} for block proposal validation failure`);
1672
- this.peerManager.penalizePeer(peerId, result.severity);
1673
- }
1674
- return result;
1675
- }
1676
- /**
1677
- * Validate a checkpoint proposal.
1678
- *
1679
- * @param checkpoint - The checkpoint proposal to validate.
1680
- * @returns True if the checkpoint proposal is valid, false otherwise.
1681
- */ async validateCheckpointProposal(peerId, checkpoint) {
1682
- const result = await this.checkpointProposalValidator.validate(checkpoint);
1683
- if (result.result === 'reject') {
1684
- this.logger.debug(`Penalizing peer ${peerId} for checkpoint proposal validation failure`);
1783
+ this.logger.warn(`Penalizing peer ${peerId} for checkpoint attestation validation failure`);
1685
1784
  this.peerManager.penalizePeer(peerId, result.severity);
1686
1785
  }
1687
1786
  return result;