@aztec/p2p 0.0.1-commit.b655e406 → 0.0.1-commit.c0b82b2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dest/bootstrap/bootstrap.d.ts +4 -3
- package/dest/bootstrap/bootstrap.d.ts.map +1 -1
- package/dest/bootstrap/bootstrap.js +4 -4
- package/dest/client/factory.d.ts +10 -10
- package/dest/client/factory.d.ts.map +1 -1
- package/dest/client/factory.js +45 -19
- package/dest/client/index.d.ts +1 -1
- package/dest/client/interface.d.ts +61 -33
- package/dest/client/interface.d.ts.map +1 -1
- package/dest/client/p2p_client.d.ts +52 -83
- package/dest/client/p2p_client.d.ts.map +1 -1
- package/dest/client/p2p_client.js +612 -318
- package/dest/client/test/tx_proposal_collector/proposal_tx_collector_worker.d.ts +2 -0
- package/dest/client/test/tx_proposal_collector/proposal_tx_collector_worker.d.ts.map +1 -0
- package/dest/client/test/tx_proposal_collector/proposal_tx_collector_worker.js +304 -0
- package/dest/client/test/tx_proposal_collector/proposal_tx_collector_worker_protocol.d.ts +73 -0
- package/dest/client/test/tx_proposal_collector/proposal_tx_collector_worker_protocol.d.ts.map +1 -0
- package/dest/client/test/tx_proposal_collector/proposal_tx_collector_worker_protocol.js +8 -0
- package/dest/config.d.ts +95 -64
- package/dest/config.d.ts.map +1 -1
- package/dest/config.js +42 -21
- package/dest/enr/generate-enr.d.ts +1 -1
- package/dest/enr/index.d.ts +1 -1
- package/dest/errors/attestation-pool.error.d.ts +7 -0
- package/dest/errors/attestation-pool.error.d.ts.map +1 -0
- package/dest/errors/attestation-pool.error.js +12 -0
- package/dest/errors/reqresp.error.d.ts +1 -1
- package/dest/errors/reqresp.error.d.ts.map +1 -1
- package/dest/errors/tx-pool.error.d.ts +8 -0
- package/dest/errors/tx-pool.error.d.ts.map +1 -0
- package/dest/errors/tx-pool.error.js +9 -0
- package/dest/index.d.ts +2 -1
- package/dest/index.d.ts.map +1 -1
- package/dest/index.js +1 -0
- package/dest/mem_pools/attestation_pool/attestation_pool.d.ts +114 -57
- package/dest/mem_pools/attestation_pool/attestation_pool.d.ts.map +1 -1
- package/dest/mem_pools/attestation_pool/attestation_pool.js +441 -3
- package/dest/mem_pools/attestation_pool/attestation_pool_test_suite.d.ts +2 -2
- package/dest/mem_pools/attestation_pool/attestation_pool_test_suite.d.ts.map +1 -1
- package/dest/mem_pools/attestation_pool/attestation_pool_test_suite.js +529 -288
- package/dest/mem_pools/attestation_pool/index.d.ts +2 -3
- package/dest/mem_pools/attestation_pool/index.d.ts.map +1 -1
- package/dest/mem_pools/attestation_pool/index.js +1 -2
- package/dest/mem_pools/attestation_pool/mocks.d.ts +234 -10
- package/dest/mem_pools/attestation_pool/mocks.d.ts.map +1 -1
- package/dest/mem_pools/attestation_pool/mocks.js +17 -13
- package/dest/mem_pools/index.d.ts +3 -2
- package/dest/mem_pools/index.d.ts.map +1 -1
- package/dest/mem_pools/index.js +1 -1
- package/dest/mem_pools/instrumentation.d.ts +9 -1
- package/dest/mem_pools/instrumentation.d.ts.map +1 -1
- package/dest/mem_pools/instrumentation.js +37 -10
- package/dest/mem_pools/interface.d.ts +6 -7
- package/dest/mem_pools/interface.d.ts.map +1 -1
- package/dest/mem_pools/tx_pool/aztec_kv_tx_pool.d.ts +33 -58
- package/dest/mem_pools/tx_pool/aztec_kv_tx_pool.d.ts.map +1 -1
- package/dest/mem_pools/tx_pool/aztec_kv_tx_pool.js +314 -335
- package/dest/mem_pools/tx_pool/eviction/eviction_manager.d.ts +32 -0
- package/dest/mem_pools/tx_pool/eviction/eviction_manager.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool/eviction/eviction_manager.js +112 -0
- package/dest/mem_pools/tx_pool/eviction/eviction_strategy.d.ts +157 -0
- package/dest/mem_pools/tx_pool/eviction/eviction_strategy.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool/eviction/eviction_strategy.js +52 -0
- package/dest/mem_pools/tx_pool/eviction/fee_payer_balance_eviction_rule.d.ts +16 -0
- package/dest/mem_pools/tx_pool/eviction/fee_payer_balance_eviction_rule.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool/eviction/fee_payer_balance_eviction_rule.js +122 -0
- package/dest/mem_pools/tx_pool/eviction/invalid_txs_after_mining_rule.d.ts +17 -0
- package/dest/mem_pools/tx_pool/eviction/invalid_txs_after_mining_rule.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool/eviction/invalid_txs_after_mining_rule.js +84 -0
- package/dest/mem_pools/tx_pool/eviction/invalid_txs_after_reorg_rule.d.ts +19 -0
- package/dest/mem_pools/tx_pool/eviction/invalid_txs_after_reorg_rule.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool/eviction/invalid_txs_after_reorg_rule.js +78 -0
- package/dest/mem_pools/tx_pool/eviction/low_priority_eviction_rule.d.ts +26 -0
- package/dest/mem_pools/tx_pool/eviction/low_priority_eviction_rule.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool/eviction/low_priority_eviction_rule.js +84 -0
- package/dest/mem_pools/tx_pool/eviction/nullifier_conflict_pre_add_rule.d.ts +25 -0
- package/dest/mem_pools/tx_pool/eviction/nullifier_conflict_pre_add_rule.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool/eviction/nullifier_conflict_pre_add_rule.js +57 -0
- package/dest/mem_pools/tx_pool/index.d.ts +1 -2
- package/dest/mem_pools/tx_pool/index.d.ts.map +1 -1
- package/dest/mem_pools/tx_pool/index.js +0 -1
- package/dest/mem_pools/tx_pool/priority.d.ts +5 -1
- package/dest/mem_pools/tx_pool/priority.d.ts.map +1 -1
- package/dest/mem_pools/tx_pool/priority.js +6 -1
- package/dest/mem_pools/tx_pool/tx_pool.d.ts +11 -6
- package/dest/mem_pools/tx_pool/tx_pool.d.ts.map +1 -1
- package/dest/mem_pools/tx_pool/tx_pool_test_suite.d.ts +1 -1
- package/dest/mem_pools/tx_pool/tx_pool_test_suite.d.ts.map +1 -1
- package/dest/mem_pools/tx_pool/tx_pool_test_suite.js +30 -24
- package/dest/mem_pools/tx_pool_v2/archive/index.d.ts +2 -0
- package/dest/mem_pools/tx_pool_v2/archive/index.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/archive/index.js +1 -0
- package/dest/mem_pools/tx_pool_v2/archive/tx_archive.d.ts +43 -0
- package/dest/mem_pools/tx_pool_v2/archive/tx_archive.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/archive/tx_archive.js +103 -0
- package/dest/mem_pools/tx_pool_v2/deleted_pool.d.ts +104 -0
- package/dest/mem_pools/tx_pool_v2/deleted_pool.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/deleted_pool.js +251 -0
- package/dest/mem_pools/tx_pool_v2/eviction/eviction_manager.d.ts +47 -0
- package/dest/mem_pools/tx_pool_v2/eviction/eviction_manager.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/eviction/eviction_manager.js +128 -0
- package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.d.ts +17 -0
- package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.js +93 -0
- package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_pre_add_rule.d.ts +19 -0
- package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_pre_add_rule.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_pre_add_rule.js +97 -0
- package/dest/mem_pools/tx_pool_v2/eviction/index.d.ts +10 -0
- package/dest/mem_pools/tx_pool_v2/eviction/index.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/eviction/index.js +11 -0
- package/dest/mem_pools/tx_pool_v2/eviction/interfaces.d.ts +174 -0
- package/dest/mem_pools/tx_pool_v2/eviction/interfaces.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/eviction/interfaces.js +25 -0
- package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_mining_rule.d.ts +15 -0
- package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_mining_rule.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_mining_rule.js +65 -0
- package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_reorg_rule.d.ts +17 -0
- package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_reorg_rule.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_reorg_rule.js +93 -0
- package/dest/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.d.ts +16 -0
- package/dest/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.js +78 -0
- package/dest/mem_pools/tx_pool_v2/eviction/low_priority_pre_add_rule.d.ts +20 -0
- package/dest/mem_pools/tx_pool_v2/eviction/low_priority_pre_add_rule.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/eviction/low_priority_pre_add_rule.js +73 -0
- package/dest/mem_pools/tx_pool_v2/eviction/nullifier_conflict_rule.d.ts +15 -0
- package/dest/mem_pools/tx_pool_v2/eviction/nullifier_conflict_rule.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/eviction/nullifier_conflict_rule.js +19 -0
- package/dest/mem_pools/tx_pool_v2/index.d.ts +6 -0
- package/dest/mem_pools/tx_pool_v2/index.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/index.js +5 -0
- package/dest/mem_pools/tx_pool_v2/instrumentation.d.ts +15 -0
- package/dest/mem_pools/tx_pool_v2/instrumentation.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/instrumentation.js +43 -0
- package/dest/mem_pools/tx_pool_v2/interfaces.d.ts +211 -0
- package/dest/mem_pools/tx_pool_v2/interfaces.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/interfaces.js +9 -0
- package/dest/mem_pools/tx_pool_v2/tx_metadata.d.ts +119 -0
- package/dest/mem_pools/tx_pool_v2/tx_metadata.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/tx_metadata.js +193 -0
- package/dest/mem_pools/tx_pool_v2/tx_pool_bench_metrics.d.ts +26 -0
- package/dest/mem_pools/tx_pool_v2/tx_pool_bench_metrics.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/tx_pool_bench_metrics.js +70 -0
- package/dest/mem_pools/tx_pool_v2/tx_pool_indices.d.ts +108 -0
- package/dest/mem_pools/tx_pool_v2/tx_pool_indices.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/tx_pool_indices.js +354 -0
- package/dest/mem_pools/tx_pool_v2/tx_pool_v2.d.ts +60 -0
- package/dest/mem_pools/tx_pool_v2/tx_pool_v2.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/tx_pool_v2.js +161 -0
- package/dest/mem_pools/tx_pool_v2/tx_pool_v2_impl.d.ts +77 -0
- package/dest/mem_pools/tx_pool_v2/tx_pool_v2_impl.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/tx_pool_v2_impl.js +905 -0
- package/dest/msg_validators/attestation_validator/attestation_validator.d.ts +7 -6
- package/dest/msg_validators/attestation_validator/attestation_validator.d.ts.map +1 -1
- package/dest/msg_validators/attestation_validator/attestation_validator.js +57 -24
- package/dest/msg_validators/attestation_validator/fisherman_attestation_validator.d.ts +20 -0
- package/dest/msg_validators/attestation_validator/fisherman_attestation_validator.d.ts.map +1 -0
- package/dest/msg_validators/attestation_validator/fisherman_attestation_validator.js +76 -0
- package/dest/msg_validators/attestation_validator/index.d.ts +2 -1
- package/dest/msg_validators/attestation_validator/index.d.ts.map +1 -1
- package/dest/msg_validators/attestation_validator/index.js +1 -0
- package/dest/msg_validators/clock_tolerance.d.ts +21 -0
- package/dest/msg_validators/clock_tolerance.d.ts.map +1 -0
- package/dest/msg_validators/clock_tolerance.js +37 -0
- package/dest/msg_validators/index.d.ts +2 -2
- package/dest/msg_validators/index.d.ts.map +1 -1
- package/dest/msg_validators/index.js +1 -1
- package/dest/msg_validators/msg_seen_validator/msg_seen_validator.d.ts +1 -1
- package/dest/msg_validators/msg_seen_validator/msg_seen_validator.d.ts.map +1 -1
- package/dest/msg_validators/proposal_validator/block_proposal_validator.d.ts +9 -0
- package/dest/msg_validators/proposal_validator/block_proposal_validator.d.ts.map +1 -0
- package/dest/msg_validators/proposal_validator/block_proposal_validator.js +6 -0
- package/dest/msg_validators/proposal_validator/checkpoint_proposal_validator.d.ts +9 -0
- package/dest/msg_validators/proposal_validator/checkpoint_proposal_validator.d.ts.map +1 -0
- package/dest/msg_validators/proposal_validator/checkpoint_proposal_validator.js +6 -0
- package/dest/msg_validators/proposal_validator/index.d.ts +4 -0
- package/dest/msg_validators/proposal_validator/index.d.ts.map +1 -0
- package/dest/msg_validators/proposal_validator/index.js +3 -0
- package/dest/msg_validators/proposal_validator/proposal_validator.d.ts +13 -0
- package/dest/msg_validators/proposal_validator/proposal_validator.d.ts.map +1 -0
- package/dest/msg_validators/proposal_validator/proposal_validator.js +104 -0
- package/dest/msg_validators/proposal_validator/proposal_validator_test_suite.d.ts +23 -0
- package/dest/msg_validators/proposal_validator/proposal_validator_test_suite.d.ts.map +1 -0
- package/dest/msg_validators/proposal_validator/proposal_validator_test_suite.js +212 -0
- package/dest/msg_validators/tx_validator/aggregate_tx_validator.d.ts +4 -4
- package/dest/msg_validators/tx_validator/aggregate_tx_validator.d.ts.map +1 -1
- package/dest/msg_validators/tx_validator/aggregate_tx_validator.js +3 -3
- package/dest/msg_validators/tx_validator/allowed_public_setup.d.ts +1 -1
- package/dest/msg_validators/tx_validator/archive_cache.d.ts +3 -3
- package/dest/msg_validators/tx_validator/archive_cache.d.ts.map +1 -1
- package/dest/msg_validators/tx_validator/archive_cache.js +1 -1
- package/dest/msg_validators/tx_validator/block_header_validator.d.ts +20 -6
- package/dest/msg_validators/tx_validator/block_header_validator.d.ts.map +1 -1
- package/dest/msg_validators/tx_validator/block_header_validator.js +4 -3
- package/dest/msg_validators/tx_validator/data_validator.d.ts +3 -1
- package/dest/msg_validators/tx_validator/data_validator.d.ts.map +1 -1
- package/dest/msg_validators/tx_validator/data_validator.js +4 -1
- package/dest/msg_validators/tx_validator/double_spend_validator.d.ts +15 -4
- package/dest/msg_validators/tx_validator/double_spend_validator.d.ts.map +1 -1
- package/dest/msg_validators/tx_validator/double_spend_validator.js +7 -6
- package/dest/msg_validators/tx_validator/factory.d.ts +120 -6
- package/dest/msg_validators/tx_validator/factory.d.ts.map +1 -1
- package/dest/msg_validators/tx_validator/factory.js +228 -57
- package/dest/msg_validators/tx_validator/fee_payer_balance.d.ts +10 -0
- package/dest/msg_validators/tx_validator/fee_payer_balance.d.ts.map +1 -0
- package/dest/msg_validators/tx_validator/fee_payer_balance.js +20 -0
- package/dest/msg_validators/tx_validator/gas_validator.d.ts +59 -3
- package/dest/msg_validators/tx_validator/gas_validator.d.ts.map +1 -1
- package/dest/msg_validators/tx_validator/gas_validator.js +84 -52
- package/dest/msg_validators/tx_validator/index.d.ts +3 -1
- package/dest/msg_validators/tx_validator/index.d.ts.map +1 -1
- package/dest/msg_validators/tx_validator/index.js +2 -0
- package/dest/msg_validators/tx_validator/metadata_validator.d.ts +4 -3
- package/dest/msg_validators/tx_validator/metadata_validator.d.ts.map +1 -1
- package/dest/msg_validators/tx_validator/metadata_validator.js +2 -2
- package/dest/msg_validators/tx_validator/nullifier_cache.d.ts +14 -0
- package/dest/msg_validators/tx_validator/nullifier_cache.d.ts.map +1 -0
- package/dest/msg_validators/tx_validator/nullifier_cache.js +24 -0
- package/dest/msg_validators/tx_validator/phases_validator.d.ts +3 -2
- package/dest/msg_validators/tx_validator/phases_validator.d.ts.map +1 -1
- package/dest/msg_validators/tx_validator/phases_validator.js +6 -4
- package/dest/msg_validators/tx_validator/size_validator.d.ts +8 -0
- package/dest/msg_validators/tx_validator/size_validator.d.ts.map +1 -0
- package/dest/msg_validators/tx_validator/size_validator.js +23 -0
- package/dest/msg_validators/tx_validator/test_utils.d.ts +2 -2
- package/dest/msg_validators/tx_validator/test_utils.d.ts.map +1 -1
- package/dest/msg_validators/tx_validator/timestamp_validator.d.ts +23 -5
- package/dest/msg_validators/tx_validator/timestamp_validator.d.ts.map +1 -1
- package/dest/msg_validators/tx_validator/timestamp_validator.js +8 -8
- package/dest/msg_validators/tx_validator/tx_permitted_validator.d.ts +3 -2
- package/dest/msg_validators/tx_validator/tx_permitted_validator.d.ts.map +1 -1
- package/dest/msg_validators/tx_validator/tx_permitted_validator.js +2 -2
- package/dest/msg_validators/tx_validator/tx_proof_validator.d.ts +3 -2
- package/dest/msg_validators/tx_validator/tx_proof_validator.d.ts.map +1 -1
- package/dest/msg_validators/tx_validator/tx_proof_validator.js +2 -2
- package/dest/services/data_store.d.ts +1 -1
- package/dest/services/data_store.d.ts.map +1 -1
- package/dest/services/data_store.js +10 -6
- package/dest/services/discv5/discV5_service.d.ts +1 -1
- package/dest/services/discv5/discV5_service.d.ts.map +1 -1
- package/dest/services/discv5/discV5_service.js +1 -1
- package/dest/services/dummy_service.d.ts +28 -4
- package/dest/services/dummy_service.d.ts.map +1 -1
- package/dest/services/dummy_service.js +49 -1
- package/dest/services/encoding.d.ts +3 -3
- package/dest/services/encoding.d.ts.map +1 -1
- package/dest/services/encoding.js +16 -14
- package/dest/services/gossipsub/index.d.ts +3 -0
- package/dest/services/gossipsub/index.d.ts.map +1 -0
- package/dest/services/gossipsub/index.js +2 -0
- package/dest/services/gossipsub/scoring.d.ts +21 -3
- package/dest/services/gossipsub/scoring.d.ts.map +1 -1
- package/dest/services/gossipsub/scoring.js +24 -7
- package/dest/services/gossipsub/topic_score_params.d.ts +173 -0
- package/dest/services/gossipsub/topic_score_params.d.ts.map +1 -0
- package/dest/services/gossipsub/topic_score_params.js +346 -0
- package/dest/services/index.d.ts +2 -1
- package/dest/services/index.d.ts.map +1 -1
- package/dest/services/index.js +1 -0
- package/dest/services/libp2p/instrumentation.d.ts +3 -1
- package/dest/services/libp2p/instrumentation.d.ts.map +1 -1
- package/dest/services/libp2p/instrumentation.js +36 -71
- package/dest/services/libp2p/libp2p_service.d.ts +112 -93
- package/dest/services/libp2p/libp2p_service.d.ts.map +1 -1
- package/dest/services/libp2p/libp2p_service.js +1158 -342
- package/dest/services/peer-manager/interface.d.ts +1 -1
- package/dest/services/peer-manager/metrics.d.ts +9 -2
- package/dest/services/peer-manager/metrics.d.ts.map +1 -1
- package/dest/services/peer-manager/metrics.js +39 -16
- package/dest/services/peer-manager/peer_manager.d.ts +2 -33
- package/dest/services/peer-manager/peer_manager.d.ts.map +1 -1
- package/dest/services/peer-manager/peer_manager.js +6 -12
- package/dest/services/peer-manager/peer_scoring.d.ts +7 -2
- package/dest/services/peer-manager/peer_scoring.d.ts.map +1 -1
- package/dest/services/peer-manager/peer_scoring.js +68 -4
- package/dest/services/reqresp/batch-tx-requester/batch_tx_requester.d.ts +48 -0
- package/dest/services/reqresp/batch-tx-requester/batch_tx_requester.d.ts.map +1 -0
- package/dest/services/reqresp/batch-tx-requester/batch_tx_requester.js +539 -0
- package/dest/services/reqresp/batch-tx-requester/config.d.ts +17 -0
- package/dest/services/reqresp/batch-tx-requester/config.d.ts.map +1 -0
- package/dest/services/reqresp/batch-tx-requester/config.js +27 -0
- package/dest/services/reqresp/batch-tx-requester/interface.d.ts +46 -0
- package/dest/services/reqresp/batch-tx-requester/interface.d.ts.map +1 -0
- package/dest/services/reqresp/batch-tx-requester/interface.js +1 -0
- package/dest/services/reqresp/batch-tx-requester/missing_txs.d.ts +34 -0
- package/dest/services/reqresp/batch-tx-requester/missing_txs.d.ts.map +1 -0
- package/dest/services/reqresp/batch-tx-requester/missing_txs.js +130 -0
- package/dest/services/reqresp/batch-tx-requester/peer_collection.d.ts +60 -0
- package/dest/services/reqresp/batch-tx-requester/peer_collection.d.ts.map +1 -0
- package/dest/services/reqresp/batch-tx-requester/peer_collection.js +173 -0
- package/dest/services/reqresp/batch-tx-requester/tx_validator.d.ts +20 -0
- package/dest/services/reqresp/batch-tx-requester/tx_validator.d.ts.map +1 -0
- package/dest/services/reqresp/batch-tx-requester/tx_validator.js +21 -0
- package/dest/services/reqresp/config.d.ts +1 -1
- package/dest/services/reqresp/connection-sampler/batch_connection_sampler.d.ts +22 -3
- package/dest/services/reqresp/connection-sampler/batch_connection_sampler.d.ts.map +1 -1
- package/dest/services/reqresp/connection-sampler/batch_connection_sampler.js +63 -4
- package/dest/services/reqresp/connection-sampler/connection_sampler.d.ts +2 -4
- package/dest/services/reqresp/connection-sampler/connection_sampler.d.ts.map +1 -1
- package/dest/services/reqresp/connection-sampler/connection_sampler.js +12 -0
- package/dest/services/reqresp/constants.d.ts +12 -0
- package/dest/services/reqresp/constants.d.ts.map +1 -0
- package/dest/services/reqresp/constants.js +7 -0
- package/dest/services/reqresp/index.d.ts +1 -1
- package/dest/services/reqresp/interface.d.ts +13 -2
- package/dest/services/reqresp/interface.d.ts.map +1 -1
- package/dest/services/reqresp/interface.js +16 -2
- package/dest/services/reqresp/metrics.d.ts +6 -5
- package/dest/services/reqresp/metrics.d.ts.map +1 -1
- package/dest/services/reqresp/metrics.js +17 -21
- package/dest/services/reqresp/protocols/auth.d.ts +2 -2
- package/dest/services/reqresp/protocols/auth.d.ts.map +1 -1
- package/dest/services/reqresp/protocols/auth.js +2 -2
- package/dest/services/reqresp/protocols/block.d.ts +1 -1
- package/dest/services/reqresp/protocols/block.d.ts.map +1 -1
- package/dest/services/reqresp/protocols/block.js +3 -2
- package/dest/services/reqresp/protocols/block_txs/bitvector.d.ts +5 -1
- package/dest/services/reqresp/protocols/block_txs/bitvector.d.ts.map +1 -1
- package/dest/services/reqresp/protocols/block_txs/bitvector.js +12 -0
- package/dest/services/reqresp/protocols/block_txs/block_txs_handler.d.ts +7 -5
- package/dest/services/reqresp/protocols/block_txs/block_txs_handler.d.ts.map +1 -1
- package/dest/services/reqresp/protocols/block_txs/block_txs_handler.js +27 -9
- package/dest/services/reqresp/protocols/block_txs/block_txs_reqresp.d.ts +30 -9
- package/dest/services/reqresp/protocols/block_txs/block_txs_reqresp.d.ts.map +1 -1
- package/dest/services/reqresp/protocols/block_txs/block_txs_reqresp.js +60 -14
- package/dest/services/reqresp/protocols/block_txs/index.d.ts +1 -1
- package/dest/services/reqresp/protocols/goodbye.d.ts +1 -1
- package/dest/services/reqresp/protocols/goodbye.d.ts.map +1 -1
- package/dest/services/reqresp/protocols/index.d.ts +1 -1
- package/dest/services/reqresp/protocols/ping.d.ts +1 -1
- package/dest/services/reqresp/protocols/status.d.ts +6 -5
- package/dest/services/reqresp/protocols/status.d.ts.map +1 -1
- package/dest/services/reqresp/protocols/status.js +7 -3
- package/dest/services/reqresp/protocols/tx.d.ts +8 -3
- package/dest/services/reqresp/protocols/tx.d.ts.map +1 -1
- package/dest/services/reqresp/protocols/tx.js +20 -0
- package/dest/services/reqresp/rate-limiter/index.d.ts +1 -1
- package/dest/services/reqresp/rate-limiter/rate_limiter.d.ts +2 -2
- package/dest/services/reqresp/rate-limiter/rate_limiter.d.ts.map +1 -1
- package/dest/services/reqresp/rate-limiter/rate_limits.d.ts +1 -1
- package/dest/services/reqresp/reqresp.d.ts +6 -41
- package/dest/services/reqresp/reqresp.d.ts.map +1 -1
- package/dest/services/reqresp/reqresp.js +473 -51
- package/dest/services/reqresp/status.d.ts +2 -2
- package/dest/services/reqresp/status.d.ts.map +1 -1
- package/dest/services/service.d.ts +56 -4
- package/dest/services/service.d.ts.map +1 -1
- package/dest/services/tx_collection/config.d.ts +22 -1
- package/dest/services/tx_collection/config.d.ts.map +1 -1
- package/dest/services/tx_collection/config.js +56 -2
- package/dest/services/tx_collection/fast_tx_collection.d.ts +10 -12
- package/dest/services/tx_collection/fast_tx_collection.d.ts.map +1 -1
- package/dest/services/tx_collection/fast_tx_collection.js +71 -44
- package/dest/services/tx_collection/file_store_tx_collection.d.ts +53 -0
- package/dest/services/tx_collection/file_store_tx_collection.d.ts.map +1 -0
- package/dest/services/tx_collection/file_store_tx_collection.js +167 -0
- package/dest/services/tx_collection/file_store_tx_source.d.ts +37 -0
- package/dest/services/tx_collection/file_store_tx_source.d.ts.map +1 -0
- package/dest/services/tx_collection/file_store_tx_source.js +90 -0
- package/dest/services/tx_collection/index.d.ts +3 -1
- package/dest/services/tx_collection/index.d.ts.map +1 -1
- package/dest/services/tx_collection/index.js +2 -0
- package/dest/services/tx_collection/instrumentation.d.ts +1 -1
- package/dest/services/tx_collection/instrumentation.d.ts.map +1 -1
- package/dest/services/tx_collection/instrumentation.js +11 -13
- package/dest/services/tx_collection/missing_txs_tracker.d.ts +32 -0
- package/dest/services/tx_collection/missing_txs_tracker.d.ts.map +1 -0
- package/dest/services/tx_collection/missing_txs_tracker.js +27 -0
- package/dest/services/tx_collection/proposal_tx_collector.d.ts +49 -0
- package/dest/services/tx_collection/proposal_tx_collector.d.ts.map +1 -0
- package/dest/services/tx_collection/proposal_tx_collector.js +50 -0
- package/dest/services/tx_collection/slow_tx_collection.d.ts +9 -6
- package/dest/services/tx_collection/slow_tx_collection.d.ts.map +1 -1
- package/dest/services/tx_collection/slow_tx_collection.js +61 -26
- package/dest/services/tx_collection/tx_collection.d.ts +31 -18
- package/dest/services/tx_collection/tx_collection.d.ts.map +1 -1
- package/dest/services/tx_collection/tx_collection.js +79 -7
- package/dest/services/tx_collection/tx_collection_sink.d.ts +19 -9
- package/dest/services/tx_collection/tx_collection_sink.d.ts.map +1 -1
- package/dest/services/tx_collection/tx_collection_sink.js +26 -29
- package/dest/services/tx_collection/tx_source.d.ts +8 -3
- package/dest/services/tx_collection/tx_source.d.ts.map +1 -1
- package/dest/services/tx_collection/tx_source.js +19 -2
- package/dest/services/tx_file_store/config.d.ts +16 -0
- package/dest/services/tx_file_store/config.d.ts.map +1 -0
- package/dest/services/tx_file_store/config.js +22 -0
- package/dest/services/tx_file_store/index.d.ts +4 -0
- package/dest/services/tx_file_store/index.d.ts.map +1 -0
- package/dest/services/tx_file_store/index.js +3 -0
- package/dest/services/tx_file_store/instrumentation.d.ts +15 -0
- package/dest/services/tx_file_store/instrumentation.d.ts.map +1 -0
- package/dest/services/tx_file_store/instrumentation.js +29 -0
- package/dest/services/tx_file_store/tx_file_store.d.ts +48 -0
- package/dest/services/tx_file_store/tx_file_store.d.ts.map +1 -0
- package/dest/services/tx_file_store/tx_file_store.js +152 -0
- package/dest/services/tx_provider.d.ts +7 -5
- package/dest/services/tx_provider.d.ts.map +1 -1
- package/dest/services/tx_provider.js +20 -10
- package/dest/services/tx_provider_instrumentation.d.ts +5 -2
- package/dest/services/tx_provider_instrumentation.d.ts.map +1 -1
- package/dest/services/tx_provider_instrumentation.js +14 -14
- package/dest/test-helpers/generate-peer-id-private-keys.d.ts +1 -1
- package/dest/test-helpers/get-ports.d.ts +1 -1
- package/dest/test-helpers/get-ports.d.ts.map +1 -1
- package/dest/test-helpers/index.d.ts +3 -1
- package/dest/test-helpers/index.d.ts.map +1 -1
- package/dest/test-helpers/index.js +2 -0
- package/dest/test-helpers/make-enrs.d.ts +1 -1
- package/dest/test-helpers/make-test-p2p-clients.d.ts +7 -8
- package/dest/test-helpers/make-test-p2p-clients.d.ts.map +1 -1
- package/dest/test-helpers/make-test-p2p-clients.js +1 -2
- package/dest/test-helpers/mock-pubsub.d.ts +32 -6
- package/dest/test-helpers/mock-pubsub.d.ts.map +1 -1
- package/dest/test-helpers/mock-pubsub.js +105 -4
- package/dest/test-helpers/mock-tx-helpers.d.ts +2 -2
- package/dest/test-helpers/mock-tx-helpers.d.ts.map +1 -1
- package/dest/test-helpers/mock-tx-helpers.js +1 -1
- package/dest/test-helpers/reqresp-nodes.d.ts +2 -3
- package/dest/test-helpers/reqresp-nodes.d.ts.map +1 -1
- package/dest/test-helpers/reqresp-nodes.js +4 -3
- package/dest/test-helpers/test_tx_provider.d.ts +40 -0
- package/dest/test-helpers/test_tx_provider.d.ts.map +1 -0
- package/dest/test-helpers/test_tx_provider.js +41 -0
- package/dest/test-helpers/testbench-utils.d.ts +163 -0
- package/dest/test-helpers/testbench-utils.d.ts.map +1 -0
- package/dest/test-helpers/testbench-utils.js +366 -0
- package/dest/testbench/p2p_client_testbench_worker.d.ts +28 -2
- package/dest/testbench/p2p_client_testbench_worker.d.ts.map +1 -1
- package/dest/testbench/p2p_client_testbench_worker.js +225 -127
- package/dest/testbench/parse_log_file.d.ts +1 -1
- package/dest/testbench/testbench.d.ts +1 -1
- package/dest/testbench/worker_client_manager.d.ts +51 -6
- package/dest/testbench/worker_client_manager.d.ts.map +1 -1
- package/dest/testbench/worker_client_manager.js +226 -39
- package/dest/types/index.d.ts +1 -1
- package/dest/util.d.ts +3 -2
- package/dest/util.d.ts.map +1 -1
- package/dest/util.js +11 -2
- package/dest/versioning.d.ts +1 -1
- package/package.json +19 -18
- package/src/bootstrap/bootstrap.ts +7 -4
- package/src/client/factory.ts +85 -43
- package/src/client/interface.ts +74 -34
- package/src/client/p2p_client.ts +281 -383
- package/src/client/test/tx_proposal_collector/README.md +227 -0
- package/src/client/test/tx_proposal_collector/proposal_tx_collector_worker.ts +345 -0
- package/src/client/test/tx_proposal_collector/proposal_tx_collector_worker_protocol.ts +43 -0
- package/src/config.ts +77 -30
- package/src/errors/attestation-pool.error.ts +13 -0
- package/src/errors/tx-pool.error.ts +12 -0
- package/src/index.ts +1 -0
- package/src/mem_pools/attestation_pool/attestation_pool.ts +514 -58
- package/src/mem_pools/attestation_pool/attestation_pool_test_suite.ts +614 -309
- package/src/mem_pools/attestation_pool/index.ts +9 -2
- package/src/mem_pools/attestation_pool/mocks.ts +22 -15
- package/src/mem_pools/index.ts +4 -1
- package/src/mem_pools/instrumentation.ts +48 -10
- package/src/mem_pools/interface.ts +5 -7
- package/src/mem_pools/tx_pool/README.md +270 -0
- package/src/mem_pools/tx_pool/aztec_kv_tx_pool.ts +367 -371
- package/src/mem_pools/tx_pool/eviction/eviction_manager.ts +132 -0
- package/src/mem_pools/tx_pool/eviction/eviction_strategy.ts +208 -0
- package/src/mem_pools/tx_pool/eviction/fee_payer_balance_eviction_rule.ts +162 -0
- package/src/mem_pools/tx_pool/eviction/invalid_txs_after_mining_rule.ts +104 -0
- package/src/mem_pools/tx_pool/eviction/invalid_txs_after_reorg_rule.ts +93 -0
- package/src/mem_pools/tx_pool/eviction/low_priority_eviction_rule.ts +106 -0
- package/src/mem_pools/tx_pool/eviction/nullifier_conflict_pre_add_rule.ts +75 -0
- package/src/mem_pools/tx_pool/index.ts +0 -1
- package/src/mem_pools/tx_pool/priority.ts +8 -1
- package/src/mem_pools/tx_pool/tx_pool.ts +11 -5
- package/src/mem_pools/tx_pool/tx_pool_test_suite.ts +23 -17
- package/src/mem_pools/tx_pool_v2/README.md +275 -0
- package/src/mem_pools/tx_pool_v2/archive/index.ts +1 -0
- package/src/mem_pools/tx_pool_v2/archive/tx_archive.ts +120 -0
- package/src/mem_pools/tx_pool_v2/deleted_pool.ts +321 -0
- package/src/mem_pools/tx_pool_v2/eviction/eviction_manager.ts +160 -0
- package/src/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.ts +121 -0
- package/src/mem_pools/tx_pool_v2/eviction/fee_payer_balance_pre_add_rule.ts +125 -0
- package/src/mem_pools/tx_pool_v2/eviction/index.ts +27 -0
- package/src/mem_pools/tx_pool_v2/eviction/interfaces.ts +209 -0
- package/src/mem_pools/tx_pool_v2/eviction/invalid_txs_after_mining_rule.ts +74 -0
- package/src/mem_pools/tx_pool_v2/eviction/invalid_txs_after_reorg_rule.ts +101 -0
- package/src/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.ts +91 -0
- package/src/mem_pools/tx_pool_v2/eviction/low_priority_pre_add_rule.ts +90 -0
- package/src/mem_pools/tx_pool_v2/eviction/nullifier_conflict_rule.ts +31 -0
- package/src/mem_pools/tx_pool_v2/index.ts +12 -0
- package/src/mem_pools/tx_pool_v2/instrumentation.ts +69 -0
- package/src/mem_pools/tx_pool_v2/interfaces.ts +242 -0
- package/src/mem_pools/tx_pool_v2/tx_metadata.ts +297 -0
- package/src/mem_pools/tx_pool_v2/tx_pool_bench_metrics.ts +77 -0
- package/src/mem_pools/tx_pool_v2/tx_pool_indices.ts +444 -0
- package/src/mem_pools/tx_pool_v2/tx_pool_v2.ts +223 -0
- package/src/mem_pools/tx_pool_v2/tx_pool_v2_impl.ts +1083 -0
- package/src/msg_validators/attestation_validator/attestation_validator.ts +45 -32
- package/src/msg_validators/attestation_validator/fisherman_attestation_validator.ts +94 -0
- package/src/msg_validators/attestation_validator/index.ts +1 -0
- package/src/msg_validators/clock_tolerance.ts +51 -0
- package/src/msg_validators/index.ts +1 -1
- package/src/msg_validators/proposal_validator/block_proposal_validator.ts +10 -0
- package/src/msg_validators/proposal_validator/checkpoint_proposal_validator.ts +13 -0
- package/src/msg_validators/proposal_validator/index.ts +3 -0
- package/src/msg_validators/proposal_validator/proposal_validator.ts +92 -0
- package/src/msg_validators/proposal_validator/proposal_validator_test_suite.ts +230 -0
- package/src/msg_validators/tx_validator/README.md +115 -0
- package/src/msg_validators/tx_validator/aggregate_tx_validator.ts +5 -5
- package/src/msg_validators/tx_validator/archive_cache.ts +3 -3
- package/src/msg_validators/tx_validator/block_header_validator.ts +21 -8
- package/src/msg_validators/tx_validator/data_validator.ts +18 -6
- package/src/msg_validators/tx_validator/double_spend_validator.ts +15 -9
- package/src/msg_validators/tx_validator/factory.ts +375 -57
- package/src/msg_validators/tx_validator/fee_payer_balance.ts +40 -0
- package/src/msg_validators/tx_validator/gas_validator.ts +106 -54
- package/src/msg_validators/tx_validator/index.ts +2 -0
- package/src/msg_validators/tx_validator/metadata_validator.ts +19 -8
- package/src/msg_validators/tx_validator/nullifier_cache.ts +30 -0
- package/src/msg_validators/tx_validator/phases_validator.ts +8 -4
- package/src/msg_validators/tx_validator/size_validator.ts +22 -0
- package/src/msg_validators/tx_validator/test_utils.ts +1 -1
- package/src/msg_validators/tx_validator/timestamp_validator.ts +30 -19
- package/src/msg_validators/tx_validator/tx_permitted_validator.ts +8 -3
- package/src/msg_validators/tx_validator/tx_proof_validator.ts +8 -3
- package/src/services/data_store.ts +10 -7
- package/src/services/discv5/discV5_service.ts +1 -1
- package/src/services/dummy_service.ts +65 -2
- package/src/services/encoding.ts +13 -12
- package/src/services/gossipsub/README.md +641 -0
- package/src/services/gossipsub/index.ts +2 -0
- package/src/services/gossipsub/scoring.ts +29 -5
- package/src/services/gossipsub/topic_score_params.ts +487 -0
- package/src/services/index.ts +1 -0
- package/src/services/libp2p/instrumentation.ts +39 -71
- package/src/services/libp2p/libp2p_service.ts +883 -364
- package/src/services/peer-manager/metrics.ts +44 -16
- package/src/services/peer-manager/peer_manager.ts +7 -4
- package/src/services/peer-manager/peer_scoring.ts +70 -3
- package/src/services/reqresp/batch-tx-requester/README.md +305 -0
- package/src/services/reqresp/batch-tx-requester/batch_tx_requester.ts +678 -0
- package/src/services/reqresp/batch-tx-requester/config.ts +40 -0
- package/src/services/reqresp/batch-tx-requester/interface.ts +53 -0
- package/src/services/reqresp/batch-tx-requester/missing_txs.ts +161 -0
- package/src/services/reqresp/batch-tx-requester/peer_collection.ts +244 -0
- package/src/services/reqresp/batch-tx-requester/tx_validator.ts +37 -0
- package/src/services/reqresp/connection-sampler/batch_connection_sampler.ts +65 -4
- package/src/services/reqresp/connection-sampler/connection_sampler.ts +19 -1
- package/src/services/reqresp/constants.ts +14 -0
- package/src/services/reqresp/interface.ts +30 -2
- package/src/services/reqresp/metrics.ts +36 -27
- package/src/services/reqresp/protocols/auth.ts +2 -2
- package/src/services/reqresp/protocols/block.ts +3 -2
- package/src/services/reqresp/protocols/block_txs/bitvector.ts +16 -0
- package/src/services/reqresp/protocols/block_txs/block_txs_handler.ts +35 -12
- package/src/services/reqresp/protocols/block_txs/block_txs_reqresp.ts +75 -10
- package/src/services/reqresp/protocols/status.ts +16 -12
- package/src/services/reqresp/protocols/tx.ts +23 -2
- package/src/services/reqresp/reqresp.ts +82 -23
- package/src/services/service.ts +73 -5
- package/src/services/tx_collection/config.ts +84 -2
- package/src/services/tx_collection/fast_tx_collection.ts +96 -49
- package/src/services/tx_collection/file_store_tx_collection.ts +202 -0
- package/src/services/tx_collection/file_store_tx_source.ts +117 -0
- package/src/services/tx_collection/index.ts +6 -0
- package/src/services/tx_collection/instrumentation.ts +11 -13
- package/src/services/tx_collection/missing_txs_tracker.ts +52 -0
- package/src/services/tx_collection/proposal_tx_collector.ts +113 -0
- package/src/services/tx_collection/slow_tx_collection.ts +70 -36
- package/src/services/tx_collection/tx_collection.ts +122 -24
- package/src/services/tx_collection/tx_collection_sink.ts +30 -34
- package/src/services/tx_collection/tx_source.ts +22 -3
- package/src/services/tx_file_store/config.ts +37 -0
- package/src/services/tx_file_store/index.ts +3 -0
- package/src/services/tx_file_store/instrumentation.ts +36 -0
- package/src/services/tx_file_store/tx_file_store.ts +175 -0
- package/src/services/tx_provider.ts +29 -12
- package/src/services/tx_provider_instrumentation.ts +24 -14
- package/src/test-helpers/index.ts +2 -0
- package/src/test-helpers/make-test-p2p-clients.ts +3 -5
- package/src/test-helpers/mock-pubsub.ts +147 -10
- package/src/test-helpers/mock-tx-helpers.ts +1 -1
- package/src/test-helpers/reqresp-nodes.ts +5 -7
- package/src/test-helpers/test_tx_provider.ts +64 -0
- package/src/test-helpers/testbench-utils.ts +430 -0
- package/src/testbench/p2p_client_testbench_worker.ts +350 -125
- package/src/testbench/worker_client_manager.ts +304 -42
- package/src/util.ts +19 -3
- package/dest/mem_pools/attestation_pool/kv_attestation_pool.d.ts +0 -30
- package/dest/mem_pools/attestation_pool/kv_attestation_pool.d.ts.map +0 -1
- package/dest/mem_pools/attestation_pool/kv_attestation_pool.js +0 -190
- package/dest/mem_pools/attestation_pool/memory_attestation_pool.d.ts +0 -25
- package/dest/mem_pools/attestation_pool/memory_attestation_pool.d.ts.map +0 -1
- package/dest/mem_pools/attestation_pool/memory_attestation_pool.js +0 -197
- package/dest/mem_pools/tx_pool/memory_tx_pool.d.ts +0 -80
- package/dest/mem_pools/tx_pool/memory_tx_pool.d.ts.map +0 -1
- package/dest/mem_pools/tx_pool/memory_tx_pool.js +0 -238
- package/dest/msg_validators/block_proposal_validator/block_proposal_validator.d.ts +0 -12
- package/dest/msg_validators/block_proposal_validator/block_proposal_validator.d.ts.map +0 -1
- package/dest/msg_validators/block_proposal_validator/block_proposal_validator.js +0 -70
- package/dest/msg_validators/block_proposal_validator/index.d.ts +0 -2
- package/dest/msg_validators/block_proposal_validator/index.d.ts.map +0 -1
- package/dest/msg_validators/block_proposal_validator/index.js +0 -1
- package/src/mem_pools/attestation_pool/kv_attestation_pool.ts +0 -256
- package/src/mem_pools/attestation_pool/memory_attestation_pool.ts +0 -253
- package/src/mem_pools/tx_pool/memory_tx_pool.ts +0 -283
- package/src/msg_validators/block_proposal_validator/block_proposal_validator.ts +0 -81
- package/src/msg_validators/block_proposal_validator/index.ts +0 -1
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { TxHash } from '@aztec/stdlib/tx';
|
|
2
|
+
import type { Tx } from '@aztec/stdlib/tx';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Tracks which transactions are still missing and need to be fetched.
|
|
6
|
+
* Allows external code to mark transactions as fetched, enabling coordination
|
|
7
|
+
* between multiple fetching mechanisms (e.g., BatchTxRequester and Rpc Node requests).
|
|
8
|
+
*/
|
|
9
|
+
export interface IMissingTxsTracker {
|
|
10
|
+
/** Returns the set of transaction hashes that are still missing. */
|
|
11
|
+
get missingTxHashes(): Set<string>;
|
|
12
|
+
/** Size of this.missingTxHashes */
|
|
13
|
+
get numberOfMissingTxs(): number;
|
|
14
|
+
/** Are all requested txs are fetched */
|
|
15
|
+
allFetched(): boolean;
|
|
16
|
+
/** Checks that transaction is still missing */
|
|
17
|
+
isMissing(txHash: string): boolean;
|
|
18
|
+
/** Marks a transaction as fetched. Returns true if it was previously missing. */
|
|
19
|
+
markFetched(tx: Tx): boolean;
|
|
20
|
+
/** Get list of collected txs */
|
|
21
|
+
get collectedTxs(): Tx[];
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export class MissingTxsTracker implements IMissingTxsTracker {
|
|
25
|
+
public readonly collectedTxs: Tx[] = [];
|
|
26
|
+
|
|
27
|
+
private constructor(public readonly missingTxHashes: Set<string>) {}
|
|
28
|
+
|
|
29
|
+
public static fromArray(hashes: TxHash[] | string[]) {
|
|
30
|
+
return new MissingTxsTracker(new Set(hashes.map(hash => hash.toString())));
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
markFetched(tx: Tx): boolean {
|
|
34
|
+
if (this.missingTxHashes.delete(tx.txHash.toString())) {
|
|
35
|
+
this.collectedTxs.push(tx);
|
|
36
|
+
return true;
|
|
37
|
+
}
|
|
38
|
+
return false;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
get numberOfMissingTxs(): number {
|
|
42
|
+
return this.missingTxHashes.size;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
allFetched(): boolean {
|
|
46
|
+
return this.numberOfMissingTxs === 0;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
isMissing(txHash: string): boolean {
|
|
50
|
+
return this.missingTxHashes.has(txHash.toString());
|
|
51
|
+
}
|
|
52
|
+
}
|
|
@@ -0,0 +1,113 @@
|
|
|
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
|
+
import type { IMissingTxsTracker } from './missing_txs_tracker.js';
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Strategy interface for collecting missing transactions for a block or proposal.
|
|
16
|
+
* Allows swapping between different tx collection implementations for benchmarking.
|
|
17
|
+
*/
|
|
18
|
+
export interface MissingTxsCollector {
|
|
19
|
+
/**
|
|
20
|
+
* Collect missing transactions for a block or proposal.
|
|
21
|
+
* @param missingTxsTracker - The missing transactions tracker
|
|
22
|
+
* @param blockTxsSource - The block or proposal containing the transactions
|
|
23
|
+
* @param pinnedPeer - Optional peer expected to have the transactions
|
|
24
|
+
* @param timeoutMs - Timeout in milliseconds
|
|
25
|
+
* @returns The collected transactions
|
|
26
|
+
*/
|
|
27
|
+
collectTxs(
|
|
28
|
+
missingTxsTracker: IMissingTxsTracker,
|
|
29
|
+
blockTxsSource: BlockTxsSource,
|
|
30
|
+
pinnedPeer: PeerId | undefined,
|
|
31
|
+
timeoutMs: number,
|
|
32
|
+
): Promise<Tx[]>;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* Collects transactions using the BatchTxRequester implementation.
|
|
37
|
+
* This uses a smart/dumb peer strategy with parallel workers.
|
|
38
|
+
*/
|
|
39
|
+
export class BatchTxRequesterCollector implements MissingTxsCollector {
|
|
40
|
+
constructor(
|
|
41
|
+
private p2pService: BatchTxRequesterLibP2PService,
|
|
42
|
+
private log: Logger,
|
|
43
|
+
private dateProvider: DateProvider,
|
|
44
|
+
private txValidator?: IBatchRequestTxValidator,
|
|
45
|
+
private batchTxRequesterConfig?: Partial<BatchTxRequesterConfig>,
|
|
46
|
+
) {}
|
|
47
|
+
|
|
48
|
+
async collectTxs(
|
|
49
|
+
missingTxsTracker: IMissingTxsTracker,
|
|
50
|
+
blockTxsSource: BlockTxsSource,
|
|
51
|
+
pinnedPeer: PeerId | undefined,
|
|
52
|
+
timeoutMs: number,
|
|
53
|
+
): Promise<Tx[]> {
|
|
54
|
+
const {
|
|
55
|
+
batchTxRequesterSmartParallelWorkerCount: smartParallelWorkerCount,
|
|
56
|
+
batchTxRequesterDumbParallelWorkerCount: dumbParallelWorkerCount,
|
|
57
|
+
batchTxRequesterTxBatchSize: txBatchSize,
|
|
58
|
+
batchTxRequesterBadPeerThreshold: badPeerThreshold,
|
|
59
|
+
} = this.batchTxRequesterConfig ?? {};
|
|
60
|
+
|
|
61
|
+
const batchRequester = new BatchTxRequester(
|
|
62
|
+
missingTxsTracker,
|
|
63
|
+
blockTxsSource,
|
|
64
|
+
pinnedPeer,
|
|
65
|
+
timeoutMs,
|
|
66
|
+
this.p2pService,
|
|
67
|
+
this.log,
|
|
68
|
+
this.dateProvider,
|
|
69
|
+
{
|
|
70
|
+
smartParallelWorkerCount,
|
|
71
|
+
dumbParallelWorkerCount,
|
|
72
|
+
txBatchSize,
|
|
73
|
+
badPeerThreshold,
|
|
74
|
+
txValidator: this.txValidator,
|
|
75
|
+
},
|
|
76
|
+
);
|
|
77
|
+
|
|
78
|
+
return await BatchTxRequester.collectAllTxs(batchRequester.run());
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
const DEFAULT_MAX_PEERS = 10;
|
|
83
|
+
const DEFAULT_MAX_RETRY_ATTEMPTS = 3;
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* Collects transactions using the sendBatchRequest implementation from ReqResp.
|
|
87
|
+
* This is the original implementation that balances requests across peers.
|
|
88
|
+
*/
|
|
89
|
+
export class SendBatchRequestCollector implements MissingTxsCollector {
|
|
90
|
+
constructor(
|
|
91
|
+
private p2pService: BatchTxRequesterLibP2PService,
|
|
92
|
+
private maxPeers: number = DEFAULT_MAX_PEERS,
|
|
93
|
+
private maxRetryAttempts: number = DEFAULT_MAX_RETRY_ATTEMPTS,
|
|
94
|
+
) {}
|
|
95
|
+
|
|
96
|
+
async collectTxs(
|
|
97
|
+
missingTxsTracker: IMissingTxsTracker,
|
|
98
|
+
_blockTxsSource: BlockTxsSource,
|
|
99
|
+
pinnedPeer: PeerId | undefined,
|
|
100
|
+
timeoutMs: number,
|
|
101
|
+
): Promise<Tx[]> {
|
|
102
|
+
const txs = await this.p2pService.reqResp.sendBatchRequest<ReqRespSubProtocol.TX>(
|
|
103
|
+
ReqRespSubProtocol.TX,
|
|
104
|
+
chunkTxHashesRequest(Array.from(missingTxsTracker.missingTxHashes).map(TxHash.fromString)),
|
|
105
|
+
pinnedPeer,
|
|
106
|
+
timeoutMs,
|
|
107
|
+
this.maxPeers,
|
|
108
|
+
this.maxRetryAttempts,
|
|
109
|
+
);
|
|
110
|
+
|
|
111
|
+
return txs.flat();
|
|
112
|
+
}
|
|
113
|
+
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { BlockNumber, EpochNumber, SlotNumber } from '@aztec/foundation/branded-types';
|
|
1
2
|
import { chunk } from '@aztec/foundation/collection';
|
|
2
3
|
import { type Logger, createLogger } from '@aztec/foundation/log';
|
|
3
4
|
import { boundInclusive } from '@aztec/foundation/number';
|
|
@@ -7,8 +8,7 @@ import type { L2Block } from '@aztec/stdlib/block';
|
|
|
7
8
|
import { type L1RollupConstants, getEpochAtSlot, getTimestampRangeForEpoch } from '@aztec/stdlib/epoch-helpers';
|
|
8
9
|
import { type Tx, TxHash } from '@aztec/stdlib/tx';
|
|
9
10
|
|
|
10
|
-
import { type ReqRespInterface, ReqRespSubProtocol } from '../reqresp/
|
|
11
|
-
import { chunkTxHashesRequest } from '../reqresp/protocols/tx.js';
|
|
11
|
+
import { type ReqRespInterface, ReqRespSubProtocol, chunkTxHashesRequest } from '../reqresp/index.js';
|
|
12
12
|
import type { TxCollectionConfig } from './config.js';
|
|
13
13
|
import type { FastTxCollection } from './fast_tx_collection.js';
|
|
14
14
|
import type { MissingTxInfo } from './tx_collection.js';
|
|
@@ -90,6 +90,7 @@ export class SlowTxCollection {
|
|
|
90
90
|
|
|
91
91
|
for (const txHash of txHashes) {
|
|
92
92
|
this.missingTxs.set(txHash.toString(), {
|
|
93
|
+
block,
|
|
93
94
|
blockNumber: block.number,
|
|
94
95
|
deadline: this.getDeadlineForSlot(block.header.getSlot()),
|
|
95
96
|
readyForReqResp: this.nodes.length === 0, // If we have no nodes, we can start reqresp immediately
|
|
@@ -108,18 +109,26 @@ export class SlowTxCollection {
|
|
|
108
109
|
|
|
109
110
|
// Gather all missing txs that are not in fast collection and request them from the node
|
|
110
111
|
const missingTxs = this.getMissingTxsForSlowCollection();
|
|
111
|
-
|
|
112
|
-
if (missingTxHashes.length === 0) {
|
|
112
|
+
if (missingTxs.length === 0) {
|
|
113
113
|
return;
|
|
114
114
|
}
|
|
115
115
|
|
|
116
|
-
//
|
|
117
|
-
for (const
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
116
|
+
// Group by block so we pass the correct mined context to the sink
|
|
117
|
+
for (const entries of this.groupByBlock(missingTxs)) {
|
|
118
|
+
const block = entries[0][1].block;
|
|
119
|
+
const txHashes = entries.map(([txHash]) => TxHash.fromString(txHash));
|
|
120
|
+
for (const batch of chunk(txHashes, this.config.txCollectionNodeRpcMaxBatchSize)) {
|
|
121
|
+
await this.txCollectionSink.collect(
|
|
122
|
+
() => node.getTxsByHash(batch),
|
|
123
|
+
batch.map(h => h.toString()),
|
|
124
|
+
{
|
|
125
|
+
description: `node ${node.getInfo()}`,
|
|
126
|
+
node: node.getInfo(),
|
|
127
|
+
method: 'slow-node-rpc',
|
|
128
|
+
},
|
|
129
|
+
{ type: 'mined', block },
|
|
130
|
+
);
|
|
131
|
+
}
|
|
123
132
|
}
|
|
124
133
|
|
|
125
134
|
// Mark every tx that is still missing as ready for reqresp.
|
|
@@ -148,25 +157,30 @@ export class SlowTxCollection {
|
|
|
148
157
|
|
|
149
158
|
const pinnedPeer = undefined;
|
|
150
159
|
const timeoutMs = this.config.txCollectionSlowReqRespTimeoutMs;
|
|
151
|
-
const maxPeers = boundInclusive(Math.ceil(missingTxs.length / 3), 4, 16);
|
|
152
160
|
const maxRetryAttempts = 3;
|
|
153
|
-
// Send a batch request via reqresp for the missing txs
|
|
154
|
-
await this.txCollectionSink.collect(
|
|
155
|
-
async txHashes => {
|
|
156
|
-
const txs = await this.reqResp.sendBatchRequest<ReqRespSubProtocol.TX>(
|
|
157
|
-
ReqRespSubProtocol.TX,
|
|
158
|
-
chunkTxHashesRequest(txHashes),
|
|
159
|
-
pinnedPeer,
|
|
160
|
-
timeoutMs,
|
|
161
|
-
maxPeers,
|
|
162
|
-
maxRetryAttempts,
|
|
163
|
-
);
|
|
164
161
|
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
162
|
+
// Group by block so we pass the correct mined context to the sink
|
|
163
|
+
for (const entries of this.groupByBlock(missingTxs)) {
|
|
164
|
+
const block = entries[0][1].block;
|
|
165
|
+
const txHashes = entries.map(([txHash]) => TxHash.fromString(txHash));
|
|
166
|
+
const maxPeers = boundInclusive(Math.ceil(txHashes.length / 3), 4, 16);
|
|
167
|
+
await this.txCollectionSink.collect(
|
|
168
|
+
async () => {
|
|
169
|
+
const txs = await this.reqResp.sendBatchRequest<ReqRespSubProtocol.TX>(
|
|
170
|
+
ReqRespSubProtocol.TX,
|
|
171
|
+
chunkTxHashesRequest(txHashes),
|
|
172
|
+
pinnedPeer,
|
|
173
|
+
timeoutMs,
|
|
174
|
+
maxPeers,
|
|
175
|
+
maxRetryAttempts,
|
|
176
|
+
);
|
|
177
|
+
return { validTxs: txs.flat(), invalidTxHashes: [] };
|
|
178
|
+
},
|
|
179
|
+
txHashes.map(h => h.toString()),
|
|
180
|
+
{ description: 'slow reqresp', timeoutMs, method: 'slow-req-resp' },
|
|
181
|
+
{ type: 'mined', block },
|
|
182
|
+
);
|
|
183
|
+
}
|
|
170
184
|
}
|
|
171
185
|
|
|
172
186
|
/** Retrieves all missing txs for the slow collection process. This is, all missing txs that are not part of a fast request. */
|
|
@@ -182,7 +196,7 @@ export class SlowTxCollection {
|
|
|
182
196
|
// from mined unproven blocks it has seen in the past.
|
|
183
197
|
const fastRequests = this.fastCollection.getFastCollectionRequests();
|
|
184
198
|
const fastCollectionTxs: Set<string> = new Set(
|
|
185
|
-
|
|
199
|
+
fastRequests.values().flatMap(r => Array.from(r.missingTxTracker.missingTxHashes)),
|
|
186
200
|
);
|
|
187
201
|
|
|
188
202
|
// Return all missing txs that are not in fastCollectionTxs and are ready for reqresp if requested
|
|
@@ -202,7 +216,7 @@ export class SlowTxCollection {
|
|
|
202
216
|
* Stop collecting all txs for blocks less than or requal to the block number specified.
|
|
203
217
|
* To be called when we no longer care about gathering txs up to a certain block, eg when they become proven or finalized.
|
|
204
218
|
*/
|
|
205
|
-
public stopCollectingForBlocksUpTo(blockNumber:
|
|
219
|
+
public stopCollectingForBlocksUpTo(blockNumber: BlockNumber): void {
|
|
206
220
|
for (const [txHash, info] of this.missingTxs.entries()) {
|
|
207
221
|
if (info.blockNumber <= blockNumber) {
|
|
208
222
|
this.missingTxs.delete(txHash);
|
|
@@ -214,7 +228,7 @@ export class SlowTxCollection {
|
|
|
214
228
|
* Stop collecting all txs for blocks greater than the block number specified.
|
|
215
229
|
* To be called when there is a chain prune and previously mined txs are no longer relevant.
|
|
216
230
|
*/
|
|
217
|
-
public stopCollectingForBlocksAfter(blockNumber:
|
|
231
|
+
public stopCollectingForBlocksAfter(blockNumber: BlockNumber): void {
|
|
218
232
|
for (const [txHash, info] of this.missingTxs.entries()) {
|
|
219
233
|
if (info.blockNumber > blockNumber) {
|
|
220
234
|
this.missingTxs.delete(txHash);
|
|
@@ -222,11 +236,31 @@ export class SlowTxCollection {
|
|
|
222
236
|
}
|
|
223
237
|
}
|
|
224
238
|
|
|
239
|
+
/** Groups missing tx entries by block number. */
|
|
240
|
+
private groupByBlock(entries: [string, MissingTxInfo][]): [string, MissingTxInfo][][] {
|
|
241
|
+
const groups = new Map<number, [string, MissingTxInfo][]>();
|
|
242
|
+
for (const entry of entries) {
|
|
243
|
+
const bn = +entry[1].blockNumber;
|
|
244
|
+
let group = groups.get(bn);
|
|
245
|
+
if (!group) {
|
|
246
|
+
group = [];
|
|
247
|
+
groups.set(bn, group);
|
|
248
|
+
}
|
|
249
|
+
group.push(entry);
|
|
250
|
+
}
|
|
251
|
+
return [...groups.values()];
|
|
252
|
+
}
|
|
253
|
+
|
|
225
254
|
/** Computes the proof submission deadline for a given slot, a tx mined in this slot is no longer interesting after this deadline */
|
|
226
|
-
private getDeadlineForSlot(slotNumber:
|
|
227
|
-
|
|
228
|
-
const submissionEndEpoch = epoch + BigInt(this.constants.proofSubmissionEpochs);
|
|
229
|
-
const submissionEndTimestamp = getTimestampRangeForEpoch(submissionEndEpoch, this.constants)[1];
|
|
230
|
-
return new Date(Number(submissionEndTimestamp) * 1000);
|
|
255
|
+
private getDeadlineForSlot(slotNumber: SlotNumber): Date {
|
|
256
|
+
return getProofDeadlineForSlot(slotNumber, this.constants);
|
|
231
257
|
}
|
|
232
258
|
}
|
|
259
|
+
|
|
260
|
+
/** Computes the proof submission deadline for a given slot. A tx mined in this slot is no longer interesting after this deadline. */
|
|
261
|
+
export function getProofDeadlineForSlot(slotNumber: SlotNumber, constants: L1RollupConstants): Date {
|
|
262
|
+
const epoch = getEpochAtSlot(slotNumber, constants);
|
|
263
|
+
const submissionEndEpoch = EpochNumber(epoch + constants.proofSubmissionEpochs);
|
|
264
|
+
const submissionEndTimestamp = getTimestampRangeForEpoch(submissionEndEpoch, constants)[1];
|
|
265
|
+
return new Date(Number(submissionEndTimestamp) * 1000);
|
|
266
|
+
}
|
|
@@ -1,38 +1,42 @@
|
|
|
1
|
+
import { BlockNumber } from '@aztec/foundation/branded-types';
|
|
1
2
|
import { compactArray } from '@aztec/foundation/collection';
|
|
2
3
|
import { type Logger, createLogger } from '@aztec/foundation/log';
|
|
3
4
|
import { type PromiseWithResolvers, RunningPromise } from '@aztec/foundation/promise';
|
|
5
|
+
import { sleep } from '@aztec/foundation/sleep';
|
|
4
6
|
import { DateProvider } from '@aztec/foundation/timer';
|
|
5
7
|
import type { L2Block, L2BlockInfo } from '@aztec/stdlib/block';
|
|
6
8
|
import type { L1RollupConstants } from '@aztec/stdlib/epoch-helpers';
|
|
7
9
|
import type { BlockProposal } from '@aztec/stdlib/p2p';
|
|
8
|
-
import { Tx
|
|
10
|
+
import type { Tx } from '@aztec/stdlib/tx';
|
|
11
|
+
import { TxHash } from '@aztec/stdlib/tx';
|
|
9
12
|
import { type TelemetryClient, getTelemetryClient } from '@aztec/telemetry-client';
|
|
10
13
|
|
|
11
14
|
import type { PeerId } from '@libp2p/interface';
|
|
12
15
|
|
|
13
|
-
import type {
|
|
14
|
-
import type {
|
|
15
|
-
import type { ReqRespInterface } from '../reqresp/interface.js';
|
|
16
|
+
import type { TxPoolV2, TxPoolV2Events } from '../../mem_pools/tx_pool_v2/interfaces.js';
|
|
17
|
+
import type { BatchTxRequesterLibP2PService } from '../reqresp/batch-tx-requester/interface.js';
|
|
16
18
|
import type { TxCollectionConfig } from './config.js';
|
|
17
19
|
import { FastTxCollection } from './fast_tx_collection.js';
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
+
import { FileStoreTxCollection } from './file_store_tx_collection.js';
|
|
21
|
+
import type { FileStoreTxSource } from './file_store_tx_source.js';
|
|
22
|
+
import type { IMissingTxsTracker } from './missing_txs_tracker.js';
|
|
23
|
+
import { SlowTxCollection, getProofDeadlineForSlot } from './slow_tx_collection.js';
|
|
24
|
+
import { type TxAddContext, TxCollectionSink } from './tx_collection_sink.js';
|
|
20
25
|
import type { TxSource } from './tx_source.js';
|
|
21
26
|
|
|
22
|
-
export type CollectionMethod = 'fast-req-resp' | 'fast-node-rpc' | 'slow-req-resp' | 'slow-node-rpc';
|
|
27
|
+
export type CollectionMethod = 'fast-req-resp' | 'fast-node-rpc' | 'slow-req-resp' | 'slow-node-rpc' | 'file-store';
|
|
23
28
|
|
|
24
|
-
export type MissingTxInfo = { blockNumber:
|
|
29
|
+
export type MissingTxInfo = { block: L2Block; blockNumber: BlockNumber; deadline: Date; readyForReqResp: boolean };
|
|
25
30
|
|
|
26
31
|
export type FastCollectionRequestInput =
|
|
27
32
|
| { type: 'block'; block: L2Block }
|
|
28
|
-
| { type: 'proposal'; blockProposal: BlockProposal; blockNumber:
|
|
33
|
+
| { type: 'proposal'; blockProposal: BlockProposal; blockNumber: BlockNumber };
|
|
29
34
|
|
|
30
35
|
export type FastCollectionRequest = FastCollectionRequestInput & {
|
|
31
|
-
|
|
36
|
+
missingTxTracker: IMissingTxsTracker;
|
|
32
37
|
deadline: Date;
|
|
33
38
|
blockInfo: L2BlockInfo;
|
|
34
39
|
promise: PromiseWithResolvers<void>;
|
|
35
|
-
foundTxs: Map<string, Tx>;
|
|
36
40
|
};
|
|
37
41
|
|
|
38
42
|
/**
|
|
@@ -53,6 +57,12 @@ export class TxCollection {
|
|
|
53
57
|
/** Fast collection methods */
|
|
54
58
|
protected readonly fastCollection: FastTxCollection;
|
|
55
59
|
|
|
60
|
+
/** File store collection for slow (mined block) path */
|
|
61
|
+
protected readonly fileStoreSlowCollection: FileStoreTxCollection;
|
|
62
|
+
|
|
63
|
+
/** File store collection for fast (proposal/proving) path */
|
|
64
|
+
protected readonly fileStoreFastCollection: FileStoreTxCollection;
|
|
65
|
+
|
|
56
66
|
/** Loop for periodically reconciling found transactions from the tx pool in case we missed some */
|
|
57
67
|
private readonly reconcileFoundTxsLoop: RunningPromise;
|
|
58
68
|
|
|
@@ -60,17 +70,24 @@ export class TxCollection {
|
|
|
60
70
|
private readonly txCollectionSink: TxCollectionSink;
|
|
61
71
|
|
|
62
72
|
/** Handler for the txs-added event from the tx pool */
|
|
63
|
-
protected readonly handleTxsAddedToPool:
|
|
73
|
+
protected readonly handleTxsAddedToPool: TxPoolV2Events['txs-added'];
|
|
64
74
|
|
|
65
75
|
/** Handler for the txs-added event from the tx collection sink */
|
|
66
|
-
protected readonly handleTxsFound:
|
|
76
|
+
protected readonly handleTxsFound: TxPoolV2Events['txs-added'];
|
|
77
|
+
|
|
78
|
+
/** Whether the service has been started. */
|
|
79
|
+
private started = false;
|
|
80
|
+
|
|
81
|
+
/** Whether file store sources are configured. */
|
|
82
|
+
private readonly hasFileStoreSources: boolean;
|
|
67
83
|
|
|
68
84
|
constructor(
|
|
69
|
-
private readonly
|
|
85
|
+
private readonly p2pService: BatchTxRequesterLibP2PService,
|
|
70
86
|
private readonly nodes: TxSource[],
|
|
71
87
|
private readonly constants: L1RollupConstants,
|
|
72
|
-
private readonly txPool:
|
|
88
|
+
private readonly txPool: TxPoolV2,
|
|
73
89
|
private readonly config: TxCollectionConfig,
|
|
90
|
+
fileStoreSources: FileStoreTxSource[] = [],
|
|
74
91
|
private readonly dateProvider: DateProvider = new DateProvider(),
|
|
75
92
|
telemetryClient: TelemetryClient = getTelemetryClient(),
|
|
76
93
|
private readonly log: Logger = createLogger('p2p:tx_collection_service'),
|
|
@@ -78,7 +95,7 @@ export class TxCollection {
|
|
|
78
95
|
this.txCollectionSink = new TxCollectionSink(this.txPool, telemetryClient, this.log);
|
|
79
96
|
|
|
80
97
|
this.fastCollection = new FastTxCollection(
|
|
81
|
-
this.
|
|
98
|
+
this.p2pService,
|
|
82
99
|
this.nodes,
|
|
83
100
|
this.txCollectionSink,
|
|
84
101
|
this.config,
|
|
@@ -87,7 +104,7 @@ export class TxCollection {
|
|
|
87
104
|
);
|
|
88
105
|
|
|
89
106
|
this.slowCollection = new SlowTxCollection(
|
|
90
|
-
this.reqResp,
|
|
107
|
+
this.p2pService.reqResp,
|
|
91
108
|
this.nodes,
|
|
92
109
|
this.txCollectionSink,
|
|
93
110
|
this.fastCollection,
|
|
@@ -97,18 +114,42 @@ export class TxCollection {
|
|
|
97
114
|
this.log,
|
|
98
115
|
);
|
|
99
116
|
|
|
117
|
+
this.hasFileStoreSources = fileStoreSources.length > 0;
|
|
118
|
+
this.fileStoreSlowCollection = new FileStoreTxCollection(
|
|
119
|
+
fileStoreSources,
|
|
120
|
+
this.txCollectionSink,
|
|
121
|
+
{
|
|
122
|
+
workerCount: config.txCollectionFileStoreSlowWorkerCount,
|
|
123
|
+
backoffBaseMs: config.txCollectionFileStoreSlowBackoffBaseMs,
|
|
124
|
+
backoffMaxMs: config.txCollectionFileStoreSlowBackoffMaxMs,
|
|
125
|
+
},
|
|
126
|
+
this.dateProvider,
|
|
127
|
+
this.log,
|
|
128
|
+
);
|
|
129
|
+
this.fileStoreFastCollection = new FileStoreTxCollection(
|
|
130
|
+
fileStoreSources,
|
|
131
|
+
this.txCollectionSink,
|
|
132
|
+
{
|
|
133
|
+
workerCount: config.txCollectionFileStoreFastWorkerCount,
|
|
134
|
+
backoffBaseMs: config.txCollectionFileStoreFastBackoffBaseMs,
|
|
135
|
+
backoffMaxMs: config.txCollectionFileStoreFastBackoffMaxMs,
|
|
136
|
+
},
|
|
137
|
+
this.dateProvider,
|
|
138
|
+
this.log,
|
|
139
|
+
);
|
|
140
|
+
|
|
100
141
|
this.reconcileFoundTxsLoop = new RunningPromise(
|
|
101
142
|
() => this.reconcileFoundTxsWithPool(),
|
|
102
143
|
this.log,
|
|
103
144
|
this.config.txCollectionReconcileIntervalMs,
|
|
104
145
|
);
|
|
105
146
|
|
|
106
|
-
this.handleTxsFound = (args: Parameters<
|
|
147
|
+
this.handleTxsFound = (args: Parameters<TxPoolV2Events['txs-added']>[0]) => {
|
|
107
148
|
this.foundTxs(args.txs);
|
|
108
149
|
};
|
|
109
150
|
this.txCollectionSink.on('txs-added', this.handleTxsFound);
|
|
110
151
|
|
|
111
|
-
this.handleTxsAddedToPool = (args: Parameters<
|
|
152
|
+
this.handleTxsAddedToPool = (args: Parameters<TxPoolV2Events['txs-added']>[0]) => {
|
|
112
153
|
const { txs, source } = args;
|
|
113
154
|
if (source !== 'tx-collection') {
|
|
114
155
|
this.foundTxs(txs);
|
|
@@ -119,7 +160,10 @@ export class TxCollection {
|
|
|
119
160
|
|
|
120
161
|
/** Starts all collection loops. */
|
|
121
162
|
public start(): Promise<void> {
|
|
163
|
+
this.started = true;
|
|
122
164
|
this.slowCollection.start();
|
|
165
|
+
this.fileStoreSlowCollection.start();
|
|
166
|
+
this.fileStoreFastCollection.start();
|
|
123
167
|
this.reconcileFoundTxsLoop.start();
|
|
124
168
|
|
|
125
169
|
// TODO(palla/txs): Collect mined unproven tx hashes for txs we dont have in the pool and populate missingTxs on startup
|
|
@@ -128,7 +172,14 @@ export class TxCollection {
|
|
|
128
172
|
|
|
129
173
|
/** Stops all activity. */
|
|
130
174
|
public async stop() {
|
|
131
|
-
|
|
175
|
+
this.started = false;
|
|
176
|
+
await Promise.all([
|
|
177
|
+
this.slowCollection.stop(),
|
|
178
|
+
this.fastCollection.stop(),
|
|
179
|
+
this.fileStoreSlowCollection.stop(),
|
|
180
|
+
this.fileStoreFastCollection.stop(),
|
|
181
|
+
this.reconcileFoundTxsLoop.stop(),
|
|
182
|
+
]);
|
|
132
183
|
|
|
133
184
|
this.txPool.removeListener('txs-added', this.handleTxsAddedToPool);
|
|
134
185
|
this.txCollectionSink.removeListener('txs-added', this.handleTxsFound);
|
|
@@ -146,13 +197,31 @@ export class TxCollection {
|
|
|
146
197
|
|
|
147
198
|
/** Starts collecting the given tx hashes for the given L2Block in the slow loop */
|
|
148
199
|
public startCollecting(block: L2Block, txHashes: TxHash[]) {
|
|
149
|
-
|
|
200
|
+
this.slowCollection.startCollecting(block, txHashes);
|
|
201
|
+
|
|
202
|
+
// Delay file store collection to give P2P methods time to find txs first
|
|
203
|
+
if (this.hasFileStoreSources) {
|
|
204
|
+
const context: TxAddContext = { type: 'mined', block };
|
|
205
|
+
const deadline = getProofDeadlineForSlot(block.header.getSlot(), this.constants);
|
|
206
|
+
sleep(this.config.txCollectionFileStoreSlowDelayMs)
|
|
207
|
+
.then(() => {
|
|
208
|
+
if (this.started) {
|
|
209
|
+
// Only queue txs that are still missing after the delay
|
|
210
|
+
const stillMissing = new Set(this.slowCollection.getMissingTxHashes().map(h => h.toString()));
|
|
211
|
+
const remaining = txHashes.filter(h => stillMissing.has(h.toString()));
|
|
212
|
+
if (remaining.length > 0) {
|
|
213
|
+
this.fileStoreSlowCollection.startCollecting(remaining, context, deadline);
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
})
|
|
217
|
+
.catch(err => this.log.error('Error in file store slow delay', err));
|
|
218
|
+
}
|
|
150
219
|
}
|
|
151
220
|
|
|
152
221
|
/** Collects the set of txs for the given block proposal as fast as possible */
|
|
153
222
|
public collectFastForProposal(
|
|
154
223
|
blockProposal: BlockProposal,
|
|
155
|
-
blockNumber:
|
|
224
|
+
blockNumber: BlockNumber,
|
|
156
225
|
txHashes: TxHash[] | string[],
|
|
157
226
|
opts: { deadline: Date; pinnedPeer?: PeerId },
|
|
158
227
|
) {
|
|
@@ -174,31 +243,60 @@ export class TxCollection {
|
|
|
174
243
|
txHashes: TxHash[] | string[],
|
|
175
244
|
opts: { deadline: Date; pinnedPeer?: PeerId },
|
|
176
245
|
) {
|
|
246
|
+
const hashes = txHashes.map(h => (typeof h === 'string' ? TxHash.fromString(h) : h));
|
|
247
|
+
|
|
248
|
+
// Delay file store collection to give P2P methods time to find txs first
|
|
249
|
+
if (this.hasFileStoreSources) {
|
|
250
|
+
const context = this.getAddContextForInput(input);
|
|
251
|
+
sleep(this.config.txCollectionFileStoreFastDelayMs)
|
|
252
|
+
.then(() => {
|
|
253
|
+
if (this.started) {
|
|
254
|
+
this.fileStoreFastCollection.startCollecting(hashes, context, opts.deadline);
|
|
255
|
+
}
|
|
256
|
+
})
|
|
257
|
+
.catch(err => this.log.error('Error in file store fast delay', err));
|
|
258
|
+
}
|
|
259
|
+
|
|
177
260
|
return this.fastCollection.collectFastFor(input, txHashes, opts);
|
|
178
261
|
}
|
|
179
262
|
|
|
263
|
+
/** Returns the TxAddContext for the given fast collection request input */
|
|
264
|
+
private getAddContextForInput(input: FastCollectionRequestInput): TxAddContext {
|
|
265
|
+
if (input.type === 'proposal') {
|
|
266
|
+
return { type: 'proposal', blockHeader: input.blockProposal.blockHeader };
|
|
267
|
+
} else {
|
|
268
|
+
return { type: 'mined', block: input.block };
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
|
|
180
272
|
/** Mark the given txs as found. Stops collecting them. */
|
|
181
273
|
private foundTxs(txs: Tx[]) {
|
|
182
274
|
this.slowCollection.foundTxs(txs);
|
|
183
275
|
this.fastCollection.foundTxs(txs);
|
|
276
|
+
this.fileStoreSlowCollection.foundTxs(txs);
|
|
277
|
+
this.fileStoreFastCollection.foundTxs(txs);
|
|
184
278
|
}
|
|
185
279
|
|
|
186
280
|
/**
|
|
187
281
|
* Stop collecting all txs for blocks less than or requal to the block number specified.
|
|
188
282
|
* To be called when we no longer care about gathering txs up to a certain block, eg when they become proven or finalized.
|
|
189
283
|
*/
|
|
190
|
-
public stopCollectingForBlocksUpTo(blockNumber:
|
|
284
|
+
public stopCollectingForBlocksUpTo(blockNumber: BlockNumber): void {
|
|
191
285
|
this.slowCollection.stopCollectingForBlocksUpTo(blockNumber);
|
|
192
286
|
this.fastCollection.stopCollectingForBlocksUpTo(blockNumber);
|
|
287
|
+
this.fileStoreSlowCollection.clearPending();
|
|
288
|
+
this.fileStoreFastCollection.clearPending();
|
|
193
289
|
}
|
|
194
290
|
|
|
195
291
|
/**
|
|
196
292
|
* Stop collecting all txs for blocks greater than the block number specified.
|
|
197
293
|
* To be called when there is a chain prune and previously mined txs are no longer relevant.
|
|
198
294
|
*/
|
|
199
|
-
public stopCollectingForBlocksAfter(blockNumber:
|
|
295
|
+
public stopCollectingForBlocksAfter(blockNumber: BlockNumber): void {
|
|
200
296
|
this.slowCollection.stopCollectingForBlocksAfter(blockNumber);
|
|
201
297
|
this.fastCollection.stopCollectingForBlocksAfter(blockNumber);
|
|
298
|
+
this.fileStoreSlowCollection.clearPending();
|
|
299
|
+
this.fileStoreFastCollection.clearPending();
|
|
202
300
|
}
|
|
203
301
|
|
|
204
302
|
/** Every now and then, check if the pool has received one of the txs we are looking for, just to catch any race conditions */
|