@aztec/p2p 0.0.1-commit.e558bd1c → 0.0.1-commit.e5a3663dd
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 +10 -9
- package/dest/client/factory.d.ts.map +1 -1
- package/dest/client/factory.js +54 -15
- package/dest/client/interface.d.ts +47 -34
- package/dest/client/interface.d.ts.map +1 -1
- package/dest/client/p2p_client.d.ts +39 -51
- package/dest/client/p2p_client.d.ts.map +1 -1
- package/dest/client/p2p_client.js +173 -226
- package/dest/client/test/tx_proposal_collector/proposal_tx_collector_worker.js +23 -10
- package/dest/config.d.ts +137 -92
- package/dest/config.d.ts.map +1 -1
- package/dest/config.js +113 -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 +24 -13
- package/dest/mem_pools/attestation_pool/attestation_pool.d.ts.map +1 -1
- package/dest/mem_pools/attestation_pool/attestation_pool.js +80 -43
- package/dest/mem_pools/attestation_pool/attestation_pool_test_suite.d.ts +1 -1
- 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 +57 -57
- package/dest/mem_pools/attestation_pool/index.d.ts +2 -2
- package/dest/mem_pools/attestation_pool/index.d.ts.map +1 -1
- package/dest/mem_pools/attestation_pool/index.js +1 -1
- 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 +7 -5
- package/dest/mem_pools/index.d.ts +2 -2
- package/dest/mem_pools/index.d.ts.map +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 +33 -15
- package/dest/mem_pools/interface.d.ts +3 -3
- package/dest/mem_pools/interface.d.ts.map +1 -1
- 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 +3 -3
- package/dest/mem_pools/tx_pool_v2/eviction/eviction_manager.d.ts.map +1 -1
- package/dest/mem_pools/tx_pool_v2/eviction/eviction_manager.js +18 -9
- package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.d.ts +1 -1
- package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.d.ts.map +1 -1
- package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.js +7 -3
- package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_pre_add_rule.d.ts +3 -3
- package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_pre_add_rule.d.ts.map +1 -1
- package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_pre_add_rule.js +12 -4
- package/dest/mem_pools/tx_pool_v2/eviction/index.d.ts +3 -2
- package/dest/mem_pools/tx_pool_v2/eviction/index.d.ts.map +1 -1
- package/dest/mem_pools/tx_pool_v2/eviction/index.js +2 -1
- 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 +54 -5
- package/dest/mem_pools/tx_pool_v2/eviction/interfaces.d.ts.map +1 -1
- package/dest/mem_pools/tx_pool_v2/eviction/interfaces.js +8 -0
- package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_mining_rule.js +7 -5
- package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_reorg_rule.js +9 -7
- package/dest/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.d.ts +2 -2
- package/dest/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.d.ts.map +1 -1
- package/dest/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.js +14 -6
- package/dest/mem_pools/tx_pool_v2/eviction/low_priority_pre_add_rule.d.ts +4 -4
- package/dest/mem_pools/tx_pool_v2/eviction/low_priority_pre_add_rule.d.ts.map +1 -1
- package/dest/mem_pools/tx_pool_v2/eviction/low_priority_pre_add_rule.js +16 -4
- package/dest/mem_pools/tx_pool_v2/eviction/nullifier_conflict_rule.d.ts +3 -3
- package/dest/mem_pools/tx_pool_v2/eviction/nullifier_conflict_rule.d.ts.map +1 -1
- package/dest/mem_pools/tx_pool_v2/eviction/nullifier_conflict_rule.js +3 -3
- package/dest/mem_pools/tx_pool_v2/index.d.ts +3 -2
- package/dest/mem_pools/tx_pool_v2/index.d.ts.map +1 -1
- package/dest/mem_pools/tx_pool_v2/index.js +2 -1
- 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 +33 -12
- package/dest/mem_pools/tx_pool_v2/interfaces.d.ts.map +1 -1
- package/dest/mem_pools/tx_pool_v2/interfaces.js +5 -1
- package/dest/mem_pools/tx_pool_v2/tx_metadata.d.ts +81 -15
- package/dest/mem_pools/tx_pool_v2/tx_metadata.d.ts.map +1 -1
- package/dest/mem_pools/tx_pool_v2/tx_metadata.js +147 -19
- package/dest/mem_pools/tx_pool_v2/tx_pool_indices.d.ts +12 -3
- package/dest/mem_pools/tx_pool_v2/tx_pool_indices.d.ts.map +1 -1
- package/dest/mem_pools/tx_pool_v2/tx_pool_indices.js +50 -45
- package/dest/mem_pools/tx_pool_v2/tx_pool_v2.d.ts +12 -5
- package/dest/mem_pools/tx_pool_v2/tx_pool_v2.d.ts.map +1 -1
- package/dest/mem_pools/tx_pool_v2/tx_pool_v2.js +17 -6
- package/dest/mem_pools/tx_pool_v2/tx_pool_v2_impl.d.ts +14 -5
- package/dest/mem_pools/tx_pool_v2/tx_pool_v2_impl.d.ts.map +1 -1
- package/dest/mem_pools/tx_pool_v2/tx_pool_v2_impl.js +365 -189
- package/dest/msg_validators/attestation_validator/attestation_validator.d.ts +9 -3
- package/dest/msg_validators/attestation_validator/attestation_validator.d.ts.map +1 -1
- package/dest/msg_validators/attestation_validator/attestation_validator.js +37 -12
- package/dest/msg_validators/attestation_validator/fisherman_attestation_validator.d.ts +7 -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 +61 -3
- package/dest/msg_validators/proposal_validator/block_proposal_validator.d.ts +9 -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 +9 -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 +19 -8
- package/dest/msg_validators/proposal_validator/proposal_validator.d.ts.map +1 -1
- package/dest/msg_validators/proposal_validator/proposal_validator.js +88 -44
- 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 +13 -6
- package/dest/services/dummy_service.d.ts.map +1 -1
- package/dest/services/dummy_service.js +13 -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 +42 -39
- package/dest/services/libp2p/libp2p_service.d.ts.map +1 -1
- package/dest/services/libp2p/libp2p_service.js +336 -269
- 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 +12 -8
- 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 +83 -106
- 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 +3 -3
- package/dest/services/reqresp/protocols/block_txs/block_txs_handler.d.ts.map +1 -1
- package/dest/services/reqresp/protocols/block_txs/block_txs_reqresp.d.ts +7 -1
- 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 +15 -0
- 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 +26 -4
- package/dest/services/service.d.ts.map +1 -1
- package/dest/services/tx_collection/config.d.ts +19 -1
- package/dest/services/tx_collection/config.d.ts.map +1 -1
- package/dest/services/tx_collection/config.js +46 -0
- package/dest/services/tx_collection/fast_tx_collection.d.ts +3 -4
- package/dest/services/tx_collection/fast_tx_collection.d.ts.map +1 -1
- package/dest/services/tx_collection/fast_tx_collection.js +80 -76
- 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 +2 -1
- 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 +7 -7
- package/dest/services/tx_collection/proposal_tx_collector.d.ts.map +1 -1
- package/dest/services/tx_collection/proposal_tx_collector.js +5 -4
- 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 +35 -24
- package/dest/test-helpers/testbench-utils.d.ts.map +1 -1
- package/dest/test-helpers/testbench-utils.js +125 -38
- 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 +84 -27
- 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 -26
- package/src/client/interface.ts +52 -34
- package/src/client/p2p_client.ts +201 -269
- package/src/client/test/tx_proposal_collector/proposal_tx_collector_worker.ts +35 -14
- package/src/config.ts +181 -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 +109 -53
- package/src/mem_pools/attestation_pool/attestation_pool_test_suite.ts +61 -57
- package/src/mem_pools/attestation_pool/index.ts +3 -3
- package/src/mem_pools/attestation_pool/mocks.ts +14 -8
- package/src/mem_pools/index.ts +1 -1
- package/src/mem_pools/instrumentation.ts +22 -14
- package/src/mem_pools/interface.ts +2 -2
- package/src/mem_pools/tx_pool_v2/README.md +85 -11
- package/src/mem_pools/tx_pool_v2/deleted_pool.ts +321 -0
- package/src/mem_pools/tx_pool_v2/eviction/eviction_manager.ts +21 -8
- package/src/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.ts +7 -3
- package/src/mem_pools/tx_pool_v2/eviction/fee_payer_balance_pre_add_rule.ts +18 -4
- package/src/mem_pools/tx_pool_v2/eviction/index.ts +5 -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 +59 -4
- package/src/mem_pools/tx_pool_v2/eviction/invalid_txs_after_mining_rule.ts +5 -5
- package/src/mem_pools/tx_pool_v2/eviction/invalid_txs_after_reorg_rule.ts +8 -8
- package/src/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.ts +14 -9
- package/src/mem_pools/tx_pool_v2/eviction/low_priority_pre_add_rule.ts +33 -6
- package/src/mem_pools/tx_pool_v2/eviction/nullifier_conflict_rule.ts +4 -3
- package/src/mem_pools/tx_pool_v2/index.ts +2 -1
- package/src/mem_pools/tx_pool_v2/instrumentation.ts +69 -0
- package/src/mem_pools/tx_pool_v2/interfaces.ts +35 -12
- package/src/mem_pools/tx_pool_v2/tx_metadata.ts +215 -27
- package/src/mem_pools/tx_pool_v2/tx_pool_indices.ts +58 -45
- package/src/mem_pools/tx_pool_v2/tx_pool_v2.ts +34 -8
- package/src/mem_pools/tx_pool_v2/tx_pool_v2_impl.ts +412 -187
- package/src/msg_validators/attestation_validator/README.md +49 -0
- package/src/msg_validators/attestation_validator/attestation_validator.ts +41 -9
- package/src/msg_validators/attestation_validator/fisherman_attestation_validator.ts +12 -2
- package/src/msg_validators/clock_tolerance.ts +79 -3
- package/src/msg_validators/proposal_validator/README.md +123 -0
- package/src/msg_validators/proposal_validator/block_proposal_validator.ts +23 -4
- package/src/msg_validators/proposal_validator/checkpoint_proposal_validator.ts +34 -7
- package/src/msg_validators/proposal_validator/proposal_validator.ts +111 -47
- 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 +19 -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 +358 -298
- 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 +46 -7
- package/src/services/reqresp/batch-tx-requester/batch_tx_requester.ts +79 -112
- 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 +2 -2
- package/src/services/reqresp/protocols/block_txs/block_txs_reqresp.ts +17 -0
- 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 +37 -3
- package/src/services/tx_collection/config.ts +68 -0
- package/src/services/tx_collection/fast_tx_collection.ts +83 -76
- 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 +1 -0
- package/src/services/tx_collection/instrumentation.ts +7 -1
- package/src/services/tx_collection/proposal_tx_collector.ts +9 -13
- 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 +147 -43
- package/src/testbench/p2p_client_testbench_worker.ts +93 -30
- package/src/testbench/worker_client_manager.ts +68 -6
- package/src/util.ts +8 -2
- 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_mining_rule.js +0 -84
- 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/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,20 +611,34 @@ _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
|
-
const {
|
|
643
|
-
if (
|
|
644
|
-
|
|
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
|
+
}
|
|
645
642
|
}
|
|
646
643
|
return this.p2pService.propagate(proposal);
|
|
647
644
|
}
|
|
@@ -652,6 +649,8 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
652
649
|
// Store our own last-block proposal so we can respond to req/resp requests for it.
|
|
653
650
|
await this.attestationPool.tryAddBlockProposal(blockProposal);
|
|
654
651
|
}
|
|
652
|
+
// Gossipsub doesn't deliver own messages, so fire the all-nodes handler locally
|
|
653
|
+
await this.p2pService.notifyOwnCheckpointProposal(proposal.toCore());
|
|
655
654
|
return this.p2pService.propagate(proposal);
|
|
656
655
|
}
|
|
657
656
|
async broadcastCheckpointAttestations(attestations) {
|
|
@@ -664,36 +663,43 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
664
663
|
addOwnCheckpointAttestations(attestations) {
|
|
665
664
|
return this.attestationPool.addOwnCheckpointAttestations(attestations);
|
|
666
665
|
}
|
|
666
|
+
hasBlockProposalsForSlot(slot) {
|
|
667
|
+
return this.attestationPool.hasBlockProposalsForSlot(slot);
|
|
668
|
+
}
|
|
667
669
|
// REVIEW: https://github.com/AztecProtocol/aztec-packages/issues/7963
|
|
668
670
|
// ^ This pattern is not my favorite (md)
|
|
669
671
|
registerBlockProposalHandler(handler) {
|
|
670
672
|
this.p2pService.registerBlockReceivedCallback(handler);
|
|
671
673
|
}
|
|
672
|
-
|
|
673
|
-
this.p2pService.
|
|
674
|
+
registerValidatorCheckpointProposalHandler(handler) {
|
|
675
|
+
this.p2pService.registerValidatorCheckpointReceivedCallback(handler);
|
|
676
|
+
}
|
|
677
|
+
registerAllNodesCheckpointProposalHandler(handler) {
|
|
678
|
+
this.p2pService.registerAllNodesCheckpointReceivedCallback(handler);
|
|
674
679
|
}
|
|
675
680
|
registerDuplicateProposalCallback(callback) {
|
|
676
681
|
this.p2pService.registerDuplicateProposalCallback(callback);
|
|
677
682
|
}
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
*/ async requestTxsByHash(txHashes, pinnedPeerId) {
|
|
681
|
-
const timeoutMs = 8000; // Longer timeout for now
|
|
682
|
-
const maxRetryAttempts = 10; // Keep retrying within the timeout
|
|
683
|
-
const requests = chunkTxHashesRequest(txHashes);
|
|
684
|
-
const maxPeers = Math.min(Math.ceil(requests.length / 3), 10);
|
|
685
|
-
const txBatches = await this.p2pService.sendBatchRequest(ReqRespSubProtocol.TX, requests, pinnedPeerId, timeoutMs, maxPeers, maxRetryAttempts);
|
|
686
|
-
const txs = txBatches.flat();
|
|
687
|
-
if (txs.length > 0) {
|
|
688
|
-
await this.txPool.addTxs(txs);
|
|
689
|
-
}
|
|
690
|
-
const txHashesStr = txHashes.map((tx)=>tx.toString()).join(', ');
|
|
691
|
-
this.log.debug(`Requested txs ${txHashesStr} (${txs.length} / ${txHashes.length}) from peers`);
|
|
692
|
-
// We return all transactions, even the not found ones to the caller, such they can handle missing items themselves.
|
|
693
|
-
return txs;
|
|
683
|
+
registerDuplicateAttestationCallback(callback) {
|
|
684
|
+
this.p2pService.registerDuplicateAttestationCallback(callback);
|
|
694
685
|
}
|
|
695
|
-
getPendingTxs(limit, after) {
|
|
696
|
-
|
|
686
|
+
async getPendingTxs(limit, after) {
|
|
687
|
+
if (limit !== undefined && limit <= 0) {
|
|
688
|
+
throw new TypeError('limit must be greater than 0');
|
|
689
|
+
}
|
|
690
|
+
let txHashes = await this.txPool.getPendingTxHashes();
|
|
691
|
+
let startIndex = 0;
|
|
692
|
+
if (after) {
|
|
693
|
+
startIndex = txHashes.findIndex((txHash)=>after.equals(txHash));
|
|
694
|
+
if (startIndex === -1) {
|
|
695
|
+
return [];
|
|
696
|
+
}
|
|
697
|
+
startIndex++;
|
|
698
|
+
}
|
|
699
|
+
const endIndex = limit !== undefined ? startIndex + limit : undefined;
|
|
700
|
+
txHashes = txHashes.slice(startIndex, endIndex);
|
|
701
|
+
const maybeTxs = await Promise.all(txHashes.map((txHash)=>this.txPool.getTxByHash(txHash)));
|
|
702
|
+
return maybeTxs.filter((tx)=>!!tx);
|
|
697
703
|
}
|
|
698
704
|
getPendingTxCount() {
|
|
699
705
|
return this.txPool.getPendingTxCount();
|
|
@@ -706,52 +712,13 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
706
712
|
}
|
|
707
713
|
}
|
|
708
714
|
}
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
* @returns An array of Txs.
|
|
715
|
-
*/ async getTxs(filter, limit, after) {
|
|
716
|
-
if (limit !== undefined && limit <= 0) {
|
|
717
|
-
throw new TypeError('limit must be greater than 0');
|
|
718
|
-
}
|
|
719
|
-
let txs = undefined;
|
|
720
|
-
let txHashes;
|
|
721
|
-
if (filter === 'all') {
|
|
722
|
-
txs = await this.txPool.getAllTxs();
|
|
723
|
-
txHashes = await Promise.all(txs.map((tx)=>tx.getTxHash()));
|
|
724
|
-
} else if (filter === 'mined') {
|
|
725
|
-
const minedTxHashes = await this.txPool.getMinedTxHashes();
|
|
726
|
-
txHashes = minedTxHashes.map(([txHash])=>txHash);
|
|
727
|
-
} else if (filter === 'pending') {
|
|
728
|
-
txHashes = await this.txPool.getPendingTxHashes();
|
|
729
|
-
} else {
|
|
730
|
-
const _ = filter;
|
|
731
|
-
throw new Error(`Unknown filter ${filter}`);
|
|
732
|
-
}
|
|
733
|
-
let startIndex = 0;
|
|
734
|
-
let endIndex = undefined;
|
|
735
|
-
if (after) {
|
|
736
|
-
startIndex = txHashes.findIndex((txHash)=>after.equals(txHash));
|
|
737
|
-
// if we can't find the last tx in our set then return an empty array as pagination is no longer valid.
|
|
738
|
-
if (startIndex === -1) {
|
|
739
|
-
return [];
|
|
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;
|
|
740
720
|
}
|
|
741
|
-
// increment by one because we don't want to return the same tx again
|
|
742
|
-
startIndex++;
|
|
743
|
-
}
|
|
744
|
-
if (limit !== undefined) {
|
|
745
|
-
endIndex = startIndex + limit;
|
|
746
|
-
}
|
|
747
|
-
txHashes = txHashes.slice(startIndex, endIndex);
|
|
748
|
-
if (txs) {
|
|
749
|
-
txs = txs.slice(startIndex, endIndex);
|
|
750
|
-
} else {
|
|
751
|
-
const maybeTxs = await Promise.all(txHashes.map((txHash)=>this.txPool.getTxByHash(txHash)));
|
|
752
|
-
txs = maybeTxs.filter((tx)=>!!tx);
|
|
753
721
|
}
|
|
754
|
-
return txs;
|
|
755
722
|
}
|
|
756
723
|
/**
|
|
757
724
|
* Returns a transaction in the transaction pool by its hash.
|
|
@@ -771,42 +738,6 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
771
738
|
return this.txPool.hasTxs(txHashes);
|
|
772
739
|
}
|
|
773
740
|
/**
|
|
774
|
-
* Returns transactions in the transaction pool by hash.
|
|
775
|
-
* If a transaction is not in the pool, it will be requested from the network.
|
|
776
|
-
* @param txHashes - Hashes of the transactions to look for.
|
|
777
|
-
* @returns The txs found, or undefined if not found in the order requested.
|
|
778
|
-
*/ async getTxsByHash(txHashes, pinnedPeerId) {
|
|
779
|
-
const txs = await Promise.all(txHashes.map((txHash)=>this.txPool.getTxByHash(txHash)));
|
|
780
|
-
const missingTxHashes = txs.map((tx, index)=>[
|
|
781
|
-
tx,
|
|
782
|
-
index
|
|
783
|
-
]).filter(([tx, _index])=>!tx).map(([_tx, index])=>txHashes[index]);
|
|
784
|
-
if (missingTxHashes.length === 0) {
|
|
785
|
-
return txs;
|
|
786
|
-
}
|
|
787
|
-
const missingTxs = await this.requestTxsByHash(missingTxHashes, pinnedPeerId);
|
|
788
|
-
// TODO: optimize
|
|
789
|
-
// Merge the found txs in order
|
|
790
|
-
const mergingTxs = txHashes.map((txHash)=>{
|
|
791
|
-
// Is it in the txs list from the mempool?
|
|
792
|
-
for (const tx of txs){
|
|
793
|
-
if (tx !== undefined && tx.getTxHash().equals(txHash)) {
|
|
794
|
-
return tx;
|
|
795
|
-
}
|
|
796
|
-
}
|
|
797
|
-
// Is it in the fetched missing txs?
|
|
798
|
-
// Note: this is an O(n^2) operation, but we expect the number of missing txs to be small.
|
|
799
|
-
for (const tx of missingTxs){
|
|
800
|
-
if (tx.getTxHash().equals(txHash)) {
|
|
801
|
-
return tx;
|
|
802
|
-
}
|
|
803
|
-
}
|
|
804
|
-
// Otherwise return undefined
|
|
805
|
-
return undefined;
|
|
806
|
-
});
|
|
807
|
-
return mergingTxs;
|
|
808
|
-
}
|
|
809
|
-
/**
|
|
810
741
|
* Returns an archived transaction in the transaction pool by its hash.
|
|
811
742
|
* @param txHash - Hash of the archived transaction to look for.
|
|
812
743
|
* @returns A single tx or undefined.
|
|
@@ -814,31 +745,35 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
814
745
|
return this.txPool.getArchivedTxByHash(txHash);
|
|
815
746
|
}
|
|
816
747
|
/**
|
|
817
|
-
*
|
|
818
|
-
* @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.
|
|
819
750
|
* @returns Empty promise.
|
|
820
751
|
**/ async sendTx(tx) {
|
|
821
|
-
|
|
752
|
+
this.#assertIsReady();
|
|
753
|
+
const result = await this.txPool.addPendingTxs([
|
|
822
754
|
tx
|
|
823
|
-
]
|
|
824
|
-
|
|
825
|
-
|
|
755
|
+
], {
|
|
756
|
+
feeComparisonOnly: true
|
|
757
|
+
});
|
|
758
|
+
if (result.accepted.length === 1) {
|
|
826
759
|
await this.p2pService.propagate(tx);
|
|
760
|
+
return;
|
|
827
761
|
}
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
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}`);
|
|
835
769
|
}
|
|
836
770
|
/**
|
|
837
771
|
* Returns whether the given tx hash is flagged as pending or mined.
|
|
838
772
|
* @param txHash - Hash of the tx to query.
|
|
839
773
|
* @returns Pending or mined depending on its status, or undefined if not found.
|
|
840
|
-
*/ getTxStatus(txHash) {
|
|
841
|
-
|
|
774
|
+
*/ async getTxStatus(txHash) {
|
|
775
|
+
const status = await this.txPool.getTxStatus(txHash);
|
|
776
|
+
return status === 'protected' ? 'pending' : status;
|
|
842
777
|
}
|
|
843
778
|
getEnr() {
|
|
844
779
|
return this.p2pService.getEnr();
|
|
@@ -847,13 +782,11 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
847
782
|
return Promise.resolve(this.p2pService.getEnr()?.encodeTxt());
|
|
848
783
|
}
|
|
849
784
|
/**
|
|
850
|
-
*
|
|
851
|
-
*
|
|
852
|
-
|
|
853
|
-
* @returns Empty promise.
|
|
854
|
-
**/ 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) {
|
|
855
788
|
this.#assertIsReady();
|
|
856
|
-
await this.txPool.
|
|
789
|
+
await this.txPool.handleFailedExecution(txHashes);
|
|
857
790
|
}
|
|
858
791
|
/**
|
|
859
792
|
* Public function to check if the p2p client is fully synced and ready to receive txs.
|
|
@@ -897,13 +830,12 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
897
830
|
};
|
|
898
831
|
}
|
|
899
832
|
/**
|
|
900
|
-
*
|
|
833
|
+
* Handles mined blocks by marking the txs in them as mined.
|
|
901
834
|
* @param blocks - A list of existing blocks with txs that the P2P client needs to ensure the tx pool is reconciled with.
|
|
902
835
|
* @returns Empty promise.
|
|
903
|
-
*/ async
|
|
836
|
+
*/ async handleMinedBlocks(blocks) {
|
|
904
837
|
for (const block of blocks){
|
|
905
|
-
|
|
906
|
-
await this.txPool.markAsMined(txHashes, block.header);
|
|
838
|
+
await this.txPool.handleMinedBlock(block);
|
|
907
839
|
}
|
|
908
840
|
}
|
|
909
841
|
/**
|
|
@@ -912,14 +844,13 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
912
844
|
* @returns Empty promise.
|
|
913
845
|
*/ async handleLatestL2Blocks(blocks) {
|
|
914
846
|
if (!blocks.length) {
|
|
915
|
-
return
|
|
847
|
+
return;
|
|
916
848
|
}
|
|
917
|
-
await this.
|
|
918
|
-
await this.
|
|
849
|
+
await this.handleMinedBlocks(blocks);
|
|
850
|
+
await this.maybeCallPrepareForSlot();
|
|
919
851
|
await this.startCollectingMissingTxs(blocks);
|
|
920
852
|
const lastBlock = blocks.at(-1);
|
|
921
853
|
await this.synchedLatestSlot.set(BigInt(lastBlock.header.getSlot()));
|
|
922
|
-
this.log.verbose(`Synched to latest block ${lastBlock.number}`);
|
|
923
854
|
}
|
|
924
855
|
/** Request txs for unproven blocks so the prover node has more chances to get them. */ async startCollectingMissingTxs(blocks) {
|
|
925
856
|
try {
|
|
@@ -953,59 +884,65 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
953
884
|
* @returns Empty promise.
|
|
954
885
|
*/ async handleFinalizedL2Blocks(blocks) {
|
|
955
886
|
if (!blocks.length) {
|
|
956
|
-
return
|
|
887
|
+
return;
|
|
957
888
|
}
|
|
958
|
-
|
|
959
|
-
const
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
this.log.debug(`Deleting ${txHashes.length} txs from pool from finalized blocks up to ${lastBlockNum}`);
|
|
963
|
-
await this.txPool.deleteTxs(txHashes, {
|
|
964
|
-
permanently: true
|
|
965
|
-
});
|
|
966
|
-
await this.txPool.cleanupDeletedMinedTxs(lastBlockNum);
|
|
967
|
-
await this.attestationPool.deleteOlderThan(lastBlockSlot);
|
|
968
|
-
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());
|
|
969
893
|
}
|
|
970
894
|
/**
|
|
971
895
|
* Updates the tx pool after a chain prune.
|
|
972
|
-
*
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
if (tx.data.constants.anchorBlockHeader.globalVariables.blockNumber > latestBlock) {
|
|
980
|
-
const txHash = tx.getTxHash();
|
|
981
|
-
txsToDelete.set(txHash.toString(), txHash);
|
|
982
|
-
}
|
|
983
|
-
}
|
|
984
|
-
this.log.info(`Detected chain prune. Removing ${txsToDelete.size} txs built against pruned blocks.`, {
|
|
985
|
-
newLatestBlock: latestBlock,
|
|
986
|
-
previousLatestBlock: await this.getSyncedLatestBlockNum(),
|
|
987
|
-
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
|
|
988
903
|
});
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
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
|
+
});
|
|
1002
926
|
}
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
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;
|
|
1006
937
|
} else {
|
|
1007
|
-
|
|
938
|
+
const { currentSlot } = this.epochCache.getCurrentAndNextSlot();
|
|
939
|
+
slot = currentSlot;
|
|
940
|
+
}
|
|
941
|
+
if (slot <= this.lastSlotProcessed) {
|
|
942
|
+
return;
|
|
1008
943
|
}
|
|
944
|
+
this.lastSlotProcessed = slot;
|
|
945
|
+
await this.txPool.prepareForSlot(slot);
|
|
1009
946
|
}
|
|
1010
947
|
async startServiceIfSynched() {
|
|
1011
948
|
if (this.currentState !== P2PClientState.SYNCHING) {
|
|
@@ -1036,14 +973,24 @@ _dec = trackSpan('p2pClient.broadcastProposal', async (proposal)=>({
|
|
|
1036
973
|
this.currentState = newState;
|
|
1037
974
|
this.log.debug(`Moved from state ${P2PClientState[oldState]} to ${P2PClientState[this.currentState]}`);
|
|
1038
975
|
}
|
|
1039
|
-
|
|
1040
|
-
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);
|
|
1041
987
|
}
|
|
1042
988
|
/**
|
|
1043
|
-
*
|
|
1044
|
-
*
|
|
1045
|
-
|
|
1046
|
-
|
|
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);
|
|
1047
994
|
}
|
|
1048
995
|
handleAuthRequestFromPeer(authRequest, peerId) {
|
|
1049
996
|
return this.p2pService.handleAuthRequestFromPeer(authRequest, peerId);
|