├── .circleci └── config.yml ├── .clang-format ├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ ├── epic_issue.md │ └── small_task.md ├── actions │ └── prnet │ │ └── action.yml ├── pull_request_template.md └── workflows │ ├── build-docker.yml │ ├── docs.yaml │ ├── issue-link.yml │ ├── pr-actions.yml │ ├── pr-net-cleanup-on-close.yml │ ├── release-docker.yml │ └── trigger-ci-on-branch.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CMakeModules ├── ProjectJSONRPCCPP.cmake ├── ProjectLibFF.cmake ├── ProjectSecp256k1.cmake ├── clang_format.cmake ├── clang_tidy.cmake ├── cpp_graphql_gen.cmake ├── cppcheck.cmake └── git_info.cmake ├── Dockerfile ├── Doxyfile ├── LICENSE ├── README.md ├── charts └── taraxa-node │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Chart.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── bootnode-configmap.yaml │ ├── bootnode-service.yaml │ ├── bootnode-servicemonitor.yaml │ ├── bootnode-statefulset.yaml │ ├── consensus-node-configmap.yaml │ ├── consensus-node-light-configmap.yaml │ ├── consensus-node-light-service.yaml │ ├── consensus-node-light-servicemonitor.yaml │ ├── consensus-node-light-statefulset.yaml │ ├── consensus-node-service.yaml │ ├── consensus-node-servicemonitor.yaml │ ├── consensus-node-statefulset.yaml │ ├── explorer-check-configmap.yaml │ ├── secrets.yaml │ ├── snapshot-init-configmap.yaml │ ├── status-script-configmap.yaml │ ├── taraxa-node-configmap.yaml │ ├── taraxa-node-indexer-ingress.yaml │ ├── taraxa-node-ingress.yaml │ ├── taraxa-node-service.yaml │ ├── taraxa-node-servicemonitor.yaml │ ├── taraxa-node-statefulset.yaml │ ├── test-script-role.yaml │ ├── test-script-rolebinding.yaml │ ├── test-script-serviceaccount.yaml │ ├── tests │ │ └── helmtestfolder.yaml │ ├── transaction-generation-script-configmap.yaml │ └── transaction-generation-statefulset.yaml │ └── values.yaml ├── conanfile.py ├── doc ├── RPC.md ├── building.md ├── coding_practices.md ├── contributing.md ├── doxygen.md ├── evm_incompatibilities.md ├── example_config.json ├── git_practices.md ├── images │ ├── DAG_ordered.png │ ├── DAG_unordered.png │ ├── git_model.png │ └── release_cycle.png ├── quickstart_guide.md ├── release_cycle.md ├── rewards_distribution.md └── uml │ ├── readme.md │ └── release_cycle ├── docker-entrypoint.sh ├── for_devs ├── README.md ├── local-net ├── requirements.txt └── run_test_in_loop.sh ├── libraries ├── CMakeLists.txt ├── aleth │ ├── CMakeLists.txt │ ├── libdevcore │ │ ├── Address.h │ │ ├── Assertions.h │ │ ├── Base64.cpp │ │ ├── Base64.h │ │ ├── CMakeLists.txt │ │ ├── Common.cpp │ │ ├── Common.h │ │ ├── CommonData.cpp │ │ ├── CommonData.h │ │ ├── CommonIO.h │ │ ├── CommonJS.cpp │ │ ├── CommonJS.h │ │ ├── Exceptions.h │ │ ├── FixedHash.h │ │ ├── Guards.h │ │ ├── Log.h │ │ ├── RLP.cpp │ │ ├── RLP.h │ │ ├── SHA3.cpp │ │ ├── SHA3.h │ │ ├── Terminal.h │ │ ├── UndefMacros.h │ │ └── vector_ref.h │ ├── libdevcrypto │ │ ├── AES.cpp │ │ ├── AES.h │ │ ├── CMakeLists.txt │ │ ├── Common.cpp │ │ ├── Common.h │ │ ├── CryptoPP.cpp │ │ ├── CryptoPP.h │ │ ├── Exceptions.h │ │ ├── LibSnark.cpp │ │ └── LibSnark.h │ ├── libp2p │ │ ├── CMakeLists.txt │ │ ├── Capability.h │ │ ├── Common.cpp │ │ ├── Common.h │ │ ├── ENR.cpp │ │ ├── ENR.h │ │ ├── EndpointTracker.cpp │ │ ├── EndpointTracker.h │ │ ├── Host.cpp │ │ ├── Host.h │ │ ├── Network.cpp │ │ ├── Network.h │ │ ├── NodeTable.cpp │ │ ├── NodeTable.h │ │ ├── Peer.cpp │ │ ├── Peer.h │ │ ├── RLPXFrameCoder.cpp │ │ ├── RLPXFrameCoder.h │ │ ├── RLPXPacket.h │ │ ├── RLPXSocket.h │ │ ├── RLPxHandshake.cpp │ │ ├── RLPxHandshake.h │ │ ├── Session.cpp │ │ ├── Session.h │ │ ├── UDP.cpp │ │ ├── UDP.h │ │ ├── UPnP.cpp │ │ ├── UPnP.h │ │ └── taraxa.hpp │ └── libweb3jsonrpc │ │ └── ModularServer.h ├── app │ ├── CMakeLists.txt │ ├── include │ │ └── app │ │ │ └── app.hpp │ └── src │ │ └── app.cpp ├── cli │ ├── CMakeLists.txt │ ├── include │ │ └── cli │ │ │ ├── config.hpp │ │ │ ├── config_jsons │ │ │ ├── configs.hpp.in │ │ │ ├── default │ │ │ │ ├── default_config.json │ │ │ │ └── default_genesis.json │ │ │ ├── devnet │ │ │ │ ├── devnet_config.json │ │ │ │ └── devnet_genesis.json │ │ │ ├── mainnet │ │ │ │ ├── mainnet_config.json │ │ │ │ └── mainnet_genesis.json │ │ │ └── testnet │ │ │ │ ├── testnet_config.json │ │ │ │ └── testnet_genesis.json │ │ │ ├── config_updater.hpp │ │ │ └── tools.hpp │ └── src │ │ ├── config.cpp │ │ ├── config_updater.cpp │ │ └── tools.cpp ├── common │ ├── CMakeLists.txt │ ├── include │ │ └── common │ │ │ ├── app_base.hpp │ │ │ ├── char_traits.hpp │ │ │ ├── config_exception.hpp │ │ │ ├── constants.hpp │ │ │ ├── default_construct_copyable_movable.hpp │ │ │ ├── encoding_rlp.hpp │ │ │ ├── encoding_solidity.hpp │ │ │ ├── event.hpp │ │ │ ├── global_const.hpp │ │ │ ├── init.hpp │ │ │ ├── jsoncpp.hpp │ │ │ ├── lazy.hpp │ │ │ ├── rpc_utils.hpp │ │ │ ├── thread_pool.hpp │ │ │ ├── types.hpp │ │ │ ├── util.hpp │ │ │ └── vrf_wrapper.hpp │ └── src │ │ ├── constants.cpp │ │ ├── jsoncpp.cpp │ │ ├── rpc_utils.cpp │ │ ├── thread_pool.cpp │ │ ├── util.cpp │ │ └── vrf_wrapper.cpp ├── config │ ├── CMakeLists.txt │ ├── include │ │ └── config │ │ │ ├── config.hpp │ │ │ ├── config_utils.hpp │ │ │ ├── dag_config.hpp │ │ │ ├── genesis.hpp │ │ │ ├── hardfork.hpp │ │ │ ├── network.hpp │ │ │ ├── pbft_config.hpp │ │ │ └── state_config.hpp │ ├── src │ │ ├── config.cpp │ │ ├── config_utils.cpp │ │ ├── dag_config.cpp │ │ ├── genesis.cpp │ │ ├── hardfork.cpp │ │ ├── network.cpp │ │ ├── pbft_config.cpp │ │ └── state_config.cpp │ └── version │ │ └── version.hpp.in ├── core_libs │ ├── CMakeLists.txt │ ├── consensus │ │ ├── include │ │ │ ├── dag │ │ │ │ ├── dag.hpp │ │ │ │ ├── dag_block_proposer.hpp │ │ │ │ ├── dag_manager.hpp │ │ │ │ └── sortition_params_manager.hpp │ │ │ ├── final_chain │ │ │ │ ├── cache.hpp │ │ │ │ ├── data.hpp │ │ │ │ ├── final_chain.hpp │ │ │ │ ├── state_api.hpp │ │ │ │ ├── state_api_data.hpp │ │ │ │ └── trie_common.hpp │ │ │ ├── key_manager │ │ │ │ └── key_manager.hpp │ │ │ ├── pbft │ │ │ │ ├── pbft_chain.hpp │ │ │ │ ├── pbft_manager.hpp │ │ │ │ ├── period_data_queue.hpp │ │ │ │ └── proposed_blocks.hpp │ │ │ ├── pillar_chain │ │ │ │ ├── pillar_block.hpp │ │ │ │ ├── pillar_chain_manager.hpp │ │ │ │ └── pillar_votes.hpp │ │ │ ├── rewards │ │ │ │ ├── block_stats.hpp │ │ │ │ └── rewards_stats.hpp │ │ │ ├── slashing_manager │ │ │ │ └── slashing_manager.hpp │ │ │ ├── transaction │ │ │ │ ├── gas_pricer.hpp │ │ │ │ ├── transaction_manager.hpp │ │ │ │ └── transaction_queue.hpp │ │ │ └── vote_manager │ │ │ │ ├── verified_votes.hpp │ │ │ │ └── vote_manager.hpp │ │ └── src │ │ │ ├── dag │ │ │ ├── dag.cpp │ │ │ ├── dag_block_proposer.cpp │ │ │ ├── dag_manager.cpp │ │ │ └── sortition_params_manager.cpp │ │ │ ├── final_chain │ │ │ ├── data.cpp │ │ │ ├── final_chain.cpp │ │ │ ├── state_api.cpp │ │ │ ├── state_api_data.cpp │ │ │ └── trie_common.cpp │ │ │ ├── key_manager │ │ │ └── key_manager.cpp │ │ │ ├── pbft │ │ │ ├── pbft_chain.cpp │ │ │ ├── pbft_manager.cpp │ │ │ ├── period_data_queue.cpp │ │ │ └── proposed_blocks.cpp │ │ │ ├── pillar_chain │ │ │ ├── pillar_block.cpp │ │ │ ├── pillar_chain_manager.cpp │ │ │ └── pillar_votes.cpp │ │ │ ├── rewards │ │ │ ├── block_stats.cpp │ │ │ └── rewards_stats.cpp │ │ │ ├── slashing_manager │ │ │ └── slashing_manager.cpp │ │ │ ├── transaction │ │ │ ├── gas_pricer.cpp │ │ │ ├── transaction_manager.cpp │ │ │ └── transaction_queue.cpp │ │ │ └── vote_manager │ │ │ └── vote_manager.cpp │ ├── network │ │ ├── graphql │ │ │ ├── gen │ │ │ │ └── .clang-format │ │ │ ├── include │ │ │ │ └── graphql │ │ │ │ │ ├── account.hpp │ │ │ │ │ ├── block.hpp │ │ │ │ │ ├── http_processor.hpp │ │ │ │ │ ├── log.hpp │ │ │ │ │ ├── mutation.hpp │ │ │ │ │ ├── query.hpp │ │ │ │ │ ├── subscription.hpp │ │ │ │ │ ├── sync_state.hpp │ │ │ │ │ ├── transaction.hpp │ │ │ │ │ ├── types │ │ │ │ │ ├── current_state.hpp │ │ │ │ │ └── dag_block.hpp │ │ │ │ │ └── ws_server.hpp │ │ │ ├── schema │ │ │ │ └── schema.taraxa.graphql │ │ │ └── src │ │ │ │ ├── account.cpp │ │ │ │ ├── block.cpp │ │ │ │ ├── http_processor.cpp │ │ │ │ ├── log.cpp │ │ │ │ ├── mutation.cpp │ │ │ │ ├── query.cpp │ │ │ │ ├── subscription.cpp │ │ │ │ ├── sync_state.cpp │ │ │ │ ├── transaction.cpp │ │ │ │ ├── types │ │ │ │ ├── current_state.cpp │ │ │ │ └── dag_block.cpp │ │ │ │ └── ws_server.cpp │ │ ├── include │ │ │ └── network │ │ │ │ ├── http_server.hpp │ │ │ │ ├── network.hpp │ │ │ │ ├── subscriptions.hpp │ │ │ │ ├── tarcap │ │ │ │ ├── packet_types.hpp │ │ │ │ ├── packets │ │ │ │ │ └── latest │ │ │ │ │ │ ├── dag_block_packet.hpp │ │ │ │ │ │ ├── dag_sync_packet.hpp │ │ │ │ │ │ ├── get_dag_sync_packet.hpp │ │ │ │ │ │ ├── get_next_votes_bundle_packet.hpp │ │ │ │ │ │ ├── get_pbft_sync_packet.hpp │ │ │ │ │ │ ├── get_pillar_votes_bundle_packet.hpp │ │ │ │ │ │ ├── pbft_blocks_bundle_packet.hpp │ │ │ │ │ │ ├── pbft_sync_packet.hpp │ │ │ │ │ │ ├── pillar_vote_packet.hpp │ │ │ │ │ │ ├── pillar_votes_bundle_packet.hpp │ │ │ │ │ │ ├── status_packet.hpp │ │ │ │ │ │ ├── transaction_packet.hpp │ │ │ │ │ │ ├── vote_packet.hpp │ │ │ │ │ │ └── votes_bundle_packet.hpp │ │ │ │ ├── packets_handler.hpp │ │ │ │ ├── packets_handlers │ │ │ │ │ ├── interface │ │ │ │ │ │ ├── dag_block_packet_handler.hpp │ │ │ │ │ │ ├── get_pillar_votes_bundle_packet_handler.hpp │ │ │ │ │ │ ├── pillar_vote_packet_handler.hpp │ │ │ │ │ │ ├── sync_packet_handler.hpp │ │ │ │ │ │ ├── transaction_packet_handler.hpp │ │ │ │ │ │ └── vote_packet_handler.hpp │ │ │ │ │ ├── latest │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── base_packet_handler.hpp │ │ │ │ │ │ │ ├── exceptions.hpp │ │ │ │ │ │ │ ├── ext_pillar_vote_packet_handler.hpp │ │ │ │ │ │ │ ├── ext_syncing_packet_handler.hpp │ │ │ │ │ │ │ ├── ext_votes_packet_handler.hpp │ │ │ │ │ │ │ └── packet_handler.hpp │ │ │ │ │ │ ├── dag_block_packet_handler.hpp │ │ │ │ │ │ ├── dag_sync_packet_handler.hpp │ │ │ │ │ │ ├── get_dag_sync_packet_handler.hpp │ │ │ │ │ │ ├── get_next_votes_bundle_packet_handler.hpp │ │ │ │ │ │ ├── get_pbft_sync_packet_handler.hpp │ │ │ │ │ │ ├── get_pillar_votes_bundle_packet_handler.hpp │ │ │ │ │ │ ├── pbft_blocks_bundle_packet_handler.hpp │ │ │ │ │ │ ├── pbft_sync_packet_handler.hpp │ │ │ │ │ │ ├── pillar_vote_packet_handler.hpp │ │ │ │ │ │ ├── pillar_votes_bundle_packet_handler.hpp │ │ │ │ │ │ ├── status_packet_handler.hpp │ │ │ │ │ │ ├── transaction_packet_handler.hpp │ │ │ │ │ │ ├── vote_packet_handler.hpp │ │ │ │ │ │ └── votes_bundle_packet_handler.hpp │ │ │ │ │ └── v4 │ │ │ │ │ │ └── get_pbft_sync_packet_handler.hpp │ │ │ │ ├── shared_states │ │ │ │ │ ├── pbft_syncing_state.hpp │ │ │ │ │ └── peers_state.hpp │ │ │ │ ├── stats │ │ │ │ │ ├── max_stats.hpp │ │ │ │ │ ├── node_stats.hpp │ │ │ │ │ ├── packet_stats.hpp │ │ │ │ │ ├── packets_stats.hpp │ │ │ │ │ └── time_period_packets_stats.hpp │ │ │ │ ├── taraxa_capability.hpp │ │ │ │ ├── taraxa_peer.hpp │ │ │ │ └── tarcap_version.hpp │ │ │ │ ├── threadpool │ │ │ │ ├── packet_data.hpp │ │ │ │ ├── packets_blocking_mask.hpp │ │ │ │ ├── packets_queue.hpp │ │ │ │ ├── priority_queue.hpp │ │ │ │ └── tarcap_thread_pool.hpp │ │ │ │ ├── ws_server.hpp │ │ │ │ └── ws_session.hpp │ │ ├── rpc │ │ │ ├── CMakeLists.txt │ │ │ ├── Debug.cpp │ │ │ ├── Debug.h │ │ │ ├── Debug.jsonrpc.json │ │ │ ├── DebugClient.h │ │ │ ├── DebugFace.h │ │ │ ├── Eth.jsonrpc.json │ │ │ ├── EthClient.h │ │ │ ├── EthFace.h │ │ │ ├── Net.cpp │ │ │ ├── Net.h │ │ │ ├── Net.jsonrpc.json │ │ │ ├── NetClient.h │ │ │ ├── NetFace.h │ │ │ ├── README.md │ │ │ ├── Taraxa.cpp │ │ │ ├── Taraxa.h │ │ │ ├── Taraxa.jsonrpc.json │ │ │ ├── TaraxaClient.h │ │ │ ├── TaraxaFace.h │ │ │ ├── Test.cpp │ │ │ ├── Test.h │ │ │ ├── Test.jsonrpc.json │ │ │ ├── TestClient.h │ │ │ ├── TestFace.h │ │ │ ├── eth │ │ │ │ ├── Eth.cpp │ │ │ │ ├── Eth.h │ │ │ │ ├── LogFilter.cpp │ │ │ │ ├── LogFilter.hpp │ │ │ │ ├── README.md │ │ │ │ ├── data.hpp │ │ │ │ ├── watches.cpp │ │ │ │ └── watches.hpp │ │ │ ├── jsonrpc_http_processor.cpp │ │ │ ├── jsonrpc_http_processor.hpp │ │ │ ├── jsonrpc_ws_server.cpp │ │ │ └── jsonrpc_ws_server.hpp │ │ └── src │ │ │ ├── http_server.cpp │ │ │ ├── network.cpp │ │ │ ├── subscriptions.cpp │ │ │ ├── tarcap │ │ │ ├── packets_handler.cpp │ │ │ ├── packets_handlers │ │ │ │ ├── interface │ │ │ │ │ ├── dag_block_packet_handler.cpp │ │ │ │ │ ├── get_pillar_votes_bundle_packet_handler.cpp │ │ │ │ │ ├── pillar_vote_packet_handler.cpp │ │ │ │ │ ├── sync_packet_handler.cpp │ │ │ │ │ ├── transaction_packet_handler.cpp │ │ │ │ │ └── vote_packet_handler.cpp │ │ │ │ ├── latest │ │ │ │ │ ├── common │ │ │ │ │ │ ├── ext_pillar_vote_packet_handler.cpp │ │ │ │ │ │ ├── ext_syncing_packet_handler.cpp │ │ │ │ │ │ ├── ext_votes_packet_handler.cpp │ │ │ │ │ │ └── packet_handler.cpp │ │ │ │ │ ├── dag_block_packet_handler.cpp │ │ │ │ │ ├── dag_sync_packet_handler.cpp │ │ │ │ │ ├── get_dag_sync_packet_handler.cpp │ │ │ │ │ ├── get_next_votes_bundle_packet_handler.cpp │ │ │ │ │ ├── get_pbft_sync_packet_handler.cpp │ │ │ │ │ ├── get_pillar_votes_bundle_packet_handler.cpp │ │ │ │ │ ├── pbft_blocks_bundle_packet_handler.cpp │ │ │ │ │ ├── pbft_sync_packet_handler.cpp │ │ │ │ │ ├── pillar_vote_packet_handler.cpp │ │ │ │ │ ├── pillar_votes_bundle_packet_handler.cpp │ │ │ │ │ ├── readme.md │ │ │ │ │ ├── status_packet_handler.cpp │ │ │ │ │ ├── transaction_packet_handler.cpp │ │ │ │ │ ├── vote_packet_handler.cpp │ │ │ │ │ └── votes_bundle_packet_handler.cpp │ │ │ │ └── v4 │ │ │ │ │ └── get_pbft_sync_packet_handler.cpp │ │ │ ├── shared_states │ │ │ │ ├── pbft_syncing_state.cpp │ │ │ │ └── peers_state.cpp │ │ │ ├── stats │ │ │ │ ├── max_stats.cpp │ │ │ │ ├── node_stats.cpp │ │ │ │ ├── packet_stats.cpp │ │ │ │ ├── packets_stats.cpp │ │ │ │ └── time_period_packets_stats.cpp │ │ │ ├── taraxa_capability.cpp │ │ │ └── taraxa_peer.cpp │ │ │ ├── threadpool │ │ │ ├── packet_data.cpp │ │ │ ├── packets_blocking_mask.cpp │ │ │ ├── packets_queue.cpp │ │ │ ├── priority_queue.cpp │ │ │ └── tarcap_thread_pool.cpp │ │ │ └── ws_server.cpp │ └── storage │ │ ├── include │ │ └── storage │ │ │ ├── db_utils.hpp │ │ │ ├── migration │ │ │ ├── migration_base.hpp │ │ │ ├── migration_manager.hpp │ │ │ └── transaction_receipts_by_period.hpp │ │ │ ├── storage.hpp │ │ │ └── uint_comparator.hpp │ │ └── src │ │ ├── migration │ │ ├── migration_manager.cpp │ │ └── transaction_receipts_by_period.cpp │ │ └── storage.cpp ├── logger │ ├── CMakeLists.txt │ ├── include │ │ └── logger │ │ │ ├── logger.hpp │ │ │ └── logger_config.hpp │ └── src │ │ ├── logger.cpp │ │ └── logger_config.cpp ├── metrics │ ├── CMakeLists.txt │ ├── include │ │ └── metrics │ │ │ ├── jsonrpc_metrics.hpp │ │ │ ├── metrics_group.hpp │ │ │ ├── metrics_service.hpp │ │ │ ├── network_metrics.hpp │ │ │ ├── pbft_metrics.hpp │ │ │ └── transaction_queue_metrics.hpp │ └── src │ │ └── metrics_service.cpp ├── plugin │ ├── CMakeLists.txt │ ├── include │ │ └── plugin │ │ │ └── plugin.hpp │ ├── light │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── plugin │ │ │ │ └── light.hpp │ │ └── src │ │ │ └── light.cpp │ └── rpc │ │ ├── CMakeLists.txt │ │ ├── include │ │ └── plugin │ │ │ └── rpc.hpp │ │ └── src │ │ └── rpc.cpp ├── types │ ├── CMakeLists.txt │ ├── dag_block │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── dag │ │ │ │ ├── dag_block.hpp │ │ │ │ └── dag_block_bundle_rlp.hpp │ │ └── src │ │ │ ├── dag_block.cpp │ │ │ └── dag_block_bundle_rlp.cpp │ ├── pbft_block │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── pbft │ │ │ │ ├── pbft_block.hpp │ │ │ │ ├── pbft_block_extra_data.hpp │ │ │ │ └── period_data.hpp │ │ └── src │ │ │ ├── pbft_block.cpp │ │ │ ├── pbft_block_extra_data.cpp │ │ │ └── period_data.cpp │ ├── transaction │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── transaction │ │ │ │ ├── receipt.hpp │ │ │ │ ├── system_transaction.hpp │ │ │ │ └── transaction.hpp │ │ └── src │ │ │ ├── receipt.cpp │ │ │ ├── system_transaction.cpp │ │ │ └── transaction.cpp │ └── vote │ │ ├── CMakeLists.txt │ │ ├── include │ │ └── vote │ │ │ ├── pbft_vote.hpp │ │ │ ├── pillar_vote.hpp │ │ │ ├── vote.hpp │ │ │ ├── votes_bundle_rlp.hpp │ │ │ └── vrf_sortition.hpp │ │ └── src │ │ ├── pbft_vote.cpp │ │ ├── pillar_vote.cpp │ │ ├── vote.cpp │ │ ├── votes_bundle_rlp.cpp │ │ └── vrf_sortition.cpp └── vdf │ ├── CMakeLists.txt │ ├── include │ └── vdf │ │ ├── config.hpp │ │ └── sortition.hpp │ └── src │ ├── config.cpp │ └── sortition.cpp ├── programs ├── CMakeLists.txt ├── taraxa-bootnode │ ├── CMakeLists.txt │ ├── README.md │ └── main.cpp └── taraxad │ ├── CMakeLists.txt │ └── main.cpp ├── scripts ├── build.sh ├── config.sh ├── cpu_count.sh ├── docker_tag_from_branch.sh ├── run_commands_long_circuit.sh ├── sed_cmd.sh └── taraxa-sign.py ├── submodules ├── .gitignore └── CMakeLists.txt ├── tests ├── CMakeLists.txt ├── abi_test.cpp ├── cache_test.cpp ├── crypto_test.cpp ├── dag_block_test.cpp ├── dag_test.cpp ├── final_chain_test.cpp ├── full_node_test.cpp ├── gas_pricer_test.cpp ├── network_test.cpp ├── p2p_test.cpp ├── pbft_chain_test.cpp ├── pbft_manager_test.cpp ├── pillar_chain_test.cpp ├── py │ ├── .gitignore │ ├── README.md │ ├── common │ │ ├── __init__.py │ │ ├── chain_tester │ │ │ ├── __init__.py │ │ │ ├── chain_tester.py │ │ │ └── misc.py │ │ ├── eth │ │ │ ├── __init__.py │ │ │ ├── eth_py.py │ │ │ ├── solidity.py │ │ │ └── w3.py │ │ ├── node │ │ │ ├── __init__.py │ │ │ ├── cluster.py │ │ │ └── node.py │ │ ├── test_config.py │ │ └── util │ │ │ ├── __init__.py │ │ │ ├── asserts.py │ │ │ ├── predicates.py │ │ │ ├── pytest.py │ │ │ ├── std_dataclasses.py │ │ │ └── wait.py │ ├── config │ │ ├── config1.json │ │ ├── config2.json │ │ ├── config3.json │ │ ├── config4.json │ │ ├── config5.json │ │ ├── wallet1.json │ │ ├── wallet2.json │ │ ├── wallet3.json │ │ ├── wallet4.json │ │ └── wallet5.json │ ├── pyproject.toml │ ├── requirements.txt │ ├── run.sh │ └── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── test_ethereum_jsonrpc.py ├── rewards_stats_test.cpp ├── rpc_test.cpp ├── sortition_test.cpp ├── state_api_test.cpp ├── tarcap_threadpool_test.cpp ├── test_util │ ├── CMakeLists.txt │ ├── config │ │ └── config0.json │ ├── gtest.hpp │ ├── include │ │ └── test_util │ │ │ ├── node_dag_creation_fixture.hpp │ │ │ ├── samples.hpp │ │ │ └── test_util.hpp │ └── src │ │ ├── node_dag_creation_fixture.cpp │ │ ├── samples.cpp │ │ └── test_util.cpp ├── transaction_test.cpp └── vote_test.cpp └── valgrind.supp /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- 1 | --- 2 | Language: Cpp 3 | BasedOnStyle: Google 4 | ColumnLimit: 120 5 | --- 6 | 7 | -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/epic_issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/.github/ISSUE_TEMPLATE/epic_issue.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/small_task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/.github/ISSUE_TEMPLATE/small_task.md -------------------------------------------------------------------------------- /.github/actions/prnet/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/.github/actions/prnet/action.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/.github/workflows/build-docker.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/.github/workflows/docs.yaml -------------------------------------------------------------------------------- /.github/workflows/issue-link.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/.github/workflows/issue-link.yml -------------------------------------------------------------------------------- /.github/workflows/pr-actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/.github/workflows/pr-actions.yml -------------------------------------------------------------------------------- /.github/workflows/pr-net-cleanup-on-close.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/.github/workflows/pr-net-cleanup-on-close.yml -------------------------------------------------------------------------------- /.github/workflows/release-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/.github/workflows/release-docker.yml -------------------------------------------------------------------------------- /.github/workflows/trigger-ci-on-branch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/.github/workflows/trigger-ci-on-branch.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeModules/ProjectJSONRPCCPP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/CMakeModules/ProjectJSONRPCCPP.cmake -------------------------------------------------------------------------------- /CMakeModules/ProjectLibFF.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/CMakeModules/ProjectLibFF.cmake -------------------------------------------------------------------------------- /CMakeModules/ProjectSecp256k1.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/CMakeModules/ProjectSecp256k1.cmake -------------------------------------------------------------------------------- /CMakeModules/clang_format.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/CMakeModules/clang_format.cmake -------------------------------------------------------------------------------- /CMakeModules/clang_tidy.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/CMakeModules/clang_tidy.cmake -------------------------------------------------------------------------------- /CMakeModules/cpp_graphql_gen.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/CMakeModules/cpp_graphql_gen.cmake -------------------------------------------------------------------------------- /CMakeModules/cppcheck.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/CMakeModules/cppcheck.cmake -------------------------------------------------------------------------------- /CMakeModules/git_info.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/CMakeModules/git_info.cmake -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/Dockerfile -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/README.md -------------------------------------------------------------------------------- /charts/taraxa-node/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/charts/taraxa-node/.gitignore -------------------------------------------------------------------------------- /charts/taraxa-node/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/charts/taraxa-node/CHANGELOG.md -------------------------------------------------------------------------------- /charts/taraxa-node/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/charts/taraxa-node/Chart.yaml -------------------------------------------------------------------------------- /charts/taraxa-node/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/taraxa-node/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/charts/taraxa-node/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/taraxa-node/templates/bootnode-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/charts/taraxa-node/templates/bootnode-configmap.yaml -------------------------------------------------------------------------------- /charts/taraxa-node/templates/bootnode-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/charts/taraxa-node/templates/bootnode-service.yaml -------------------------------------------------------------------------------- /charts/taraxa-node/templates/bootnode-servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/charts/taraxa-node/templates/bootnode-servicemonitor.yaml -------------------------------------------------------------------------------- /charts/taraxa-node/templates/bootnode-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/charts/taraxa-node/templates/bootnode-statefulset.yaml -------------------------------------------------------------------------------- /charts/taraxa-node/templates/consensus-node-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/charts/taraxa-node/templates/consensus-node-configmap.yaml -------------------------------------------------------------------------------- /charts/taraxa-node/templates/consensus-node-light-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/charts/taraxa-node/templates/consensus-node-light-configmap.yaml -------------------------------------------------------------------------------- /charts/taraxa-node/templates/consensus-node-light-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/charts/taraxa-node/templates/consensus-node-light-service.yaml -------------------------------------------------------------------------------- /charts/taraxa-node/templates/consensus-node-light-servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/charts/taraxa-node/templates/consensus-node-light-servicemonitor.yaml -------------------------------------------------------------------------------- /charts/taraxa-node/templates/consensus-node-light-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/charts/taraxa-node/templates/consensus-node-light-statefulset.yaml -------------------------------------------------------------------------------- /charts/taraxa-node/templates/consensus-node-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/charts/taraxa-node/templates/consensus-node-service.yaml -------------------------------------------------------------------------------- /charts/taraxa-node/templates/consensus-node-servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/charts/taraxa-node/templates/consensus-node-servicemonitor.yaml -------------------------------------------------------------------------------- /charts/taraxa-node/templates/consensus-node-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/charts/taraxa-node/templates/consensus-node-statefulset.yaml -------------------------------------------------------------------------------- /charts/taraxa-node/templates/explorer-check-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/charts/taraxa-node/templates/explorer-check-configmap.yaml -------------------------------------------------------------------------------- /charts/taraxa-node/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/charts/taraxa-node/templates/secrets.yaml -------------------------------------------------------------------------------- /charts/taraxa-node/templates/snapshot-init-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/charts/taraxa-node/templates/snapshot-init-configmap.yaml -------------------------------------------------------------------------------- /charts/taraxa-node/templates/status-script-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/charts/taraxa-node/templates/status-script-configmap.yaml -------------------------------------------------------------------------------- /charts/taraxa-node/templates/taraxa-node-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/charts/taraxa-node/templates/taraxa-node-configmap.yaml -------------------------------------------------------------------------------- /charts/taraxa-node/templates/taraxa-node-indexer-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/charts/taraxa-node/templates/taraxa-node-indexer-ingress.yaml -------------------------------------------------------------------------------- /charts/taraxa-node/templates/taraxa-node-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/charts/taraxa-node/templates/taraxa-node-ingress.yaml -------------------------------------------------------------------------------- /charts/taraxa-node/templates/taraxa-node-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/charts/taraxa-node/templates/taraxa-node-service.yaml -------------------------------------------------------------------------------- /charts/taraxa-node/templates/taraxa-node-servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/charts/taraxa-node/templates/taraxa-node-servicemonitor.yaml -------------------------------------------------------------------------------- /charts/taraxa-node/templates/taraxa-node-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/charts/taraxa-node/templates/taraxa-node-statefulset.yaml -------------------------------------------------------------------------------- /charts/taraxa-node/templates/test-script-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/charts/taraxa-node/templates/test-script-role.yaml -------------------------------------------------------------------------------- /charts/taraxa-node/templates/test-script-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/charts/taraxa-node/templates/test-script-rolebinding.yaml -------------------------------------------------------------------------------- /charts/taraxa-node/templates/test-script-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/charts/taraxa-node/templates/test-script-serviceaccount.yaml -------------------------------------------------------------------------------- /charts/taraxa-node/templates/tests/helmtestfolder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/charts/taraxa-node/templates/tests/helmtestfolder.yaml -------------------------------------------------------------------------------- /charts/taraxa-node/templates/transaction-generation-script-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/charts/taraxa-node/templates/transaction-generation-script-configmap.yaml -------------------------------------------------------------------------------- /charts/taraxa-node/templates/transaction-generation-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/charts/taraxa-node/templates/transaction-generation-statefulset.yaml -------------------------------------------------------------------------------- /charts/taraxa-node/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/charts/taraxa-node/values.yaml -------------------------------------------------------------------------------- /conanfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/conanfile.py -------------------------------------------------------------------------------- /doc/RPC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/doc/RPC.md -------------------------------------------------------------------------------- /doc/building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/doc/building.md -------------------------------------------------------------------------------- /doc/coding_practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/doc/coding_practices.md -------------------------------------------------------------------------------- /doc/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/doc/contributing.md -------------------------------------------------------------------------------- /doc/doxygen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/doc/doxygen.md -------------------------------------------------------------------------------- /doc/evm_incompatibilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/doc/evm_incompatibilities.md -------------------------------------------------------------------------------- /doc/example_config.json: -------------------------------------------------------------------------------- 1 | TODO: add config params here -------------------------------------------------------------------------------- /doc/git_practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/doc/git_practices.md -------------------------------------------------------------------------------- /doc/images/DAG_ordered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/doc/images/DAG_ordered.png -------------------------------------------------------------------------------- /doc/images/DAG_unordered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/doc/images/DAG_unordered.png -------------------------------------------------------------------------------- /doc/images/git_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/doc/images/git_model.png -------------------------------------------------------------------------------- /doc/images/release_cycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/doc/images/release_cycle.png -------------------------------------------------------------------------------- /doc/quickstart_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/doc/quickstart_guide.md -------------------------------------------------------------------------------- /doc/release_cycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/doc/release_cycle.md -------------------------------------------------------------------------------- /doc/rewards_distribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/doc/rewards_distribution.md -------------------------------------------------------------------------------- /doc/uml/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/doc/uml/readme.md -------------------------------------------------------------------------------- /doc/uml/release_cycle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/doc/uml/release_cycle -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/docker-entrypoint.sh -------------------------------------------------------------------------------- /for_devs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/for_devs/README.md -------------------------------------------------------------------------------- /for_devs/local-net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/for_devs/local-net -------------------------------------------------------------------------------- /for_devs/requirements.txt: -------------------------------------------------------------------------------- 1 | click==8.1.6 2 | web3==6.20.1 3 | -------------------------------------------------------------------------------- /for_devs/run_test_in_loop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/for_devs/run_test_in_loop.sh -------------------------------------------------------------------------------- /libraries/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/aleth/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/aleth/libdevcore/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libdevcore/Address.h -------------------------------------------------------------------------------- /libraries/aleth/libdevcore/Assertions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libdevcore/Assertions.h -------------------------------------------------------------------------------- /libraries/aleth/libdevcore/Base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libdevcore/Base64.cpp -------------------------------------------------------------------------------- /libraries/aleth/libdevcore/Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libdevcore/Base64.h -------------------------------------------------------------------------------- /libraries/aleth/libdevcore/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libdevcore/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/aleth/libdevcore/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libdevcore/Common.cpp -------------------------------------------------------------------------------- /libraries/aleth/libdevcore/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libdevcore/Common.h -------------------------------------------------------------------------------- /libraries/aleth/libdevcore/CommonData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libdevcore/CommonData.cpp -------------------------------------------------------------------------------- /libraries/aleth/libdevcore/CommonData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libdevcore/CommonData.h -------------------------------------------------------------------------------- /libraries/aleth/libdevcore/CommonIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libdevcore/CommonIO.h -------------------------------------------------------------------------------- /libraries/aleth/libdevcore/CommonJS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libdevcore/CommonJS.cpp -------------------------------------------------------------------------------- /libraries/aleth/libdevcore/CommonJS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libdevcore/CommonJS.h -------------------------------------------------------------------------------- /libraries/aleth/libdevcore/Exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libdevcore/Exceptions.h -------------------------------------------------------------------------------- /libraries/aleth/libdevcore/FixedHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libdevcore/FixedHash.h -------------------------------------------------------------------------------- /libraries/aleth/libdevcore/Guards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libdevcore/Guards.h -------------------------------------------------------------------------------- /libraries/aleth/libdevcore/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libdevcore/Log.h -------------------------------------------------------------------------------- /libraries/aleth/libdevcore/RLP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libdevcore/RLP.cpp -------------------------------------------------------------------------------- /libraries/aleth/libdevcore/RLP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libdevcore/RLP.h -------------------------------------------------------------------------------- /libraries/aleth/libdevcore/SHA3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libdevcore/SHA3.cpp -------------------------------------------------------------------------------- /libraries/aleth/libdevcore/SHA3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libdevcore/SHA3.h -------------------------------------------------------------------------------- /libraries/aleth/libdevcore/Terminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libdevcore/Terminal.h -------------------------------------------------------------------------------- /libraries/aleth/libdevcore/UndefMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libdevcore/UndefMacros.h -------------------------------------------------------------------------------- /libraries/aleth/libdevcore/vector_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libdevcore/vector_ref.h -------------------------------------------------------------------------------- /libraries/aleth/libdevcrypto/AES.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libdevcrypto/AES.cpp -------------------------------------------------------------------------------- /libraries/aleth/libdevcrypto/AES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libdevcrypto/AES.h -------------------------------------------------------------------------------- /libraries/aleth/libdevcrypto/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libdevcrypto/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/aleth/libdevcrypto/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libdevcrypto/Common.cpp -------------------------------------------------------------------------------- /libraries/aleth/libdevcrypto/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libdevcrypto/Common.h -------------------------------------------------------------------------------- /libraries/aleth/libdevcrypto/CryptoPP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libdevcrypto/CryptoPP.cpp -------------------------------------------------------------------------------- /libraries/aleth/libdevcrypto/CryptoPP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libdevcrypto/CryptoPP.h -------------------------------------------------------------------------------- /libraries/aleth/libdevcrypto/Exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libdevcrypto/Exceptions.h -------------------------------------------------------------------------------- /libraries/aleth/libdevcrypto/LibSnark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libdevcrypto/LibSnark.cpp -------------------------------------------------------------------------------- /libraries/aleth/libdevcrypto/LibSnark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libdevcrypto/LibSnark.h -------------------------------------------------------------------------------- /libraries/aleth/libp2p/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libp2p/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/aleth/libp2p/Capability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libp2p/Capability.h -------------------------------------------------------------------------------- /libraries/aleth/libp2p/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libp2p/Common.cpp -------------------------------------------------------------------------------- /libraries/aleth/libp2p/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libp2p/Common.h -------------------------------------------------------------------------------- /libraries/aleth/libp2p/ENR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libp2p/ENR.cpp -------------------------------------------------------------------------------- /libraries/aleth/libp2p/ENR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libp2p/ENR.h -------------------------------------------------------------------------------- /libraries/aleth/libp2p/EndpointTracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libp2p/EndpointTracker.cpp -------------------------------------------------------------------------------- /libraries/aleth/libp2p/EndpointTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libp2p/EndpointTracker.h -------------------------------------------------------------------------------- /libraries/aleth/libp2p/Host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libp2p/Host.cpp -------------------------------------------------------------------------------- /libraries/aleth/libp2p/Host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libp2p/Host.h -------------------------------------------------------------------------------- /libraries/aleth/libp2p/Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libp2p/Network.cpp -------------------------------------------------------------------------------- /libraries/aleth/libp2p/Network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libp2p/Network.h -------------------------------------------------------------------------------- /libraries/aleth/libp2p/NodeTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libp2p/NodeTable.cpp -------------------------------------------------------------------------------- /libraries/aleth/libp2p/NodeTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libp2p/NodeTable.h -------------------------------------------------------------------------------- /libraries/aleth/libp2p/Peer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libp2p/Peer.cpp -------------------------------------------------------------------------------- /libraries/aleth/libp2p/Peer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libp2p/Peer.h -------------------------------------------------------------------------------- /libraries/aleth/libp2p/RLPXFrameCoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libp2p/RLPXFrameCoder.cpp -------------------------------------------------------------------------------- /libraries/aleth/libp2p/RLPXFrameCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libp2p/RLPXFrameCoder.h -------------------------------------------------------------------------------- /libraries/aleth/libp2p/RLPXPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libp2p/RLPXPacket.h -------------------------------------------------------------------------------- /libraries/aleth/libp2p/RLPXSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libp2p/RLPXSocket.h -------------------------------------------------------------------------------- /libraries/aleth/libp2p/RLPxHandshake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libp2p/RLPxHandshake.cpp -------------------------------------------------------------------------------- /libraries/aleth/libp2p/RLPxHandshake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libp2p/RLPxHandshake.h -------------------------------------------------------------------------------- /libraries/aleth/libp2p/Session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libp2p/Session.cpp -------------------------------------------------------------------------------- /libraries/aleth/libp2p/Session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libp2p/Session.h -------------------------------------------------------------------------------- /libraries/aleth/libp2p/UDP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libp2p/UDP.cpp -------------------------------------------------------------------------------- /libraries/aleth/libp2p/UDP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libp2p/UDP.h -------------------------------------------------------------------------------- /libraries/aleth/libp2p/UPnP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libp2p/UPnP.cpp -------------------------------------------------------------------------------- /libraries/aleth/libp2p/UPnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libp2p/UPnP.h -------------------------------------------------------------------------------- /libraries/aleth/libp2p/taraxa.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libp2p/taraxa.hpp -------------------------------------------------------------------------------- /libraries/aleth/libweb3jsonrpc/ModularServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/aleth/libweb3jsonrpc/ModularServer.h -------------------------------------------------------------------------------- /libraries/app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/app/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/app/include/app/app.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/app/include/app/app.hpp -------------------------------------------------------------------------------- /libraries/app/src/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/app/src/app.cpp -------------------------------------------------------------------------------- /libraries/cli/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/cli/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/cli/include/cli/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/cli/include/cli/config.hpp -------------------------------------------------------------------------------- /libraries/cli/include/cli/config_jsons/configs.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/cli/include/cli/config_jsons/configs.hpp.in -------------------------------------------------------------------------------- /libraries/cli/include/cli/config_jsons/default/default_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/cli/include/cli/config_jsons/default/default_config.json -------------------------------------------------------------------------------- /libraries/cli/include/cli/config_jsons/default/default_genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/cli/include/cli/config_jsons/default/default_genesis.json -------------------------------------------------------------------------------- /libraries/cli/include/cli/config_jsons/devnet/devnet_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/cli/include/cli/config_jsons/devnet/devnet_config.json -------------------------------------------------------------------------------- /libraries/cli/include/cli/config_jsons/devnet/devnet_genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/cli/include/cli/config_jsons/devnet/devnet_genesis.json -------------------------------------------------------------------------------- /libraries/cli/include/cli/config_jsons/mainnet/mainnet_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/cli/include/cli/config_jsons/mainnet/mainnet_config.json -------------------------------------------------------------------------------- /libraries/cli/include/cli/config_jsons/mainnet/mainnet_genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/cli/include/cli/config_jsons/mainnet/mainnet_genesis.json -------------------------------------------------------------------------------- /libraries/cli/include/cli/config_jsons/testnet/testnet_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/cli/include/cli/config_jsons/testnet/testnet_config.json -------------------------------------------------------------------------------- /libraries/cli/include/cli/config_jsons/testnet/testnet_genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/cli/include/cli/config_jsons/testnet/testnet_genesis.json -------------------------------------------------------------------------------- /libraries/cli/include/cli/config_updater.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/cli/include/cli/config_updater.hpp -------------------------------------------------------------------------------- /libraries/cli/include/cli/tools.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/cli/include/cli/tools.hpp -------------------------------------------------------------------------------- /libraries/cli/src/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/cli/src/config.cpp -------------------------------------------------------------------------------- /libraries/cli/src/config_updater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/cli/src/config_updater.cpp -------------------------------------------------------------------------------- /libraries/cli/src/tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/cli/src/tools.cpp -------------------------------------------------------------------------------- /libraries/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/common/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/common/include/common/app_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/common/include/common/app_base.hpp -------------------------------------------------------------------------------- /libraries/common/include/common/char_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/common/include/common/char_traits.hpp -------------------------------------------------------------------------------- /libraries/common/include/common/config_exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/common/include/common/config_exception.hpp -------------------------------------------------------------------------------- /libraries/common/include/common/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/common/include/common/constants.hpp -------------------------------------------------------------------------------- /libraries/common/include/common/default_construct_copyable_movable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/common/include/common/default_construct_copyable_movable.hpp -------------------------------------------------------------------------------- /libraries/common/include/common/encoding_rlp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/common/include/common/encoding_rlp.hpp -------------------------------------------------------------------------------- /libraries/common/include/common/encoding_solidity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/common/include/common/encoding_solidity.hpp -------------------------------------------------------------------------------- /libraries/common/include/common/event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/common/include/common/event.hpp -------------------------------------------------------------------------------- /libraries/common/include/common/global_const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/common/include/common/global_const.hpp -------------------------------------------------------------------------------- /libraries/common/include/common/init.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/common/include/common/init.hpp -------------------------------------------------------------------------------- /libraries/common/include/common/jsoncpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/common/include/common/jsoncpp.hpp -------------------------------------------------------------------------------- /libraries/common/include/common/lazy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/common/include/common/lazy.hpp -------------------------------------------------------------------------------- /libraries/common/include/common/rpc_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/common/include/common/rpc_utils.hpp -------------------------------------------------------------------------------- /libraries/common/include/common/thread_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/common/include/common/thread_pool.hpp -------------------------------------------------------------------------------- /libraries/common/include/common/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/common/include/common/types.hpp -------------------------------------------------------------------------------- /libraries/common/include/common/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/common/include/common/util.hpp -------------------------------------------------------------------------------- /libraries/common/include/common/vrf_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/common/include/common/vrf_wrapper.hpp -------------------------------------------------------------------------------- /libraries/common/src/constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/common/src/constants.cpp -------------------------------------------------------------------------------- /libraries/common/src/jsoncpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/common/src/jsoncpp.cpp -------------------------------------------------------------------------------- /libraries/common/src/rpc_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/common/src/rpc_utils.cpp -------------------------------------------------------------------------------- /libraries/common/src/thread_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/common/src/thread_pool.cpp -------------------------------------------------------------------------------- /libraries/common/src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/common/src/util.cpp -------------------------------------------------------------------------------- /libraries/common/src/vrf_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/common/src/vrf_wrapper.cpp -------------------------------------------------------------------------------- /libraries/config/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/config/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/config/include/config/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/config/include/config/config.hpp -------------------------------------------------------------------------------- /libraries/config/include/config/config_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/config/include/config/config_utils.hpp -------------------------------------------------------------------------------- /libraries/config/include/config/dag_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/config/include/config/dag_config.hpp -------------------------------------------------------------------------------- /libraries/config/include/config/genesis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/config/include/config/genesis.hpp -------------------------------------------------------------------------------- /libraries/config/include/config/hardfork.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/config/include/config/hardfork.hpp -------------------------------------------------------------------------------- /libraries/config/include/config/network.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/config/include/config/network.hpp -------------------------------------------------------------------------------- /libraries/config/include/config/pbft_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/config/include/config/pbft_config.hpp -------------------------------------------------------------------------------- /libraries/config/include/config/state_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/config/include/config/state_config.hpp -------------------------------------------------------------------------------- /libraries/config/src/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/config/src/config.cpp -------------------------------------------------------------------------------- /libraries/config/src/config_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/config/src/config_utils.cpp -------------------------------------------------------------------------------- /libraries/config/src/dag_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/config/src/dag_config.cpp -------------------------------------------------------------------------------- /libraries/config/src/genesis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/config/src/genesis.cpp -------------------------------------------------------------------------------- /libraries/config/src/hardfork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/config/src/hardfork.cpp -------------------------------------------------------------------------------- /libraries/config/src/network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/config/src/network.cpp -------------------------------------------------------------------------------- /libraries/config/src/pbft_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/config/src/pbft_config.cpp -------------------------------------------------------------------------------- /libraries/config/src/state_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/config/src/state_config.cpp -------------------------------------------------------------------------------- /libraries/config/version/version.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/config/version/version.hpp.in -------------------------------------------------------------------------------- /libraries/core_libs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/core_libs/consensus/include/dag/dag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/include/dag/dag.hpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/include/dag/dag_block_proposer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/include/dag/dag_block_proposer.hpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/include/dag/dag_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/include/dag/dag_manager.hpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/include/dag/sortition_params_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/include/dag/sortition_params_manager.hpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/include/final_chain/cache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/include/final_chain/cache.hpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/include/final_chain/data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/include/final_chain/data.hpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/include/final_chain/final_chain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/include/final_chain/final_chain.hpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/include/final_chain/state_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/include/final_chain/state_api.hpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/include/final_chain/state_api_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/include/final_chain/state_api_data.hpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/include/final_chain/trie_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/include/final_chain/trie_common.hpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/include/key_manager/key_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/include/key_manager/key_manager.hpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/include/pbft/pbft_chain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/include/pbft/pbft_chain.hpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/include/pbft/pbft_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/include/pbft/pbft_manager.hpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/include/pbft/period_data_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/include/pbft/period_data_queue.hpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/include/pbft/proposed_blocks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/include/pbft/proposed_blocks.hpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/include/pillar_chain/pillar_block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/include/pillar_chain/pillar_block.hpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/include/pillar_chain/pillar_chain_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/include/pillar_chain/pillar_chain_manager.hpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/include/pillar_chain/pillar_votes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/include/pillar_chain/pillar_votes.hpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/include/rewards/block_stats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/include/rewards/block_stats.hpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/include/rewards/rewards_stats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/include/rewards/rewards_stats.hpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/include/slashing_manager/slashing_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/include/slashing_manager/slashing_manager.hpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/include/transaction/gas_pricer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/include/transaction/gas_pricer.hpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/include/transaction/transaction_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/include/transaction/transaction_manager.hpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/include/transaction/transaction_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/include/transaction/transaction_queue.hpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/include/vote_manager/verified_votes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/include/vote_manager/verified_votes.hpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/include/vote_manager/vote_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/include/vote_manager/vote_manager.hpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/src/dag/dag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/src/dag/dag.cpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/src/dag/dag_block_proposer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/src/dag/dag_block_proposer.cpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/src/dag/dag_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/src/dag/dag_manager.cpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/src/dag/sortition_params_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/src/dag/sortition_params_manager.cpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/src/final_chain/data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/src/final_chain/data.cpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/src/final_chain/final_chain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/src/final_chain/final_chain.cpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/src/final_chain/state_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/src/final_chain/state_api.cpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/src/final_chain/state_api_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/src/final_chain/state_api_data.cpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/src/final_chain/trie_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/src/final_chain/trie_common.cpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/src/key_manager/key_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/src/key_manager/key_manager.cpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/src/pbft/pbft_chain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/src/pbft/pbft_chain.cpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/src/pbft/pbft_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/src/pbft/pbft_manager.cpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/src/pbft/period_data_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/src/pbft/period_data_queue.cpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/src/pbft/proposed_blocks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/src/pbft/proposed_blocks.cpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/src/pillar_chain/pillar_block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/src/pillar_chain/pillar_block.cpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/src/pillar_chain/pillar_chain_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/src/pillar_chain/pillar_chain_manager.cpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/src/pillar_chain/pillar_votes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/src/pillar_chain/pillar_votes.cpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/src/rewards/block_stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/src/rewards/block_stats.cpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/src/rewards/rewards_stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/src/rewards/rewards_stats.cpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/src/slashing_manager/slashing_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/src/slashing_manager/slashing_manager.cpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/src/transaction/gas_pricer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/src/transaction/gas_pricer.cpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/src/transaction/transaction_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/src/transaction/transaction_manager.cpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/src/transaction/transaction_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/src/transaction/transaction_queue.cpp -------------------------------------------------------------------------------- /libraries/core_libs/consensus/src/vote_manager/vote_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/consensus/src/vote_manager/vote_manager.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/graphql/gen/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | SortIncludes: false -------------------------------------------------------------------------------- /libraries/core_libs/network/graphql/include/graphql/account.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/graphql/include/graphql/account.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/graphql/include/graphql/block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/graphql/include/graphql/block.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/graphql/include/graphql/http_processor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/graphql/include/graphql/http_processor.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/graphql/include/graphql/log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/graphql/include/graphql/log.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/graphql/include/graphql/mutation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/graphql/include/graphql/mutation.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/graphql/include/graphql/query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/graphql/include/graphql/query.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/graphql/include/graphql/subscription.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/graphql/include/graphql/subscription.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/graphql/include/graphql/sync_state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/graphql/include/graphql/sync_state.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/graphql/include/graphql/transaction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/graphql/include/graphql/transaction.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/graphql/include/graphql/types/current_state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/graphql/include/graphql/types/current_state.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/graphql/include/graphql/types/dag_block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/graphql/include/graphql/types/dag_block.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/graphql/include/graphql/ws_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/graphql/include/graphql/ws_server.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/graphql/schema/schema.taraxa.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/graphql/schema/schema.taraxa.graphql -------------------------------------------------------------------------------- /libraries/core_libs/network/graphql/src/account.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/graphql/src/account.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/graphql/src/block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/graphql/src/block.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/graphql/src/http_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/graphql/src/http_processor.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/graphql/src/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/graphql/src/log.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/graphql/src/mutation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/graphql/src/mutation.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/graphql/src/query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/graphql/src/query.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/graphql/src/subscription.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/graphql/src/subscription.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/graphql/src/sync_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/graphql/src/sync_state.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/graphql/src/transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/graphql/src/transaction.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/graphql/src/types/current_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/graphql/src/types/current_state.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/graphql/src/types/dag_block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/graphql/src/types/dag_block.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/graphql/src/ws_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/graphql/src/ws_server.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/http_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/http_server.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/network.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/network.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/subscriptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/subscriptions.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packet_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packet_types.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets/latest/dag_block_packet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets/latest/dag_block_packet.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets/latest/dag_sync_packet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets/latest/dag_sync_packet.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets/latest/get_dag_sync_packet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets/latest/get_dag_sync_packet.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets/latest/get_next_votes_bundle_packet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets/latest/get_next_votes_bundle_packet.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets/latest/get_pbft_sync_packet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets/latest/get_pbft_sync_packet.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets/latest/get_pillar_votes_bundle_packet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets/latest/get_pillar_votes_bundle_packet.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets/latest/pbft_blocks_bundle_packet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets/latest/pbft_blocks_bundle_packet.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets/latest/pbft_sync_packet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets/latest/pbft_sync_packet.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets/latest/pillar_vote_packet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets/latest/pillar_vote_packet.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets/latest/pillar_votes_bundle_packet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets/latest/pillar_votes_bundle_packet.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets/latest/status_packet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets/latest/status_packet.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets/latest/transaction_packet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets/latest/transaction_packet.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets/latest/vote_packet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets/latest/vote_packet.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets/latest/votes_bundle_packet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets/latest/votes_bundle_packet.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets_handler.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets_handlers/interface/dag_block_packet_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets_handlers/interface/dag_block_packet_handler.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets_handlers/interface/get_pillar_votes_bundle_packet_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets_handlers/interface/get_pillar_votes_bundle_packet_handler.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets_handlers/interface/pillar_vote_packet_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets_handlers/interface/pillar_vote_packet_handler.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets_handlers/interface/sync_packet_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets_handlers/interface/sync_packet_handler.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets_handlers/interface/transaction_packet_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets_handlers/interface/transaction_packet_handler.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets_handlers/interface/vote_packet_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets_handlers/interface/vote_packet_handler.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/common/base_packet_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/common/base_packet_handler.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/common/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/common/exceptions.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/common/ext_pillar_vote_packet_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/common/ext_pillar_vote_packet_handler.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/common/ext_syncing_packet_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/common/ext_syncing_packet_handler.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/common/ext_votes_packet_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/common/ext_votes_packet_handler.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/common/packet_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/common/packet_handler.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/dag_block_packet_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/dag_block_packet_handler.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/dag_sync_packet_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/dag_sync_packet_handler.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/get_dag_sync_packet_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/get_dag_sync_packet_handler.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/get_next_votes_bundle_packet_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/get_next_votes_bundle_packet_handler.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/get_pbft_sync_packet_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/get_pbft_sync_packet_handler.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/get_pillar_votes_bundle_packet_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/get_pillar_votes_bundle_packet_handler.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/pbft_blocks_bundle_packet_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/pbft_blocks_bundle_packet_handler.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/pbft_sync_packet_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/pbft_sync_packet_handler.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/pillar_vote_packet_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/pillar_vote_packet_handler.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/pillar_votes_bundle_packet_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/pillar_votes_bundle_packet_handler.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/status_packet_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/status_packet_handler.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/transaction_packet_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/transaction_packet_handler.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/vote_packet_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/vote_packet_handler.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/votes_bundle_packet_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets_handlers/latest/votes_bundle_packet_handler.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/packets_handlers/v4/get_pbft_sync_packet_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/packets_handlers/v4/get_pbft_sync_packet_handler.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/shared_states/pbft_syncing_state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/shared_states/pbft_syncing_state.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/shared_states/peers_state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/shared_states/peers_state.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/stats/max_stats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/stats/max_stats.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/stats/node_stats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/stats/node_stats.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/stats/packet_stats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/stats/packet_stats.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/stats/packets_stats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/stats/packets_stats.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/stats/time_period_packets_stats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/stats/time_period_packets_stats.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/taraxa_capability.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/taraxa_capability.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/taraxa_peer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/taraxa_peer.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/tarcap/tarcap_version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/tarcap/tarcap_version.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/threadpool/packet_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/threadpool/packet_data.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/threadpool/packets_blocking_mask.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/threadpool/packets_blocking_mask.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/threadpool/packets_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/threadpool/packets_queue.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/threadpool/priority_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/threadpool/priority_queue.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/threadpool/tarcap_thread_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/threadpool/tarcap_thread_pool.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/ws_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/ws_server.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/include/network/ws_session.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/include/network/ws_session.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/rpc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/rpc/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/core_libs/network/rpc/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/rpc/Debug.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/rpc/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/rpc/Debug.h -------------------------------------------------------------------------------- /libraries/core_libs/network/rpc/Debug.jsonrpc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/rpc/Debug.jsonrpc.json -------------------------------------------------------------------------------- /libraries/core_libs/network/rpc/DebugClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/rpc/DebugClient.h -------------------------------------------------------------------------------- /libraries/core_libs/network/rpc/DebugFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/rpc/DebugFace.h -------------------------------------------------------------------------------- /libraries/core_libs/network/rpc/Eth.jsonrpc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/rpc/Eth.jsonrpc.json -------------------------------------------------------------------------------- /libraries/core_libs/network/rpc/EthClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/rpc/EthClient.h -------------------------------------------------------------------------------- /libraries/core_libs/network/rpc/EthFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/rpc/EthFace.h -------------------------------------------------------------------------------- /libraries/core_libs/network/rpc/Net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/rpc/Net.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/rpc/Net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/rpc/Net.h -------------------------------------------------------------------------------- /libraries/core_libs/network/rpc/Net.jsonrpc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/rpc/Net.jsonrpc.json -------------------------------------------------------------------------------- /libraries/core_libs/network/rpc/NetClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/rpc/NetClient.h -------------------------------------------------------------------------------- /libraries/core_libs/network/rpc/NetFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/rpc/NetFace.h -------------------------------------------------------------------------------- /libraries/core_libs/network/rpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/rpc/README.md -------------------------------------------------------------------------------- /libraries/core_libs/network/rpc/Taraxa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/rpc/Taraxa.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/rpc/Taraxa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/rpc/Taraxa.h -------------------------------------------------------------------------------- /libraries/core_libs/network/rpc/Taraxa.jsonrpc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/rpc/Taraxa.jsonrpc.json -------------------------------------------------------------------------------- /libraries/core_libs/network/rpc/TaraxaClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/rpc/TaraxaClient.h -------------------------------------------------------------------------------- /libraries/core_libs/network/rpc/TaraxaFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/rpc/TaraxaFace.h -------------------------------------------------------------------------------- /libraries/core_libs/network/rpc/Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/rpc/Test.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/rpc/Test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/rpc/Test.h -------------------------------------------------------------------------------- /libraries/core_libs/network/rpc/Test.jsonrpc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/rpc/Test.jsonrpc.json -------------------------------------------------------------------------------- /libraries/core_libs/network/rpc/TestClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/rpc/TestClient.h -------------------------------------------------------------------------------- /libraries/core_libs/network/rpc/TestFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/rpc/TestFace.h -------------------------------------------------------------------------------- /libraries/core_libs/network/rpc/eth/Eth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/rpc/eth/Eth.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/rpc/eth/Eth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/rpc/eth/Eth.h -------------------------------------------------------------------------------- /libraries/core_libs/network/rpc/eth/LogFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/rpc/eth/LogFilter.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/rpc/eth/LogFilter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/rpc/eth/LogFilter.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/rpc/eth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/rpc/eth/README.md -------------------------------------------------------------------------------- /libraries/core_libs/network/rpc/eth/data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/rpc/eth/data.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/rpc/eth/watches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/rpc/eth/watches.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/rpc/eth/watches.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/rpc/eth/watches.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/rpc/jsonrpc_http_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/rpc/jsonrpc_http_processor.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/rpc/jsonrpc_http_processor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/rpc/jsonrpc_http_processor.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/rpc/jsonrpc_ws_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/rpc/jsonrpc_ws_server.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/rpc/jsonrpc_ws_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/rpc/jsonrpc_ws_server.hpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/http_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/http_server.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/network.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/subscriptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/subscriptions.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/tarcap/packets_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/tarcap/packets_handler.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/tarcap/packets_handlers/interface/dag_block_packet_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/tarcap/packets_handlers/interface/dag_block_packet_handler.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/tarcap/packets_handlers/interface/get_pillar_votes_bundle_packet_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/tarcap/packets_handlers/interface/get_pillar_votes_bundle_packet_handler.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/tarcap/packets_handlers/interface/pillar_vote_packet_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/tarcap/packets_handlers/interface/pillar_vote_packet_handler.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/tarcap/packets_handlers/interface/sync_packet_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/tarcap/packets_handlers/interface/sync_packet_handler.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/tarcap/packets_handlers/interface/transaction_packet_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/tarcap/packets_handlers/interface/transaction_packet_handler.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/tarcap/packets_handlers/interface/vote_packet_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/tarcap/packets_handlers/interface/vote_packet_handler.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/tarcap/packets_handlers/latest/common/ext_pillar_vote_packet_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/tarcap/packets_handlers/latest/common/ext_pillar_vote_packet_handler.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/tarcap/packets_handlers/latest/common/ext_syncing_packet_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/tarcap/packets_handlers/latest/common/ext_syncing_packet_handler.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/tarcap/packets_handlers/latest/common/ext_votes_packet_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/tarcap/packets_handlers/latest/common/ext_votes_packet_handler.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/tarcap/packets_handlers/latest/common/packet_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/tarcap/packets_handlers/latest/common/packet_handler.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/tarcap/packets_handlers/latest/dag_block_packet_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/tarcap/packets_handlers/latest/dag_block_packet_handler.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/tarcap/packets_handlers/latest/dag_sync_packet_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/tarcap/packets_handlers/latest/dag_sync_packet_handler.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/tarcap/packets_handlers/latest/get_dag_sync_packet_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/tarcap/packets_handlers/latest/get_dag_sync_packet_handler.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/tarcap/packets_handlers/latest/get_next_votes_bundle_packet_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/tarcap/packets_handlers/latest/get_next_votes_bundle_packet_handler.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/tarcap/packets_handlers/latest/get_pbft_sync_packet_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/tarcap/packets_handlers/latest/get_pbft_sync_packet_handler.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/tarcap/packets_handlers/latest/get_pillar_votes_bundle_packet_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/tarcap/packets_handlers/latest/get_pillar_votes_bundle_packet_handler.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/tarcap/packets_handlers/latest/pbft_blocks_bundle_packet_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/tarcap/packets_handlers/latest/pbft_blocks_bundle_packet_handler.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/tarcap/packets_handlers/latest/pbft_sync_packet_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/tarcap/packets_handlers/latest/pbft_sync_packet_handler.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/tarcap/packets_handlers/latest/pillar_vote_packet_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/tarcap/packets_handlers/latest/pillar_vote_packet_handler.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/tarcap/packets_handlers/latest/pillar_votes_bundle_packet_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/tarcap/packets_handlers/latest/pillar_votes_bundle_packet_handler.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/tarcap/packets_handlers/latest/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/tarcap/packets_handlers/latest/readme.md -------------------------------------------------------------------------------- /libraries/core_libs/network/src/tarcap/packets_handlers/latest/status_packet_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/tarcap/packets_handlers/latest/status_packet_handler.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/tarcap/packets_handlers/latest/transaction_packet_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/tarcap/packets_handlers/latest/transaction_packet_handler.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/tarcap/packets_handlers/latest/vote_packet_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/tarcap/packets_handlers/latest/vote_packet_handler.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/tarcap/packets_handlers/latest/votes_bundle_packet_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/tarcap/packets_handlers/latest/votes_bundle_packet_handler.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/tarcap/packets_handlers/v4/get_pbft_sync_packet_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/tarcap/packets_handlers/v4/get_pbft_sync_packet_handler.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/tarcap/shared_states/pbft_syncing_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/tarcap/shared_states/pbft_syncing_state.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/tarcap/shared_states/peers_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/tarcap/shared_states/peers_state.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/tarcap/stats/max_stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/tarcap/stats/max_stats.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/tarcap/stats/node_stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/tarcap/stats/node_stats.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/tarcap/stats/packet_stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/tarcap/stats/packet_stats.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/tarcap/stats/packets_stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/tarcap/stats/packets_stats.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/tarcap/stats/time_period_packets_stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/tarcap/stats/time_period_packets_stats.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/tarcap/taraxa_capability.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/tarcap/taraxa_capability.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/tarcap/taraxa_peer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/tarcap/taraxa_peer.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/threadpool/packet_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/threadpool/packet_data.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/threadpool/packets_blocking_mask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/threadpool/packets_blocking_mask.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/threadpool/packets_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/threadpool/packets_queue.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/threadpool/priority_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/threadpool/priority_queue.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/threadpool/tarcap_thread_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/threadpool/tarcap_thread_pool.cpp -------------------------------------------------------------------------------- /libraries/core_libs/network/src/ws_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/network/src/ws_server.cpp -------------------------------------------------------------------------------- /libraries/core_libs/storage/include/storage/db_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/storage/include/storage/db_utils.hpp -------------------------------------------------------------------------------- /libraries/core_libs/storage/include/storage/migration/migration_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/storage/include/storage/migration/migration_base.hpp -------------------------------------------------------------------------------- /libraries/core_libs/storage/include/storage/migration/migration_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/storage/include/storage/migration/migration_manager.hpp -------------------------------------------------------------------------------- /libraries/core_libs/storage/include/storage/migration/transaction_receipts_by_period.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/storage/include/storage/migration/transaction_receipts_by_period.hpp -------------------------------------------------------------------------------- /libraries/core_libs/storage/include/storage/storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/storage/include/storage/storage.hpp -------------------------------------------------------------------------------- /libraries/core_libs/storage/include/storage/uint_comparator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/storage/include/storage/uint_comparator.hpp -------------------------------------------------------------------------------- /libraries/core_libs/storage/src/migration/migration_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/storage/src/migration/migration_manager.cpp -------------------------------------------------------------------------------- /libraries/core_libs/storage/src/migration/transaction_receipts_by_period.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/storage/src/migration/transaction_receipts_by_period.cpp -------------------------------------------------------------------------------- /libraries/core_libs/storage/src/storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/core_libs/storage/src/storage.cpp -------------------------------------------------------------------------------- /libraries/logger/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/logger/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/logger/include/logger/logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/logger/include/logger/logger.hpp -------------------------------------------------------------------------------- /libraries/logger/include/logger/logger_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/logger/include/logger/logger_config.hpp -------------------------------------------------------------------------------- /libraries/logger/src/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/logger/src/logger.cpp -------------------------------------------------------------------------------- /libraries/logger/src/logger_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/logger/src/logger_config.cpp -------------------------------------------------------------------------------- /libraries/metrics/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/metrics/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/metrics/include/metrics/jsonrpc_metrics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/metrics/include/metrics/jsonrpc_metrics.hpp -------------------------------------------------------------------------------- /libraries/metrics/include/metrics/metrics_group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/metrics/include/metrics/metrics_group.hpp -------------------------------------------------------------------------------- /libraries/metrics/include/metrics/metrics_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/metrics/include/metrics/metrics_service.hpp -------------------------------------------------------------------------------- /libraries/metrics/include/metrics/network_metrics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/metrics/include/metrics/network_metrics.hpp -------------------------------------------------------------------------------- /libraries/metrics/include/metrics/pbft_metrics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/metrics/include/metrics/pbft_metrics.hpp -------------------------------------------------------------------------------- /libraries/metrics/include/metrics/transaction_queue_metrics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/metrics/include/metrics/transaction_queue_metrics.hpp -------------------------------------------------------------------------------- /libraries/metrics/src/metrics_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/metrics/src/metrics_service.cpp -------------------------------------------------------------------------------- /libraries/plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/plugin/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/plugin/include/plugin/plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/plugin/include/plugin/plugin.hpp -------------------------------------------------------------------------------- /libraries/plugin/light/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/plugin/light/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/plugin/light/include/plugin/light.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/plugin/light/include/plugin/light.hpp -------------------------------------------------------------------------------- /libraries/plugin/light/src/light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/plugin/light/src/light.cpp -------------------------------------------------------------------------------- /libraries/plugin/rpc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/plugin/rpc/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/plugin/rpc/include/plugin/rpc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/plugin/rpc/include/plugin/rpc.hpp -------------------------------------------------------------------------------- /libraries/plugin/rpc/src/rpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/plugin/rpc/src/rpc.cpp -------------------------------------------------------------------------------- /libraries/types/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/types/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/types/dag_block/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/types/dag_block/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/types/dag_block/include/dag/dag_block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/types/dag_block/include/dag/dag_block.hpp -------------------------------------------------------------------------------- /libraries/types/dag_block/include/dag/dag_block_bundle_rlp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/types/dag_block/include/dag/dag_block_bundle_rlp.hpp -------------------------------------------------------------------------------- /libraries/types/dag_block/src/dag_block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/types/dag_block/src/dag_block.cpp -------------------------------------------------------------------------------- /libraries/types/dag_block/src/dag_block_bundle_rlp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/types/dag_block/src/dag_block_bundle_rlp.cpp -------------------------------------------------------------------------------- /libraries/types/pbft_block/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/types/pbft_block/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/types/pbft_block/include/pbft/pbft_block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/types/pbft_block/include/pbft/pbft_block.hpp -------------------------------------------------------------------------------- /libraries/types/pbft_block/include/pbft/pbft_block_extra_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/types/pbft_block/include/pbft/pbft_block_extra_data.hpp -------------------------------------------------------------------------------- /libraries/types/pbft_block/include/pbft/period_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/types/pbft_block/include/pbft/period_data.hpp -------------------------------------------------------------------------------- /libraries/types/pbft_block/src/pbft_block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/types/pbft_block/src/pbft_block.cpp -------------------------------------------------------------------------------- /libraries/types/pbft_block/src/pbft_block_extra_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/types/pbft_block/src/pbft_block_extra_data.cpp -------------------------------------------------------------------------------- /libraries/types/pbft_block/src/period_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/types/pbft_block/src/period_data.cpp -------------------------------------------------------------------------------- /libraries/types/transaction/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/types/transaction/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/types/transaction/include/transaction/receipt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/types/transaction/include/transaction/receipt.hpp -------------------------------------------------------------------------------- /libraries/types/transaction/include/transaction/system_transaction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/types/transaction/include/transaction/system_transaction.hpp -------------------------------------------------------------------------------- /libraries/types/transaction/include/transaction/transaction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/types/transaction/include/transaction/transaction.hpp -------------------------------------------------------------------------------- /libraries/types/transaction/src/receipt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/types/transaction/src/receipt.cpp -------------------------------------------------------------------------------- /libraries/types/transaction/src/system_transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/types/transaction/src/system_transaction.cpp -------------------------------------------------------------------------------- /libraries/types/transaction/src/transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/types/transaction/src/transaction.cpp -------------------------------------------------------------------------------- /libraries/types/vote/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/types/vote/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/types/vote/include/vote/pbft_vote.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/types/vote/include/vote/pbft_vote.hpp -------------------------------------------------------------------------------- /libraries/types/vote/include/vote/pillar_vote.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/types/vote/include/vote/pillar_vote.hpp -------------------------------------------------------------------------------- /libraries/types/vote/include/vote/vote.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/types/vote/include/vote/vote.hpp -------------------------------------------------------------------------------- /libraries/types/vote/include/vote/votes_bundle_rlp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/types/vote/include/vote/votes_bundle_rlp.hpp -------------------------------------------------------------------------------- /libraries/types/vote/include/vote/vrf_sortition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/types/vote/include/vote/vrf_sortition.hpp -------------------------------------------------------------------------------- /libraries/types/vote/src/pbft_vote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/types/vote/src/pbft_vote.cpp -------------------------------------------------------------------------------- /libraries/types/vote/src/pillar_vote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/types/vote/src/pillar_vote.cpp -------------------------------------------------------------------------------- /libraries/types/vote/src/vote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/types/vote/src/vote.cpp -------------------------------------------------------------------------------- /libraries/types/vote/src/votes_bundle_rlp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/types/vote/src/votes_bundle_rlp.cpp -------------------------------------------------------------------------------- /libraries/types/vote/src/vrf_sortition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/types/vote/src/vrf_sortition.cpp -------------------------------------------------------------------------------- /libraries/vdf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/vdf/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/vdf/include/vdf/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/vdf/include/vdf/config.hpp -------------------------------------------------------------------------------- /libraries/vdf/include/vdf/sortition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/vdf/include/vdf/sortition.hpp -------------------------------------------------------------------------------- /libraries/vdf/src/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/vdf/src/config.cpp -------------------------------------------------------------------------------- /libraries/vdf/src/sortition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/libraries/vdf/src/sortition.cpp -------------------------------------------------------------------------------- /programs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/programs/CMakeLists.txt -------------------------------------------------------------------------------- /programs/taraxa-bootnode/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/programs/taraxa-bootnode/CMakeLists.txt -------------------------------------------------------------------------------- /programs/taraxa-bootnode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/programs/taraxa-bootnode/README.md -------------------------------------------------------------------------------- /programs/taraxa-bootnode/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/programs/taraxa-bootnode/main.cpp -------------------------------------------------------------------------------- /programs/taraxad/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/programs/taraxad/CMakeLists.txt -------------------------------------------------------------------------------- /programs/taraxad/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/programs/taraxad/main.cpp -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/scripts/config.sh -------------------------------------------------------------------------------- /scripts/cpu_count.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/scripts/cpu_count.sh -------------------------------------------------------------------------------- /scripts/docker_tag_from_branch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/scripts/docker_tag_from_branch.sh -------------------------------------------------------------------------------- /scripts/run_commands_long_circuit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/scripts/run_commands_long_circuit.sh -------------------------------------------------------------------------------- /scripts/sed_cmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/scripts/sed_cmd.sh -------------------------------------------------------------------------------- /scripts/taraxa-sign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/scripts/taraxa-sign.py -------------------------------------------------------------------------------- /submodules/.gitignore: -------------------------------------------------------------------------------- 1 | Makefile.log.txt 2 | __dist__ -------------------------------------------------------------------------------- /submodules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/submodules/CMakeLists.txt -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/abi_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/abi_test.cpp -------------------------------------------------------------------------------- /tests/cache_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/cache_test.cpp -------------------------------------------------------------------------------- /tests/crypto_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/crypto_test.cpp -------------------------------------------------------------------------------- /tests/dag_block_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/dag_block_test.cpp -------------------------------------------------------------------------------- /tests/dag_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/dag_test.cpp -------------------------------------------------------------------------------- /tests/final_chain_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/final_chain_test.cpp -------------------------------------------------------------------------------- /tests/full_node_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/full_node_test.cpp -------------------------------------------------------------------------------- /tests/gas_pricer_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/gas_pricer_test.cpp -------------------------------------------------------------------------------- /tests/network_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/network_test.cpp -------------------------------------------------------------------------------- /tests/p2p_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/p2p_test.cpp -------------------------------------------------------------------------------- /tests/pbft_chain_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/pbft_chain_test.cpp -------------------------------------------------------------------------------- /tests/pbft_manager_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/pbft_manager_test.cpp -------------------------------------------------------------------------------- /tests/pillar_chain_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/pillar_chain_test.cpp -------------------------------------------------------------------------------- /tests/py/.gitignore: -------------------------------------------------------------------------------- 1 | venv 2 | .pytest_cache -------------------------------------------------------------------------------- /tests/py/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/py/README.md -------------------------------------------------------------------------------- /tests/py/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/py/common/chain_tester/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/py/common/chain_tester/chain_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/py/common/chain_tester/chain_tester.py -------------------------------------------------------------------------------- /tests/py/common/chain_tester/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/py/common/chain_tester/misc.py -------------------------------------------------------------------------------- /tests/py/common/eth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/py/common/eth/eth_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/py/common/eth/eth_py.py -------------------------------------------------------------------------------- /tests/py/common/eth/solidity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/py/common/eth/solidity.py -------------------------------------------------------------------------------- /tests/py/common/eth/w3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/py/common/eth/w3.py -------------------------------------------------------------------------------- /tests/py/common/node/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/py/common/node/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/py/common/node/cluster.py -------------------------------------------------------------------------------- /tests/py/common/node/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/py/common/node/node.py -------------------------------------------------------------------------------- /tests/py/common/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/py/common/test_config.py -------------------------------------------------------------------------------- /tests/py/common/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/py/common/util/asserts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/py/common/util/asserts.py -------------------------------------------------------------------------------- /tests/py/common/util/predicates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/py/common/util/predicates.py -------------------------------------------------------------------------------- /tests/py/common/util/pytest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/py/common/util/pytest.py -------------------------------------------------------------------------------- /tests/py/common/util/std_dataclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/py/common/util/std_dataclasses.py -------------------------------------------------------------------------------- /tests/py/common/util/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/py/common/util/wait.py -------------------------------------------------------------------------------- /tests/py/config/config1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/py/config/config1.json -------------------------------------------------------------------------------- /tests/py/config/config2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/py/config/config2.json -------------------------------------------------------------------------------- /tests/py/config/config3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/py/config/config3.json -------------------------------------------------------------------------------- /tests/py/config/config4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/py/config/config4.json -------------------------------------------------------------------------------- /tests/py/config/config5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/py/config/config5.json -------------------------------------------------------------------------------- /tests/py/config/wallet1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/py/config/wallet1.json -------------------------------------------------------------------------------- /tests/py/config/wallet2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/py/config/wallet2.json -------------------------------------------------------------------------------- /tests/py/config/wallet3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/py/config/wallet3.json -------------------------------------------------------------------------------- /tests/py/config/wallet4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/py/config/wallet4.json -------------------------------------------------------------------------------- /tests/py/config/wallet5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/py/config/wallet5.json -------------------------------------------------------------------------------- /tests/py/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/py/pyproject.toml -------------------------------------------------------------------------------- /tests/py/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/py/requirements.txt -------------------------------------------------------------------------------- /tests/py/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/py/run.sh -------------------------------------------------------------------------------- /tests/py/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/py/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/py/tests/conftest.py -------------------------------------------------------------------------------- /tests/py/tests/test_ethereum_jsonrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/py/tests/test_ethereum_jsonrpc.py -------------------------------------------------------------------------------- /tests/rewards_stats_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/rewards_stats_test.cpp -------------------------------------------------------------------------------- /tests/rpc_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/rpc_test.cpp -------------------------------------------------------------------------------- /tests/sortition_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/sortition_test.cpp -------------------------------------------------------------------------------- /tests/state_api_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/state_api_test.cpp -------------------------------------------------------------------------------- /tests/tarcap_threadpool_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/tarcap_threadpool_test.cpp -------------------------------------------------------------------------------- /tests/test_util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/test_util/CMakeLists.txt -------------------------------------------------------------------------------- /tests/test_util/config/config0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/test_util/config/config0.json -------------------------------------------------------------------------------- /tests/test_util/gtest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/test_util/gtest.hpp -------------------------------------------------------------------------------- /tests/test_util/include/test_util/node_dag_creation_fixture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/test_util/include/test_util/node_dag_creation_fixture.hpp -------------------------------------------------------------------------------- /tests/test_util/include/test_util/samples.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/test_util/include/test_util/samples.hpp -------------------------------------------------------------------------------- /tests/test_util/include/test_util/test_util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/test_util/include/test_util/test_util.hpp -------------------------------------------------------------------------------- /tests/test_util/src/node_dag_creation_fixture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/test_util/src/node_dag_creation_fixture.cpp -------------------------------------------------------------------------------- /tests/test_util/src/samples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/test_util/src/samples.cpp -------------------------------------------------------------------------------- /tests/test_util/src/test_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/test_util/src/test_util.cpp -------------------------------------------------------------------------------- /tests/transaction_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/transaction_test.cpp -------------------------------------------------------------------------------- /tests/vote_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/tests/vote_test.cpp -------------------------------------------------------------------------------- /valgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taraxa-project/taraxa-node/HEAD/valgrind.supp --------------------------------------------------------------------------------