@aztec/p2p 0.0.1-commit.ee80a48 → 0.0.1-commit.f103f88
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 +11 -11
- package/dest/client/factory.d.ts.map +1 -1
- package/dest/client/factory.js +55 -15
- package/dest/client/interface.d.ts +54 -34
- package/dest/client/interface.d.ts.map +1 -1
- package/dest/client/p2p_client.d.ts +43 -52
- package/dest/client/p2p_client.d.ts.map +1 -1
- package/dest/client/p2p_client.js +183 -226
- package/dest/client/test/tx_proposal_collector/proposal_tx_collector_worker.js +21 -11
- package/dest/config.d.ts +134 -87
- package/dest/config.d.ts.map +1 -1
- package/dest/config.js +111 -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 +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 +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 +215 -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 +134 -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 +220 -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 +923 -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 +67 -3
- package/dest/msg_validators/tx_validator/gas_validator.d.ts.map +1 -1
- package/dest/msg_validators/tx_validator/gas_validator.js +112 -43
- 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/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/libp2p_service.d.ts +92 -50
- package/dest/services/libp2p/libp2p_service.d.ts.map +1 -1
- package/dest/services/libp2p/libp2p_service.js +549 -427
- 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 +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 +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 +1 -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 +5 -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 +80 -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 +108 -28
- package/src/client/interface.ts +65 -35
- package/src/client/p2p_client.ts +221 -272
- package/src/client/test/tx_proposal_collector/proposal_tx_collector_worker.ts +34 -15
- package/src/config.ts +178 -45
- 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 +27 -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 +247 -0
- package/src/mem_pools/tx_pool_v2/tx_metadata.ts +343 -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 +1105 -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 +119 -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 +394 -78
- package/src/msg_validators/tx_validator/fee_payer_balance.ts +6 -2
- package/src/msg_validators/tx_validator/gas_validator.ts +145 -33
- 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/index.ts +1 -0
- package/src/services/libp2p/libp2p_service.ts +575 -465
- 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 +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 +10 -9
- package/src/test-helpers/make-test-p2p-clients.ts +4 -6
- package/src/test-helpers/mock-pubsub.ts +177 -14
- package/src/test-helpers/reqresp-nodes.ts +7 -9
- package/src/test-helpers/testbench-utils.ts +157 -74
- package/src/testbench/p2p_client_testbench_worker.ts +91 -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)=>({
|
|
@@ -401,6 +399,8 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
401
399
|
l2BlockSource;
|
|
402
400
|
p2pService;
|
|
403
401
|
txCollection;
|
|
402
|
+
txFileStore;
|
|
403
|
+
epochCache;
|
|
404
404
|
_dateProvider;
|
|
405
405
|
telemetry;
|
|
406
406
|
log;
|
|
@@ -433,15 +433,10 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
433
433
|
blockStream;
|
|
434
434
|
txProvider;
|
|
435
435
|
validatorAddresses;
|
|
436
|
-
/**
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
* @param txPool - The client's instance of a transaction pool. Defaults to in-memory implementation.
|
|
441
|
-
* @param p2pService - The concrete instance of p2p networking to use.
|
|
442
|
-
* @param log - A logger.
|
|
443
|
-
*/ constructor(_clientType, store, l2BlockSource, mempools, p2pService, txCollection, config = {}, _dateProvider = new DateProvider(), telemetry = getTelemetryClient(), log = createLogger('p2p')){
|
|
444
|
-
super(telemetry, 'P2PClient'), this.store = store, this.l2BlockSource = l2BlockSource, this.p2pService = p2pService, this.txCollection = txCollection, 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;
|
|
445
440
|
this.config = {
|
|
446
441
|
...getP2PDefaultConfig(),
|
|
447
442
|
...config
|
|
@@ -449,29 +444,6 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
449
444
|
this.txPool = mempools.txPool;
|
|
450
445
|
this.attestationPool = mempools.attestationPool;
|
|
451
446
|
this.txProvider = new TxProvider(this.txCollection, this.txPool, this, this.log.createChild('tx-provider'), this.telemetry);
|
|
452
|
-
// Default to collecting all txs when we see a valid proposal
|
|
453
|
-
// This can be overridden by the validator client to validate, and it will call getTxsForBlockProposal on its own
|
|
454
|
-
// Note: Validators do NOT attest to individual blocks - attestations are only for checkpoint proposals.
|
|
455
|
-
// TODO(palla/txs): We should not trigger a request for txs on a proposal before fully validating it. We need to bring
|
|
456
|
-
// validator-client code into here so we can validate a proposal is reasonable.
|
|
457
|
-
this.registerBlockProposalHandler(async (block, sender)=>{
|
|
458
|
-
this.log.debug(`Received block proposal from ${sender.toString()}`);
|
|
459
|
-
// TODO(palla/txs): Need to subtract validatorReexecuteDeadlineMs from this deadline (see ValidatorClient.getReexecutionDeadline)
|
|
460
|
-
const constants = this.txCollection.getConstants();
|
|
461
|
-
const nextSlotTimestampSeconds = Number(getTimestampForSlot(SlotNumber(block.slotNumber + 1), constants));
|
|
462
|
-
const deadline = new Date(nextSlotTimestampSeconds * 1000);
|
|
463
|
-
const parentBlock = await this.l2BlockSource.getBlockHeaderByArchive(block.blockHeader.lastArchive.root);
|
|
464
|
-
if (!parentBlock) {
|
|
465
|
-
this.log.debug(`Cannot collect txs for proposal as parent block not found`);
|
|
466
|
-
return false;
|
|
467
|
-
}
|
|
468
|
-
const blockNumber = BlockNumber(parentBlock.getBlockNumber() + 1);
|
|
469
|
-
await this.txProvider.getTxsForBlockProposal(block, blockNumber, {
|
|
470
|
-
pinnedPeer: sender,
|
|
471
|
-
deadline
|
|
472
|
-
});
|
|
473
|
-
return true;
|
|
474
|
-
});
|
|
475
447
|
this.l2Tips = new L2TipsKVStore(store, 'p2p_client');
|
|
476
448
|
this.synchedLatestSlot = store.openSingleton('p2p_pool_last_l2_slot');
|
|
477
449
|
}
|
|
@@ -493,13 +465,15 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
493
465
|
getPeers(includePending) {
|
|
494
466
|
return Promise.resolve(this.p2pService.getPeers(includePending));
|
|
495
467
|
}
|
|
468
|
+
getGossipMeshPeerCount(topicType) {
|
|
469
|
+
return Promise.resolve(this.p2pService.getGossipMeshPeerCount(topicType));
|
|
470
|
+
}
|
|
496
471
|
getL2BlockHash(number) {
|
|
497
472
|
return this.l2Tips.getL2BlockHash(number);
|
|
498
473
|
}
|
|
499
|
-
updateP2PConfig(config) {
|
|
500
|
-
this.txPool.updateConfig(config);
|
|
474
|
+
async updateP2PConfig(config) {
|
|
475
|
+
await this.txPool.updateConfig(config);
|
|
501
476
|
this.p2pService.updateConfig(config);
|
|
502
|
-
return Promise.resolve();
|
|
503
477
|
}
|
|
504
478
|
getL2Tips() {
|
|
505
479
|
return this.l2Tips.getL2Tips();
|
|
@@ -526,7 +500,7 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
526
500
|
break;
|
|
527
501
|
case 'chain-pruned':
|
|
528
502
|
this.txCollection.stopCollectingForBlocksAfter(event.block.number);
|
|
529
|
-
await this.handlePruneL2Blocks(event.block.
|
|
503
|
+
await this.handlePruneL2Blocks(event.block, event.checkpoint);
|
|
530
504
|
break;
|
|
531
505
|
case 'chain-checkpointed':
|
|
532
506
|
break;
|
|
@@ -541,7 +515,6 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
541
515
|
await this.startServiceIfSynched();
|
|
542
516
|
}
|
|
543
517
|
#assertIsReady() {
|
|
544
|
-
// this.log.info('Checking if p2p client is ready, current state: ', this.currentState);
|
|
545
518
|
if (!this.isReady()) {
|
|
546
519
|
throw new Error('P2P client not ready');
|
|
547
520
|
}
|
|
@@ -556,6 +529,8 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
556
529
|
if (this.currentState !== P2PClientState.IDLE) {
|
|
557
530
|
return this.syncPromise;
|
|
558
531
|
}
|
|
532
|
+
// Start the tx pool first, as it needs to hydrate state from persistence
|
|
533
|
+
await this.txPool.start();
|
|
559
534
|
// get the current latest block numbers
|
|
560
535
|
const latestBlockNumbers = await this.l2BlockSource.getL2Tips();
|
|
561
536
|
this.latestBlockNumberAtStart = latestBlockNumbers.proposed.number;
|
|
@@ -596,8 +571,16 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
596
571
|
syncedFinalizedBlock
|
|
597
572
|
});
|
|
598
573
|
}
|
|
574
|
+
// Should never happen: all branches above call initBlockStream()
|
|
575
|
+
if (!this.blockStream) {
|
|
576
|
+
throw new Error('Block stream not initialized');
|
|
577
|
+
}
|
|
599
578
|
this.blockStream.start();
|
|
600
579
|
await this.txCollection.start();
|
|
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();
|
|
601
584
|
return this.syncPromise;
|
|
602
585
|
}
|
|
603
586
|
addReqRespSubProtocol(subProtocol, handler, validator) {
|
|
@@ -618,24 +601,45 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
618
601
|
* 'ready' will now return 'false' and the running promise that keeps the client synced is interrupted.
|
|
619
602
|
*/ async stop() {
|
|
620
603
|
this.log.debug('Stopping p2p client...');
|
|
604
|
+
await this.slotMonitor?.stop();
|
|
605
|
+
this.log.debug('Stopped slot monitor');
|
|
621
606
|
await tryStop(this.txCollection);
|
|
622
607
|
this.log.debug('Stopped tx collection service');
|
|
608
|
+
await this.txFileStore?.stop();
|
|
609
|
+
this.log.debug('Stopped tx file store');
|
|
623
610
|
await this.p2pService.stop();
|
|
624
611
|
this.log.debug('Stopped p2p service');
|
|
625
612
|
await this.blockStream?.stop();
|
|
626
613
|
this.log.debug('Stopped block downloader');
|
|
614
|
+
await this.txPool.stop();
|
|
615
|
+
this.log.debug('Stopped tx pool');
|
|
627
616
|
await this.runningPromise;
|
|
628
617
|
this.setCurrentState(P2PClientState.STOPPED);
|
|
629
618
|
this.log.info('P2P client stopped');
|
|
630
619
|
}
|
|
631
620
|
/** Triggers a sync to the archiver. Used for testing. */ async sync() {
|
|
632
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
|
+
}
|
|
633
626
|
await this.blockStream.sync();
|
|
634
627
|
}
|
|
635
628
|
async broadcastProposal(proposal) {
|
|
636
629
|
this.log.verbose(`Broadcasting proposal for slot ${proposal.slotNumber} to peers`);
|
|
637
630
|
// Store our own proposal so we can respond to req/resp requests for it
|
|
638
|
-
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
|
+
}
|
|
639
643
|
return this.p2pService.propagate(proposal);
|
|
640
644
|
}
|
|
641
645
|
async broadcastCheckpointProposal(proposal) {
|
|
@@ -643,8 +647,10 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
643
647
|
const blockProposal = proposal.getBlockProposal();
|
|
644
648
|
if (blockProposal) {
|
|
645
649
|
// Store our own last-block proposal so we can respond to req/resp requests for it.
|
|
646
|
-
await this.attestationPool.
|
|
650
|
+
await this.attestationPool.tryAddBlockProposal(blockProposal);
|
|
647
651
|
}
|
|
652
|
+
// Gossipsub doesn't deliver own messages, so fire the all-nodes handler locally
|
|
653
|
+
await this.p2pService.notifyOwnCheckpointProposal(proposal.toCore());
|
|
648
654
|
return this.p2pService.propagate(proposal);
|
|
649
655
|
}
|
|
650
656
|
async broadcastCheckpointAttestations(attestations) {
|
|
@@ -654,94 +660,65 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
654
660
|
async getCheckpointAttestationsForSlot(slot, proposalId) {
|
|
655
661
|
return await (proposalId ? this.attestationPool.getCheckpointAttestationsForSlotAndProposal(slot, proposalId) : this.attestationPool.getCheckpointAttestationsForSlot(slot));
|
|
656
662
|
}
|
|
657
|
-
|
|
658
|
-
return this.attestationPool.
|
|
663
|
+
addOwnCheckpointAttestations(attestations) {
|
|
664
|
+
return this.attestationPool.addOwnCheckpointAttestations(attestations);
|
|
665
|
+
}
|
|
666
|
+
hasBlockProposalsForSlot(slot) {
|
|
667
|
+
return this.attestationPool.hasBlockProposalsForSlot(slot);
|
|
659
668
|
}
|
|
660
669
|
// REVIEW: https://github.com/AztecProtocol/aztec-packages/issues/7963
|
|
661
670
|
// ^ This pattern is not my favorite (md)
|
|
662
671
|
registerBlockProposalHandler(handler) {
|
|
663
672
|
this.p2pService.registerBlockReceivedCallback(handler);
|
|
664
673
|
}
|
|
665
|
-
|
|
666
|
-
this.p2pService.
|
|
667
|
-
}
|
|
668
|
-
/**
|
|
669
|
-
* Uses the batched Request Response protocol to request a set of transactions from the network.
|
|
670
|
-
*/ async requestTxsByHash(txHashes, pinnedPeerId) {
|
|
671
|
-
const timeoutMs = 8000; // Longer timeout for now
|
|
672
|
-
const maxRetryAttempts = 10; // Keep retrying within the timeout
|
|
673
|
-
const requests = chunkTxHashesRequest(txHashes);
|
|
674
|
-
const maxPeers = Math.min(Math.ceil(requests.length / 3), 10);
|
|
675
|
-
const txBatches = await this.p2pService.sendBatchRequest(ReqRespSubProtocol.TX, requests, pinnedPeerId, timeoutMs, maxPeers, maxRetryAttempts);
|
|
676
|
-
const txs = txBatches.flat();
|
|
677
|
-
if (txs.length > 0) {
|
|
678
|
-
await this.txPool.addTxs(txs);
|
|
679
|
-
}
|
|
680
|
-
const txHashesStr = txHashes.map((tx)=>tx.toString()).join(', ');
|
|
681
|
-
this.log.debug(`Requested txs ${txHashesStr} (${txs.length} / ${txHashes.length}) from peers`);
|
|
682
|
-
// We return all transactions, even the not found ones to the caller, such they can handle missing items themselves.
|
|
683
|
-
return txs;
|
|
674
|
+
registerValidatorCheckpointProposalHandler(handler) {
|
|
675
|
+
this.p2pService.registerValidatorCheckpointReceivedCallback(handler);
|
|
684
676
|
}
|
|
685
|
-
|
|
686
|
-
|
|
677
|
+
registerAllNodesCheckpointProposalHandler(handler) {
|
|
678
|
+
this.p2pService.registerAllNodesCheckpointReceivedCallback(handler);
|
|
687
679
|
}
|
|
688
|
-
|
|
689
|
-
|
|
680
|
+
registerDuplicateProposalCallback(callback) {
|
|
681
|
+
this.p2pService.registerDuplicateProposalCallback(callback);
|
|
690
682
|
}
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
const tx = await this.txPool.getTxByHash(txHash);
|
|
694
|
-
if (tx) {
|
|
695
|
-
yield tx;
|
|
696
|
-
}
|
|
697
|
-
}
|
|
683
|
+
registerDuplicateAttestationCallback(callback) {
|
|
684
|
+
this.p2pService.registerDuplicateAttestationCallback(callback);
|
|
698
685
|
}
|
|
699
|
-
|
|
700
|
-
* Returns all transactions in the transaction pool.
|
|
701
|
-
* @param filter - The type of txs to return
|
|
702
|
-
* @param limit - How many txs to return
|
|
703
|
-
* @param after - If paginating, the last known tx hash. Will return txs after this hash
|
|
704
|
-
* @returns An array of Txs.
|
|
705
|
-
*/ async getTxs(filter, limit, after) {
|
|
686
|
+
async getPendingTxs(limit, after) {
|
|
706
687
|
if (limit !== undefined && limit <= 0) {
|
|
707
688
|
throw new TypeError('limit must be greater than 0');
|
|
708
689
|
}
|
|
709
|
-
let
|
|
710
|
-
let txHashes;
|
|
711
|
-
if (filter === 'all') {
|
|
712
|
-
txs = await this.txPool.getAllTxs();
|
|
713
|
-
txHashes = await Promise.all(txs.map((tx)=>tx.getTxHash()));
|
|
714
|
-
} else if (filter === 'mined') {
|
|
715
|
-
const minedTxHashes = await this.txPool.getMinedTxHashes();
|
|
716
|
-
txHashes = minedTxHashes.map(([txHash])=>txHash);
|
|
717
|
-
} else if (filter === 'pending') {
|
|
718
|
-
txHashes = await this.txPool.getPendingTxHashes();
|
|
719
|
-
} else {
|
|
720
|
-
const _ = filter;
|
|
721
|
-
throw new Error(`Unknown filter ${filter}`);
|
|
722
|
-
}
|
|
690
|
+
let txHashes = await this.txPool.getPendingTxHashes();
|
|
723
691
|
let startIndex = 0;
|
|
724
|
-
let endIndex = undefined;
|
|
725
692
|
if (after) {
|
|
726
693
|
startIndex = txHashes.findIndex((txHash)=>after.equals(txHash));
|
|
727
|
-
// if we can't find the last tx in our set then return an empty array as pagination is no longer valid.
|
|
728
694
|
if (startIndex === -1) {
|
|
729
695
|
return [];
|
|
730
696
|
}
|
|
731
|
-
// increment by one because we don't want to return the same tx again
|
|
732
697
|
startIndex++;
|
|
733
698
|
}
|
|
734
|
-
|
|
735
|
-
endIndex = startIndex + limit;
|
|
736
|
-
}
|
|
699
|
+
const endIndex = limit !== undefined ? startIndex + limit : undefined;
|
|
737
700
|
txHashes = txHashes.slice(startIndex, endIndex);
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
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
|
+
}
|
|
743
721
|
}
|
|
744
|
-
return txs;
|
|
745
722
|
}
|
|
746
723
|
/**
|
|
747
724
|
* Returns a transaction in the transaction pool by its hash.
|
|
@@ -761,42 +738,6 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
761
738
|
return this.txPool.hasTxs(txHashes);
|
|
762
739
|
}
|
|
763
740
|
/**
|
|
764
|
-
* Returns transactions in the transaction pool by hash.
|
|
765
|
-
* If a transaction is not in the pool, it will be requested from the network.
|
|
766
|
-
* @param txHashes - Hashes of the transactions to look for.
|
|
767
|
-
* @returns The txs found, or undefined if not found in the order requested.
|
|
768
|
-
*/ async getTxsByHash(txHashes, pinnedPeerId) {
|
|
769
|
-
const txs = await Promise.all(txHashes.map((txHash)=>this.txPool.getTxByHash(txHash)));
|
|
770
|
-
const missingTxHashes = txs.map((tx, index)=>[
|
|
771
|
-
tx,
|
|
772
|
-
index
|
|
773
|
-
]).filter(([tx, _index])=>!tx).map(([_tx, index])=>txHashes[index]);
|
|
774
|
-
if (missingTxHashes.length === 0) {
|
|
775
|
-
return txs;
|
|
776
|
-
}
|
|
777
|
-
const missingTxs = await this.requestTxsByHash(missingTxHashes, pinnedPeerId);
|
|
778
|
-
// TODO: optimize
|
|
779
|
-
// Merge the found txs in order
|
|
780
|
-
const mergingTxs = txHashes.map((txHash)=>{
|
|
781
|
-
// Is it in the txs list from the mempool?
|
|
782
|
-
for (const tx of txs){
|
|
783
|
-
if (tx !== undefined && tx.getTxHash().equals(txHash)) {
|
|
784
|
-
return tx;
|
|
785
|
-
}
|
|
786
|
-
}
|
|
787
|
-
// Is it in the fetched missing txs?
|
|
788
|
-
// Note: this is an O(n^2) operation, but we expect the number of missing txs to be small.
|
|
789
|
-
for (const tx of missingTxs){
|
|
790
|
-
if (tx.getTxHash().equals(txHash)) {
|
|
791
|
-
return tx;
|
|
792
|
-
}
|
|
793
|
-
}
|
|
794
|
-
// Otherwise return undefined
|
|
795
|
-
return undefined;
|
|
796
|
-
});
|
|
797
|
-
return mergingTxs;
|
|
798
|
-
}
|
|
799
|
-
/**
|
|
800
741
|
* Returns an archived transaction in the transaction pool by its hash.
|
|
801
742
|
* @param txHash - Hash of the archived transaction to look for.
|
|
802
743
|
* @returns A single tx or undefined.
|
|
@@ -804,31 +745,35 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
804
745
|
return this.txPool.getArchivedTxByHash(txHash);
|
|
805
746
|
}
|
|
806
747
|
/**
|
|
807
|
-
*
|
|
808
|
-
* @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.
|
|
809
750
|
* @returns Empty promise.
|
|
810
751
|
**/ async sendTx(tx) {
|
|
811
|
-
|
|
752
|
+
this.#assertIsReady();
|
|
753
|
+
const result = await this.txPool.addPendingTxs([
|
|
812
754
|
tx
|
|
813
|
-
]
|
|
814
|
-
|
|
815
|
-
|
|
755
|
+
], {
|
|
756
|
+
feeComparisonOnly: true
|
|
757
|
+
});
|
|
758
|
+
if (result.accepted.length === 1) {
|
|
816
759
|
await this.p2pService.propagate(tx);
|
|
760
|
+
return;
|
|
817
761
|
}
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
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}`);
|
|
825
769
|
}
|
|
826
770
|
/**
|
|
827
771
|
* Returns whether the given tx hash is flagged as pending or mined.
|
|
828
772
|
* @param txHash - Hash of the tx to query.
|
|
829
773
|
* @returns Pending or mined depending on its status, or undefined if not found.
|
|
830
|
-
*/ getTxStatus(txHash) {
|
|
831
|
-
|
|
774
|
+
*/ async getTxStatus(txHash) {
|
|
775
|
+
const status = await this.txPool.getTxStatus(txHash);
|
|
776
|
+
return status === 'protected' ? 'pending' : status;
|
|
832
777
|
}
|
|
833
778
|
getEnr() {
|
|
834
779
|
return this.p2pService.getEnr();
|
|
@@ -837,13 +782,11 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
837
782
|
return Promise.resolve(this.p2pService.getEnr()?.encodeTxt());
|
|
838
783
|
}
|
|
839
784
|
/**
|
|
840
|
-
*
|
|
841
|
-
*
|
|
842
|
-
|
|
843
|
-
* @returns Empty promise.
|
|
844
|
-
**/ 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) {
|
|
845
788
|
this.#assertIsReady();
|
|
846
|
-
await this.txPool.
|
|
789
|
+
await this.txPool.handleFailedExecution(txHashes);
|
|
847
790
|
}
|
|
848
791
|
/**
|
|
849
792
|
* Public function to check if the p2p client is fully synced and ready to receive txs.
|
|
@@ -887,13 +830,12 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
887
830
|
};
|
|
888
831
|
}
|
|
889
832
|
/**
|
|
890
|
-
*
|
|
833
|
+
* Handles mined blocks by marking the txs in them as mined.
|
|
891
834
|
* @param blocks - A list of existing blocks with txs that the P2P client needs to ensure the tx pool is reconciled with.
|
|
892
835
|
* @returns Empty promise.
|
|
893
|
-
*/ async
|
|
836
|
+
*/ async handleMinedBlocks(blocks) {
|
|
894
837
|
for (const block of blocks){
|
|
895
|
-
|
|
896
|
-
await this.txPool.markAsMined(txHashes, block.header);
|
|
838
|
+
await this.txPool.handleMinedBlock(block);
|
|
897
839
|
}
|
|
898
840
|
}
|
|
899
841
|
/**
|
|
@@ -902,14 +844,13 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
902
844
|
* @returns Empty promise.
|
|
903
845
|
*/ async handleLatestL2Blocks(blocks) {
|
|
904
846
|
if (!blocks.length) {
|
|
905
|
-
return
|
|
847
|
+
return;
|
|
906
848
|
}
|
|
907
|
-
await this.
|
|
908
|
-
await this.
|
|
849
|
+
await this.handleMinedBlocks(blocks);
|
|
850
|
+
await this.maybeCallPrepareForSlot();
|
|
909
851
|
await this.startCollectingMissingTxs(blocks);
|
|
910
852
|
const lastBlock = blocks.at(-1);
|
|
911
853
|
await this.synchedLatestSlot.set(BigInt(lastBlock.header.getSlot()));
|
|
912
|
-
this.log.verbose(`Synched to latest block ${lastBlock.number}`);
|
|
913
854
|
}
|
|
914
855
|
/** Request txs for unproven blocks so the prover node has more chances to get them. */ async startCollectingMissingTxs(blocks) {
|
|
915
856
|
try {
|
|
@@ -943,59 +884,65 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
943
884
|
* @returns Empty promise.
|
|
944
885
|
*/ async handleFinalizedL2Blocks(blocks) {
|
|
945
886
|
if (!blocks.length) {
|
|
946
|
-
return
|
|
887
|
+
return;
|
|
947
888
|
}
|
|
948
|
-
|
|
949
|
-
const
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
this.log.debug(`Deleting ${txHashes.length} txs from pool from finalized blocks up to ${lastBlockNum}`);
|
|
953
|
-
await this.txPool.deleteTxs(txHashes, {
|
|
954
|
-
permanently: true
|
|
955
|
-
});
|
|
956
|
-
await this.txPool.cleanupDeletedMinedTxs(lastBlockNum);
|
|
957
|
-
await this.attestationPool.deleteCheckpointAttestationsOlderThan(lastBlockSlot);
|
|
958
|
-
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());
|
|
959
893
|
}
|
|
960
894
|
/**
|
|
961
895
|
* Updates the tx pool after a chain prune.
|
|
962
|
-
*
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
if (tx.data.constants.anchorBlockHeader.globalVariables.blockNumber > latestBlock) {
|
|
970
|
-
const txHash = tx.getTxHash();
|
|
971
|
-
txsToDelete.set(txHash.toString(), txHash);
|
|
972
|
-
}
|
|
973
|
-
}
|
|
974
|
-
this.log.info(`Detected chain prune. Removing ${txsToDelete.size} txs built against pruned blocks.`, {
|
|
975
|
-
newLatestBlock: latestBlock,
|
|
976
|
-
previousLatestBlock: await this.getSyncedLatestBlockNum(),
|
|
977
|
-
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
|
|
978
903
|
});
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
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
|
+
});
|
|
992
926
|
}
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
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;
|
|
996
937
|
} else {
|
|
997
|
-
|
|
938
|
+
const { currentSlot } = this.epochCache.getCurrentAndNextSlot();
|
|
939
|
+
slot = currentSlot;
|
|
940
|
+
}
|
|
941
|
+
if (slot <= this.lastSlotProcessed) {
|
|
942
|
+
return;
|
|
998
943
|
}
|
|
944
|
+
this.lastSlotProcessed = slot;
|
|
945
|
+
await this.txPool.prepareForSlot(slot);
|
|
999
946
|
}
|
|
1000
947
|
async startServiceIfSynched() {
|
|
1001
948
|
if (this.currentState !== P2PClientState.SYNCHING) {
|
|
@@ -1026,14 +973,24 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
1026
973
|
this.currentState = newState;
|
|
1027
974
|
this.log.debug(`Moved from state ${P2PClientState[oldState]} to ${P2PClientState[this.currentState]}`);
|
|
1028
975
|
}
|
|
1029
|
-
|
|
1030
|
-
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);
|
|
1031
987
|
}
|
|
1032
988
|
/**
|
|
1033
|
-
*
|
|
1034
|
-
*
|
|
1035
|
-
|
|
1036
|
-
|
|
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);
|
|
1037
994
|
}
|
|
1038
995
|
handleAuthRequestFromPeer(authRequest, peerId) {
|
|
1039
996
|
return this.p2pService.handleAuthRequestFromPeer(authRequest, peerId);
|