@aztec/p2p 0.0.1-commit.3d8f95d → 0.0.1-commit.3fd054f6
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 +35 -29
- package/dest/client/interface.d.ts +14 -19
- package/dest/client/interface.d.ts.map +1 -1
- package/dest/client/p2p_client.d.ts +9 -18
- package/dest/client/p2p_client.d.ts.map +1 -1
- package/dest/client/p2p_client.js +68 -100
- package/dest/client/test/tx_proposal_collector/proposal_tx_collector_worker.js +6 -7
- package/dest/config.d.ts +43 -15
- package/dest/config.d.ts.map +1 -1
- package/dest/config.js +91 -37
- 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/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 +13 -4
- 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/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/eviction/fee_payer_balance_eviction_rule.d.ts +1 -1
- package/dest/mem_pools/tx_pool/eviction/fee_payer_balance_eviction_rule.d.ts.map +1 -1
- package/dest/mem_pools/tx_pool/eviction/fee_payer_balance_eviction_rule.js +2 -1
- package/dest/mem_pools/tx_pool/eviction/invalid_txs_after_mining_rule.js +3 -3
- package/dest/mem_pools/tx_pool/priority.d.ts +2 -2
- package/dest/mem_pools/tx_pool/priority.d.ts.map +1 -1
- package/dest/mem_pools/tx_pool/priority.js +4 -4
- package/dest/mem_pools/tx_pool/tx_pool_test_suite.d.ts +1 -1
- package/dest/mem_pools/tx_pool/tx_pool_test_suite.d.ts.map +1 -1
- package/dest/mem_pools/tx_pool/tx_pool_test_suite.js +3 -1
- 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 +107 -18
- 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 +104 -37
- 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 +4 -4
- package/dest/services/dummy_service.d.ts.map +1 -1
- package/dest/services/dummy_service.js +4 -4
- 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 +18 -20
- package/dest/services/libp2p/libp2p_service.d.ts.map +1 -1
- package/dest/services/libp2p/libp2p_service.js +190 -140
- 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 +1 -1
- package/dest/services/peer-manager/peer_manager.d.ts.map +1 -1
- package/dest/services/peer-manager/peer_manager.js +6 -3
- 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/reqresp.d.ts +1 -1
- package/dest/services/reqresp/reqresp.d.ts.map +1 -1
- package/dest/services/reqresp/reqresp.js +19 -10
- package/dest/services/service.d.ts +5 -3
- 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 +16 -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 +49 -16
- 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 +8 -3
- package/dest/services/tx_collection/tx_source.d.ts.map +1 -1
- package/dest/services/tx_collection/tx_source.js +19 -2
- package/dest/services/tx_file_store/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 -2
- 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 +29 -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 +15 -14
- package/dest/testbench/worker_client_manager.d.ts +3 -1
- package/dest/testbench/worker_client_manager.d.ts.map +1 -1
- package/dest/testbench/worker_client_manager.js +6 -2
- 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 +62 -47
- package/src/client/interface.ts +17 -20
- package/src/client/p2p_client.ts +74 -130
- package/src/client/test/tx_proposal_collector/proposal_tx_collector_worker.ts +18 -11
- package/src/config.ts +133 -43
- package/src/errors/tx-pool.error.ts +12 -0
- package/src/mem_pools/attestation_pool/attestation_pool.ts +16 -7
- 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/instrumentation.ts +17 -13
- package/src/mem_pools/tx_pool/README.md +1 -1
- package/src/mem_pools/tx_pool/eviction/fee_payer_balance_eviction_rule.ts +2 -1
- package/src/mem_pools/tx_pool/eviction/invalid_txs_after_mining_rule.ts +3 -3
- package/src/mem_pools/tx_pool/priority.ts +4 -4
- package/src/mem_pools/tx_pool/tx_pool_test_suite.ts +3 -1
- 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 +156 -26
- 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 +123 -27
- 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 +6 -6
- 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 +198 -161
- package/src/services/peer-manager/metrics.ts +7 -0
- package/src/services/peer-manager/peer_manager.ts +7 -3
- 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/reqresp.ts +22 -12
- package/src/services/service.ts +11 -2
- 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 +64 -17
- 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 +22 -3
- 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 -6
- package/src/test-helpers/testbench-utils.ts +40 -6
- package/src/testbench/p2p_client_testbench_worker.ts +22 -20
- package/src/testbench/worker_client_manager.ts +13 -5
- package/src/util.ts +8 -2
- 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/src/msg_validators/proposal_validator/proposal_validator_test_suite.ts +0 -230
|
@@ -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, _dec7,
|
|
373
|
+
var _dec, _dec1, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _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';
|
|
@@ -396,7 +397,7 @@ import { ENR } from '@nethermindeth/enr';
|
|
|
396
397
|
import { createLibp2p } from 'libp2p';
|
|
397
398
|
import { BlockProposalValidator, CheckpointAttestationValidator, CheckpointProposalValidator, DoubleSpendTxValidator, FishermanAttestationValidator, getDefaultAllowedSetupFunctions } from '../../msg_validators/index.js';
|
|
398
399
|
import { MessageSeenValidator } from '../../msg_validators/msg_seen_validator/msg_seen_validator.js';
|
|
399
|
-
import {
|
|
400
|
+
import { createFirstStageTxValidationsForGossipedTransactions, createSecondStageTxValidationsForGossipedTransactions, createTxValidatorForBlockProposalReceivedTxs, createTxValidatorForReqResponseReceivedTxs } from '../../msg_validators/tx_validator/factory.js';
|
|
400
401
|
import { GossipSubEvent } from '../../types/index.js';
|
|
401
402
|
import { convertToMultiaddr } from '../../util.js';
|
|
402
403
|
import { getVersions } from '../../versioning.js';
|
|
@@ -407,8 +408,7 @@ import { APP_SPECIFIC_WEIGHT, gossipScoreThresholds } from '../gossipsub/scoring
|
|
|
407
408
|
import { createAllTopicScoreParams } from '../gossipsub/topic_score_params.js';
|
|
408
409
|
import { PeerManager } from '../peer-manager/peer_manager.js';
|
|
409
410
|
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';
|
|
411
|
+
import { DEFAULT_SUB_PROTOCOL_VALIDATORS, ReqRespSubProtocol, ValidationError, pingHandler, reqGoodbyeHandler, reqRespBlockHandler, reqRespBlockTxsHandler, reqRespStatusHandler, reqRespTxHandler } from '../reqresp/index.js';
|
|
412
412
|
import { ReqResp } from '../reqresp/reqresp.js';
|
|
413
413
|
import { P2PInstrumentation } from './instrumentation.js';
|
|
414
414
|
_dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId, attestation)=>({
|
|
@@ -432,17 +432,10 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
432
432
|
[Attributes.TX_HASH]: requestedTxHash.toString()
|
|
433
433
|
})), _dec7 = trackSpan('Libp2pService.validateRequestedBlock', (requestedBlockNumber, _responseBlock)=>({
|
|
434
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
435
|
}));
|
|
442
436
|
/**
|
|
443
437
|
* Lib P2P implementation of the P2PService interface.
|
|
444
438
|
*/ export class LibP2PService extends WithTracer {
|
|
445
|
-
clientType;
|
|
446
439
|
config;
|
|
447
440
|
node;
|
|
448
441
|
peerDiscoveryService;
|
|
@@ -494,16 +487,6 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
494
487
|
_dec7,
|
|
495
488
|
2,
|
|
496
489
|
"validateRequestedBlock"
|
|
497
|
-
],
|
|
498
|
-
[
|
|
499
|
-
_dec8,
|
|
500
|
-
2,
|
|
501
|
-
"validatePropagatedTx"
|
|
502
|
-
],
|
|
503
|
-
[
|
|
504
|
-
_dec9,
|
|
505
|
-
2,
|
|
506
|
-
"validateCheckpointAttestation"
|
|
507
490
|
]
|
|
508
491
|
], []));
|
|
509
492
|
}
|
|
@@ -532,8 +515,8 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
532
515
|
instrumentation;
|
|
533
516
|
telemetry;
|
|
534
517
|
logger;
|
|
535
|
-
constructor(
|
|
536
|
-
super(telemetry, 'LibP2PService'), this.
|
|
518
|
+
constructor(config, node, peerDiscoveryService, reqresp, peerManager, mempools, archiver, epochCache, proofVerifier, worldStateSynchronizer, telemetry, logger = createLogger('p2p:libp2p_service')){
|
|
519
|
+
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
520
|
this.telemetry = telemetry;
|
|
538
521
|
// Create child logger with fisherman prefix if in fisherman mode
|
|
539
522
|
this.logger = config.fishermanMode ? logger.createChild('[FISHERMAN]') : logger;
|
|
@@ -549,19 +532,19 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
549
532
|
this.topicStrings[TopicType.block_proposal] = createTopicString(TopicType.block_proposal, this.protocolVersion);
|
|
550
533
|
this.topicStrings[TopicType.checkpoint_proposal] = createTopicString(TopicType.checkpoint_proposal, this.protocolVersion);
|
|
551
534
|
this.topicStrings[TopicType.checkpoint_attestation] = createTopicString(TopicType.checkpoint_attestation, this.protocolVersion);
|
|
552
|
-
|
|
553
|
-
txsPermitted: !config.disableTransactions
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
535
|
+
const proposalValidatorOpts = {
|
|
536
|
+
txsPermitted: !config.disableTransactions,
|
|
537
|
+
maxTxsPerBlock: config.validateMaxTxsPerBlock ?? config.validateMaxTxsPerCheckpoint
|
|
538
|
+
};
|
|
539
|
+
this.blockProposalValidator = new BlockProposalValidator(epochCache, proposalValidatorOpts);
|
|
540
|
+
this.checkpointProposalValidator = new CheckpointProposalValidator(epochCache, proposalValidatorOpts);
|
|
558
541
|
this.checkpointAttestationValidator = config.fishermanMode ? new FishermanAttestationValidator(epochCache, mempools.attestationPool, telemetry) : new CheckpointAttestationValidator(epochCache);
|
|
559
542
|
this.gossipSubEventHandler = this.handleGossipSubEvent.bind(this);
|
|
560
543
|
this.blockReceivedCallback = async (block)=>{
|
|
561
|
-
this.logger.
|
|
544
|
+
this.logger.warn(`Handler for block received not yet registered on P2P service. Received block ${block.blockNumber} for slot ${block.slotNumber} from peer.`, {
|
|
562
545
|
p2pMessageIdentifier: await block.p2pMessageLoggingIdentifier()
|
|
563
546
|
});
|
|
564
|
-
return
|
|
547
|
+
return true;
|
|
565
548
|
};
|
|
566
549
|
this.checkpointReceivedCallback = (checkpoint)=>{
|
|
567
550
|
this.logger.debug(`Handler not yet registered: Checkpoint received callback not set. Received checkpoint for slot ${checkpoint.slotNumber} from peer.`);
|
|
@@ -576,7 +559,7 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
576
559
|
* @param config - The configuration to use when creating the service.
|
|
577
560
|
* @param txPool - The transaction pool to be accessed by the service.
|
|
578
561
|
* @returns The new service.
|
|
579
|
-
*/ static async new(
|
|
562
|
+
*/ static async new(config, peerId, deps) {
|
|
580
563
|
const { worldStateSynchronizer, epochCache, l2BlockSource, mempools, proofVerifier, peerStore, telemetry, logger, packageVersion } = deps;
|
|
581
564
|
const { p2pPort, maxPeerCount, listenAddress } = config;
|
|
582
565
|
const bindAddrTcp = convertToMultiaddr(listenAddress, p2pPort, 'tcp');
|
|
@@ -619,7 +602,8 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
619
602
|
slotDurationMs: l1Constants.slotDuration * 1000,
|
|
620
603
|
heartbeatIntervalMs: config.gossipsubInterval,
|
|
621
604
|
targetCommitteeSize: l1Constants.targetCommitteeSize,
|
|
622
|
-
blockDurationMs: config.blockDurationMs
|
|
605
|
+
blockDurationMs: config.blockDurationMs,
|
|
606
|
+
expectedBlockProposalsPerSlot: config.expectedBlockProposalsPerSlot
|
|
623
607
|
});
|
|
624
608
|
const node = await createLibp2p({
|
|
625
609
|
start: false,
|
|
@@ -740,7 +724,7 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
740
724
|
// Note: positive topic scores can offset penalties, so alignment is best-effort.
|
|
741
725
|
node.services.pubsub.score.params.appSpecificWeight = APP_SPECIFIC_WEIGHT;
|
|
742
726
|
node.services.pubsub.score.params.appSpecificScore = (peerId)=>peerManager.shouldDisableP2PGossip(peerId) ? -Infinity : peerManager.getPeerScore(peerId);
|
|
743
|
-
return new LibP2PService(
|
|
727
|
+
return new LibP2PService(config, node, peerDiscoveryService, reqresp, peerManager, mempools, l2BlockSource, epochCache, proofVerifier, worldStateSynchronizer, telemetry, logger);
|
|
744
728
|
}
|
|
745
729
|
/**
|
|
746
730
|
* Starts the LibP2P service.
|
|
@@ -785,7 +769,7 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
785
769
|
await this.reqresp.start(requestResponseHandlers, reqrespSubProtocolValidators);
|
|
786
770
|
await this.node.start();
|
|
787
771
|
// Subscribe to standard GossipSub topics by default
|
|
788
|
-
for (const topic of
|
|
772
|
+
for (const topic of getTopicsForConfig(this.config.disableTransactions)){
|
|
789
773
|
this.subscribeToTopic(this.topicStrings[topic]);
|
|
790
774
|
}
|
|
791
775
|
// add GossipSub listener
|
|
@@ -833,6 +817,9 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
833
817
|
getPeers(includePending) {
|
|
834
818
|
return this.peerManager.getPeers(includePending);
|
|
835
819
|
}
|
|
820
|
+
getGossipMeshPeerCount(topicType) {
|
|
821
|
+
return this.node.services.pubsub.getMeshPeers(this.topicStrings[topicType]).length;
|
|
822
|
+
}
|
|
836
823
|
handleGossipSubEvent(e) {
|
|
837
824
|
this.logger.trace(`Received PUBSUB message.`);
|
|
838
825
|
const safeJob = async ()=>{
|
|
@@ -931,6 +918,12 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
931
918
|
if (!validator || !validator.addMessage(msgId)) {
|
|
932
919
|
this.instrumentation.incMessagePrevalidationStatus(false, topicType);
|
|
933
920
|
this.node.services.pubsub.reportMessageValidationResult(msgId, source.toString(), TopicValidatorResult.Ignore);
|
|
921
|
+
if (topicType === TopicType.tx) {
|
|
922
|
+
this.logger.verbose(`Ignoring already-seen tx gossip message`, {
|
|
923
|
+
msgId,
|
|
924
|
+
source: source.toString()
|
|
925
|
+
});
|
|
926
|
+
}
|
|
934
927
|
return {
|
|
935
928
|
result: false,
|
|
936
929
|
topicType
|
|
@@ -991,9 +984,7 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
991
984
|
if (msg.topic === this.topicStrings[TopicType.tx]) {
|
|
992
985
|
await this.handleGossipedTx(p2pMessage.payload, msgId, source);
|
|
993
986
|
} else if (msg.topic === this.topicStrings[TopicType.checkpoint_attestation]) {
|
|
994
|
-
|
|
995
|
-
await this.processCheckpointAttestationFromPeer(p2pMessage.payload, msgId, source);
|
|
996
|
-
}
|
|
987
|
+
await this.processCheckpointAttestationFromPeer(p2pMessage.payload, msgId, source);
|
|
997
988
|
} else if (msg.topic === this.topicStrings[TopicType.block_proposal]) {
|
|
998
989
|
await this.processBlockFromPeer(p2pMessage.payload, msgId, source);
|
|
999
990
|
} else if (msg.topic === this.topicStrings[TopicType.checkpoint_proposal]) {
|
|
@@ -1038,39 +1029,119 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1038
1029
|
return;
|
|
1039
1030
|
}
|
|
1040
1031
|
async validateReceivedMessage(validationFunc, msgId, source, topicType) {
|
|
1032
|
+
// Default to reject result with a penalty if validation function throws an error
|
|
1041
1033
|
let resultAndObj = {
|
|
1042
|
-
result: TopicValidatorResult.Reject
|
|
1034
|
+
result: TopicValidatorResult.Reject,
|
|
1035
|
+
severity: PeerErrorSeverity.MidToleranceError
|
|
1043
1036
|
};
|
|
1044
1037
|
const timer = new Timer();
|
|
1045
1038
|
try {
|
|
1046
1039
|
resultAndObj = await validationFunc();
|
|
1047
1040
|
} catch (err) {
|
|
1048
|
-
this.
|
|
1049
|
-
this.logger.error(`Error deserializing and validating gossipsub message`, err, {
|
|
1041
|
+
this.logger.error(`Error validating gossipsub message`, err, {
|
|
1050
1042
|
msgId,
|
|
1051
1043
|
source: source.toString(),
|
|
1052
1044
|
topicType
|
|
1053
1045
|
});
|
|
1054
1046
|
}
|
|
1055
1047
|
if (resultAndObj.result === TopicValidatorResult.Accept) {
|
|
1048
|
+
this.logger.debug(`Message ${topicType} accepted by validator`, {
|
|
1049
|
+
msgId,
|
|
1050
|
+
source: source.toString(),
|
|
1051
|
+
topicType
|
|
1052
|
+
});
|
|
1056
1053
|
this.instrumentation.recordMessageValidation(topicType, timer);
|
|
1054
|
+
} else if (resultAndObj.result === TopicValidatorResult.Reject) {
|
|
1055
|
+
this.logger.warn(`Message ${topicType} rejected by validator with severity ${resultAndObj.severity}`, {
|
|
1056
|
+
msgId,
|
|
1057
|
+
source: source.toString(),
|
|
1058
|
+
topicType,
|
|
1059
|
+
severity: resultAndObj.severity
|
|
1060
|
+
});
|
|
1061
|
+
this.peerManager.penalizePeer(source, resultAndObj.severity);
|
|
1062
|
+
} else {
|
|
1063
|
+
this.logger.trace(`Message ${topicType} ignored by validator`, {
|
|
1064
|
+
msgId,
|
|
1065
|
+
source: source.toString(),
|
|
1066
|
+
topicType
|
|
1067
|
+
});
|
|
1057
1068
|
}
|
|
1058
1069
|
this.node.services.pubsub.reportMessageValidationResult(msgId, source.toString(), resultAndObj.result);
|
|
1059
1070
|
return resultAndObj;
|
|
1060
1071
|
}
|
|
1072
|
+
tryDeserialize(deserializeFunc, msgId, source) {
|
|
1073
|
+
try {
|
|
1074
|
+
return deserializeFunc();
|
|
1075
|
+
} catch (err) {
|
|
1076
|
+
this.logger.warn(`Failed to deserialize gossipsub message from buffer`, {
|
|
1077
|
+
err,
|
|
1078
|
+
msgId,
|
|
1079
|
+
source: source.toString()
|
|
1080
|
+
});
|
|
1081
|
+
return undefined;
|
|
1082
|
+
}
|
|
1083
|
+
}
|
|
1061
1084
|
async handleGossipedTx(payloadData, msgId, source) {
|
|
1062
1085
|
const validationFunc = async ()=>{
|
|
1063
|
-
const tx = Tx.fromBuffer(payloadData);
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1086
|
+
const tx = this.tryDeserialize(()=>Tx.fromBuffer(payloadData), msgId, source);
|
|
1087
|
+
if (!tx) {
|
|
1088
|
+
return {
|
|
1089
|
+
result: TopicValidatorResult.Reject,
|
|
1090
|
+
severity: PeerErrorSeverity.LowToleranceError
|
|
1091
|
+
};
|
|
1092
|
+
}
|
|
1093
|
+
const currentBlockNumber = await this.archiver.getBlockNumber();
|
|
1094
|
+
const { ts: nextSlotTimestamp } = this.epochCache.getEpochAndSlotInNextL1Slot();
|
|
1095
|
+
// Stage 1: fast validators (metadata, data, timestamps, double-spend, gas, phases, block header)
|
|
1096
|
+
const firstStageValidators = await this.createFirstStageMessageValidators(currentBlockNumber, nextSlotTimestamp);
|
|
1097
|
+
const firstStageOutcome = await this.runValidations(tx, firstStageValidators);
|
|
1098
|
+
if (!firstStageOutcome.allPassed) {
|
|
1099
|
+
const { name } = firstStageOutcome.failure;
|
|
1100
|
+
let { severity } = firstStageOutcome.failure;
|
|
1101
|
+
// Double spend validator has a special case handler. We perform more detailed examination
|
|
1102
|
+
// as to how recently the nullifier was entered into the tree and if the transaction should
|
|
1103
|
+
// have 'known' the nullifier existed. This determines the severity of the penalty applied to the peer.
|
|
1104
|
+
if (name === 'doubleSpendValidator') {
|
|
1105
|
+
const txBlockNumber = BlockNumber(currentBlockNumber + 1);
|
|
1106
|
+
severity = await this.handleDoubleSpendFailure(tx, txBlockNumber);
|
|
1107
|
+
}
|
|
1108
|
+
this.logger.verbose(`Rejecting gossiped tx ${tx.getTxHash().toString()}: stage 1 validation failed`, {
|
|
1109
|
+
validator: name,
|
|
1110
|
+
severity,
|
|
1111
|
+
source: source.toString()
|
|
1068
1112
|
});
|
|
1069
1113
|
return {
|
|
1070
|
-
result: TopicValidatorResult.Reject
|
|
1114
|
+
result: TopicValidatorResult.Reject,
|
|
1115
|
+
severity
|
|
1071
1116
|
};
|
|
1072
1117
|
}
|
|
1073
|
-
//
|
|
1118
|
+
// Pool pre-check: see if the pool would accept this tx before doing expensive proof verification
|
|
1119
|
+
const canAdd = await this.mempools.txPool.canAddPendingTx(tx);
|
|
1120
|
+
if (canAdd === 'ignored') {
|
|
1121
|
+
this.logger.verbose(`Ignoring gossiped tx ${tx.getTxHash().toString()}: pool pre-check returned ignored`, {
|
|
1122
|
+
source: source.toString()
|
|
1123
|
+
});
|
|
1124
|
+
return {
|
|
1125
|
+
result: TopicValidatorResult.Ignore,
|
|
1126
|
+
obj: tx
|
|
1127
|
+
};
|
|
1128
|
+
}
|
|
1129
|
+
// Stage 2: expensive proof verification
|
|
1130
|
+
const secondStageValidators = this.createSecondStageMessageValidators();
|
|
1131
|
+
const secondStageOutcome = await this.runValidations(tx, secondStageValidators);
|
|
1132
|
+
if (!secondStageOutcome.allPassed) {
|
|
1133
|
+
const { severity, name } = secondStageOutcome.failure;
|
|
1134
|
+
this.logger.verbose(`Rejecting gossiped tx ${tx.getTxHash().toString()}: stage 2 validation failed`, {
|
|
1135
|
+
validator: name,
|
|
1136
|
+
severity,
|
|
1137
|
+
source: source.toString()
|
|
1138
|
+
});
|
|
1139
|
+
return {
|
|
1140
|
+
result: TopicValidatorResult.Reject,
|
|
1141
|
+
severity
|
|
1142
|
+
};
|
|
1143
|
+
}
|
|
1144
|
+
// Pool add: persist the tx
|
|
1074
1145
|
const txHash = tx.getTxHash();
|
|
1075
1146
|
const addResult = await this.mempools.txPool.addPendingTxs([
|
|
1076
1147
|
tx
|
|
@@ -1079,8 +1150,7 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1079
1150
|
});
|
|
1080
1151
|
const wasAccepted = addResult.accepted.some((h)=>h.equals(txHash));
|
|
1081
1152
|
const wasIgnored = addResult.ignored.some((h)=>h.equals(txHash));
|
|
1082
|
-
this.logger.
|
|
1083
|
-
isValid,
|
|
1153
|
+
this.logger.verbose(`Validate propagated tx ${txHash.toString()}`, {
|
|
1084
1154
|
wasAccepted,
|
|
1085
1155
|
wasIgnored,
|
|
1086
1156
|
[Attributes.P2P_ID]: source.toString()
|
|
@@ -1096,8 +1166,13 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1096
1166
|
obj: tx
|
|
1097
1167
|
};
|
|
1098
1168
|
} else {
|
|
1169
|
+
this.logger.warn(`Gossiped tx ${txHash.toString()} unexpectedly rejected by pool`, {
|
|
1170
|
+
source: source.toString(),
|
|
1171
|
+
txHash: txHash.toString()
|
|
1172
|
+
});
|
|
1099
1173
|
return {
|
|
1100
|
-
result: TopicValidatorResult.Reject
|
|
1174
|
+
result: TopicValidatorResult.Reject,
|
|
1175
|
+
severity: PeerErrorSeverity.HighToleranceError
|
|
1101
1176
|
};
|
|
1102
1177
|
}
|
|
1103
1178
|
};
|
|
@@ -1118,7 +1193,16 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1118
1193
|
* Process a checkpoint attestation from a peer.
|
|
1119
1194
|
* Validates the attestation and adds it to the pool.
|
|
1120
1195
|
*/ async processCheckpointAttestationFromPeer(payloadData, msgId, source) {
|
|
1121
|
-
const { result, obj: attestation } = await this.validateReceivedMessage(()=>
|
|
1196
|
+
const { result, obj: attestation } = await this.validateReceivedMessage(()=>{
|
|
1197
|
+
const attestation = this.tryDeserialize(()=>CheckpointAttestation.fromBuffer(payloadData), msgId, source);
|
|
1198
|
+
if (!attestation) {
|
|
1199
|
+
return Promise.resolve({
|
|
1200
|
+
result: TopicValidatorResult.Reject,
|
|
1201
|
+
severity: PeerErrorSeverity.LowToleranceError
|
|
1202
|
+
});
|
|
1203
|
+
}
|
|
1204
|
+
return this.validateAndStoreCheckpointAttestation(source, attestation);
|
|
1205
|
+
}, msgId, source, TopicType.checkpoint_attestation);
|
|
1122
1206
|
if (result !== TopicValidatorResult.Accept || !attestation) {
|
|
1123
1207
|
return;
|
|
1124
1208
|
}
|
|
@@ -1133,9 +1217,9 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1133
1217
|
const validationResult = await this.checkpointAttestationValidator.validate(attestation);
|
|
1134
1218
|
if (validationResult.result === 'reject') {
|
|
1135
1219
|
this.logger.warn(`Penalizing peer ${peerId} for checkpoint attestation validation failure`);
|
|
1136
|
-
this.peerManager.penalizePeer(peerId, validationResult.severity);
|
|
1137
1220
|
return {
|
|
1138
|
-
result: TopicValidatorResult.Reject
|
|
1221
|
+
result: TopicValidatorResult.Reject,
|
|
1222
|
+
severity: validationResult.severity
|
|
1139
1223
|
};
|
|
1140
1224
|
}
|
|
1141
1225
|
if (validationResult.result === 'ignore') {
|
|
@@ -1162,9 +1246,9 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1162
1246
|
obj: attestation
|
|
1163
1247
|
};
|
|
1164
1248
|
}
|
|
1165
|
-
// Could not add (cap reached for signer),
|
|
1249
|
+
// Could not add (cap reached for signer), penalize and do not re-broadcast
|
|
1166
1250
|
if (!added) {
|
|
1167
|
-
this.logger.warn(`
|
|
1251
|
+
this.logger.warn(`Rejecting checkpoint attestation due to cap`, {
|
|
1168
1252
|
slot: slot.toString(),
|
|
1169
1253
|
archive: attestation.archive.toString(),
|
|
1170
1254
|
source: peerId.toString(),
|
|
@@ -1172,8 +1256,8 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1172
1256
|
count
|
|
1173
1257
|
});
|
|
1174
1258
|
return {
|
|
1175
|
-
result: TopicValidatorResult.
|
|
1176
|
-
|
|
1259
|
+
result: TopicValidatorResult.Reject,
|
|
1260
|
+
severity: PeerErrorSeverity.HighToleranceError
|
|
1177
1261
|
};
|
|
1178
1262
|
}
|
|
1179
1263
|
// Check if this is a duplicate attestation (signer attested to a different proposal at the same slot)
|
|
@@ -1211,9 +1295,9 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1211
1295
|
const validationResult = await this.blockProposalValidator.validate(block);
|
|
1212
1296
|
if (validationResult.result === 'reject') {
|
|
1213
1297
|
this.logger.warn(`Penalizing peer ${peerId} for block proposal validation failure`);
|
|
1214
|
-
this.peerManager.penalizePeer(peerId, validationResult.severity);
|
|
1215
1298
|
return {
|
|
1216
|
-
result: TopicValidatorResult.Reject
|
|
1299
|
+
result: TopicValidatorResult.Reject,
|
|
1300
|
+
severity: validationResult.severity
|
|
1217
1301
|
};
|
|
1218
1302
|
}
|
|
1219
1303
|
if (validationResult.result === 'ignore') {
|
|
@@ -1243,7 +1327,6 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1243
1327
|
}
|
|
1244
1328
|
// Too many blocks received for this slot and index, penalize peer and do not re-broadcast
|
|
1245
1329
|
if (!added) {
|
|
1246
|
-
this.peerManager.penalizePeer(peerId, PeerErrorSeverity.HighToleranceError);
|
|
1247
1330
|
this.logger.warn(`Penalizing peer for block proposal exceeding per-position cap`, {
|
|
1248
1331
|
...block.toBlockInfo(),
|
|
1249
1332
|
indexWithinCheckpoint: block.indexWithinCheckpoint,
|
|
@@ -1255,7 +1338,8 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1255
1338
|
result: TopicValidatorResult.Reject,
|
|
1256
1339
|
metadata: {
|
|
1257
1340
|
isEquivocated
|
|
1258
|
-
}
|
|
1341
|
+
},
|
|
1342
|
+
severity: PeerErrorSeverity.HighToleranceError
|
|
1259
1343
|
};
|
|
1260
1344
|
}
|
|
1261
1345
|
// If this was a duplicate proposal, do not process it, but do invoke the duplicate callback,
|
|
@@ -1304,7 +1388,7 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1304
1388
|
// Note: Validators do NOT attest to individual blocks, only to checkpoint proposals.
|
|
1305
1389
|
const isValid = await this.blockReceivedCallback(block, sender);
|
|
1306
1390
|
if (!isValid) {
|
|
1307
|
-
this.logger.
|
|
1391
|
+
this.logger.info(`Block proposal validation failed for block ${block.blockNumber}`, block.toBlockInfo());
|
|
1308
1392
|
}
|
|
1309
1393
|
}
|
|
1310
1394
|
/**
|
|
@@ -1329,9 +1413,9 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1329
1413
|
const validationResult = await this.checkpointProposalValidator.validate(checkpoint);
|
|
1330
1414
|
if (validationResult.result === 'reject') {
|
|
1331
1415
|
this.logger.warn(`Penalizing peer ${peerId} for checkpoint proposal validation failure`);
|
|
1332
|
-
this.peerManager.penalizePeer(peerId, validationResult.severity);
|
|
1333
1416
|
return {
|
|
1334
|
-
result: TopicValidatorResult.Reject
|
|
1417
|
+
result: TopicValidatorResult.Reject,
|
|
1418
|
+
severity: validationResult.severity
|
|
1335
1419
|
};
|
|
1336
1420
|
}
|
|
1337
1421
|
if (validationResult.result === 'ignore') {
|
|
@@ -1348,18 +1432,20 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1348
1432
|
[Attributes.SLOT_NUMBER]: checkpoint.slotNumber.toString(),
|
|
1349
1433
|
[Attributes.P2P_ID]: peerId.toString()
|
|
1350
1434
|
});
|
|
1351
|
-
const
|
|
1352
|
-
|
|
1435
|
+
const blockProposalResult = await this.validateAndStoreBlockProposal(peerId, blockProposal);
|
|
1436
|
+
const { obj, metadata: { isEquivocated } = {} } = blockProposalResult;
|
|
1437
|
+
if (blockProposalResult.result === TopicValidatorResult.Reject || !obj || isEquivocated) {
|
|
1353
1438
|
this.logger.debug(`Rejecting checkpoint due to invalid last block proposal`, {
|
|
1354
1439
|
[Attributes.SLOT_NUMBER]: checkpoint.slotNumber.toString(),
|
|
1355
1440
|
[Attributes.P2P_ID]: peerId.toString(),
|
|
1356
1441
|
isEquivocated,
|
|
1357
|
-
result
|
|
1442
|
+
result: blockProposalResult.result
|
|
1358
1443
|
});
|
|
1359
1444
|
return {
|
|
1360
|
-
result: TopicValidatorResult.Reject
|
|
1445
|
+
result: TopicValidatorResult.Reject,
|
|
1446
|
+
severity: 'severity' in blockProposalResult ? blockProposalResult.severity : PeerErrorSeverity.MidToleranceError
|
|
1361
1447
|
};
|
|
1362
|
-
} else if (result === TopicValidatorResult.Accept && obj && !isEquivocated) {
|
|
1448
|
+
} else if (blockProposalResult.result === TopicValidatorResult.Accept && obj && !isEquivocated) {
|
|
1363
1449
|
processBlock = true;
|
|
1364
1450
|
}
|
|
1365
1451
|
}
|
|
@@ -1386,7 +1472,6 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1386
1472
|
// Too many checkpoint proposals received for this slot, penalize peer and do not re-broadcast
|
|
1387
1473
|
// Note: We still return the checkpoint obj so the lastBlock can be processed if valid
|
|
1388
1474
|
if (!added) {
|
|
1389
|
-
this.peerManager.penalizePeer(peerId, PeerErrorSeverity.HighToleranceError);
|
|
1390
1475
|
this.logger.warn(`Penalizing peer for checkpoint proposal exceeding per-slot cap`, {
|
|
1391
1476
|
...checkpoint.toCheckpointInfo(),
|
|
1392
1477
|
count,
|
|
@@ -1398,7 +1483,8 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1398
1483
|
metadata: {
|
|
1399
1484
|
isEquivocated,
|
|
1400
1485
|
processBlock
|
|
1401
|
-
}
|
|
1486
|
+
},
|
|
1487
|
+
severity: PeerErrorSeverity.HighToleranceError
|
|
1402
1488
|
};
|
|
1403
1489
|
}
|
|
1404
1490
|
// If this was a duplicate proposal, do not process it, but do invoke the duplicate callback,
|
|
@@ -1622,33 +1708,11 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1622
1708
|
}
|
|
1623
1709
|
}
|
|
1624
1710
|
createRequestedTxValidator() {
|
|
1625
|
-
return
|
|
1711
|
+
return createTxValidatorForReqResponseReceivedTxs(this.proofVerifier, {
|
|
1626
1712
|
l1ChainId: this.config.l1ChainId,
|
|
1627
1713
|
rollupVersion: this.config.rollupVersion
|
|
1628
1714
|
});
|
|
1629
1715
|
}
|
|
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
1716
|
async getGasFees(blockNumber) {
|
|
1653
1717
|
if (blockNumber === this.feesCache?.blockNumber) {
|
|
1654
1718
|
return this.feesCache.gasFees;
|
|
@@ -1675,38 +1739,35 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1675
1739
|
peerScoring: this.peerManager
|
|
1676
1740
|
};
|
|
1677
1741
|
}
|
|
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
|
-
}
|
|
1742
|
+
async validateTxsReceivedInBlockProposal(txs) {
|
|
1743
|
+
const validator = createTxValidatorForBlockProposalReceivedTxs(this.proofVerifier, {
|
|
1744
|
+
l1ChainId: this.config.l1ChainId,
|
|
1745
|
+
rollupVersion: this.config.rollupVersion
|
|
1746
|
+
}, this.logger.getBindings());
|
|
1747
|
+
const results = await Promise.all(txs.map(async (tx)=>{
|
|
1748
|
+
const result = await validator.validateTx(tx);
|
|
1749
|
+
return result.result !== 'invalid';
|
|
1694
1750
|
}));
|
|
1751
|
+
if (results.some((value)=>value === false)) {
|
|
1752
|
+
throw new Error('Invalid tx detected');
|
|
1753
|
+
}
|
|
1695
1754
|
}
|
|
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) {
|
|
1755
|
+
/** Creates the first stage (fast) validators for gossiped transactions. */ async createFirstStageMessageValidators(currentBlockNumber, nextSlotTimestamp) {
|
|
1706
1756
|
const gasFees = await this.getGasFees(currentBlockNumber);
|
|
1707
|
-
const allowedInSetup =
|
|
1708
|
-
|
|
1709
|
-
|
|
1757
|
+
const allowedInSetup = [
|
|
1758
|
+
...await getDefaultAllowedSetupFunctions(),
|
|
1759
|
+
...this.config.txPublicSetupAllowListExtend ?? []
|
|
1760
|
+
];
|
|
1761
|
+
const blockNumber = BlockNumber(currentBlockNumber + 1);
|
|
1762
|
+
const l1Constants = await this.archiver.getL1Constants();
|
|
1763
|
+
return createFirstStageTxValidationsForGossipedTransactions(nextSlotTimestamp, blockNumber, this.worldStateSynchronizer, gasFees, this.config.l1ChainId, this.config.rollupVersion, protocolContractsHash, this.archiver, !this.config.disableTransactions, allowedInSetup, this.logger.getBindings(), {
|
|
1764
|
+
rollupManaLimit: l1Constants.rollupManaLimit,
|
|
1765
|
+
maxBlockL2Gas: this.config.validateMaxL2BlockGas,
|
|
1766
|
+
maxBlockDAGas: this.config.validateMaxDABlockGas
|
|
1767
|
+
});
|
|
1768
|
+
}
|
|
1769
|
+
/** Creates the second stage (expensive proof verification) validators for gossiped transactions. */ createSecondStageMessageValidators() {
|
|
1770
|
+
return createSecondStageTxValidationsForGossipedTransactions(this.proofVerifier, this.logger.getBindings());
|
|
1710
1771
|
}
|
|
1711
1772
|
/**
|
|
1712
1773
|
* Run validations on a tx.
|
|
@@ -1724,8 +1785,10 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1724
1785
|
});
|
|
1725
1786
|
// A promise that resolves when all validations have been run
|
|
1726
1787
|
const allValidations = await Promise.all(validationPromises);
|
|
1727
|
-
const
|
|
1728
|
-
if (
|
|
1788
|
+
const failures = allValidations.filter((x)=>!x.isValid);
|
|
1789
|
+
if (failures.length > 0) {
|
|
1790
|
+
// Pick the most severe failure (lowest tolerance = harshest penalty)
|
|
1791
|
+
const failed = maxBy(failures, (f)=>PeerErrorSeverityByHarshness.indexOf(f.severity));
|
|
1729
1792
|
return {
|
|
1730
1793
|
allPassed: false,
|
|
1731
1794
|
failure: {
|
|
@@ -1772,19 +1835,6 @@ _dec = trackSpan('Libp2pService.validateAndStoreCheckpointAttestation', (_peerId
|
|
|
1772
1835
|
}
|
|
1773
1836
|
return PeerErrorSeverity.HighToleranceError;
|
|
1774
1837
|
}
|
|
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
1838
|
getPeerScore(peerId) {
|
|
1789
1839
|
return this.node.services.pubsub.score.score(peerId.toString());
|
|
1790
1840
|
}
|
|
@@ -6,6 +6,7 @@ export declare class PeerManagerMetrics {
|
|
|
6
6
|
private sentGoodbyes;
|
|
7
7
|
private receivedGoodbyes;
|
|
8
8
|
private peerCount;
|
|
9
|
+
private healthyPeerCount;
|
|
9
10
|
private lowScoreDisconnects;
|
|
10
11
|
private peerConnectionDuration;
|
|
11
12
|
private peerConnectedAt;
|
|
@@ -14,8 +15,9 @@ export declare class PeerManagerMetrics {
|
|
|
14
15
|
recordGoodbyeSent(reason: GoodByeReason): void;
|
|
15
16
|
recordGoodbyeReceived(reason: GoodByeReason): void;
|
|
16
17
|
recordPeerCount(count: number): void;
|
|
18
|
+
recordHealthyPeerCount(count: number): void;
|
|
17
19
|
recordLowScoreDisconnect(scoreState: 'Banned' | 'Disconnect'): void;
|
|
18
20
|
peerConnected(id: PeerId): void;
|
|
19
21
|
peerDisconnected(id: PeerId): void;
|
|
20
22
|
}
|
|
21
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
23
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWV0cmljcy5kLnRzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3NlcnZpY2VzL3BlZXItbWFuYWdlci9tZXRyaWNzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFLTCxLQUFLLGVBQWUsRUFDcEIsS0FBSyxNQUFNLEVBSVosTUFBTSx5QkFBeUIsQ0FBQztBQUVqQyxPQUFPLEtBQUssRUFBRSxNQUFNLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQztBQUVoRCxPQUFPLEVBQUUsYUFBYSxFQUF1QixNQUFNLCtCQUErQixDQUFDO0FBRW5GLHFCQUFhLGtCQUFrQjthQWFYLGVBQWUsRUFBRSxlQUFlO0lBWmxELE9BQU8sQ0FBQyxZQUFZLENBQWdCO0lBQ3BDLE9BQU8sQ0FBQyxnQkFBZ0IsQ0FBZ0I7SUFDeEMsT0FBTyxDQUFDLFNBQVMsQ0FBUTtJQUN6QixPQUFPLENBQUMsZ0JBQWdCLENBQVE7SUFDaEMsT0FBTyxDQUFDLG1CQUFtQixDQUFnQjtJQUMzQyxPQUFPLENBQUMsc0JBQXNCLENBQVk7SUFFMUMsT0FBTyxDQUFDLGVBQWUsQ0FBa0Q7SUFFekUsU0FBZ0IsTUFBTSxFQUFFLE1BQU0sQ0FBQztJQUUvQixZQUNrQixlQUFlLEdBQUUsZUFBc0MsRUFDdkUsSUFBSSxTQUFnQixFQTJCckI7SUFFTSxpQkFBaUIsQ0FBQyxNQUFNLEVBQUUsYUFBYSxRQUU3QztJQUVNLHFCQUFxQixDQUFDLE1BQU0sRUFBRSxhQUFhLFFBRWpEO0lBRU0sZUFBZSxDQUFDLEtBQUssRUFBRSxNQUFNLFFBRW5DO0lBRU0sc0JBQXNCLENBQUMsS0FBSyxFQUFFLE1BQU0sUUFFMUM7SUFFTSx3QkFBd0IsQ0FBQyxVQUFVLEVBQUUsUUFBUSxHQUFHLFlBQVksUUFFbEU7SUFFTSxhQUFhLENBQUMsRUFBRSxFQUFFLE1BQU0sUUFFOUI7SUFFTSxnQkFBZ0IsQ0FBQyxFQUFFLEVBQUUsTUFBTSxRQU1qQztDQUNGIn0=
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"metrics.d.ts","sourceRoot":"","sources":["../../../src/services/peer-manager/metrics.ts"],"names":[],"mappings":"AAAA,OAAO,EAKL,KAAK,eAAe,EACpB,KAAK,MAAM,EAIZ,MAAM,yBAAyB,CAAC;AAEjC,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,mBAAmB,CAAC;AAEhD,OAAO,EAAE,aAAa,EAAuB,MAAM,+BAA+B,CAAC;AAEnF,qBAAa,kBAAkB;
|
|
1
|
+
{"version":3,"file":"metrics.d.ts","sourceRoot":"","sources":["../../../src/services/peer-manager/metrics.ts"],"names":[],"mappings":"AAAA,OAAO,EAKL,KAAK,eAAe,EACpB,KAAK,MAAM,EAIZ,MAAM,yBAAyB,CAAC;AAEjC,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,mBAAmB,CAAC;AAEhD,OAAO,EAAE,aAAa,EAAuB,MAAM,+BAA+B,CAAC;AAEnF,qBAAa,kBAAkB;aAaX,eAAe,EAAE,eAAe;IAZlD,OAAO,CAAC,YAAY,CAAgB;IACpC,OAAO,CAAC,gBAAgB,CAAgB;IACxC,OAAO,CAAC,SAAS,CAAQ;IACzB,OAAO,CAAC,gBAAgB,CAAQ;IAChC,OAAO,CAAC,mBAAmB,CAAgB;IAC3C,OAAO,CAAC,sBAAsB,CAAY;IAE1C,OAAO,CAAC,eAAe,CAAkD;IAEzE,SAAgB,MAAM,EAAE,MAAM,CAAC;IAE/B,YACkB,eAAe,GAAE,eAAsC,EACvE,IAAI,SAAgB,EA2BrB;IAEM,iBAAiB,CAAC,MAAM,EAAE,aAAa,QAE7C;IAEM,qBAAqB,CAAC,MAAM,EAAE,aAAa,QAEjD;IAEM,eAAe,CAAC,KAAK,EAAE,MAAM,QAEnC;IAEM,sBAAsB,CAAC,KAAK,EAAE,MAAM,QAE1C;IAEM,wBAAwB,CAAC,UAAU,EAAE,QAAQ,GAAG,YAAY,QAElE;IAEM,aAAa,CAAC,EAAE,EAAE,MAAM,QAE9B;IAEM,gBAAgB,CAAC,EAAE,EAAE,MAAM,QAMjC;CACF"}
|