@aztec/p2p 0.0.1-commit.e2b2873ed → 0.0.1-commit.e304674f1
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 +7 -7
- package/dest/client/factory.d.ts.map +1 -1
- package/dest/client/factory.js +37 -30
- package/dest/client/interface.d.ts +22 -20
- package/dest/client/interface.d.ts.map +1 -1
- package/dest/client/p2p_client.d.ts +11 -19
- package/dest/client/p2p_client.d.ts.map +1 -1
- package/dest/client/p2p_client.js +83 -102
- package/dest/client/test/tx_proposal_collector/proposal_tx_collector_worker.js +20 -10
- package/dest/config.d.ts +43 -15
- package/dest/config.d.ts.map +1 -1
- package/dest/config.js +91 -37
- 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 +1 -2
- package/dest/index.d.ts.map +1 -1
- package/dest/index.js +0 -1
- package/dest/mem_pools/attestation_pool/attestation_pool.d.ts +7 -5
- package/dest/mem_pools/attestation_pool/attestation_pool.d.ts.map +1 -1
- package/dest/mem_pools/attestation_pool/attestation_pool.js +16 -6
- package/dest/mem_pools/attestation_pool/attestation_pool_test_suite.js +6 -6
- 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 +1 -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 +16 -14
- package/dest/mem_pools/tx_pool_v2/deleted_pool.d.ts +30 -13
- package/dest/mem_pools/tx_pool_v2/deleted_pool.d.ts.map +1 -1
- package/dest/mem_pools/tx_pool_v2/deleted_pool.js +91 -20
- 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 +2 -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 +1 -1
- 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 +7 -5
- 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 +2 -2
- package/dest/mem_pools/tx_pool_v2/index.d.ts.map +1 -1
- package/dest/mem_pools/tx_pool_v2/index.js +1 -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 +28 -10
- 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 +56 -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 +112 -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 +319 -147
- package/dest/msg_validators/attestation_validator/attestation_validator.d.ts +1 -1
- package/dest/msg_validators/attestation_validator/attestation_validator.d.ts.map +1 -1
- package/dest/msg_validators/attestation_validator/attestation_validator.js +5 -4
- package/dest/msg_validators/clock_tolerance.d.ts +1 -1
- package/dest/msg_validators/clock_tolerance.d.ts.map +1 -1
- package/dest/msg_validators/clock_tolerance.js +4 -3
- package/dest/msg_validators/proposal_validator/block_proposal_validator.d.ts +6 -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 +6 -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 +13 -8
- package/dest/msg_validators/proposal_validator/proposal_validator.d.ts.map +1 -1
- package/dest/msg_validators/proposal_validator/proposal_validator.js +53 -41
- package/dest/msg_validators/tx_validator/aggregate_tx_validator.d.ts +2 -2
- 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/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/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 +2 -2
- 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/dummy_service.d.ts +7 -5
- package/dest/services/dummy_service.d.ts.map +1 -1
- package/dest/services/dummy_service.js +9 -5
- package/dest/services/encoding.d.ts +6 -2
- package/dest/services/encoding.d.ts.map +1 -1
- package/dest/services/encoding.js +16 -9
- package/dest/services/gossipsub/topic_score_params.d.ts +18 -6
- package/dest/services/gossipsub/topic_score_params.d.ts.map +1 -1
- package/dest/services/gossipsub/topic_score_params.js +32 -10
- package/dest/services/libp2p/libp2p_service.d.ts +29 -36
- package/dest/services/libp2p/libp2p_service.d.ts.map +1 -1
- package/dest/services/libp2p/libp2p_service.js +213 -197
- 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 +24 -9
- 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 +32 -10
- 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/interface.d.ts +1 -9
- package/dest/services/reqresp/interface.d.ts.map +1 -1
- package/dest/services/reqresp/interface.js +0 -11
- 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/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 +1 -1
- package/dest/services/reqresp/protocols/tx.d.ts.map +1 -1
- package/dest/services/reqresp/protocols/tx.js +1 -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 +1 -1
- package/dest/services/reqresp/reqresp.d.ts.map +1 -1
- package/dest/services/reqresp/reqresp.js +20 -11
- package/dest/services/service.d.ts +9 -4
- package/dest/services/service.d.ts.map +1 -1
- package/dest/services/tx_collection/config.d.ts +13 -1
- package/dest/services/tx_collection/config.d.ts.map +1 -1
- package/dest/services/tx_collection/config.js +30 -0
- package/dest/services/tx_collection/fast_tx_collection.d.ts +1 -4
- package/dest/services/tx_collection/fast_tx_collection.d.ts.map +1 -1
- package/dest/services/tx_collection/fast_tx_collection.js +65 -75
- package/dest/services/tx_collection/file_store_tx_collection.d.ts +38 -29
- package/dest/services/tx_collection/file_store_tx_collection.d.ts.map +1 -1
- package/dest/services/tx_collection/file_store_tx_collection.js +126 -77
- package/dest/services/tx_collection/file_store_tx_source.d.ts +17 -6
- package/dest/services/tx_collection/file_store_tx_source.d.ts.map +1 -1
- package/dest/services/tx_collection/file_store_tx_source.js +53 -10
- 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 +5 -3
- package/dest/services/tx_collection/slow_tx_collection.d.ts.map +1 -1
- package/dest/services/tx_collection/slow_tx_collection.js +17 -12
- package/dest/services/tx_collection/tx_collection.d.ts +9 -9
- package/dest/services/tx_collection/tx_collection.d.ts.map +1 -1
- package/dest/services/tx_collection/tx_collection.js +26 -10
- package/dest/services/tx_collection/tx_collection_sink.d.ts +6 -5
- package/dest/services/tx_collection/tx_collection_sink.d.ts.map +1 -1
- package/dest/services/tx_collection/tx_collection_sink.js +13 -22
- 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/tx_file_store.d.ts +3 -2
- 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 +3 -3
- package/dest/services/tx_provider.d.ts.map +1 -1
- package/dest/services/tx_provider.js +4 -4
- package/dest/test-helpers/make-test-p2p-clients.d.ts +5 -6
- 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 +4 -4
- package/dest/test-helpers/mock-pubsub.d.ts.map +1 -1
- package/dest/test-helpers/mock-pubsub.js +8 -2
- 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 +2 -4
- package/dest/test-helpers/testbench-utils.d.ts +8 -3
- package/dest/test-helpers/testbench-utils.d.ts.map +1 -1
- package/dest/test-helpers/testbench-utils.js +30 -4
- 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 +78 -26
- 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 +68 -48
- package/src/client/interface.ts +26 -21
- package/src/client/p2p_client.ts +91 -132
- package/src/client/test/tx_proposal_collector/proposal_tx_collector_worker.ts +33 -14
- package/src/config.ts +133 -43
- package/src/errors/p2p-service.error.ts +11 -0
- package/src/errors/tx-pool.error.ts +12 -0
- package/src/index.ts +0 -1
- package/src/mem_pools/attestation_pool/attestation_pool.ts +20 -9
- package/src/mem_pools/attestation_pool/attestation_pool_test_suite.ts +6 -6
- package/src/mem_pools/attestation_pool/mocks.ts +2 -1
- package/src/mem_pools/index.ts +0 -3
- package/src/mem_pools/instrumentation.ts +17 -13
- package/src/mem_pools/tx_pool_v2/README.md +52 -28
- package/src/mem_pools/tx_pool_v2/deleted_pool.ts +109 -22
- 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 +4 -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 +5 -5
- 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 +1 -1
- package/src/mem_pools/tx_pool_v2/instrumentation.ts +69 -0
- package/src/mem_pools/tx_pool_v2/interfaces.ts +30 -10
- package/src/mem_pools/tx_pool_v2/tx_metadata.ts +163 -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 +353 -143
- package/src/msg_validators/attestation_validator/README.md +49 -0
- package/src/msg_validators/attestation_validator/attestation_validator.ts +5 -4
- package/src/msg_validators/clock_tolerance.ts +4 -3
- package/src/msg_validators/proposal_validator/README.md +123 -0
- package/src/msg_validators/proposal_validator/block_proposal_validator.ts +14 -4
- package/src/msg_validators/proposal_validator/checkpoint_proposal_validator.ts +20 -7
- package/src/msg_validators/proposal_validator/proposal_validator.ts +69 -45
- package/src/msg_validators/tx_validator/README.md +119 -0
- package/src/msg_validators/tx_validator/aggregate_tx_validator.ts +3 -3
- 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/contract_instance_validator.ts +56 -0
- package/src/msg_validators/tx_validator/data_validator.ts +42 -1
- 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 +7 -7
- package/src/services/dummy_service.ts +12 -7
- package/src/services/encoding.ts +16 -8
- package/src/services/gossipsub/README.md +29 -14
- package/src/services/gossipsub/topic_score_params.ts +49 -13
- package/src/services/libp2p/libp2p_service.ts +228 -223
- package/src/services/peer-manager/metrics.ts +7 -0
- package/src/services/peer-manager/peer_manager.ts +28 -9
- package/src/services/peer-manager/peer_scoring.ts +27 -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/interface.ts +0 -11
- package/src/services/reqresp/metrics.ts +0 -1
- package/src/services/reqresp/protocols/index.ts +0 -1
- package/src/services/reqresp/protocols/tx.ts +1 -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 +23 -13
- package/src/services/service.ts +17 -3
- package/src/services/tx_collection/config.ts +42 -0
- package/src/services/tx_collection/fast_tx_collection.ts +71 -76
- package/src/services/tx_collection/file_store_tx_collection.ts +143 -93
- package/src/services/tx_collection/file_store_tx_source.ts +69 -10
- 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 +17 -13
- package/src/services/tx_collection/tx_collection.ts +46 -17
- package/src/services/tx_collection/tx_collection_sink.ts +15 -29
- package/src/services/tx_collection/tx_source.ts +28 -8
- package/src/services/tx_file_store/tx_file_store.ts +6 -4
- package/src/services/tx_provider.ts +2 -2
- package/src/test-helpers/make-test-p2p-clients.ts +1 -3
- package/src/test-helpers/mock-pubsub.ts +13 -6
- package/src/test-helpers/reqresp-nodes.ts +3 -8
- package/src/test-helpers/testbench-utils.ts +41 -6
- package/src/testbench/p2p_client_testbench_worker.ts +89 -29
- 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
|
@@ -370,14 +370,15 @@ function applyDecs2203RFactory() {
|
|
|
370
370
|
function _apply_decs_2203_r(targetClass, memberDecs, classDecs, parentClass) {
|
|
371
371
|
return (_apply_decs_2203_r = applyDecs2203RFactory())(targetClass, memberDecs, classDecs, parentClass);
|
|
372
372
|
}
|
|
373
|
-
var _dec, _dec1, _dec2, _dec3, _dec4, _dec5, _dec6,
|
|
373
|
+
var _dec, _dec1, _dec2, _dec3, _dec4, _dec5, _dec6, _initProto;
|
|
374
374
|
import { BlockNumber } from '@aztec/foundation/branded-types';
|
|
375
|
+
import { maxBy } from '@aztec/foundation/collection';
|
|
375
376
|
import { createLibp2pComponentLogger, createLogger } from '@aztec/foundation/log';
|
|
376
377
|
import { RunningPromise } from '@aztec/foundation/running-promise';
|
|
377
378
|
import { Timer } from '@aztec/foundation/timer';
|
|
378
379
|
import { protocolContractsHash } from '@aztec/protocol-contracts';
|
|
379
380
|
import { GasFees } from '@aztec/stdlib/gas';
|
|
380
|
-
import { BlockProposal, CheckpointAttestation, CheckpointProposal,
|
|
381
|
+
import { BlockProposal, CheckpointAttestation, CheckpointProposal, P2PMessage, PeerErrorSeverity, PeerErrorSeverityByHarshness, TopicType, createTopicString, getTopicsForConfig, metricsTopicStrToLabels } from '@aztec/stdlib/p2p';
|
|
381
382
|
import { MerkleTreeId } from '@aztec/stdlib/trees';
|
|
382
383
|
import { Tx } from '@aztec/stdlib/tx';
|
|
383
384
|
import { compressComponentVersions } from '@aztec/stdlib/versioning';
|
|
@@ -394,9 +395,10 @@ import { mplex } from '@libp2p/mplex';
|
|
|
394
395
|
import { tcp } from '@libp2p/tcp';
|
|
395
396
|
import { ENR } from '@nethermindeth/enr';
|
|
396
397
|
import { createLibp2p } from 'libp2p';
|
|
398
|
+
import { CheckpointProposalReceivedCallbackNotRegisteredError } from '../../errors/p2p-service.error.js';
|
|
397
399
|
import { BlockProposalValidator, CheckpointAttestationValidator, CheckpointProposalValidator, DoubleSpendTxValidator, FishermanAttestationValidator, getDefaultAllowedSetupFunctions } from '../../msg_validators/index.js';
|
|
398
400
|
import { MessageSeenValidator } from '../../msg_validators/msg_seen_validator/msg_seen_validator.js';
|
|
399
|
-
import {
|
|
401
|
+
import { createFirstStageTxValidationsForGossipedTransactions, createSecondStageTxValidationsForGossipedTransactions, createTxValidatorForBlockProposalReceivedTxs, createTxValidatorForReqResponseReceivedTxs } from '../../msg_validators/tx_validator/factory.js';
|
|
400
402
|
import { GossipSubEvent } from '../../types/index.js';
|
|
401
403
|
import { convertToMultiaddr } from '../../util.js';
|
|
402
404
|
import { getVersions } from '../../versioning.js';
|
|
@@ -407,8 +409,7 @@ import { APP_SPECIFIC_WEIGHT, gossipScoreThresholds } from '../gossipsub/scoring
|
|
|
407
409
|
import { createAllTopicScoreParams } from '../gossipsub/topic_score_params.js';
|
|
408
410
|
import { PeerManager } from '../peer-manager/peer_manager.js';
|
|
409
411
|
import { PeerScoring } from '../peer-manager/peer_scoring.js';
|
|
410
|
-
import { DEFAULT_SUB_PROTOCOL_VALIDATORS, ReqRespSubProtocol, ValidationError } from '../reqresp/index.js';
|
|
411
|
-
import { pingHandler, reqGoodbyeHandler, reqRespBlockHandler, reqRespBlockTxsHandler, reqRespStatusHandler, reqRespTxHandler } from '../reqresp/index.js';
|
|
412
|
+
import { DEFAULT_SUB_PROTOCOL_VALIDATORS, ReqRespSubProtocol, ValidationError, pingHandler, reqGoodbyeHandler, reqRespBlockTxsHandler, reqRespStatusHandler, reqRespTxHandler } from '../reqresp/index.js';
|
|
412
413
|
import { ReqResp } from '../reqresp/reqresp.js';
|
|
413
414
|
import { P2PInstrumentation } from './instrumentation.js';
|
|
414
415
|
_dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId, attestation)=>({
|
|
@@ -430,19 +431,10 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
430
431
|
[Attributes.BLOCK_ARCHIVE]: request.archiveRoot.toString()
|
|
431
432
|
})), _dec6 = trackSpan('Libp2pService.validateRequestedTx', (requestedTxHash, _responseTx)=>({
|
|
432
433
|
[Attributes.TX_HASH]: requestedTxHash.toString()
|
|
433
|
-
})), _dec7 = trackSpan('Libp2pService.validateRequestedBlock', (requestedBlockNumber, _responseBlock)=>({
|
|
434
|
-
[Attributes.BLOCK_NUMBER]: requestedBlockNumber.toString()
|
|
435
|
-
})), _dec8 = trackSpan('Libp2pService.validatePropagatedTx', (tx)=>({
|
|
436
|
-
[Attributes.TX_HASH]: tx.getTxHash().toString()
|
|
437
|
-
})), _dec9 = trackSpan('Libp2pService.validateCheckpointAttestation', async (_, attestation)=>({
|
|
438
|
-
[Attributes.SLOT_NUMBER]: attestation.payload.header.slotNumber,
|
|
439
|
-
[Attributes.BLOCK_ARCHIVE]: attestation.archive.toString(),
|
|
440
|
-
[Attributes.P2P_ID]: await attestation.p2pMessageLoggingIdentifier().then((i)=>i.toString())
|
|
441
434
|
}));
|
|
442
435
|
/**
|
|
443
436
|
* Lib P2P implementation of the P2PService interface.
|
|
444
437
|
*/ export class LibP2PService extends WithTracer {
|
|
445
|
-
clientType;
|
|
446
438
|
config;
|
|
447
439
|
node;
|
|
448
440
|
peerDiscoveryService;
|
|
@@ -489,21 +481,6 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
489
481
|
_dec6,
|
|
490
482
|
2,
|
|
491
483
|
"validateRequestedTxs"
|
|
492
|
-
],
|
|
493
|
-
[
|
|
494
|
-
_dec7,
|
|
495
|
-
2,
|
|
496
|
-
"validateRequestedBlock"
|
|
497
|
-
],
|
|
498
|
-
[
|
|
499
|
-
_dec8,
|
|
500
|
-
2,
|
|
501
|
-
"validatePropagatedTx"
|
|
502
|
-
],
|
|
503
|
-
[
|
|
504
|
-
_dec9,
|
|
505
|
-
2,
|
|
506
|
-
"validateCheckpointAttestation"
|
|
507
484
|
]
|
|
508
485
|
], []));
|
|
509
486
|
}
|
|
@@ -527,13 +504,18 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
527
504
|
* Callback for when a checkpoint proposal is received from a peer.
|
|
528
505
|
* @param checkpoint - The checkpoint proposal received from the peer.
|
|
529
506
|
* @returns The attestations for the checkpoint, if any.
|
|
530
|
-
*/
|
|
507
|
+
*/ allNodesCheckpointReceivedCallback;
|
|
508
|
+
/**
|
|
509
|
+
* Callback for when a checkpoint proposal is received - specifically for validators - from a peer.
|
|
510
|
+
* @param checkpoint - The checkpoint proposal received from the peer.
|
|
511
|
+
* @returns The attestations for the checkpoint, if any.
|
|
512
|
+
*/ validatorCheckpointReceivedCallback;
|
|
531
513
|
gossipSubEventHandler;
|
|
532
514
|
instrumentation;
|
|
533
515
|
telemetry;
|
|
534
516
|
logger;
|
|
535
|
-
constructor(
|
|
536
|
-
super(telemetry, 'LibP2PService'), this.
|
|
517
|
+
constructor(config, node, peerDiscoveryService, reqresp, peerManager, mempools, archiver, epochCache, proofVerifier, worldStateSynchronizer, telemetry, logger = createLogger('p2p:libp2p_service')){
|
|
518
|
+
super(telemetry, 'LibP2PService'), this.config = config, this.node = node, this.peerDiscoveryService = peerDiscoveryService, this.reqresp = reqresp, this.peerManager = peerManager, this.mempools = mempools, this.archiver = archiver, this.epochCache = epochCache, this.proofVerifier = proofVerifier, this.worldStateSynchronizer = worldStateSynchronizer, this.msgIdSeenValidators = (_initProto(this), {}), this.protocolVersion = '', this.topicStrings = {};
|
|
537
519
|
this.telemetry = telemetry;
|
|
538
520
|
// Create child logger with fisherman prefix if in fisherman mode
|
|
539
521
|
this.logger = config.fishermanMode ? logger.createChild('[FISHERMAN]') : logger;
|
|
@@ -549,22 +531,24 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
549
531
|
this.topicStrings[TopicType.block_proposal] = createTopicString(TopicType.block_proposal, this.protocolVersion);
|
|
550
532
|
this.topicStrings[TopicType.checkpoint_proposal] = createTopicString(TopicType.checkpoint_proposal, this.protocolVersion);
|
|
551
533
|
this.topicStrings[TopicType.checkpoint_attestation] = createTopicString(TopicType.checkpoint_attestation, this.protocolVersion);
|
|
552
|
-
|
|
553
|
-
txsPermitted: !config.disableTransactions
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
534
|
+
const proposalValidatorOpts = {
|
|
535
|
+
txsPermitted: !config.disableTransactions,
|
|
536
|
+
maxTxsPerBlock: config.validateMaxTxsPerBlock ?? config.validateMaxTxsPerCheckpoint
|
|
537
|
+
};
|
|
538
|
+
this.blockProposalValidator = new BlockProposalValidator(epochCache, proposalValidatorOpts);
|
|
539
|
+
this.checkpointProposalValidator = new CheckpointProposalValidator(epochCache, proposalValidatorOpts);
|
|
558
540
|
this.checkpointAttestationValidator = config.fishermanMode ? new FishermanAttestationValidator(epochCache, mempools.attestationPool, telemetry) : new CheckpointAttestationValidator(epochCache);
|
|
559
541
|
this.gossipSubEventHandler = this.handleGossipSubEvent.bind(this);
|
|
560
542
|
this.blockReceivedCallback = async (block)=>{
|
|
561
|
-
this.logger.
|
|
543
|
+
this.logger.warn(`Handler for block received not yet registered on P2P service. Received block ${block.blockNumber} for slot ${block.slotNumber} from peer.`, {
|
|
562
544
|
p2pMessageIdentifier: await block.p2pMessageLoggingIdentifier()
|
|
563
545
|
});
|
|
564
|
-
return
|
|
546
|
+
return true;
|
|
565
547
|
};
|
|
566
|
-
this.
|
|
567
|
-
|
|
548
|
+
this.allNodesCheckpointReceivedCallback = (_checkpoint)=>{
|
|
549
|
+
throw new CheckpointProposalReceivedCallbackNotRegisteredError();
|
|
550
|
+
};
|
|
551
|
+
this.validatorCheckpointReceivedCallback = (_checkpoint)=>{
|
|
568
552
|
return Promise.resolve(undefined);
|
|
569
553
|
};
|
|
570
554
|
}
|
|
@@ -576,7 +560,7 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
576
560
|
* @param config - The configuration to use when creating the service.
|
|
577
561
|
* @param txPool - The transaction pool to be accessed by the service.
|
|
578
562
|
* @returns The new service.
|
|
579
|
-
*/ static async new(
|
|
563
|
+
*/ static async new(config, peerId, deps) {
|
|
580
564
|
const { worldStateSynchronizer, epochCache, l2BlockSource, mempools, proofVerifier, peerStore, telemetry, logger, packageVersion } = deps;
|
|
581
565
|
const { p2pPort, maxPeerCount, listenAddress } = config;
|
|
582
566
|
const bindAddrTcp = convertToMultiaddr(listenAddress, p2pPort, 'tcp');
|
|
@@ -619,7 +603,8 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
619
603
|
slotDurationMs: l1Constants.slotDuration * 1000,
|
|
620
604
|
heartbeatIntervalMs: config.gossipsubInterval,
|
|
621
605
|
targetCommitteeSize: l1Constants.targetCommitteeSize,
|
|
622
|
-
blockDurationMs: config.blockDurationMs
|
|
606
|
+
blockDurationMs: config.blockDurationMs,
|
|
607
|
+
expectedBlockProposalsPerSlot: config.expectedBlockProposalsPerSlot
|
|
623
608
|
});
|
|
624
609
|
const node = await createLibp2p({
|
|
625
610
|
start: false,
|
|
@@ -740,7 +725,7 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
740
725
|
// Note: positive topic scores can offset penalties, so alignment is best-effort.
|
|
741
726
|
node.services.pubsub.score.params.appSpecificWeight = APP_SPECIFIC_WEIGHT;
|
|
742
727
|
node.services.pubsub.score.params.appSpecificScore = (peerId)=>peerManager.shouldDisableP2PGossip(peerId) ? -Infinity : peerManager.getPeerScore(peerId);
|
|
743
|
-
return new LibP2PService(
|
|
728
|
+
return new LibP2PService(config, node, peerDiscoveryService, reqresp, peerManager, mempools, l2BlockSource, epochCache, proofVerifier, worldStateSynchronizer, telemetry, logger);
|
|
744
729
|
}
|
|
745
730
|
/**
|
|
746
731
|
* Starts the LibP2P service.
|
|
@@ -759,13 +744,11 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
759
744
|
// Create request response protocol handlers
|
|
760
745
|
const txHandler = reqRespTxHandler(this.mempools);
|
|
761
746
|
const goodbyeHandler = reqGoodbyeHandler(this.peerManager);
|
|
762
|
-
const blockHandler = reqRespBlockHandler(this.archiver);
|
|
763
747
|
const statusHandler = reqRespStatusHandler(this.protocolVersion, this.worldStateSynchronizer, this.logger);
|
|
764
748
|
const requestResponseHandlers = {
|
|
765
749
|
[ReqRespSubProtocol.PING]: pingHandler,
|
|
766
750
|
[ReqRespSubProtocol.STATUS]: statusHandler.bind(this),
|
|
767
|
-
[ReqRespSubProtocol.GOODBYE]: goodbyeHandler.bind(this)
|
|
768
|
-
[ReqRespSubProtocol.BLOCK]: blockHandler.bind(this)
|
|
751
|
+
[ReqRespSubProtocol.GOODBYE]: goodbyeHandler.bind(this)
|
|
769
752
|
};
|
|
770
753
|
if (!this.config.disableTransactions) {
|
|
771
754
|
const blockTxsHandler = reqRespBlockTxsHandler(this.mempools.attestationPool, this.archiver, this.mempools.txPool);
|
|
@@ -778,14 +761,13 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
778
761
|
const reqrespSubProtocolValidators = {
|
|
779
762
|
...DEFAULT_SUB_PROTOCOL_VALIDATORS,
|
|
780
763
|
[ReqRespSubProtocol.TX]: this.validateRequestedTxs.bind(this),
|
|
781
|
-
[ReqRespSubProtocol.BLOCK_TXS]: this.validateRequestedBlockTxs.bind(this)
|
|
782
|
-
[ReqRespSubProtocol.BLOCK]: this.validateRequestedBlock.bind(this)
|
|
764
|
+
[ReqRespSubProtocol.BLOCK_TXS]: this.validateRequestedBlockTxs.bind(this)
|
|
783
765
|
};
|
|
784
766
|
await this.peerManager.initializePeers();
|
|
785
767
|
await this.reqresp.start(requestResponseHandlers, reqrespSubProtocolValidators);
|
|
786
768
|
await this.node.start();
|
|
787
769
|
// Subscribe to standard GossipSub topics by default
|
|
788
|
-
for (const topic of
|
|
770
|
+
for (const topic of getTopicsForConfig(this.config.disableTransactions)){
|
|
789
771
|
this.subscribeToTopic(this.topicStrings[topic]);
|
|
790
772
|
}
|
|
791
773
|
// add GossipSub listener
|
|
@@ -833,6 +815,9 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
833
815
|
getPeers(includePending) {
|
|
834
816
|
return this.peerManager.getPeers(includePending);
|
|
835
817
|
}
|
|
818
|
+
getGossipMeshPeerCount(topicType) {
|
|
819
|
+
return this.node.services.pubsub.getMeshPeers(this.topicStrings[topicType]).length;
|
|
820
|
+
}
|
|
836
821
|
handleGossipSubEvent(e) {
|
|
837
822
|
this.logger.trace(`Received PUBSUB message.`);
|
|
838
823
|
const safeJob = async ()=>{
|
|
@@ -864,8 +849,14 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
864
849
|
registerBlockReceivedCallback(callback) {
|
|
865
850
|
this.blockReceivedCallback = callback;
|
|
866
851
|
}
|
|
867
|
-
|
|
868
|
-
this.
|
|
852
|
+
registerValidatorCheckpointReceivedCallback(callback) {
|
|
853
|
+
this.validatorCheckpointReceivedCallback = callback;
|
|
854
|
+
}
|
|
855
|
+
registerAllNodesCheckpointReceivedCallback(callback) {
|
|
856
|
+
this.allNodesCheckpointReceivedCallback = callback;
|
|
857
|
+
}
|
|
858
|
+
async notifyOwnCheckpointProposal(checkpoint) {
|
|
859
|
+
await this.allNodesCheckpointReceivedCallback(checkpoint, this.node.peerId);
|
|
869
860
|
}
|
|
870
861
|
/**
|
|
871
862
|
* Registers a callback to be invoked when a duplicate proposal is detected.
|
|
@@ -931,6 +922,12 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
931
922
|
if (!validator || !validator.addMessage(msgId)) {
|
|
932
923
|
this.instrumentation.incMessagePrevalidationStatus(false, topicType);
|
|
933
924
|
this.node.services.pubsub.reportMessageValidationResult(msgId, source.toString(), TopicValidatorResult.Ignore);
|
|
925
|
+
if (topicType === TopicType.tx) {
|
|
926
|
+
this.logger.verbose(`Ignoring already-seen tx gossip message`, {
|
|
927
|
+
msgId,
|
|
928
|
+
source: source.toString()
|
|
929
|
+
});
|
|
930
|
+
}
|
|
934
931
|
return {
|
|
935
932
|
result: false,
|
|
936
933
|
topicType
|
|
@@ -991,9 +988,7 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
991
988
|
if (msg.topic === this.topicStrings[TopicType.tx]) {
|
|
992
989
|
await this.handleGossipedTx(p2pMessage.payload, msgId, source);
|
|
993
990
|
} else if (msg.topic === this.topicStrings[TopicType.checkpoint_attestation]) {
|
|
994
|
-
|
|
995
|
-
await this.processCheckpointAttestationFromPeer(p2pMessage.payload, msgId, source);
|
|
996
|
-
}
|
|
991
|
+
await this.processCheckpointAttestationFromPeer(p2pMessage.payload, msgId, source);
|
|
997
992
|
} else if (msg.topic === this.topicStrings[TopicType.block_proposal]) {
|
|
998
993
|
await this.processBlockFromPeer(p2pMessage.payload, msgId, source);
|
|
999
994
|
} else if (msg.topic === this.topicStrings[TopicType.checkpoint_proposal]) {
|
|
@@ -1038,39 +1033,119 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1038
1033
|
return;
|
|
1039
1034
|
}
|
|
1040
1035
|
async validateReceivedMessage(validationFunc, msgId, source, topicType) {
|
|
1036
|
+
// Default to reject result with a penalty if validation function throws an error
|
|
1041
1037
|
let resultAndObj = {
|
|
1042
|
-
result: TopicValidatorResult.Reject
|
|
1038
|
+
result: TopicValidatorResult.Reject,
|
|
1039
|
+
severity: PeerErrorSeverity.MidToleranceError
|
|
1043
1040
|
};
|
|
1044
1041
|
const timer = new Timer();
|
|
1045
1042
|
try {
|
|
1046
1043
|
resultAndObj = await validationFunc();
|
|
1047
1044
|
} catch (err) {
|
|
1048
|
-
this.
|
|
1049
|
-
this.logger.error(`Error deserializing and validating gossipsub message`, err, {
|
|
1045
|
+
this.logger.error(`Error validating gossipsub message`, err, {
|
|
1050
1046
|
msgId,
|
|
1051
1047
|
source: source.toString(),
|
|
1052
1048
|
topicType
|
|
1053
1049
|
});
|
|
1054
1050
|
}
|
|
1055
1051
|
if (resultAndObj.result === TopicValidatorResult.Accept) {
|
|
1052
|
+
this.logger.debug(`Message ${topicType} accepted by validator`, {
|
|
1053
|
+
msgId,
|
|
1054
|
+
source: source.toString(),
|
|
1055
|
+
topicType
|
|
1056
|
+
});
|
|
1056
1057
|
this.instrumentation.recordMessageValidation(topicType, timer);
|
|
1058
|
+
} else if (resultAndObj.result === TopicValidatorResult.Reject) {
|
|
1059
|
+
this.logger.warn(`Message ${topicType} rejected by validator with severity ${resultAndObj.severity}`, {
|
|
1060
|
+
msgId,
|
|
1061
|
+
source: source.toString(),
|
|
1062
|
+
topicType,
|
|
1063
|
+
severity: resultAndObj.severity
|
|
1064
|
+
});
|
|
1065
|
+
this.peerManager.penalizePeer(source, resultAndObj.severity);
|
|
1066
|
+
} else {
|
|
1067
|
+
this.logger.trace(`Message ${topicType} ignored by validator`, {
|
|
1068
|
+
msgId,
|
|
1069
|
+
source: source.toString(),
|
|
1070
|
+
topicType
|
|
1071
|
+
});
|
|
1057
1072
|
}
|
|
1058
1073
|
this.node.services.pubsub.reportMessageValidationResult(msgId, source.toString(), resultAndObj.result);
|
|
1059
1074
|
return resultAndObj;
|
|
1060
1075
|
}
|
|
1076
|
+
tryDeserialize(deserializeFunc, msgId, source) {
|
|
1077
|
+
try {
|
|
1078
|
+
return deserializeFunc();
|
|
1079
|
+
} catch (err) {
|
|
1080
|
+
this.logger.warn(`Failed to deserialize gossipsub message from buffer`, {
|
|
1081
|
+
err,
|
|
1082
|
+
msgId,
|
|
1083
|
+
source: source.toString()
|
|
1084
|
+
});
|
|
1085
|
+
return undefined;
|
|
1086
|
+
}
|
|
1087
|
+
}
|
|
1061
1088
|
async handleGossipedTx(payloadData, msgId, source) {
|
|
1062
1089
|
const validationFunc = async ()=>{
|
|
1063
|
-
const tx = Tx.fromBuffer(payloadData);
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1090
|
+
const tx = this.tryDeserialize(()=>Tx.fromBuffer(payloadData), msgId, source);
|
|
1091
|
+
if (!tx) {
|
|
1092
|
+
return {
|
|
1093
|
+
result: TopicValidatorResult.Reject,
|
|
1094
|
+
severity: PeerErrorSeverity.LowToleranceError
|
|
1095
|
+
};
|
|
1096
|
+
}
|
|
1097
|
+
const currentBlockNumber = await this.archiver.getBlockNumber();
|
|
1098
|
+
const { ts: nextSlotTimestamp } = this.epochCache.getEpochAndSlotInNextL1Slot();
|
|
1099
|
+
// Stage 1: fast validators (metadata, data, timestamps, double-spend, gas, phases, block header)
|
|
1100
|
+
const firstStageValidators = await this.createFirstStageMessageValidators(currentBlockNumber, nextSlotTimestamp);
|
|
1101
|
+
const firstStageOutcome = await this.runValidations(tx, firstStageValidators);
|
|
1102
|
+
if (!firstStageOutcome.allPassed) {
|
|
1103
|
+
const { name } = firstStageOutcome.failure;
|
|
1104
|
+
let { severity } = firstStageOutcome.failure;
|
|
1105
|
+
// Double spend validator has a special case handler. We perform more detailed examination
|
|
1106
|
+
// as to how recently the nullifier was entered into the tree and if the transaction should
|
|
1107
|
+
// have 'known' the nullifier existed. This determines the severity of the penalty applied to the peer.
|
|
1108
|
+
if (name === 'doubleSpendValidator') {
|
|
1109
|
+
const txBlockNumber = BlockNumber(currentBlockNumber + 1);
|
|
1110
|
+
severity = await this.handleDoubleSpendFailure(tx, txBlockNumber);
|
|
1111
|
+
}
|
|
1112
|
+
this.logger.verbose(`Rejecting gossiped tx ${tx.getTxHash().toString()}: stage 1 validation failed`, {
|
|
1113
|
+
validator: name,
|
|
1114
|
+
severity,
|
|
1115
|
+
source: source.toString()
|
|
1116
|
+
});
|
|
1117
|
+
return {
|
|
1118
|
+
result: TopicValidatorResult.Reject,
|
|
1119
|
+
severity
|
|
1120
|
+
};
|
|
1121
|
+
}
|
|
1122
|
+
// Pool pre-check: see if the pool would accept this tx before doing expensive proof verification
|
|
1123
|
+
const canAdd = await this.mempools.txPool.canAddPendingTx(tx);
|
|
1124
|
+
if (canAdd === 'ignored') {
|
|
1125
|
+
this.logger.verbose(`Ignoring gossiped tx ${tx.getTxHash().toString()}: pool pre-check returned ignored`, {
|
|
1126
|
+
source: source.toString()
|
|
1068
1127
|
});
|
|
1069
1128
|
return {
|
|
1070
|
-
result: TopicValidatorResult.
|
|
1129
|
+
result: TopicValidatorResult.Ignore,
|
|
1130
|
+
obj: tx
|
|
1071
1131
|
};
|
|
1072
1132
|
}
|
|
1073
|
-
//
|
|
1133
|
+
// Stage 2: expensive proof verification
|
|
1134
|
+
const secondStageValidators = this.createSecondStageMessageValidators();
|
|
1135
|
+
const secondStageOutcome = await this.runValidations(tx, secondStageValidators);
|
|
1136
|
+
if (!secondStageOutcome.allPassed) {
|
|
1137
|
+
const { severity, name } = secondStageOutcome.failure;
|
|
1138
|
+
this.logger.verbose(`Rejecting gossiped tx ${tx.getTxHash().toString()}: stage 2 validation failed`, {
|
|
1139
|
+
validator: name,
|
|
1140
|
+
severity,
|
|
1141
|
+
source: source.toString()
|
|
1142
|
+
});
|
|
1143
|
+
return {
|
|
1144
|
+
result: TopicValidatorResult.Reject,
|
|
1145
|
+
severity
|
|
1146
|
+
};
|
|
1147
|
+
}
|
|
1148
|
+
// Pool add: persist the tx
|
|
1074
1149
|
const txHash = tx.getTxHash();
|
|
1075
1150
|
const addResult = await this.mempools.txPool.addPendingTxs([
|
|
1076
1151
|
tx
|
|
@@ -1079,8 +1154,7 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1079
1154
|
});
|
|
1080
1155
|
const wasAccepted = addResult.accepted.some((h)=>h.equals(txHash));
|
|
1081
1156
|
const wasIgnored = addResult.ignored.some((h)=>h.equals(txHash));
|
|
1082
|
-
this.logger.
|
|
1083
|
-
isValid,
|
|
1157
|
+
this.logger.verbose(`Validate propagated tx ${txHash.toString()}`, {
|
|
1084
1158
|
wasAccepted,
|
|
1085
1159
|
wasIgnored,
|
|
1086
1160
|
[Attributes.P2P_ID]: source.toString()
|
|
@@ -1096,8 +1170,13 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1096
1170
|
obj: tx
|
|
1097
1171
|
};
|
|
1098
1172
|
} else {
|
|
1173
|
+
this.logger.warn(`Gossiped tx ${txHash.toString()} unexpectedly rejected by pool`, {
|
|
1174
|
+
source: source.toString(),
|
|
1175
|
+
txHash: txHash.toString()
|
|
1176
|
+
});
|
|
1099
1177
|
return {
|
|
1100
|
-
result: TopicValidatorResult.Reject
|
|
1178
|
+
result: TopicValidatorResult.Reject,
|
|
1179
|
+
severity: PeerErrorSeverity.HighToleranceError
|
|
1101
1180
|
};
|
|
1102
1181
|
}
|
|
1103
1182
|
};
|
|
@@ -1118,7 +1197,16 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1118
1197
|
* Process a checkpoint attestation from a peer.
|
|
1119
1198
|
* Validates the attestation and adds it to the pool.
|
|
1120
1199
|
*/ async processCheckpointAttestationFromPeer(payloadData, msgId, source) {
|
|
1121
|
-
const { result, obj: attestation } = await this.validateReceivedMessage(()=>
|
|
1200
|
+
const { result, obj: attestation } = await this.validateReceivedMessage(()=>{
|
|
1201
|
+
const attestation = this.tryDeserialize(()=>CheckpointAttestation.fromBuffer(payloadData), msgId, source);
|
|
1202
|
+
if (!attestation) {
|
|
1203
|
+
return Promise.resolve({
|
|
1204
|
+
result: TopicValidatorResult.Reject,
|
|
1205
|
+
severity: PeerErrorSeverity.LowToleranceError
|
|
1206
|
+
});
|
|
1207
|
+
}
|
|
1208
|
+
return this.validateAndStoreCheckpointAttestation(source, attestation);
|
|
1209
|
+
}, msgId, source, TopicType.checkpoint_attestation);
|
|
1122
1210
|
if (result !== TopicValidatorResult.Accept || !attestation) {
|
|
1123
1211
|
return;
|
|
1124
1212
|
}
|
|
@@ -1133,9 +1221,9 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1133
1221
|
const validationResult = await this.checkpointAttestationValidator.validate(attestation);
|
|
1134
1222
|
if (validationResult.result === 'reject') {
|
|
1135
1223
|
this.logger.warn(`Penalizing peer ${peerId} for checkpoint attestation validation failure`);
|
|
1136
|
-
this.peerManager.penalizePeer(peerId, validationResult.severity);
|
|
1137
1224
|
return {
|
|
1138
|
-
result: TopicValidatorResult.Reject
|
|
1225
|
+
result: TopicValidatorResult.Reject,
|
|
1226
|
+
severity: validationResult.severity
|
|
1139
1227
|
};
|
|
1140
1228
|
}
|
|
1141
1229
|
if (validationResult.result === 'ignore') {
|
|
@@ -1162,9 +1250,9 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1162
1250
|
obj: attestation
|
|
1163
1251
|
};
|
|
1164
1252
|
}
|
|
1165
|
-
// Could not add (cap reached for signer),
|
|
1253
|
+
// Could not add (cap reached for signer), penalize and do not re-broadcast
|
|
1166
1254
|
if (!added) {
|
|
1167
|
-
this.logger.warn(`
|
|
1255
|
+
this.logger.warn(`Rejecting checkpoint attestation due to cap`, {
|
|
1168
1256
|
slot: slot.toString(),
|
|
1169
1257
|
archive: attestation.archive.toString(),
|
|
1170
1258
|
source: peerId.toString(),
|
|
@@ -1172,8 +1260,8 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1172
1260
|
count
|
|
1173
1261
|
});
|
|
1174
1262
|
return {
|
|
1175
|
-
result: TopicValidatorResult.
|
|
1176
|
-
|
|
1263
|
+
result: TopicValidatorResult.Reject,
|
|
1264
|
+
severity: PeerErrorSeverity.HighToleranceError
|
|
1177
1265
|
};
|
|
1178
1266
|
}
|
|
1179
1267
|
// Check if this is a duplicate attestation (signer attested to a different proposal at the same slot)
|
|
@@ -1211,9 +1299,9 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1211
1299
|
const validationResult = await this.blockProposalValidator.validate(block);
|
|
1212
1300
|
if (validationResult.result === 'reject') {
|
|
1213
1301
|
this.logger.warn(`Penalizing peer ${peerId} for block proposal validation failure`);
|
|
1214
|
-
this.peerManager.penalizePeer(peerId, validationResult.severity);
|
|
1215
1302
|
return {
|
|
1216
|
-
result: TopicValidatorResult.Reject
|
|
1303
|
+
result: TopicValidatorResult.Reject,
|
|
1304
|
+
severity: validationResult.severity
|
|
1217
1305
|
};
|
|
1218
1306
|
}
|
|
1219
1307
|
if (validationResult.result === 'ignore') {
|
|
@@ -1243,7 +1331,6 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1243
1331
|
}
|
|
1244
1332
|
// Too many blocks received for this slot and index, penalize peer and do not re-broadcast
|
|
1245
1333
|
if (!added) {
|
|
1246
|
-
this.peerManager.penalizePeer(peerId, PeerErrorSeverity.HighToleranceError);
|
|
1247
1334
|
this.logger.warn(`Penalizing peer for block proposal exceeding per-position cap`, {
|
|
1248
1335
|
...block.toBlockInfo(),
|
|
1249
1336
|
indexWithinCheckpoint: block.indexWithinCheckpoint,
|
|
@@ -1255,7 +1342,8 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1255
1342
|
result: TopicValidatorResult.Reject,
|
|
1256
1343
|
metadata: {
|
|
1257
1344
|
isEquivocated
|
|
1258
|
-
}
|
|
1345
|
+
},
|
|
1346
|
+
severity: PeerErrorSeverity.HighToleranceError
|
|
1259
1347
|
};
|
|
1260
1348
|
}
|
|
1261
1349
|
// If this was a duplicate proposal, do not process it, but do invoke the duplicate callback,
|
|
@@ -1304,7 +1392,7 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1304
1392
|
// Note: Validators do NOT attest to individual blocks, only to checkpoint proposals.
|
|
1305
1393
|
const isValid = await this.blockReceivedCallback(block, sender);
|
|
1306
1394
|
if (!isValid) {
|
|
1307
|
-
this.logger.
|
|
1395
|
+
this.logger.info(`Block proposal validation failed for block ${block.blockNumber}`, block.toBlockInfo());
|
|
1308
1396
|
}
|
|
1309
1397
|
}
|
|
1310
1398
|
/**
|
|
@@ -1329,9 +1417,9 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1329
1417
|
const validationResult = await this.checkpointProposalValidator.validate(checkpoint);
|
|
1330
1418
|
if (validationResult.result === 'reject') {
|
|
1331
1419
|
this.logger.warn(`Penalizing peer ${peerId} for checkpoint proposal validation failure`);
|
|
1332
|
-
this.peerManager.penalizePeer(peerId, validationResult.severity);
|
|
1333
1420
|
return {
|
|
1334
|
-
result: TopicValidatorResult.Reject
|
|
1421
|
+
result: TopicValidatorResult.Reject,
|
|
1422
|
+
severity: validationResult.severity
|
|
1335
1423
|
};
|
|
1336
1424
|
}
|
|
1337
1425
|
if (validationResult.result === 'ignore') {
|
|
@@ -1348,18 +1436,20 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1348
1436
|
[Attributes.SLOT_NUMBER]: checkpoint.slotNumber.toString(),
|
|
1349
1437
|
[Attributes.P2P_ID]: peerId.toString()
|
|
1350
1438
|
});
|
|
1351
|
-
const
|
|
1352
|
-
|
|
1439
|
+
const blockProposalResult = await this.validateAndStoreBlockProposal(peerId, blockProposal);
|
|
1440
|
+
const { obj, metadata: { isEquivocated } = {} } = blockProposalResult;
|
|
1441
|
+
if (blockProposalResult.result === TopicValidatorResult.Reject || !obj || isEquivocated) {
|
|
1353
1442
|
this.logger.debug(`Rejecting checkpoint due to invalid last block proposal`, {
|
|
1354
1443
|
[Attributes.SLOT_NUMBER]: checkpoint.slotNumber.toString(),
|
|
1355
1444
|
[Attributes.P2P_ID]: peerId.toString(),
|
|
1356
1445
|
isEquivocated,
|
|
1357
|
-
result
|
|
1446
|
+
result: blockProposalResult.result
|
|
1358
1447
|
});
|
|
1359
1448
|
return {
|
|
1360
|
-
result: TopicValidatorResult.Reject
|
|
1449
|
+
result: TopicValidatorResult.Reject,
|
|
1450
|
+
severity: 'severity' in blockProposalResult ? blockProposalResult.severity : PeerErrorSeverity.MidToleranceError
|
|
1361
1451
|
};
|
|
1362
|
-
} else if (result === TopicValidatorResult.Accept && obj && !isEquivocated) {
|
|
1452
|
+
} else if (blockProposalResult.result === TopicValidatorResult.Accept && obj && !isEquivocated) {
|
|
1363
1453
|
processBlock = true;
|
|
1364
1454
|
}
|
|
1365
1455
|
}
|
|
@@ -1386,7 +1476,6 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1386
1476
|
// Too many checkpoint proposals received for this slot, penalize peer and do not re-broadcast
|
|
1387
1477
|
// Note: We still return the checkpoint obj so the lastBlock can be processed if valid
|
|
1388
1478
|
if (!added) {
|
|
1389
|
-
this.peerManager.penalizePeer(peerId, PeerErrorSeverity.HighToleranceError);
|
|
1390
1479
|
this.logger.warn(`Penalizing peer for checkpoint proposal exceeding per-slot cap`, {
|
|
1391
1480
|
...checkpoint.toCheckpointInfo(),
|
|
1392
1481
|
count,
|
|
@@ -1398,7 +1487,8 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1398
1487
|
metadata: {
|
|
1399
1488
|
isEquivocated,
|
|
1400
1489
|
processBlock
|
|
1401
|
-
}
|
|
1490
|
+
},
|
|
1491
|
+
severity: PeerErrorSeverity.HighToleranceError
|
|
1402
1492
|
};
|
|
1403
1493
|
}
|
|
1404
1494
|
// If this was a duplicate proposal, do not process it, but do invoke the duplicate callback,
|
|
@@ -1448,9 +1538,10 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1448
1538
|
archive: checkpoint.archive.toString(),
|
|
1449
1539
|
source: sender.toString()
|
|
1450
1540
|
});
|
|
1541
|
+
await this.allNodesCheckpointReceivedCallback(checkpoint, sender);
|
|
1451
1542
|
// Call the checkpoint received callback with the core version (without lastBlock)
|
|
1452
1543
|
// to validate and potentially generate attestations
|
|
1453
|
-
const attestations = await this.
|
|
1544
|
+
const attestations = await this.validatorCheckpointReceivedCallback(checkpoint, sender);
|
|
1454
1545
|
if (attestations && attestations.length > 0) {
|
|
1455
1546
|
// If the callback returned attestations, add them to the pool and propagate them
|
|
1456
1547
|
await this.mempools.attestationPool.addOwnCheckpointAttestations(attestations);
|
|
@@ -1570,45 +1661,6 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1570
1661
|
return false;
|
|
1571
1662
|
}
|
|
1572
1663
|
}
|
|
1573
|
-
/**
|
|
1574
|
-
* Validates a BLOCK response.
|
|
1575
|
-
*
|
|
1576
|
-
* If a local copy exists, enforces hash equality. If missing, rejects (no penalty) since the hash cannot be verified.
|
|
1577
|
-
* Penalizes on block number mismatch or hash mismatch.
|
|
1578
|
-
*
|
|
1579
|
-
* @param requestedBlockNumber - The requested block number.
|
|
1580
|
-
* @param responseBlock - The block returned by the peer.
|
|
1581
|
-
* @param peerId - The peer that returned the block.
|
|
1582
|
-
* @returns True if the response is valid, false otherwise.
|
|
1583
|
-
*/ async validateRequestedBlock(requestedBlockNumber, responseBlock, peerId) {
|
|
1584
|
-
try {
|
|
1585
|
-
const reqNum = Number(requestedBlockNumber.toString());
|
|
1586
|
-
if (responseBlock.number !== reqNum) {
|
|
1587
|
-
this.peerManager.penalizePeer(peerId, PeerErrorSeverity.LowToleranceError);
|
|
1588
|
-
return false;
|
|
1589
|
-
}
|
|
1590
|
-
const local = await this.archiver.getBlock(BlockNumber(reqNum));
|
|
1591
|
-
if (!local) {
|
|
1592
|
-
// We are missing the local block; we cannot verify the hash yet. Reject without penalizing.
|
|
1593
|
-
// TODO: Consider extending this validator to accept an expected hash or
|
|
1594
|
-
// performing quorum-based checks when using P2P syncing prior to L1 sync.
|
|
1595
|
-
this.logger.warn(`Local block ${reqNum} not found; rejecting BLOCK response without hash verification`);
|
|
1596
|
-
return false;
|
|
1597
|
-
}
|
|
1598
|
-
const [localHash, respHash] = await Promise.all([
|
|
1599
|
-
local.hash(),
|
|
1600
|
-
responseBlock.hash()
|
|
1601
|
-
]);
|
|
1602
|
-
if (!localHash.equals(respHash)) {
|
|
1603
|
-
this.peerManager.penalizePeer(peerId, PeerErrorSeverity.MidToleranceError);
|
|
1604
|
-
return false;
|
|
1605
|
-
}
|
|
1606
|
-
return true;
|
|
1607
|
-
} catch (e) {
|
|
1608
|
-
this.logger.warn(`Error validating requested block`, e);
|
|
1609
|
-
return false;
|
|
1610
|
-
}
|
|
1611
|
-
}
|
|
1612
1664
|
async validateRequestedTx(tx, peerId, txValidator, requested) {
|
|
1613
1665
|
const penalize = (severity)=>this.peerManager.penalizePeer(peerId, severity);
|
|
1614
1666
|
if (requested && !requested.has(tx.getTxHash().toString())) {
|
|
@@ -1622,33 +1674,11 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1622
1674
|
}
|
|
1623
1675
|
}
|
|
1624
1676
|
createRequestedTxValidator() {
|
|
1625
|
-
return
|
|
1677
|
+
return createTxValidatorForReqResponseReceivedTxs(this.proofVerifier, {
|
|
1626
1678
|
l1ChainId: this.config.l1ChainId,
|
|
1627
1679
|
rollupVersion: this.config.rollupVersion
|
|
1628
1680
|
});
|
|
1629
1681
|
}
|
|
1630
|
-
async validatePropagatedTx(tx, peerId) {
|
|
1631
|
-
const currentBlockNumber = await this.archiver.getBlockNumber();
|
|
1632
|
-
// We accept transactions if they are not expired by the next slot (checked based on the IncludeByTimestamp field)
|
|
1633
|
-
const { ts: nextSlotTimestamp } = this.epochCache.getEpochAndSlotInNextL1Slot();
|
|
1634
|
-
const messageValidators = await this.createMessageValidators(currentBlockNumber, nextSlotTimestamp);
|
|
1635
|
-
for (const validator of messageValidators){
|
|
1636
|
-
const outcome = await this.runValidations(tx, validator);
|
|
1637
|
-
if (outcome.allPassed) {
|
|
1638
|
-
continue;
|
|
1639
|
-
}
|
|
1640
|
-
const { name } = outcome.failure;
|
|
1641
|
-
let { severity } = outcome.failure;
|
|
1642
|
-
// Double spend validator has a special case handler
|
|
1643
|
-
if (name === 'doubleSpendValidator') {
|
|
1644
|
-
const txBlockNumber = BlockNumber(currentBlockNumber + 1); // tx is expected to be in the next block
|
|
1645
|
-
severity = await this.handleDoubleSpendFailure(tx, txBlockNumber);
|
|
1646
|
-
}
|
|
1647
|
-
this.peerManager.penalizePeer(peerId, severity);
|
|
1648
|
-
return false;
|
|
1649
|
-
}
|
|
1650
|
-
return true;
|
|
1651
|
-
}
|
|
1652
1682
|
async getGasFees(blockNumber) {
|
|
1653
1683
|
if (blockNumber === this.feesCache?.blockNumber) {
|
|
1654
1684
|
return this.feesCache.gasFees;
|
|
@@ -1675,38 +1705,35 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1675
1705
|
peerScoring: this.peerManager
|
|
1676
1706
|
};
|
|
1677
1707
|
}
|
|
1678
|
-
async
|
|
1679
|
-
const
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
await Promise.all(txs.map(async (tx)=>{
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
if (!outcome.allPassed) {
|
|
1687
|
-
throw new Error('Invalid tx detected', {
|
|
1688
|
-
cause: {
|
|
1689
|
-
outcome
|
|
1690
|
-
}
|
|
1691
|
-
});
|
|
1692
|
-
}
|
|
1693
|
-
}
|
|
1708
|
+
async validateTxsReceivedInBlockProposal(txs) {
|
|
1709
|
+
const validator = createTxValidatorForBlockProposalReceivedTxs(this.proofVerifier, {
|
|
1710
|
+
l1ChainId: this.config.l1ChainId,
|
|
1711
|
+
rollupVersion: this.config.rollupVersion
|
|
1712
|
+
}, this.logger.getBindings());
|
|
1713
|
+
const results = await Promise.all(txs.map(async (tx)=>{
|
|
1714
|
+
const result = await validator.validateTx(tx);
|
|
1715
|
+
return result.result !== 'invalid';
|
|
1694
1716
|
}));
|
|
1717
|
+
if (results.some((value)=>value === false)) {
|
|
1718
|
+
throw new Error('Invalid tx detected');
|
|
1719
|
+
}
|
|
1695
1720
|
}
|
|
1696
|
-
/**
|
|
1697
|
-
* Create message validators for the given block number and timestamp.
|
|
1698
|
-
*
|
|
1699
|
-
* Each validator is a pair of a validator and a severity.
|
|
1700
|
-
* If a validator fails, the peer is penalized with the severity of the validator.
|
|
1701
|
-
*
|
|
1702
|
-
* @param currentBlockNumber - The current synced block number.
|
|
1703
|
-
* @param nextSlotTimestamp - The timestamp of the next slot (used to validate txs are not expired).
|
|
1704
|
-
* @returns The message validators.
|
|
1705
|
-
*/ async createMessageValidators(currentBlockNumber, nextSlotTimestamp) {
|
|
1721
|
+
/** Creates the first stage (fast) validators for gossiped transactions. */ async createFirstStageMessageValidators(currentBlockNumber, nextSlotTimestamp) {
|
|
1706
1722
|
const gasFees = await this.getGasFees(currentBlockNumber);
|
|
1707
|
-
const allowedInSetup =
|
|
1708
|
-
|
|
1709
|
-
|
|
1723
|
+
const allowedInSetup = [
|
|
1724
|
+
...await getDefaultAllowedSetupFunctions(),
|
|
1725
|
+
...this.config.txPublicSetupAllowListExtend ?? []
|
|
1726
|
+
];
|
|
1727
|
+
const blockNumber = BlockNumber(currentBlockNumber + 1);
|
|
1728
|
+
const l1Constants = await this.archiver.getL1Constants();
|
|
1729
|
+
return createFirstStageTxValidationsForGossipedTransactions(nextSlotTimestamp, blockNumber, this.worldStateSynchronizer, gasFees, this.config.l1ChainId, this.config.rollupVersion, protocolContractsHash, this.archiver, !this.config.disableTransactions, allowedInSetup, this.logger.getBindings(), {
|
|
1730
|
+
rollupManaLimit: l1Constants.rollupManaLimit,
|
|
1731
|
+
maxBlockL2Gas: this.config.validateMaxL2BlockGas,
|
|
1732
|
+
maxBlockDAGas: this.config.validateMaxDABlockGas
|
|
1733
|
+
});
|
|
1734
|
+
}
|
|
1735
|
+
/** Creates the second stage (expensive proof verification) validators for gossiped transactions. */ createSecondStageMessageValidators() {
|
|
1736
|
+
return createSecondStageTxValidationsForGossipedTransactions(this.proofVerifier, this.logger.getBindings());
|
|
1710
1737
|
}
|
|
1711
1738
|
/**
|
|
1712
1739
|
* Run validations on a tx.
|
|
@@ -1724,8 +1751,10 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1724
1751
|
});
|
|
1725
1752
|
// A promise that resolves when all validations have been run
|
|
1726
1753
|
const allValidations = await Promise.all(validationPromises);
|
|
1727
|
-
const
|
|
1728
|
-
if (
|
|
1754
|
+
const failures = allValidations.filter((x)=>!x.isValid);
|
|
1755
|
+
if (failures.length > 0) {
|
|
1756
|
+
// Pick the most severe failure (lowest tolerance = harshest penalty)
|
|
1757
|
+
const failed = maxBy(failures, (f)=>PeerErrorSeverityByHarshness.indexOf(f.severity));
|
|
1729
1758
|
return {
|
|
1730
1759
|
allPassed: false,
|
|
1731
1760
|
failure: {
|
|
@@ -1772,19 +1801,6 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1772
1801
|
}
|
|
1773
1802
|
return PeerErrorSeverity.HighToleranceError;
|
|
1774
1803
|
}
|
|
1775
|
-
/**
|
|
1776
|
-
* Validate a checkpoint attestation.
|
|
1777
|
-
*
|
|
1778
|
-
* @param attestation - The checkpoint attestation to validate.
|
|
1779
|
-
* @returns True if the checkpoint attestation is valid, false otherwise.
|
|
1780
|
-
*/ async validateCheckpointAttestation(peerId, attestation) {
|
|
1781
|
-
const result = await this.checkpointAttestationValidator.validate(attestation);
|
|
1782
|
-
if (result.result === 'reject') {
|
|
1783
|
-
this.logger.warn(`Penalizing peer ${peerId} for checkpoint attestation validation failure`);
|
|
1784
|
-
this.peerManager.penalizePeer(peerId, result.severity);
|
|
1785
|
-
}
|
|
1786
|
-
return result;
|
|
1787
|
-
}
|
|
1788
1804
|
getPeerScore(peerId) {
|
|
1789
1805
|
return this.node.services.pubsub.score.score(peerId.toString());
|
|
1790
1806
|
}
|