@aztec/p2p 0.0.1-commit.9d2bcf6d → 0.0.1-commit.9ebd450e8
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/README.md +129 -3
- package/dest/client/factory.d.ts +12 -11
- package/dest/client/factory.d.ts.map +1 -1
- package/dest/client/factory.js +55 -16
- package/dest/client/interface.d.ts +54 -34
- package/dest/client/interface.d.ts.map +1 -1
- package/dest/client/p2p_client.d.ts +41 -52
- package/dest/client/p2p_client.d.ts.map +1 -1
- package/dest/client/p2p_client.js +179 -226
- package/dest/client/test/tx_proposal_collector/proposal_tx_collector_worker.js +24 -11
- package/dest/config.d.ts +133 -92
- package/dest/config.d.ts.map +1 -1
- package/dest/config.js +109 -40
- package/dest/errors/p2p-service.error.d.ts +9 -0
- package/dest/errors/p2p-service.error.d.ts.map +1 -0
- package/dest/errors/p2p-service.error.js +10 -0
- 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 -2
- package/dest/index.d.ts.map +1 -1
- package/dest/index.js +1 -1
- package/dest/mem_pools/attestation_pool/attestation_pool.d.ts +106 -88
- package/dest/mem_pools/attestation_pool/attestation_pool.d.ts.map +1 -1
- package/dest/mem_pools/attestation_pool/attestation_pool.js +448 -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 +353 -87
- 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 +2 -2
- package/dest/mem_pools/attestation_pool/mocks.d.ts.map +1 -1
- package/dest/mem_pools/attestation_pool/mocks.js +2 -2
- package/dest/mem_pools/index.d.ts +3 -3
- 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 +4 -2
- package/dest/mem_pools/instrumentation.d.ts.map +1 -1
- package/dest/mem_pools/instrumentation.js +16 -14
- package/dest/mem_pools/interface.d.ts +5 -5
- package/dest/mem_pools/interface.d.ts.map +1 -1
- 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 +94 -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 +11 -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 +12 -0
- package/dest/mem_pools/tx_pool_v2/eviction/insufficient_fee_per_gas_eviction_rule.d.ts +16 -0
- package/dest/mem_pools/tx_pool_v2/eviction/insufficient_fee_per_gas_eviction_rule.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/eviction/insufficient_fee_per_gas_eviction_rule.js +62 -0
- package/dest/mem_pools/tx_pool_v2/eviction/interfaces.d.ts +180 -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 → tx_pool_v2}/eviction/invalid_txs_after_mining_rule.js +16 -35
- 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 +75 -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 +218 -0
- package/dest/mem_pools/tx_pool_v2/interfaces.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/interfaces.js +10 -0
- package/dest/mem_pools/tx_pool_v2/tx_metadata.d.ts +137 -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 +223 -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 +337 -0
- package/dest/mem_pools/tx_pool_v2/tx_pool_v2.d.ts +62 -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 +167 -0
- package/dest/mem_pools/tx_pool_v2/tx_pool_v2_impl.d.ts +78 -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 +924 -0
- package/dest/msg_validators/attestation_validator/attestation_validator.d.ts +5 -2
- package/dest/msg_validators/attestation_validator/attestation_validator.d.ts.map +1 -1
- package/dest/msg_validators/attestation_validator/attestation_validator.js +20 -11
- package/dest/msg_validators/attestation_validator/fisherman_attestation_validator.d.ts +5 -3
- package/dest/msg_validators/attestation_validator/fisherman_attestation_validator.d.ts.map +1 -1
- package/dest/msg_validators/attestation_validator/fisherman_attestation_validator.js +2 -2
- package/dest/msg_validators/clock_tolerance.d.ts +12 -1
- package/dest/msg_validators/clock_tolerance.d.ts.map +1 -1
- package/dest/msg_validators/clock_tolerance.js +54 -3
- package/dest/msg_validators/proposal_validator/block_proposal_validator.d.ts +7 -4
- package/dest/msg_validators/proposal_validator/block_proposal_validator.d.ts.map +1 -1
- package/dest/msg_validators/proposal_validator/block_proposal_validator.js +10 -2
- package/dest/msg_validators/proposal_validator/checkpoint_proposal_validator.d.ts +7 -4
- package/dest/msg_validators/proposal_validator/checkpoint_proposal_validator.d.ts.map +1 -1
- package/dest/msg_validators/proposal_validator/checkpoint_proposal_validator.js +16 -2
- package/dest/msg_validators/proposal_validator/proposal_validator.d.ts +15 -8
- package/dest/msg_validators/proposal_validator/proposal_validator.d.ts.map +1 -1
- package/dest/msg_validators/proposal_validator/proposal_validator.js +67 -47
- 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 +2 -1
- package/dest/msg_validators/tx_validator/allowed_public_setup.d.ts.map +1 -1
- package/dest/msg_validators/tx_validator/allowed_public_setup.js +24 -20
- package/dest/msg_validators/tx_validator/allowed_setup_helpers.d.ts +17 -0
- package/dest/msg_validators/tx_validator/allowed_setup_helpers.d.ts.map +1 -0
- package/dest/msg_validators/tx_validator/allowed_setup_helpers.js +24 -0
- package/dest/msg_validators/tx_validator/archive_cache.js +1 -1
- package/dest/msg_validators/tx_validator/block_header_validator.d.ts +16 -3
- package/dest/msg_validators/tx_validator/block_header_validator.d.ts.map +1 -1
- package/dest/msg_validators/tx_validator/block_header_validator.js +1 -1
- package/dest/msg_validators/tx_validator/contract_instance_validator.d.ts +9 -0
- package/dest/msg_validators/tx_validator/contract_instance_validator.d.ts.map +1 -0
- package/dest/msg_validators/tx_validator/contract_instance_validator.js +48 -0
- package/dest/msg_validators/tx_validator/data_validator.d.ts +1 -1
- package/dest/msg_validators/tx_validator/data_validator.d.ts.map +1 -1
- package/dest/msg_validators/tx_validator/data_validator.js +35 -2
- package/dest/msg_validators/tx_validator/double_spend_validator.d.ts +13 -3
- package/dest/msg_validators/tx_validator/double_spend_validator.d.ts.map +1 -1
- package/dest/msg_validators/tx_validator/double_spend_validator.js +4 -4
- package/dest/msg_validators/tx_validator/factory.d.ts +133 -6
- package/dest/msg_validators/tx_validator/factory.d.ts.map +1 -1
- package/dest/msg_validators/tx_validator/factory.js +247 -60
- package/dest/msg_validators/tx_validator/fee_payer_balance.d.ts +1 -1
- package/dest/msg_validators/tx_validator/fee_payer_balance.d.ts.map +1 -1
- package/dest/msg_validators/tx_validator/fee_payer_balance.js +6 -2
- package/dest/msg_validators/tx_validator/gas_validator.d.ts +99 -3
- package/dest/msg_validators/tx_validator/gas_validator.d.ts.map +1 -1
- package/dest/msg_validators/tx_validator/gas_validator.js +137 -53
- 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 +1 -1
- package/dest/msg_validators/tx_validator/metadata_validator.d.ts.map +1 -1
- package/dest/msg_validators/tx_validator/metadata_validator.js +4 -4
- 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 +22 -2
- package/dest/msg_validators/tx_validator/phases_validator.d.ts.map +1 -1
- package/dest/msg_validators/tx_validator/phases_validator.js +72 -24
- package/dest/msg_validators/tx_validator/timestamp_validator.d.ts +20 -4
- package/dest/msg_validators/tx_validator/timestamp_validator.d.ts.map +1 -1
- package/dest/msg_validators/tx_validator/timestamp_validator.js +6 -6
- 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 +5 -5
- package/dest/services/dummy_service.d.ts +17 -6
- package/dest/services/dummy_service.d.ts.map +1 -1
- package/dest/services/dummy_service.js +16 -5
- package/dest/services/encoding.d.ts +7 -3
- package/dest/services/encoding.d.ts.map +1 -1
- package/dest/services/encoding.js +18 -11
- 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 +184 -0
- package/dest/services/gossipsub/topic_score_params.d.ts.map +1 -0
- package/dest/services/gossipsub/topic_score_params.js +363 -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 +14 -0
- package/dest/services/libp2p/libp2p_service.d.ts +95 -51
- package/dest/services/libp2p/libp2p_service.d.ts.map +1 -1
- package/dest/services/libp2p/libp2p_service.js +566 -442
- package/dest/services/peer-manager/metrics.d.ts +3 -1
- package/dest/services/peer-manager/metrics.d.ts.map +1 -1
- package/dest/services/peer-manager/metrics.js +6 -0
- package/dest/services/peer-manager/peer_manager.d.ts +6 -2
- package/dest/services/peer-manager/peer_manager.d.ts.map +1 -1
- package/dest/services/peer-manager/peer_manager.js +39 -11
- 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 +57 -12
- package/dest/services/reqresp/batch-tx-requester/batch_tx_requester.d.ts +14 -10
- package/dest/services/reqresp/batch-tx-requester/batch_tx_requester.d.ts.map +1 -1
- package/dest/services/reqresp/batch-tx-requester/batch_tx_requester.js +89 -112
- package/dest/services/reqresp/batch-tx-requester/interface.d.ts +4 -7
- package/dest/services/reqresp/batch-tx-requester/interface.d.ts.map +1 -1
- package/dest/services/reqresp/batch-tx-requester/missing_txs.d.ts +11 -13
- package/dest/services/reqresp/batch-tx-requester/missing_txs.d.ts.map +1 -1
- package/dest/services/reqresp/batch-tx-requester/missing_txs.js +31 -46
- package/dest/services/reqresp/batch-tx-requester/peer_collection.d.ts +19 -11
- package/dest/services/reqresp/batch-tx-requester/peer_collection.d.ts.map +1 -1
- package/dest/services/reqresp/batch-tx-requester/peer_collection.js +52 -15
- package/dest/services/reqresp/batch-tx-requester/tx_validator.js +2 -2
- package/dest/services/reqresp/config.d.ts +3 -3
- package/dest/services/reqresp/config.d.ts.map +1 -1
- package/dest/services/reqresp/interface.d.ts +23 -9
- package/dest/services/reqresp/interface.d.ts.map +1 -1
- package/dest/services/reqresp/interface.js +23 -10
- package/dest/services/reqresp/metrics.d.ts +1 -1
- package/dest/services/reqresp/metrics.d.ts.map +1 -1
- package/dest/services/reqresp/metrics.js +0 -1
- 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 +16 -11
- package/dest/services/reqresp/protocols/block_txs/block_txs_reqresp.d.ts +21 -10
- 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 +27 -11
- package/dest/services/reqresp/protocols/index.d.ts +1 -2
- package/dest/services/reqresp/protocols/index.d.ts.map +1 -1
- package/dest/services/reqresp/protocols/index.js +0 -1
- package/dest/services/reqresp/protocols/tx.d.ts +7 -1
- package/dest/services/reqresp/protocols/tx.d.ts.map +1 -1
- package/dest/services/reqresp/protocols/tx.js +21 -3
- package/dest/services/reqresp/rate-limiter/rate_limiter.d.ts +5 -4
- package/dest/services/reqresp/rate-limiter/rate_limiter.d.ts.map +1 -1
- package/dest/services/reqresp/rate-limiter/rate_limiter.js +10 -8
- package/dest/services/reqresp/rate-limiter/rate_limits.d.ts +1 -1
- package/dest/services/reqresp/rate-limiter/rate_limits.d.ts.map +1 -1
- package/dest/services/reqresp/rate-limiter/rate_limits.js +0 -10
- package/dest/services/reqresp/reqresp.d.ts +4 -2
- package/dest/services/reqresp/reqresp.d.ts.map +1 -1
- package/dest/services/reqresp/reqresp.js +40 -15
- package/dest/services/service.d.ts +43 -4
- package/dest/services/service.d.ts.map +1 -1
- package/dest/services/tx_collection/config.d.ts +22 -4
- package/dest/services/tx_collection/config.d.ts.map +1 -1
- package/dest/services/tx_collection/config.js +49 -3
- package/dest/services/tx_collection/fast_tx_collection.d.ts +6 -8
- package/dest/services/tx_collection/fast_tx_collection.d.ts.map +1 -1
- package/dest/services/tx_collection/fast_tx_collection.js +88 -88
- 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 +38 -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 +100 -0
- package/dest/services/tx_collection/index.d.ts +3 -2
- package/dest/services/tx_collection/index.d.ts.map +1 -1
- package/dest/services/tx_collection/index.js +1 -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 +2 -1
- package/dest/services/tx_collection/proposal_tx_collector.d.ts +15 -15
- package/dest/services/tx_collection/proposal_tx_collector.d.ts.map +1 -1
- package/dest/services/tx_collection/proposal_tx_collector.js +6 -6
- package/dest/services/tx_collection/request_tracker.d.ts +53 -0
- package/dest/services/tx_collection/request_tracker.d.ts.map +1 -0
- package/dest/services/tx_collection/request_tracker.js +84 -0
- package/dest/services/tx_collection/slow_tx_collection.d.ts +7 -3
- package/dest/services/tx_collection/slow_tx_collection.d.ts.map +1 -1
- package/dest/services/tx_collection/slow_tx_collection.js +60 -26
- package/dest/services/tx_collection/tx_collection.d.ts +23 -13
- package/dest/services/tx_collection/tx_collection.d.ts.map +1 -1
- package/dest/services/tx_collection/tx_collection.js +75 -3
- package/dest/services/tx_collection/tx_collection_sink.d.ts +18 -8
- 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 +13 -7
- package/dest/services/tx_collection/tx_source.d.ts.map +1 -1
- package/dest/services/tx_collection/tx_source.js +26 -7
- package/dest/services/tx_file_store/config.d.ts +1 -3
- package/dest/services/tx_file_store/config.d.ts.map +1 -1
- package/dest/services/tx_file_store/config.js +0 -4
- package/dest/services/tx_file_store/tx_file_store.d.ts +4 -3
- package/dest/services/tx_file_store/tx_file_store.d.ts.map +1 -1
- package/dest/services/tx_file_store/tx_file_store.js +9 -6
- package/dest/services/tx_provider.d.ts +4 -4
- package/dest/services/tx_provider.d.ts.map +1 -1
- package/dest/services/tx_provider.js +9 -8
- 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 +4 -2
- package/dest/test-helpers/mock-pubsub.d.ts +40 -6
- package/dest/test-helpers/mock-pubsub.d.ts.map +1 -1
- package/dest/test-helpers/mock-pubsub.js +139 -13
- 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 +8 -5
- package/dest/test-helpers/testbench-utils.d.ts +43 -38
- package/dest/test-helpers/testbench-utils.d.ts.map +1 -1
- package/dest/test-helpers/testbench-utils.js +150 -61
- package/dest/testbench/p2p_client_testbench_worker.d.ts +2 -2
- package/dest/testbench/p2p_client_testbench_worker.d.ts.map +1 -1
- package/dest/testbench/p2p_client_testbench_worker.js +85 -28
- package/dest/testbench/worker_client_manager.d.ts +10 -1
- package/dest/testbench/worker_client_manager.d.ts.map +1 -1
- package/dest/testbench/worker_client_manager.js +55 -3
- package/dest/util.d.ts +3 -3
- package/dest/util.d.ts.map +1 -1
- package/package.json +14 -14
- package/src/client/factory.ts +110 -29
- package/src/client/interface.ts +65 -35
- package/src/client/p2p_client.ts +216 -272
- package/src/client/test/tx_proposal_collector/proposal_tx_collector_worker.ts +36 -15
- package/src/config.ts +172 -46
- package/src/errors/p2p-service.error.ts +11 -0
- package/src/errors/tx-pool.error.ts +12 -0
- package/src/index.ts +1 -1
- package/src/mem_pools/attestation_pool/attestation_pool.ts +501 -91
- package/src/mem_pools/attestation_pool/attestation_pool_test_suite.ts +442 -102
- package/src/mem_pools/attestation_pool/index.ts +9 -2
- package/src/mem_pools/attestation_pool/mocks.ts +2 -1
- package/src/mem_pools/index.ts +2 -2
- package/src/mem_pools/instrumentation.ts +17 -13
- package/src/mem_pools/interface.ts +4 -4
- package/src/mem_pools/tx_pool_v2/README.md +283 -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 +122 -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 +28 -0
- package/src/mem_pools/tx_pool_v2/eviction/insufficient_fee_per_gas_eviction_rule.ts +65 -0
- package/src/mem_pools/tx_pool_v2/eviction/interfaces.ts +219 -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 +99 -0
- package/src/mem_pools/tx_pool_v2/eviction/nullifier_conflict_rule.ts +32 -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 +250 -0
- package/src/mem_pools/tx_pool_v2/tx_metadata.ts +349 -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 +430 -0
- package/src/mem_pools/tx_pool_v2/tx_pool_v2.ts +238 -0
- package/src/mem_pools/tx_pool_v2/tx_pool_v2_impl.ts +1107 -0
- package/src/msg_validators/attestation_validator/README.md +49 -0
- package/src/msg_validators/attestation_validator/attestation_validator.ts +21 -9
- package/src/msg_validators/attestation_validator/fisherman_attestation_validator.ts +6 -3
- package/src/msg_validators/clock_tolerance.ts +72 -3
- package/src/msg_validators/proposal_validator/README.md +123 -0
- package/src/msg_validators/proposal_validator/block_proposal_validator.ts +17 -4
- package/src/msg_validators/proposal_validator/checkpoint_proposal_validator.ts +23 -7
- package/src/msg_validators/proposal_validator/proposal_validator.ts +79 -49
- package/src/msg_validators/tx_validator/README.md +127 -0
- package/src/msg_validators/tx_validator/aggregate_tx_validator.ts +5 -5
- package/src/msg_validators/tx_validator/allowed_public_setup.ts +22 -27
- package/src/msg_validators/tx_validator/allowed_setup_helpers.ts +31 -0
- package/src/msg_validators/tx_validator/archive_cache.ts +1 -1
- package/src/msg_validators/tx_validator/block_header_validator.ts +15 -3
- package/src/msg_validators/tx_validator/contract_instance_validator.ts +56 -0
- package/src/msg_validators/tx_validator/data_validator.ts +42 -1
- package/src/msg_validators/tx_validator/double_spend_validator.ts +11 -6
- package/src/msg_validators/tx_validator/factory.ts +396 -78
- package/src/msg_validators/tx_validator/fee_payer_balance.ts +6 -2
- package/src/msg_validators/tx_validator/gas_validator.ts +199 -54
- package/src/msg_validators/tx_validator/index.ts +2 -0
- package/src/msg_validators/tx_validator/metadata_validator.ts +12 -4
- package/src/msg_validators/tx_validator/nullifier_cache.ts +30 -0
- package/src/msg_validators/tx_validator/phases_validator.ts +82 -27
- package/src/msg_validators/tx_validator/timestamp_validator.ts +23 -18
- package/src/services/data_store.ts +5 -13
- package/src/services/dummy_service.ts +25 -7
- package/src/services/encoding.ts +18 -10
- 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 +519 -0
- package/src/services/libp2p/instrumentation.ts +14 -0
- package/src/services/libp2p/libp2p_service.ts +593 -477
- package/src/services/peer-manager/metrics.ts +7 -0
- package/src/services/peer-manager/peer_manager.ts +45 -11
- package/src/services/peer-manager/peer_scoring.ts +52 -5
- package/src/services/reqresp/README.md +229 -0
- package/src/services/reqresp/batch-tx-requester/README.md +53 -14
- package/src/services/reqresp/batch-tx-requester/batch_tx_requester.ts +89 -122
- package/src/services/reqresp/batch-tx-requester/interface.ts +3 -6
- package/src/services/reqresp/batch-tx-requester/missing_txs.ts +30 -71
- package/src/services/reqresp/batch-tx-requester/peer_collection.ts +68 -24
- package/src/services/reqresp/batch-tx-requester/tx_validator.ts +2 -2
- package/src/services/reqresp/config.ts +2 -2
- package/src/services/reqresp/interface.ts +45 -10
- package/src/services/reqresp/metrics.ts +0 -1
- package/src/services/reqresp/protocols/block_txs/block_txs_handler.ts +23 -14
- package/src/services/reqresp/protocols/block_txs/block_txs_reqresp.ts +38 -15
- package/src/services/reqresp/protocols/index.ts +0 -1
- package/src/services/reqresp/protocols/tx.ts +23 -3
- package/src/services/reqresp/rate-limiter/rate_limiter.ts +13 -9
- package/src/services/reqresp/rate-limiter/rate_limits.ts +0 -10
- package/src/services/reqresp/reqresp.ts +53 -16
- package/src/services/service.ts +57 -3
- package/src/services/tx_collection/config.ts +74 -6
- package/src/services/tx_collection/fast_tx_collection.ts +94 -97
- package/src/services/tx_collection/file_store_tx_collection.ts +202 -0
- package/src/services/tx_collection/file_store_tx_source.ts +129 -0
- package/src/services/tx_collection/index.ts +2 -1
- package/src/services/tx_collection/instrumentation.ts +7 -1
- package/src/services/tx_collection/proposal_tx_collector.ts +21 -27
- package/src/services/tx_collection/request_tracker.ts +127 -0
- package/src/services/tx_collection/slow_tx_collection.ts +66 -33
- package/src/services/tx_collection/tx_collection.ts +114 -19
- package/src/services/tx_collection/tx_collection_sink.ts +30 -34
- package/src/services/tx_collection/tx_source.ts +28 -8
- package/src/services/tx_file_store/config.ts +0 -6
- package/src/services/tx_file_store/tx_file_store.ts +10 -8
- package/src/services/tx_provider.ts +10 -9
- package/src/test-helpers/make-test-p2p-clients.ts +6 -6
- package/src/test-helpers/mock-pubsub.ts +180 -14
- package/src/test-helpers/reqresp-nodes.ts +9 -9
- package/src/test-helpers/testbench-utils.ts +157 -74
- package/src/testbench/p2p_client_testbench_worker.ts +94 -31
- package/src/testbench/worker_client_manager.ts +68 -6
- package/src/util.ts +8 -2
- package/dest/mem_pools/attestation_pool/kv_attestation_pool.d.ts +0 -40
- 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 -218
- package/dest/mem_pools/attestation_pool/memory_attestation_pool.d.ts +0 -31
- 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 -180
- package/dest/mem_pools/tx_pool/aztec_kv_tx_pool.d.ts +0 -125
- package/dest/mem_pools/tx_pool/aztec_kv_tx_pool.d.ts.map +0 -1
- package/dest/mem_pools/tx_pool/aztec_kv_tx_pool.js +0 -596
- package/dest/mem_pools/tx_pool/eviction/eviction_manager.d.ts +0 -32
- package/dest/mem_pools/tx_pool/eviction/eviction_manager.d.ts.map +0 -1
- package/dest/mem_pools/tx_pool/eviction/eviction_manager.js +0 -112
- package/dest/mem_pools/tx_pool/eviction/eviction_strategy.d.ts +0 -157
- package/dest/mem_pools/tx_pool/eviction/eviction_strategy.d.ts.map +0 -1
- package/dest/mem_pools/tx_pool/eviction/eviction_strategy.js +0 -52
- package/dest/mem_pools/tx_pool/eviction/fee_payer_balance_eviction_rule.d.ts +0 -16
- package/dest/mem_pools/tx_pool/eviction/fee_payer_balance_eviction_rule.d.ts.map +0 -1
- package/dest/mem_pools/tx_pool/eviction/fee_payer_balance_eviction_rule.js +0 -122
- package/dest/mem_pools/tx_pool/eviction/invalid_txs_after_mining_rule.d.ts +0 -17
- package/dest/mem_pools/tx_pool/eviction/invalid_txs_after_mining_rule.d.ts.map +0 -1
- package/dest/mem_pools/tx_pool/eviction/invalid_txs_after_reorg_rule.d.ts +0 -19
- package/dest/mem_pools/tx_pool/eviction/invalid_txs_after_reorg_rule.d.ts.map +0 -1
- package/dest/mem_pools/tx_pool/eviction/invalid_txs_after_reorg_rule.js +0 -78
- package/dest/mem_pools/tx_pool/eviction/low_priority_eviction_rule.d.ts +0 -26
- package/dest/mem_pools/tx_pool/eviction/low_priority_eviction_rule.d.ts.map +0 -1
- package/dest/mem_pools/tx_pool/eviction/low_priority_eviction_rule.js +0 -84
- package/dest/mem_pools/tx_pool/eviction/nullifier_conflict_pre_add_rule.d.ts +0 -25
- package/dest/mem_pools/tx_pool/eviction/nullifier_conflict_pre_add_rule.d.ts.map +0 -1
- package/dest/mem_pools/tx_pool/eviction/nullifier_conflict_pre_add_rule.js +0 -57
- package/dest/mem_pools/tx_pool/index.d.ts +0 -3
- package/dest/mem_pools/tx_pool/index.d.ts.map +0 -1
- package/dest/mem_pools/tx_pool/index.js +0 -2
- package/dest/mem_pools/tx_pool/priority.d.ts +0 -12
- package/dest/mem_pools/tx_pool/priority.d.ts.map +0 -1
- package/dest/mem_pools/tx_pool/priority.js +0 -15
- package/dest/mem_pools/tx_pool/tx_pool.d.ts +0 -127
- package/dest/mem_pools/tx_pool/tx_pool.d.ts.map +0 -1
- package/dest/mem_pools/tx_pool/tx_pool.js +0 -3
- package/dest/mem_pools/tx_pool/tx_pool_test_suite.d.ts +0 -7
- package/dest/mem_pools/tx_pool/tx_pool_test_suite.d.ts.map +0 -1
- package/dest/mem_pools/tx_pool/tx_pool_test_suite.js +0 -400
- package/dest/msg_validators/proposal_validator/proposal_validator_test_suite.d.ts +0 -23
- package/dest/msg_validators/proposal_validator/proposal_validator_test_suite.d.ts.map +0 -1
- package/dest/msg_validators/proposal_validator/proposal_validator_test_suite.js +0 -212
- package/dest/services/reqresp/protocols/block.d.ts +0 -9
- package/dest/services/reqresp/protocols/block.d.ts.map +0 -1
- package/dest/services/reqresp/protocols/block.js +0 -32
- package/src/mem_pools/attestation_pool/kv_attestation_pool.ts +0 -320
- package/src/mem_pools/attestation_pool/memory_attestation_pool.ts +0 -264
- package/src/mem_pools/tx_pool/README.md +0 -270
- package/src/mem_pools/tx_pool/aztec_kv_tx_pool.ts +0 -746
- package/src/mem_pools/tx_pool/eviction/eviction_manager.ts +0 -132
- package/src/mem_pools/tx_pool/eviction/eviction_strategy.ts +0 -208
- package/src/mem_pools/tx_pool/eviction/fee_payer_balance_eviction_rule.ts +0 -162
- package/src/mem_pools/tx_pool/eviction/invalid_txs_after_mining_rule.ts +0 -104
- package/src/mem_pools/tx_pool/eviction/invalid_txs_after_reorg_rule.ts +0 -93
- package/src/mem_pools/tx_pool/eviction/low_priority_eviction_rule.ts +0 -106
- package/src/mem_pools/tx_pool/eviction/nullifier_conflict_pre_add_rule.ts +0 -75
- package/src/mem_pools/tx_pool/index.ts +0 -2
- package/src/mem_pools/tx_pool/priority.ts +0 -20
- package/src/mem_pools/tx_pool/tx_pool.ts +0 -141
- package/src/mem_pools/tx_pool/tx_pool_test_suite.ts +0 -319
- package/src/msg_validators/proposal_validator/proposal_validator_test_suite.ts +0 -230
- package/src/services/reqresp/protocols/block.ts +0 -37
|
@@ -371,18 +371,16 @@ function _apply_decs_2203_r(targetClass, memberDecs, classDecs, parentClass) {
|
|
|
371
371
|
return (_apply_decs_2203_r = applyDecs2203RFactory())(targetClass, memberDecs, classDecs, parentClass);
|
|
372
372
|
}
|
|
373
373
|
var _dec, _dec1, _initProto;
|
|
374
|
-
import {
|
|
375
|
-
import { BlockNumber, SlotNumber } from '@aztec/foundation/branded-types';
|
|
374
|
+
import { BlockNumber, CheckpointNumber, SlotNumber } from '@aztec/foundation/branded-types';
|
|
376
375
|
import { createLogger } from '@aztec/foundation/log';
|
|
376
|
+
import { RunningPromise } from '@aztec/foundation/promise';
|
|
377
377
|
import { DateProvider } from '@aztec/foundation/timer';
|
|
378
378
|
import { L2TipsKVStore } from '@aztec/kv-store/stores';
|
|
379
|
-
import { L2BlockStream } from '@aztec/stdlib/block';
|
|
380
|
-
import { getTimestampForSlot } from '@aztec/stdlib/epoch-helpers';
|
|
379
|
+
import { GENESIS_BLOCK_HEADER_HASH, L2BlockStream } from '@aztec/stdlib/block';
|
|
381
380
|
import { tryStop } from '@aztec/stdlib/interfaces/server';
|
|
382
381
|
import { Attributes, WithTracer, getTelemetryClient, trackSpan } from '@aztec/telemetry-client';
|
|
383
382
|
import { getP2PDefaultConfig } from '../config.js';
|
|
384
|
-
import {
|
|
385
|
-
import { chunkTxHashesRequest } from '../services/reqresp/protocols/tx.js';
|
|
383
|
+
import { TxPoolError } from '../errors/tx-pool.error.js';
|
|
386
384
|
import { TxProvider } from '../services/tx_provider.js';
|
|
387
385
|
import { P2PClientState } from './interface.js';
|
|
388
386
|
_dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
@@ -402,6 +400,7 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
402
400
|
p2pService;
|
|
403
401
|
txCollection;
|
|
404
402
|
txFileStore;
|
|
403
|
+
epochCache;
|
|
405
404
|
_dateProvider;
|
|
406
405
|
telemetry;
|
|
407
406
|
log;
|
|
@@ -434,15 +433,10 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
434
433
|
blockStream;
|
|
435
434
|
txProvider;
|
|
436
435
|
validatorAddresses;
|
|
437
|
-
/**
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
* @param txPool - The client's instance of a transaction pool. Defaults to in-memory implementation.
|
|
442
|
-
* @param p2pService - The concrete instance of p2p networking to use.
|
|
443
|
-
* @param log - A logger.
|
|
444
|
-
*/ constructor(_clientType, store, l2BlockSource, mempools, p2pService, txCollection, txFileStore, config = {}, _dateProvider = new DateProvider(), telemetry = getTelemetryClient(), log = createLogger('p2p')){
|
|
445
|
-
super(telemetry, 'P2PClient'), this.store = store, this.l2BlockSource = l2BlockSource, this.p2pService = p2pService, this.txCollection = txCollection, this.txFileStore = txFileStore, this._dateProvider = _dateProvider, this.telemetry = telemetry, this.log = log, this.currentState = (_initProto(this), P2PClientState.IDLE), this.syncPromise = Promise.resolve(), this.syncResolve = undefined, this.latestBlockNumberAtStart = -1, this.provenBlockNumberAtStart = -1, this.finalizedBlockNumberAtStart = -1, this.validatorAddresses = [];
|
|
436
|
+
/** Tracks the last slot for which we called prepareForSlot */ lastSlotProcessed;
|
|
437
|
+
/** Polls for slot changes and calls prepareForSlot on the tx pool */ slotMonitor;
|
|
438
|
+
constructor(store, l2BlockSource, mempools, p2pService, txCollection, txFileStore, epochCache, config = {}, _dateProvider = new DateProvider(), telemetry = getTelemetryClient(), log = createLogger('p2p')){
|
|
439
|
+
super(telemetry, 'P2PClient'), this.store = store, this.l2BlockSource = l2BlockSource, this.p2pService = p2pService, this.txCollection = txCollection, this.txFileStore = txFileStore, this.epochCache = epochCache, this._dateProvider = _dateProvider, this.telemetry = telemetry, this.log = log, this.currentState = (_initProto(this), P2PClientState.IDLE), this.syncPromise = Promise.resolve(), this.syncResolve = undefined, this.latestBlockNumberAtStart = -1, this.provenBlockNumberAtStart = -1, this.finalizedBlockNumberAtStart = -1, this.validatorAddresses = [], this.lastSlotProcessed = SlotNumber.ZERO;
|
|
446
440
|
this.config = {
|
|
447
441
|
...getP2PDefaultConfig(),
|
|
448
442
|
...config
|
|
@@ -450,29 +444,6 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
450
444
|
this.txPool = mempools.txPool;
|
|
451
445
|
this.attestationPool = mempools.attestationPool;
|
|
452
446
|
this.txProvider = new TxProvider(this.txCollection, this.txPool, this, this.log.createChild('tx-provider'), this.telemetry);
|
|
453
|
-
// Default to collecting all txs when we see a valid proposal
|
|
454
|
-
// This can be overridden by the validator client to validate, and it will call getTxsForBlockProposal on its own
|
|
455
|
-
// Note: Validators do NOT attest to individual blocks - attestations are only for checkpoint proposals.
|
|
456
|
-
// TODO(palla/txs): We should not trigger a request for txs on a proposal before fully validating it. We need to bring
|
|
457
|
-
// validator-client code into here so we can validate a proposal is reasonable.
|
|
458
|
-
this.registerBlockProposalHandler(async (block, sender)=>{
|
|
459
|
-
this.log.debug(`Received block proposal from ${sender.toString()}`);
|
|
460
|
-
// TODO(palla/txs): Need to subtract validatorReexecuteDeadlineMs from this deadline (see ValidatorClient.getReexecutionDeadline)
|
|
461
|
-
const constants = this.txCollection.getConstants();
|
|
462
|
-
const nextSlotTimestampSeconds = Number(getTimestampForSlot(SlotNumber(block.slotNumber + 1), constants));
|
|
463
|
-
const deadline = new Date(nextSlotTimestampSeconds * 1000);
|
|
464
|
-
const parentBlock = await this.l2BlockSource.getBlockHeaderByArchive(block.blockHeader.lastArchive.root);
|
|
465
|
-
if (!parentBlock) {
|
|
466
|
-
this.log.debug(`Cannot collect txs for proposal as parent block not found`);
|
|
467
|
-
return false;
|
|
468
|
-
}
|
|
469
|
-
const blockNumber = BlockNumber(parentBlock.getBlockNumber() + 1);
|
|
470
|
-
await this.txProvider.getTxsForBlockProposal(block, blockNumber, {
|
|
471
|
-
pinnedPeer: sender,
|
|
472
|
-
deadline
|
|
473
|
-
});
|
|
474
|
-
return true;
|
|
475
|
-
});
|
|
476
447
|
this.l2Tips = new L2TipsKVStore(store, 'p2p_client');
|
|
477
448
|
this.synchedLatestSlot = store.openSingleton('p2p_pool_last_l2_slot');
|
|
478
449
|
}
|
|
@@ -494,13 +465,15 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
494
465
|
getPeers(includePending) {
|
|
495
466
|
return Promise.resolve(this.p2pService.getPeers(includePending));
|
|
496
467
|
}
|
|
468
|
+
getGossipMeshPeerCount(topicType) {
|
|
469
|
+
return Promise.resolve(this.p2pService.getGossipMeshPeerCount(topicType));
|
|
470
|
+
}
|
|
497
471
|
getL2BlockHash(number) {
|
|
498
472
|
return this.l2Tips.getL2BlockHash(number);
|
|
499
473
|
}
|
|
500
|
-
updateP2PConfig(config) {
|
|
501
|
-
this.txPool.updateConfig(config);
|
|
474
|
+
async updateP2PConfig(config) {
|
|
475
|
+
await this.txPool.updateConfig(config);
|
|
502
476
|
this.p2pService.updateConfig(config);
|
|
503
|
-
return Promise.resolve();
|
|
504
477
|
}
|
|
505
478
|
getL2Tips() {
|
|
506
479
|
return this.l2Tips.getL2Tips();
|
|
@@ -527,7 +500,7 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
527
500
|
break;
|
|
528
501
|
case 'chain-pruned':
|
|
529
502
|
this.txCollection.stopCollectingForBlocksAfter(event.block.number);
|
|
530
|
-
await this.handlePruneL2Blocks(event.block.
|
|
503
|
+
await this.handlePruneL2Blocks(event.block, event.checkpoint);
|
|
531
504
|
break;
|
|
532
505
|
case 'chain-checkpointed':
|
|
533
506
|
break;
|
|
@@ -542,7 +515,6 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
542
515
|
await this.startServiceIfSynched();
|
|
543
516
|
}
|
|
544
517
|
#assertIsReady() {
|
|
545
|
-
// this.log.info('Checking if p2p client is ready, current state: ', this.currentState);
|
|
546
518
|
if (!this.isReady()) {
|
|
547
519
|
throw new Error('P2P client not ready');
|
|
548
520
|
}
|
|
@@ -557,6 +529,8 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
557
529
|
if (this.currentState !== P2PClientState.IDLE) {
|
|
558
530
|
return this.syncPromise;
|
|
559
531
|
}
|
|
532
|
+
// Start the tx pool first, as it needs to hydrate state from persistence
|
|
533
|
+
await this.txPool.start();
|
|
560
534
|
// get the current latest block numbers
|
|
561
535
|
const latestBlockNumbers = await this.l2BlockSource.getL2Tips();
|
|
562
536
|
this.latestBlockNumberAtStart = latestBlockNumbers.proposed.number;
|
|
@@ -597,9 +571,16 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
597
571
|
syncedFinalizedBlock
|
|
598
572
|
});
|
|
599
573
|
}
|
|
574
|
+
// Should never happen: all branches above call initBlockStream()
|
|
575
|
+
if (!this.blockStream) {
|
|
576
|
+
throw new Error('Block stream not initialized');
|
|
577
|
+
}
|
|
600
578
|
this.blockStream.start();
|
|
601
579
|
await this.txCollection.start();
|
|
602
580
|
this.txFileStore?.start();
|
|
581
|
+
// Start slot monitor to call prepareForSlot when the slot changes
|
|
582
|
+
this.slotMonitor = new RunningPromise(()=>this.maybeCallPrepareForSlot(), this.log, this.config.slotCheckIntervalMS);
|
|
583
|
+
this.slotMonitor.start();
|
|
603
584
|
return this.syncPromise;
|
|
604
585
|
}
|
|
605
586
|
addReqRespSubProtocol(subProtocol, handler, validator) {
|
|
@@ -620,6 +601,8 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
620
601
|
* 'ready' will now return 'false' and the running promise that keeps the client synced is interrupted.
|
|
621
602
|
*/ async stop() {
|
|
622
603
|
this.log.debug('Stopping p2p client...');
|
|
604
|
+
await this.slotMonitor?.stop();
|
|
605
|
+
this.log.debug('Stopped slot monitor');
|
|
623
606
|
await tryStop(this.txCollection);
|
|
624
607
|
this.log.debug('Stopped tx collection service');
|
|
625
608
|
await this.txFileStore?.stop();
|
|
@@ -628,18 +611,35 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
628
611
|
this.log.debug('Stopped p2p service');
|
|
629
612
|
await this.blockStream?.stop();
|
|
630
613
|
this.log.debug('Stopped block downloader');
|
|
614
|
+
await this.txPool.stop();
|
|
615
|
+
this.log.debug('Stopped tx pool');
|
|
631
616
|
await this.runningPromise;
|
|
632
617
|
this.setCurrentState(P2PClientState.STOPPED);
|
|
633
618
|
this.log.info('P2P client stopped');
|
|
634
619
|
}
|
|
635
620
|
/** Triggers a sync to the archiver. Used for testing. */ async sync() {
|
|
636
621
|
this.initBlockStream();
|
|
622
|
+
// Should never happen: initBlockStream() creates blockStream if absent
|
|
623
|
+
if (!this.blockStream) {
|
|
624
|
+
throw new Error('Block stream not initialized');
|
|
625
|
+
}
|
|
637
626
|
await this.blockStream.sync();
|
|
638
627
|
}
|
|
639
628
|
async broadcastProposal(proposal) {
|
|
640
629
|
this.log.verbose(`Broadcasting proposal for slot ${proposal.slotNumber} to peers`);
|
|
641
630
|
// Store our own proposal so we can respond to req/resp requests for it
|
|
642
|
-
await this.attestationPool.
|
|
631
|
+
const { count } = await this.attestationPool.tryAddBlockProposal(proposal);
|
|
632
|
+
if (count > 1) {
|
|
633
|
+
if (this.config.broadcastEquivocatedProposals) {
|
|
634
|
+
this.log.warn(`Broadcasting equivocated block proposal for slot ${proposal.slotNumber}`, {
|
|
635
|
+
slot: proposal.slotNumber,
|
|
636
|
+
archive: proposal.archive.toString(),
|
|
637
|
+
count
|
|
638
|
+
});
|
|
639
|
+
} else {
|
|
640
|
+
throw new Error(`Attempted to broadcast a duplicate block proposal for slot ${proposal.slotNumber}`);
|
|
641
|
+
}
|
|
642
|
+
}
|
|
643
643
|
return this.p2pService.propagate(proposal);
|
|
644
644
|
}
|
|
645
645
|
async broadcastCheckpointProposal(proposal) {
|
|
@@ -647,8 +647,10 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
647
647
|
const blockProposal = proposal.getBlockProposal();
|
|
648
648
|
if (blockProposal) {
|
|
649
649
|
// Store our own last-block proposal so we can respond to req/resp requests for it.
|
|
650
|
-
await this.attestationPool.
|
|
650
|
+
await this.attestationPool.tryAddBlockProposal(blockProposal);
|
|
651
651
|
}
|
|
652
|
+
// Gossipsub doesn't deliver own messages, so fire the all-nodes handler locally
|
|
653
|
+
await this.p2pService.notifyOwnCheckpointProposal(proposal.toCore());
|
|
652
654
|
return this.p2pService.propagate(proposal);
|
|
653
655
|
}
|
|
654
656
|
async broadcastCheckpointAttestations(attestations) {
|
|
@@ -658,94 +660,65 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
658
660
|
async getCheckpointAttestationsForSlot(slot, proposalId) {
|
|
659
661
|
return await (proposalId ? this.attestationPool.getCheckpointAttestationsForSlotAndProposal(slot, proposalId) : this.attestationPool.getCheckpointAttestationsForSlot(slot));
|
|
660
662
|
}
|
|
661
|
-
|
|
662
|
-
return this.attestationPool.
|
|
663
|
+
addOwnCheckpointAttestations(attestations) {
|
|
664
|
+
return this.attestationPool.addOwnCheckpointAttestations(attestations);
|
|
665
|
+
}
|
|
666
|
+
hasBlockProposalsForSlot(slot) {
|
|
667
|
+
return this.attestationPool.hasBlockProposalsForSlot(slot);
|
|
663
668
|
}
|
|
664
669
|
// REVIEW: https://github.com/AztecProtocol/aztec-packages/issues/7963
|
|
665
670
|
// ^ This pattern is not my favorite (md)
|
|
666
671
|
registerBlockProposalHandler(handler) {
|
|
667
672
|
this.p2pService.registerBlockReceivedCallback(handler);
|
|
668
673
|
}
|
|
669
|
-
|
|
670
|
-
this.p2pService.
|
|
671
|
-
}
|
|
672
|
-
/**
|
|
673
|
-
* Uses the batched Request Response protocol to request a set of transactions from the network.
|
|
674
|
-
*/ async requestTxsByHash(txHashes, pinnedPeerId) {
|
|
675
|
-
const timeoutMs = 8000; // Longer timeout for now
|
|
676
|
-
const maxRetryAttempts = 10; // Keep retrying within the timeout
|
|
677
|
-
const requests = chunkTxHashesRequest(txHashes);
|
|
678
|
-
const maxPeers = Math.min(Math.ceil(requests.length / 3), 10);
|
|
679
|
-
const txBatches = await this.p2pService.sendBatchRequest(ReqRespSubProtocol.TX, requests, pinnedPeerId, timeoutMs, maxPeers, maxRetryAttempts);
|
|
680
|
-
const txs = txBatches.flat();
|
|
681
|
-
if (txs.length > 0) {
|
|
682
|
-
await this.txPool.addTxs(txs);
|
|
683
|
-
}
|
|
684
|
-
const txHashesStr = txHashes.map((tx)=>tx.toString()).join(', ');
|
|
685
|
-
this.log.debug(`Requested txs ${txHashesStr} (${txs.length} / ${txHashes.length}) from peers`);
|
|
686
|
-
// We return all transactions, even the not found ones to the caller, such they can handle missing items themselves.
|
|
687
|
-
return txs;
|
|
674
|
+
registerValidatorCheckpointProposalHandler(handler) {
|
|
675
|
+
this.p2pService.registerValidatorCheckpointReceivedCallback(handler);
|
|
688
676
|
}
|
|
689
|
-
|
|
690
|
-
|
|
677
|
+
registerAllNodesCheckpointProposalHandler(handler) {
|
|
678
|
+
this.p2pService.registerAllNodesCheckpointReceivedCallback(handler);
|
|
691
679
|
}
|
|
692
|
-
|
|
693
|
-
|
|
680
|
+
registerDuplicateProposalCallback(callback) {
|
|
681
|
+
this.p2pService.registerDuplicateProposalCallback(callback);
|
|
694
682
|
}
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
const tx = await this.txPool.getTxByHash(txHash);
|
|
698
|
-
if (tx) {
|
|
699
|
-
yield tx;
|
|
700
|
-
}
|
|
701
|
-
}
|
|
683
|
+
registerDuplicateAttestationCallback(callback) {
|
|
684
|
+
this.p2pService.registerDuplicateAttestationCallback(callback);
|
|
702
685
|
}
|
|
703
|
-
|
|
704
|
-
* Returns all transactions in the transaction pool.
|
|
705
|
-
* @param filter - The type of txs to return
|
|
706
|
-
* @param limit - How many txs to return
|
|
707
|
-
* @param after - If paginating, the last known tx hash. Will return txs after this hash
|
|
708
|
-
* @returns An array of Txs.
|
|
709
|
-
*/ async getTxs(filter, limit, after) {
|
|
686
|
+
async getPendingTxs(limit, after) {
|
|
710
687
|
if (limit !== undefined && limit <= 0) {
|
|
711
688
|
throw new TypeError('limit must be greater than 0');
|
|
712
689
|
}
|
|
713
|
-
let
|
|
714
|
-
let txHashes;
|
|
715
|
-
if (filter === 'all') {
|
|
716
|
-
txs = await this.txPool.getAllTxs();
|
|
717
|
-
txHashes = await Promise.all(txs.map((tx)=>tx.getTxHash()));
|
|
718
|
-
} else if (filter === 'mined') {
|
|
719
|
-
const minedTxHashes = await this.txPool.getMinedTxHashes();
|
|
720
|
-
txHashes = minedTxHashes.map(([txHash])=>txHash);
|
|
721
|
-
} else if (filter === 'pending') {
|
|
722
|
-
txHashes = await this.txPool.getPendingTxHashes();
|
|
723
|
-
} else {
|
|
724
|
-
const _ = filter;
|
|
725
|
-
throw new Error(`Unknown filter ${filter}`);
|
|
726
|
-
}
|
|
690
|
+
let txHashes = await this.txPool.getPendingTxHashes();
|
|
727
691
|
let startIndex = 0;
|
|
728
|
-
let endIndex = undefined;
|
|
729
692
|
if (after) {
|
|
730
693
|
startIndex = txHashes.findIndex((txHash)=>after.equals(txHash));
|
|
731
|
-
// if we can't find the last tx in our set then return an empty array as pagination is no longer valid.
|
|
732
694
|
if (startIndex === -1) {
|
|
733
695
|
return [];
|
|
734
696
|
}
|
|
735
|
-
// increment by one because we don't want to return the same tx again
|
|
736
697
|
startIndex++;
|
|
737
698
|
}
|
|
738
|
-
|
|
739
|
-
endIndex = startIndex + limit;
|
|
740
|
-
}
|
|
699
|
+
const endIndex = limit !== undefined ? startIndex + limit : undefined;
|
|
741
700
|
txHashes = txHashes.slice(startIndex, endIndex);
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
701
|
+
const maybeTxs = await Promise.all(txHashes.map((txHash)=>this.txPool.getTxByHash(txHash)));
|
|
702
|
+
return maybeTxs.filter((tx)=>!!tx);
|
|
703
|
+
}
|
|
704
|
+
getPendingTxCount() {
|
|
705
|
+
return this.txPool.getPendingTxCount();
|
|
706
|
+
}
|
|
707
|
+
async *iteratePendingTxs() {
|
|
708
|
+
for (const txHash of (await this.txPool.getPendingTxHashes())){
|
|
709
|
+
const tx = await this.txPool.getTxByHash(txHash);
|
|
710
|
+
if (tx) {
|
|
711
|
+
yield tx;
|
|
712
|
+
}
|
|
713
|
+
}
|
|
714
|
+
}
|
|
715
|
+
async *iterateEligiblePendingTxs() {
|
|
716
|
+
for (const txHash of (await this.txPool.getEligiblePendingTxHashes())){
|
|
717
|
+
const tx = await this.txPool.getTxByHash(txHash);
|
|
718
|
+
if (tx) {
|
|
719
|
+
yield tx;
|
|
720
|
+
}
|
|
747
721
|
}
|
|
748
|
-
return txs;
|
|
749
722
|
}
|
|
750
723
|
/**
|
|
751
724
|
* Returns a transaction in the transaction pool by its hash.
|
|
@@ -765,42 +738,6 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
765
738
|
return this.txPool.hasTxs(txHashes);
|
|
766
739
|
}
|
|
767
740
|
/**
|
|
768
|
-
* Returns transactions in the transaction pool by hash.
|
|
769
|
-
* If a transaction is not in the pool, it will be requested from the network.
|
|
770
|
-
* @param txHashes - Hashes of the transactions to look for.
|
|
771
|
-
* @returns The txs found, or undefined if not found in the order requested.
|
|
772
|
-
*/ async getTxsByHash(txHashes, pinnedPeerId) {
|
|
773
|
-
const txs = await Promise.all(txHashes.map((txHash)=>this.txPool.getTxByHash(txHash)));
|
|
774
|
-
const missingTxHashes = txs.map((tx, index)=>[
|
|
775
|
-
tx,
|
|
776
|
-
index
|
|
777
|
-
]).filter(([tx, _index])=>!tx).map(([_tx, index])=>txHashes[index]);
|
|
778
|
-
if (missingTxHashes.length === 0) {
|
|
779
|
-
return txs;
|
|
780
|
-
}
|
|
781
|
-
const missingTxs = await this.requestTxsByHash(missingTxHashes, pinnedPeerId);
|
|
782
|
-
// TODO: optimize
|
|
783
|
-
// Merge the found txs in order
|
|
784
|
-
const mergingTxs = txHashes.map((txHash)=>{
|
|
785
|
-
// Is it in the txs list from the mempool?
|
|
786
|
-
for (const tx of txs){
|
|
787
|
-
if (tx !== undefined && tx.getTxHash().equals(txHash)) {
|
|
788
|
-
return tx;
|
|
789
|
-
}
|
|
790
|
-
}
|
|
791
|
-
// Is it in the fetched missing txs?
|
|
792
|
-
// Note: this is an O(n^2) operation, but we expect the number of missing txs to be small.
|
|
793
|
-
for (const tx of missingTxs){
|
|
794
|
-
if (tx.getTxHash().equals(txHash)) {
|
|
795
|
-
return tx;
|
|
796
|
-
}
|
|
797
|
-
}
|
|
798
|
-
// Otherwise return undefined
|
|
799
|
-
return undefined;
|
|
800
|
-
});
|
|
801
|
-
return mergingTxs;
|
|
802
|
-
}
|
|
803
|
-
/**
|
|
804
741
|
* Returns an archived transaction in the transaction pool by its hash.
|
|
805
742
|
* @param txHash - Hash of the archived transaction to look for.
|
|
806
743
|
* @returns A single tx or undefined.
|
|
@@ -808,31 +745,35 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
808
745
|
return this.txPool.getArchivedTxByHash(txHash);
|
|
809
746
|
}
|
|
810
747
|
/**
|
|
811
|
-
*
|
|
812
|
-
* @param tx - The tx to
|
|
748
|
+
* Accepts a transaction, adds it to local tx pool and forwards it to other peers.
|
|
749
|
+
* @param tx - The tx to send.
|
|
813
750
|
* @returns Empty promise.
|
|
814
751
|
**/ async sendTx(tx) {
|
|
815
|
-
|
|
752
|
+
this.#assertIsReady();
|
|
753
|
+
const result = await this.txPool.addPendingTxs([
|
|
816
754
|
tx
|
|
817
|
-
]
|
|
818
|
-
|
|
819
|
-
|
|
755
|
+
], {
|
|
756
|
+
feeComparisonOnly: true
|
|
757
|
+
});
|
|
758
|
+
if (result.accepted.length === 1) {
|
|
820
759
|
await this.p2pService.propagate(tx);
|
|
760
|
+
return;
|
|
821
761
|
}
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
762
|
+
const txHashStr = tx.getTxHash().toString();
|
|
763
|
+
const reason = result.errors?.get(txHashStr);
|
|
764
|
+
if (reason) {
|
|
765
|
+
this.log.warn(`Tx ${txHashStr} not added to pool: ${reason.message}`);
|
|
766
|
+
throw new TxPoolError(reason);
|
|
767
|
+
}
|
|
768
|
+
this.log.warn(`Tx ${txHashStr} not propagated: accepted=${result.accepted.length} ignored=${result.ignored.length} rejected=${result.rejected.length}`);
|
|
829
769
|
}
|
|
830
770
|
/**
|
|
831
771
|
* Returns whether the given tx hash is flagged as pending or mined.
|
|
832
772
|
* @param txHash - Hash of the tx to query.
|
|
833
773
|
* @returns Pending or mined depending on its status, or undefined if not found.
|
|
834
|
-
*/ getTxStatus(txHash) {
|
|
835
|
-
|
|
774
|
+
*/ async getTxStatus(txHash) {
|
|
775
|
+
const status = await this.txPool.getTxStatus(txHash);
|
|
776
|
+
return status === 'protected' ? 'pending' : status;
|
|
836
777
|
}
|
|
837
778
|
getEnr() {
|
|
838
779
|
return this.p2pService.getEnr();
|
|
@@ -841,13 +782,11 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
841
782
|
return Promise.resolve(this.p2pService.getEnr()?.encodeTxt());
|
|
842
783
|
}
|
|
843
784
|
/**
|
|
844
|
-
*
|
|
845
|
-
*
|
|
846
|
-
|
|
847
|
-
* @returns Empty promise.
|
|
848
|
-
**/ async deleteTxs(txHashes) {
|
|
785
|
+
* Handles failed transaction execution by removing txs from the pool.
|
|
786
|
+
* @param txHashes - Hashes of the transactions that failed execution.
|
|
787
|
+
**/ async handleFailedExecution(txHashes) {
|
|
849
788
|
this.#assertIsReady();
|
|
850
|
-
await this.txPool.
|
|
789
|
+
await this.txPool.handleFailedExecution(txHashes);
|
|
851
790
|
}
|
|
852
791
|
/**
|
|
853
792
|
* Public function to check if the p2p client is fully synced and ready to receive txs.
|
|
@@ -891,13 +830,12 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
891
830
|
};
|
|
892
831
|
}
|
|
893
832
|
/**
|
|
894
|
-
*
|
|
833
|
+
* Handles mined blocks by marking the txs in them as mined.
|
|
895
834
|
* @param blocks - A list of existing blocks with txs that the P2P client needs to ensure the tx pool is reconciled with.
|
|
896
835
|
* @returns Empty promise.
|
|
897
|
-
*/ async
|
|
836
|
+
*/ async handleMinedBlocks(blocks) {
|
|
898
837
|
for (const block of blocks){
|
|
899
|
-
|
|
900
|
-
await this.txPool.markAsMined(txHashes, block.header);
|
|
838
|
+
await this.txPool.handleMinedBlock(block);
|
|
901
839
|
}
|
|
902
840
|
}
|
|
903
841
|
/**
|
|
@@ -906,14 +844,13 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
906
844
|
* @returns Empty promise.
|
|
907
845
|
*/ async handleLatestL2Blocks(blocks) {
|
|
908
846
|
if (!blocks.length) {
|
|
909
|
-
return
|
|
847
|
+
return;
|
|
910
848
|
}
|
|
911
|
-
await this.
|
|
912
|
-
await this.
|
|
849
|
+
await this.handleMinedBlocks(blocks);
|
|
850
|
+
await this.maybeCallPrepareForSlot();
|
|
913
851
|
await this.startCollectingMissingTxs(blocks);
|
|
914
852
|
const lastBlock = blocks.at(-1);
|
|
915
853
|
await this.synchedLatestSlot.set(BigInt(lastBlock.header.getSlot()));
|
|
916
|
-
this.log.verbose(`Synched to latest block ${lastBlock.number}`);
|
|
917
854
|
}
|
|
918
855
|
/** Request txs for unproven blocks so the prover node has more chances to get them. */ async startCollectingMissingTxs(blocks) {
|
|
919
856
|
try {
|
|
@@ -947,59 +884,65 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
947
884
|
* @returns Empty promise.
|
|
948
885
|
*/ async handleFinalizedL2Blocks(blocks) {
|
|
949
886
|
if (!blocks.length) {
|
|
950
|
-
return
|
|
887
|
+
return;
|
|
951
888
|
}
|
|
952
|
-
|
|
953
|
-
const
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
this.log.debug(`Deleting ${txHashes.length} txs from pool from finalized blocks up to ${lastBlockNum}`);
|
|
957
|
-
await this.txPool.deleteTxs(txHashes, {
|
|
958
|
-
permanently: true
|
|
959
|
-
});
|
|
960
|
-
await this.txPool.cleanupDeletedMinedTxs(lastBlockNum);
|
|
961
|
-
await this.attestationPool.deleteCheckpointAttestationsOlderThan(lastBlockSlot);
|
|
962
|
-
this.log.debug(`Synched to finalized block ${lastBlockNum} at slot ${lastBlockSlot}`);
|
|
889
|
+
// Finalization is monotonic, so we only need to call with the last block
|
|
890
|
+
const lastBlock = blocks.at(-1);
|
|
891
|
+
await this.txPool.handleFinalizedBlock(lastBlock.header);
|
|
892
|
+
await this.attestationPool.deleteOlderThan(lastBlock.header.getSlot());
|
|
963
893
|
}
|
|
964
894
|
/**
|
|
965
895
|
* Updates the tx pool after a chain prune.
|
|
966
|
-
*
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
if (tx.data.constants.anchorBlockHeader.globalVariables.blockNumber > latestBlock) {
|
|
974
|
-
const txHash = tx.getTxHash();
|
|
975
|
-
txsToDelete.set(txHash.toString(), txHash);
|
|
976
|
-
}
|
|
977
|
-
}
|
|
978
|
-
this.log.info(`Detected chain prune. Removing ${txsToDelete.size} txs built against pruned blocks.`, {
|
|
979
|
-
newLatestBlock: latestBlock,
|
|
980
|
-
previousLatestBlock: await this.getSyncedLatestBlockNum(),
|
|
981
|
-
txsToDelete: Array.from(txsToDelete.keys())
|
|
896
|
+
* Detects epoch prunes (checkpoint number changed) and deletes all txs in that case.
|
|
897
|
+
* @param latestBlock - The block ID the chain was pruned to.
|
|
898
|
+
* @param newCheckpoint - The checkpoint ID after the prune.
|
|
899
|
+
*/ async handlePruneL2Blocks(latestBlock, newCheckpoint) {
|
|
900
|
+
const deleteAllTxs = this.config.txPoolDeleteTxsAfterReorg && await this.isEpochPrune(newCheckpoint);
|
|
901
|
+
await this.txPool.handlePrunedBlocks(latestBlock, {
|
|
902
|
+
deleteAllTxs
|
|
982
903
|
});
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
904
|
+
}
|
|
905
|
+
/**
|
|
906
|
+
* Returns true if the prune is an epoch prune (new checkpoint number is less than old).
|
|
907
|
+
* If the checkpoint number stays the same or increases, the prune is within a checkpoint.
|
|
908
|
+
*/ async isEpochPrune(newCheckpoint) {
|
|
909
|
+
const tips = await this.l2Tips.getL2Tips();
|
|
910
|
+
const oldCheckpointNumber = tips.checkpointed.checkpoint.number;
|
|
911
|
+
if (oldCheckpointNumber <= CheckpointNumber.INITIAL) {
|
|
912
|
+
return false;
|
|
913
|
+
}
|
|
914
|
+
const newCheckpointNumber = newCheckpoint.number;
|
|
915
|
+
// We check that the new checkpoint number is less than the old checkpoint number in order to consider it an epoch prune.
|
|
916
|
+
// To be more certain that it is an epoch prune, we will check that at least 2 checkpoints were removed.
|
|
917
|
+
// This means we should avoid thinking checkpoints removed by L1 re-orgs are epoch prunes
|
|
918
|
+
const thresholdForEpochPrune = CheckpointNumber(oldCheckpointNumber - 2);
|
|
919
|
+
const isEpochPrune = newCheckpointNumber <= thresholdForEpochPrune;
|
|
920
|
+
if (isEpochPrune) {
|
|
921
|
+
this.log.info(`Detected epoch prune to ${newCheckpointNumber}`, {
|
|
922
|
+
oldCheckpointNumber,
|
|
923
|
+
newCheckpointNumber,
|
|
924
|
+
thresholdForEpochPrune
|
|
925
|
+
});
|
|
996
926
|
}
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
927
|
+
return isEpochPrune;
|
|
928
|
+
}
|
|
929
|
+
/** Checks if the slot has changed and calls prepareForSlot if so. */ async maybeCallPrepareForSlot() {
|
|
930
|
+
// If we have a proposed checkpoint available, we want to prepare the target slot - otherwise we prepare the current slot
|
|
931
|
+
const l2Tips = await this.l2Tips.getL2Tips();
|
|
932
|
+
const hasProposedCheckpoint = l2Tips.proposedCheckpoint.checkpoint.number > l2Tips.checkpointed.checkpoint.number;
|
|
933
|
+
let slot;
|
|
934
|
+
if (this.epochCache.isProposerPipeliningEnabled() && hasProposedCheckpoint) {
|
|
935
|
+
const { targetSlot } = this.epochCache.getTargetAndNextSlot();
|
|
936
|
+
slot = targetSlot;
|
|
1000
937
|
} else {
|
|
1001
|
-
|
|
938
|
+
const { currentSlot } = this.epochCache.getCurrentAndNextSlot();
|
|
939
|
+
slot = currentSlot;
|
|
940
|
+
}
|
|
941
|
+
if (slot <= this.lastSlotProcessed) {
|
|
942
|
+
return;
|
|
1002
943
|
}
|
|
944
|
+
this.lastSlotProcessed = slot;
|
|
945
|
+
await this.txPool.prepareForSlot(slot);
|
|
1003
946
|
}
|
|
1004
947
|
async startServiceIfSynched() {
|
|
1005
948
|
if (this.currentState !== P2PClientState.SYNCHING) {
|
|
@@ -1030,14 +973,24 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
1030
973
|
this.currentState = newState;
|
|
1031
974
|
this.log.debug(`Moved from state ${P2PClientState[oldState]} to ${P2PClientState[this.currentState]}`);
|
|
1032
975
|
}
|
|
1033
|
-
|
|
1034
|
-
return this.p2pService.
|
|
976
|
+
validateTxsReceivedInBlockProposal(txs) {
|
|
977
|
+
return this.p2pService.validateTxsReceivedInBlockProposal(txs);
|
|
978
|
+
}
|
|
979
|
+
/**
|
|
980
|
+
* Protects existing transactions by hash for a given slot.
|
|
981
|
+
* Returns hashes of transactions that weren't found in the pool.
|
|
982
|
+
* @param txHashes - Hashes of the transactions to protect.
|
|
983
|
+
* @param blockHeader - The block header providing slot context.
|
|
984
|
+
* @returns Hashes of transactions not found in the pool.
|
|
985
|
+
*/ protectTxs(txHashes, blockHeader) {
|
|
986
|
+
return this.txPool.protectTxs(txHashes, blockHeader);
|
|
1035
987
|
}
|
|
1036
988
|
/**
|
|
1037
|
-
*
|
|
1038
|
-
*
|
|
1039
|
-
|
|
1040
|
-
|
|
989
|
+
* Prepares the pool for a new slot.
|
|
990
|
+
* Unprotects transactions from earlier slots and validates them.
|
|
991
|
+
* @param slotNumber - The slot number to prepare for
|
|
992
|
+
*/ async prepareForSlot(slotNumber) {
|
|
993
|
+
await this.txPool.prepareForSlot(slotNumber);
|
|
1041
994
|
}
|
|
1042
995
|
handleAuthRequestFromPeer(authRequest, peerId) {
|
|
1043
996
|
return this.p2pService.handleAuthRequestFromPeer(authRequest, peerId);
|