├── .gitignore ├── .gitmodules ├── .travis.yml ├── CMakeLists.txt ├── Dockerfile ├── Doxyfile ├── LICENSE.md ├── README.md ├── deploy ├── config ├── deploy-key.enc ├── deploy.sh ├── docs-deploy.sh └── set-ssh.sh ├── documentation ├── api_notes.md ├── building.md ├── debug_node_plugin.md ├── doxygen │ ├── DoxygenLayout.xml │ ├── customdoxygen.css │ ├── footer.html │ ├── header.html │ └── images │ │ └── golos.svg ├── git_guildelines.md ├── plugin.md ├── python_debug_node.md └── testing.md ├── libraries ├── CMakeLists.txt ├── api │ ├── CMakeLists.txt │ ├── account_api_object.cpp │ ├── block_objects.cpp │ ├── chain_api_properties.cpp │ ├── discussion_helper.cpp │ ├── include │ │ └── golos │ │ │ └── api │ │ │ ├── account_api_object.hpp │ │ │ ├── account_vote.hpp │ │ │ ├── block_objects.hpp │ │ │ ├── chain_api_properties.hpp │ │ │ ├── comment_api_object.hpp │ │ │ ├── discussion.hpp │ │ │ ├── discussion_helper.hpp │ │ │ ├── reblog_entry.hpp │ │ │ ├── vote_state.hpp │ │ │ └── witness_api_object.hpp │ └── witness_api_object.cpp ├── chain │ ├── CMakeLists.txt │ ├── block_log.cpp │ ├── chain_properties_evaluators.cpp │ ├── curation_info.cpp │ ├── database.cpp │ ├── database_proposal_object.cpp │ ├── fork_database.cpp │ ├── hardfork.d │ │ ├── 0-preamble.hf │ │ ├── 0_1.hf │ │ ├── 0_10.hf │ │ ├── 0_11.hf │ │ ├── 0_12.hf │ │ ├── 0_13.hf │ │ ├── 0_14.hf │ │ ├── 0_15.hf │ │ ├── 0_16.hf │ │ ├── 0_17.hf │ │ ├── 0_18.hf │ │ ├── 0_19.hf │ │ ├── 0_2.hf │ │ ├── 0_20.hf │ │ ├── 0_21.hf │ │ ├── 0_3.hf │ │ ├── 0_4.hf │ │ ├── 0_5.hf │ │ ├── 0_6.hf │ │ ├── 0_7.hf │ │ ├── 0_8.hf │ │ └── 0_9.hf │ ├── include │ │ └── golos │ │ │ └── chain │ │ │ ├── account_object.hpp │ │ │ ├── block_log.hpp │ │ │ ├── block_summary_object.hpp │ │ │ ├── comment_object.hpp │ │ │ ├── compound.hpp │ │ │ ├── curation_info.hpp │ │ │ ├── custom_operation_interpreter.hpp │ │ │ ├── database.hpp │ │ │ ├── database_exceptions.hpp │ │ │ ├── db_with.hpp │ │ │ ├── evaluator.hpp │ │ │ ├── evaluator_registry.hpp │ │ │ ├── fork_database.hpp │ │ │ ├── generic_custom_operation_interpreter.hpp │ │ │ ├── global_property_object.hpp │ │ │ ├── immutable_chain_parameters.hpp │ │ │ ├── index.hpp │ │ │ ├── node_property_object.hpp │ │ │ ├── operation_notification.hpp │ │ │ ├── proposal_object.hpp │ │ │ ├── shared_authority.hpp │ │ │ ├── shared_db_merkle.hpp │ │ │ ├── snapshot_state.hpp │ │ │ ├── steem_evaluator.hpp │ │ │ ├── steem_object_types.hpp │ │ │ ├── steem_objects.hpp │ │ │ ├── transaction_object.hpp │ │ │ └── witness_objects.hpp │ ├── proposal_evaluator.cpp │ ├── proposal_object.cpp │ ├── shared_authority.cpp │ ├── steem_evaluator.cpp │ ├── steem_objects.cpp │ └── transaction_object.cpp ├── network │ ├── CMakeLists.txt │ ├── core_messages.cpp │ ├── include │ │ └── golos │ │ │ └── network │ │ │ ├── config.hpp │ │ │ ├── core_messages.hpp │ │ │ ├── exceptions.hpp │ │ │ ├── message.hpp │ │ │ ├── message_oriented_connection.hpp │ │ │ ├── node.hpp │ │ │ ├── peer_connection.hpp │ │ │ ├── peer_database.hpp │ │ │ └── stcp_socket.hpp │ ├── message_oriented_connection.cpp │ ├── node.cpp │ ├── peer_connection.cpp │ ├── peer_database.cpp │ └── stcp_socket.cpp ├── protocol │ ├── CMakeLists.txt │ ├── asset.cpp │ ├── authority.cpp │ ├── block.cpp │ ├── get_config.cpp │ ├── include │ │ └── golos │ │ │ └── protocol │ │ │ ├── README.md │ │ │ ├── asset.hpp │ │ │ ├── authority.hpp │ │ │ ├── base.hpp │ │ │ ├── block.hpp │ │ │ ├── block_header.hpp │ │ │ ├── config.hpp │ │ │ ├── exceptions.hpp │ │ │ ├── get_config.hpp │ │ │ ├── operation_util.hpp │ │ │ ├── operation_util_impl.hpp │ │ │ ├── operations.hpp │ │ │ ├── proposal_operations.hpp │ │ │ ├── protocol.hpp │ │ │ ├── reward_curve.hpp │ │ │ ├── sign_state.hpp │ │ │ ├── steem_operations.hpp │ │ │ ├── steem_virtual_operations.hpp │ │ │ ├── transaction.hpp │ │ │ ├── types.hpp │ │ │ ├── validate_helper.hpp │ │ │ └── version.hpp │ ├── operation_util_impl.cpp │ ├── operations.cpp │ ├── proposal_operations.cpp │ ├── sign_state.cpp │ ├── steem_operations.cpp │ ├── transaction.cpp │ ├── types.cpp │ └── version.cpp ├── time │ ├── CMakeLists.txt │ ├── include │ │ └── golos │ │ │ └── time │ │ │ └── time.hpp │ └── time.cpp ├── utilities │ ├── CMakeLists.txt │ ├── git_revision.cpp.in │ ├── include │ │ └── graphene │ │ │ └── utilities │ │ │ ├── git_revision.hpp │ │ │ ├── key_conversion.hpp │ │ │ ├── padding_ostream.hpp │ │ │ ├── string_escape.hpp │ │ │ ├── tempdir.hpp │ │ │ └── words.hpp │ ├── key_conversion.cpp │ ├── string_escape.cpp │ ├── tempdir.cpp │ └── words.cpp └── wallet │ ├── CMakeLists.txt │ ├── Doxyfile.in │ ├── api_documentation_standin.cpp │ ├── generate_api_documentation.pl │ ├── include │ └── golos │ │ └── wallet │ │ ├── api_documentation.hpp │ │ ├── reflect_util.hpp │ │ ├── remote_node_api.hpp │ │ ├── time_converter.hpp │ │ └── wallet.hpp │ └── wallet.cpp ├── plugins ├── CMakeLists.txt ├── account_by_key │ ├── CMakeLists.txt │ ├── account_by_key_plugin.cpp │ └── include │ │ └── golos │ │ └── plugins │ │ └── account_by_key │ │ ├── account_by_key_objects.hpp │ │ └── account_by_key_plugin.hpp ├── account_history │ ├── CMakeLists.txt │ ├── include │ │ └── golos │ │ │ └── plugins │ │ │ └── account_history │ │ │ ├── history_object.hpp │ │ │ └── plugin.hpp │ └── plugin.cpp ├── account_notes │ ├── CMakeLists.txt │ ├── account_notes_evaluators.cpp │ ├── account_notes_operations.cpp │ ├── account_notes_plugin.cpp │ └── include │ │ └── golos │ │ └── plugins │ │ └── account_notes │ │ ├── account_notes_api_objects.hpp │ │ ├── account_notes_evaluators.hpp │ │ ├── account_notes_objects.hpp │ │ ├── account_notes_operations.hpp │ │ └── account_notes_plugin.hpp ├── auth_util │ ├── CMakeLists.txt │ ├── include │ │ └── golos │ │ │ └── plugins │ │ │ └── auth_util │ │ │ └── plugin.hpp │ └── plugin.cpp ├── block_info │ ├── CMakeLists.txt │ ├── include │ │ └── golos │ │ │ └── plugins │ │ │ └── block_info │ │ │ ├── block_info.hpp │ │ │ └── plugin.hpp │ └── plugin.cpp ├── chain │ ├── CMakeLists.txt │ ├── include │ │ └── golos │ │ │ └── plugins │ │ │ └── chain │ │ │ └── plugin.hpp │ ├── plugin.cpp │ ├── serialize_state.cpp │ └── serialize_state.hpp ├── database_api │ ├── CMakeLists.txt │ ├── api.cpp │ ├── include │ │ └── golos │ │ │ └── plugins │ │ │ └── database_api │ │ │ ├── api_objects │ │ │ ├── account_recovery_request_api_object.hpp │ │ │ ├── owner_authority_history_api_object.hpp │ │ │ ├── proposal_api_object.hpp │ │ │ └── savings_withdraw_api_object.hpp │ │ │ ├── forward.hpp │ │ │ ├── plugin.hpp │ │ │ └── state.hpp │ └── proposal_api_object.cpp ├── debug_node │ ├── CMakeLists.txt │ ├── include │ │ └── golos │ │ │ └── plugins │ │ │ └── debug_node │ │ │ └── plugin.hpp │ └── plugin.cpp ├── follow │ ├── CMakeLists.txt │ ├── follow_evaluators.cpp │ ├── follow_operations.cpp │ ├── include │ │ └── golos │ │ │ └── plugins │ │ │ └── follow │ │ │ ├── follow_api_object.hpp │ │ │ ├── follow_evaluators.hpp │ │ │ ├── follow_forward.hpp │ │ │ ├── follow_objects.hpp │ │ │ ├── follow_operations.hpp │ │ │ └── plugin.hpp │ └── plugin.cpp ├── json_rpc │ ├── CMakeLists.txt │ ├── include │ │ └── golos │ │ │ └── plugins │ │ │ └── json_rpc │ │ │ ├── api_helper.hpp │ │ │ ├── plugin.hpp │ │ │ └── utility.hpp │ └── plugin.cpp ├── market_history │ ├── CMakeLists.txt │ ├── include │ │ └── golos │ │ │ └── plugins │ │ │ └── market_history │ │ │ ├── market_history_objects.hpp │ │ │ └── market_history_plugin.hpp │ └── market_history_plugin.cpp ├── mongo_db │ ├── CMakeLists.txt │ ├── include │ │ └── golos │ │ │ └── plugins │ │ │ └── mongo_db │ │ │ ├── mongo_db_operations.hpp │ │ │ ├── mongo_db_plugin.hpp │ │ │ ├── mongo_db_state.hpp │ │ │ ├── mongo_db_types.hpp │ │ │ └── mongo_db_writer.hpp │ ├── mongo_db_operations.cpp │ ├── mongo_db_plugin.cpp │ ├── mongo_db_state.cpp │ ├── mongo_db_types.cpp │ └── mongo_db_writer.cpp ├── network_broadcast_api │ ├── CMakeLists.txt │ ├── include │ │ └── golos │ │ │ └── plugins │ │ │ └── network_broadcast_api │ │ │ └── network_broadcast_api_plugin.hpp │ └── network_broadcast_api.cpp ├── operation_dump │ ├── CMakeLists.txt │ ├── include │ │ └── golos │ │ │ └── plugins │ │ │ └── operation_dump │ │ │ ├── operation_dump_container.hpp │ │ │ ├── operation_dump_plugin.hpp │ │ │ └── operation_dump_visitor.hpp │ └── operation_dump_plugin.cpp ├── operation_history │ ├── CMakeLists.txt │ ├── applied_operation.cpp │ ├── include │ │ └── golos │ │ │ └── plugins │ │ │ └── operation_history │ │ │ ├── applied_operation.hpp │ │ │ ├── history_object.hpp │ │ │ └── plugin.hpp │ └── plugin.cpp ├── p2p │ ├── CMakeLists.txt │ ├── include │ │ └── golos │ │ │ └── plugins │ │ │ └── p2p │ │ │ └── p2p_plugin.hpp │ └── p2p_plugin.cpp ├── private_message │ ├── CMakeLists.txt │ ├── include │ │ └── golos │ │ │ └── plugins │ │ │ └── private_message │ │ │ ├── private_message_api_objects.hpp │ │ │ ├── private_message_evaluators.hpp │ │ │ ├── private_message_exceptions.hpp │ │ │ ├── private_message_objects.hpp │ │ │ ├── private_message_operations.hpp │ │ │ └── private_message_plugin.hpp │ ├── private_message_api_objects.cpp │ ├── private_message_operations.cpp │ └── private_message_plugin.cpp ├── raw_block │ ├── CMakeLists.txt │ ├── include │ │ └── golos │ │ │ └── plugins │ │ │ └── raw_block │ │ │ └── plugin.hpp │ └── plugin.cpp ├── social_network │ ├── CMakeLists.txt │ ├── include │ │ └── golos │ │ │ └── plugins │ │ │ └── social_network │ │ │ ├── social_network.hpp │ │ │ └── social_network_types.hpp │ └── social_network.cpp ├── statsd │ ├── CMakeLists.txt │ ├── include │ │ └── golos │ │ │ └── plugins │ │ │ └── statsd │ │ │ ├── plugin.hpp │ │ │ ├── runtime_bucket_object.hpp │ │ │ └── statistics_sender.hpp │ ├── plugin.cpp │ └── statistics_sender.cpp ├── tags │ ├── CMakeLists.txt │ ├── discussion_query.cpp │ ├── include │ │ └── golos │ │ │ └── plugins │ │ │ └── tags │ │ │ ├── discussion_query.hpp │ │ │ ├── plugin.hpp │ │ │ ├── tag_api_object.hpp │ │ │ ├── tag_visitor.hpp │ │ │ ├── tags_object.hpp │ │ │ └── tags_sort.hpp │ ├── plugin.cpp │ └── tag_visitor.cpp ├── test_api │ ├── CMakeLists.txt │ ├── include │ │ └── golos │ │ │ └── plugins │ │ │ └── test_api │ │ │ └── test_api_plugin.hpp │ └── test_api_plugin.cpp ├── webserver │ ├── CMakeLists.txt │ ├── include │ │ └── golos │ │ │ └── plugins │ │ │ └── webserver │ │ │ └── webserver_plugin.hpp │ └── webserver_plugin.cpp ├── witness │ ├── CMakeLists.txt │ ├── include │ │ └── golos │ │ │ └── plugins │ │ │ └── witness │ │ │ └── witness.hpp │ └── witness.cpp └── witness_api │ ├── CMakeLists.txt │ ├── include │ └── golos │ │ └── plugins │ │ └── witness_api │ │ ├── api_objects │ │ └── feed_history_api_object.hpp │ │ └── plugin.hpp │ └── plugin.cpp ├── programs ├── CMakeLists.txt ├── build_helpers │ ├── CMakeLists.txt │ ├── cat-parts.cpp │ ├── cat_parts.py │ ├── check_reflect.py │ └── configure_build.py ├── cli_wallet │ ├── CMakeLists.txt │ └── main.cpp ├── golosd │ ├── CMakeLists.txt │ └── main.cpp ├── js_operation_serializer │ ├── CMakeLists.txt │ └── main.cpp ├── size_checker │ ├── CMakeLists.txt │ └── main.cpp └── util │ ├── CMakeLists.txt │ ├── get_dev_key.cpp │ ├── inflation_model.cpp │ ├── inflation_plot.py │ ├── newplugin.py │ ├── pretty_schema.py │ ├── saltpass.py │ ├── schema_test.cpp │ ├── sign_digest.cpp │ ├── sign_transaction.cpp │ ├── test_block_log.cpp │ └── test_shared_mem.cpp ├── python_scripts ├── setup.py ├── steemdebugnode │ ├── __init__.py │ ├── debugnode.py │ └── private_testnet.py └── tests │ ├── debug_hardforks.py │ └── test_payouts.py ├── share └── golosd │ ├── config │ ├── config.ini │ ├── config_debug.ini │ ├── config_debug_mongo.ini │ ├── config_mongo.ini │ ├── config_stock_exchange.ini │ └── config_witness.ini │ ├── docker │ ├── Dockerfile-mongo │ ├── Dockerfile-small │ ├── Dockerfile-test │ ├── Dockerfile-testnet │ └── Dockerfile-testnet-mongo │ ├── golosd.sh │ ├── golosdctl │ ├── seednodes │ ├── seednodes_empty │ └── snapshot5392323.json ├── tests ├── CMakeLists.txt ├── README.md ├── common │ ├── comment_reward.hpp │ ├── database_fixture.cpp │ ├── database_fixture.hpp │ └── helpers.hpp ├── generate_empty_blocks │ └── CMakeLists.txt ├── plugin_tests │ ├── account_history.cpp │ ├── account_notes.cpp │ ├── chain.cpp │ ├── follow.cpp │ ├── json_rpc.cpp │ ├── main.cpp │ ├── market_history.cpp │ ├── operation_history.cpp │ ├── plugin_ops.cpp │ └── private_message.cpp └── tests │ ├── basic_tests.cpp │ ├── block_tests.cpp │ ├── hf17_tests.cpp │ ├── live_tests.cpp │ ├── main.cpp │ ├── operation_tests.cpp │ ├── operation_time_tests.cpp │ ├── proposal_tests.cpp │ ├── serialization_tests.cpp │ └── transit_tests.cpp └── thirdparty └── CMakeLists.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/Dockerfile -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/README.md -------------------------------------------------------------------------------- /deploy/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/deploy/config -------------------------------------------------------------------------------- /deploy/deploy-key.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/deploy/deploy-key.enc -------------------------------------------------------------------------------- /deploy/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/deploy/deploy.sh -------------------------------------------------------------------------------- /deploy/docs-deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/deploy/docs-deploy.sh -------------------------------------------------------------------------------- /deploy/set-ssh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/deploy/set-ssh.sh -------------------------------------------------------------------------------- /documentation/api_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/documentation/api_notes.md -------------------------------------------------------------------------------- /documentation/building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/documentation/building.md -------------------------------------------------------------------------------- /documentation/debug_node_plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/documentation/debug_node_plugin.md -------------------------------------------------------------------------------- /documentation/doxygen/DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/documentation/doxygen/DoxygenLayout.xml -------------------------------------------------------------------------------- /documentation/doxygen/customdoxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/documentation/doxygen/customdoxygen.css -------------------------------------------------------------------------------- /documentation/doxygen/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/documentation/doxygen/footer.html -------------------------------------------------------------------------------- /documentation/doxygen/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/documentation/doxygen/header.html -------------------------------------------------------------------------------- /documentation/doxygen/images/golos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/documentation/doxygen/images/golos.svg -------------------------------------------------------------------------------- /documentation/git_guildelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/documentation/git_guildelines.md -------------------------------------------------------------------------------- /documentation/plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/documentation/plugin.md -------------------------------------------------------------------------------- /documentation/python_debug_node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/documentation/python_debug_node.md -------------------------------------------------------------------------------- /documentation/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/documentation/testing.md -------------------------------------------------------------------------------- /libraries/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/api/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/api/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/api/account_api_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/api/account_api_object.cpp -------------------------------------------------------------------------------- /libraries/api/block_objects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/api/block_objects.cpp -------------------------------------------------------------------------------- /libraries/api/chain_api_properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/api/chain_api_properties.cpp -------------------------------------------------------------------------------- /libraries/api/discussion_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/api/discussion_helper.cpp -------------------------------------------------------------------------------- /libraries/api/include/golos/api/account_api_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/api/include/golos/api/account_api_object.hpp -------------------------------------------------------------------------------- /libraries/api/include/golos/api/account_vote.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/api/include/golos/api/account_vote.hpp -------------------------------------------------------------------------------- /libraries/api/include/golos/api/block_objects.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/api/include/golos/api/block_objects.hpp -------------------------------------------------------------------------------- /libraries/api/include/golos/api/chain_api_properties.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/api/include/golos/api/chain_api_properties.hpp -------------------------------------------------------------------------------- /libraries/api/include/golos/api/comment_api_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/api/include/golos/api/comment_api_object.hpp -------------------------------------------------------------------------------- /libraries/api/include/golos/api/discussion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/api/include/golos/api/discussion.hpp -------------------------------------------------------------------------------- /libraries/api/include/golos/api/discussion_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/api/include/golos/api/discussion_helper.hpp -------------------------------------------------------------------------------- /libraries/api/include/golos/api/reblog_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/api/include/golos/api/reblog_entry.hpp -------------------------------------------------------------------------------- /libraries/api/include/golos/api/vote_state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/api/include/golos/api/vote_state.hpp -------------------------------------------------------------------------------- /libraries/api/include/golos/api/witness_api_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/api/include/golos/api/witness_api_object.hpp -------------------------------------------------------------------------------- /libraries/api/witness_api_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/api/witness_api_object.cpp -------------------------------------------------------------------------------- /libraries/chain/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/chain/block_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/block_log.cpp -------------------------------------------------------------------------------- /libraries/chain/chain_properties_evaluators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/chain_properties_evaluators.cpp -------------------------------------------------------------------------------- /libraries/chain/curation_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/curation_info.cpp -------------------------------------------------------------------------------- /libraries/chain/database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/database.cpp -------------------------------------------------------------------------------- /libraries/chain/database_proposal_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/database_proposal_object.cpp -------------------------------------------------------------------------------- /libraries/chain/fork_database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/fork_database.cpp -------------------------------------------------------------------------------- /libraries/chain/hardfork.d/0-preamble.hf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/hardfork.d/0-preamble.hf -------------------------------------------------------------------------------- /libraries/chain/hardfork.d/0_1.hf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/hardfork.d/0_1.hf -------------------------------------------------------------------------------- /libraries/chain/hardfork.d/0_10.hf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/hardfork.d/0_10.hf -------------------------------------------------------------------------------- /libraries/chain/hardfork.d/0_11.hf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/hardfork.d/0_11.hf -------------------------------------------------------------------------------- /libraries/chain/hardfork.d/0_12.hf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/hardfork.d/0_12.hf -------------------------------------------------------------------------------- /libraries/chain/hardfork.d/0_13.hf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/hardfork.d/0_13.hf -------------------------------------------------------------------------------- /libraries/chain/hardfork.d/0_14.hf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/hardfork.d/0_14.hf -------------------------------------------------------------------------------- /libraries/chain/hardfork.d/0_15.hf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/hardfork.d/0_15.hf -------------------------------------------------------------------------------- /libraries/chain/hardfork.d/0_16.hf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/hardfork.d/0_16.hf -------------------------------------------------------------------------------- /libraries/chain/hardfork.d/0_17.hf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/hardfork.d/0_17.hf -------------------------------------------------------------------------------- /libraries/chain/hardfork.d/0_18.hf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/hardfork.d/0_18.hf -------------------------------------------------------------------------------- /libraries/chain/hardfork.d/0_19.hf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/hardfork.d/0_19.hf -------------------------------------------------------------------------------- /libraries/chain/hardfork.d/0_2.hf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/hardfork.d/0_2.hf -------------------------------------------------------------------------------- /libraries/chain/hardfork.d/0_20.hf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/hardfork.d/0_20.hf -------------------------------------------------------------------------------- /libraries/chain/hardfork.d/0_21.hf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/hardfork.d/0_21.hf -------------------------------------------------------------------------------- /libraries/chain/hardfork.d/0_3.hf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/hardfork.d/0_3.hf -------------------------------------------------------------------------------- /libraries/chain/hardfork.d/0_4.hf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/hardfork.d/0_4.hf -------------------------------------------------------------------------------- /libraries/chain/hardfork.d/0_5.hf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/hardfork.d/0_5.hf -------------------------------------------------------------------------------- /libraries/chain/hardfork.d/0_6.hf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/hardfork.d/0_6.hf -------------------------------------------------------------------------------- /libraries/chain/hardfork.d/0_7.hf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/hardfork.d/0_7.hf -------------------------------------------------------------------------------- /libraries/chain/hardfork.d/0_8.hf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/hardfork.d/0_8.hf -------------------------------------------------------------------------------- /libraries/chain/hardfork.d/0_9.hf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/hardfork.d/0_9.hf -------------------------------------------------------------------------------- /libraries/chain/include/golos/chain/account_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/include/golos/chain/account_object.hpp -------------------------------------------------------------------------------- /libraries/chain/include/golos/chain/block_log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/include/golos/chain/block_log.hpp -------------------------------------------------------------------------------- /libraries/chain/include/golos/chain/block_summary_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/include/golos/chain/block_summary_object.hpp -------------------------------------------------------------------------------- /libraries/chain/include/golos/chain/comment_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/include/golos/chain/comment_object.hpp -------------------------------------------------------------------------------- /libraries/chain/include/golos/chain/compound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/include/golos/chain/compound.hpp -------------------------------------------------------------------------------- /libraries/chain/include/golos/chain/curation_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/include/golos/chain/curation_info.hpp -------------------------------------------------------------------------------- /libraries/chain/include/golos/chain/custom_operation_interpreter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/include/golos/chain/custom_operation_interpreter.hpp -------------------------------------------------------------------------------- /libraries/chain/include/golos/chain/database.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/include/golos/chain/database.hpp -------------------------------------------------------------------------------- /libraries/chain/include/golos/chain/database_exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/include/golos/chain/database_exceptions.hpp -------------------------------------------------------------------------------- /libraries/chain/include/golos/chain/db_with.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/include/golos/chain/db_with.hpp -------------------------------------------------------------------------------- /libraries/chain/include/golos/chain/evaluator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/include/golos/chain/evaluator.hpp -------------------------------------------------------------------------------- /libraries/chain/include/golos/chain/evaluator_registry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/include/golos/chain/evaluator_registry.hpp -------------------------------------------------------------------------------- /libraries/chain/include/golos/chain/fork_database.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/include/golos/chain/fork_database.hpp -------------------------------------------------------------------------------- /libraries/chain/include/golos/chain/generic_custom_operation_interpreter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/include/golos/chain/generic_custom_operation_interpreter.hpp -------------------------------------------------------------------------------- /libraries/chain/include/golos/chain/global_property_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/include/golos/chain/global_property_object.hpp -------------------------------------------------------------------------------- /libraries/chain/include/golos/chain/immutable_chain_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/include/golos/chain/immutable_chain_parameters.hpp -------------------------------------------------------------------------------- /libraries/chain/include/golos/chain/index.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/include/golos/chain/index.hpp -------------------------------------------------------------------------------- /libraries/chain/include/golos/chain/node_property_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/include/golos/chain/node_property_object.hpp -------------------------------------------------------------------------------- /libraries/chain/include/golos/chain/operation_notification.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/include/golos/chain/operation_notification.hpp -------------------------------------------------------------------------------- /libraries/chain/include/golos/chain/proposal_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/include/golos/chain/proposal_object.hpp -------------------------------------------------------------------------------- /libraries/chain/include/golos/chain/shared_authority.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/include/golos/chain/shared_authority.hpp -------------------------------------------------------------------------------- /libraries/chain/include/golos/chain/shared_db_merkle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/include/golos/chain/shared_db_merkle.hpp -------------------------------------------------------------------------------- /libraries/chain/include/golos/chain/snapshot_state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/include/golos/chain/snapshot_state.hpp -------------------------------------------------------------------------------- /libraries/chain/include/golos/chain/steem_evaluator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/include/golos/chain/steem_evaluator.hpp -------------------------------------------------------------------------------- /libraries/chain/include/golos/chain/steem_object_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/include/golos/chain/steem_object_types.hpp -------------------------------------------------------------------------------- /libraries/chain/include/golos/chain/steem_objects.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/include/golos/chain/steem_objects.hpp -------------------------------------------------------------------------------- /libraries/chain/include/golos/chain/transaction_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/include/golos/chain/transaction_object.hpp -------------------------------------------------------------------------------- /libraries/chain/include/golos/chain/witness_objects.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/include/golos/chain/witness_objects.hpp -------------------------------------------------------------------------------- /libraries/chain/proposal_evaluator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/proposal_evaluator.cpp -------------------------------------------------------------------------------- /libraries/chain/proposal_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/proposal_object.cpp -------------------------------------------------------------------------------- /libraries/chain/shared_authority.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/shared_authority.cpp -------------------------------------------------------------------------------- /libraries/chain/steem_evaluator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/steem_evaluator.cpp -------------------------------------------------------------------------------- /libraries/chain/steem_objects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/steem_objects.cpp -------------------------------------------------------------------------------- /libraries/chain/transaction_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/chain/transaction_object.cpp -------------------------------------------------------------------------------- /libraries/network/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/network/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/network/core_messages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/network/core_messages.cpp -------------------------------------------------------------------------------- /libraries/network/include/golos/network/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/network/include/golos/network/config.hpp -------------------------------------------------------------------------------- /libraries/network/include/golos/network/core_messages.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/network/include/golos/network/core_messages.hpp -------------------------------------------------------------------------------- /libraries/network/include/golos/network/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/network/include/golos/network/exceptions.hpp -------------------------------------------------------------------------------- /libraries/network/include/golos/network/message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/network/include/golos/network/message.hpp -------------------------------------------------------------------------------- /libraries/network/include/golos/network/message_oriented_connection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/network/include/golos/network/message_oriented_connection.hpp -------------------------------------------------------------------------------- /libraries/network/include/golos/network/node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/network/include/golos/network/node.hpp -------------------------------------------------------------------------------- /libraries/network/include/golos/network/peer_connection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/network/include/golos/network/peer_connection.hpp -------------------------------------------------------------------------------- /libraries/network/include/golos/network/peer_database.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/network/include/golos/network/peer_database.hpp -------------------------------------------------------------------------------- /libraries/network/include/golos/network/stcp_socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/network/include/golos/network/stcp_socket.hpp -------------------------------------------------------------------------------- /libraries/network/message_oriented_connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/network/message_oriented_connection.cpp -------------------------------------------------------------------------------- /libraries/network/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/network/node.cpp -------------------------------------------------------------------------------- /libraries/network/peer_connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/network/peer_connection.cpp -------------------------------------------------------------------------------- /libraries/network/peer_database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/network/peer_database.cpp -------------------------------------------------------------------------------- /libraries/network/stcp_socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/network/stcp_socket.cpp -------------------------------------------------------------------------------- /libraries/protocol/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/protocol/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/protocol/asset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/protocol/asset.cpp -------------------------------------------------------------------------------- /libraries/protocol/authority.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/protocol/authority.cpp -------------------------------------------------------------------------------- /libraries/protocol/block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/protocol/block.cpp -------------------------------------------------------------------------------- /libraries/protocol/get_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/protocol/get_config.cpp -------------------------------------------------------------------------------- /libraries/protocol/include/golos/protocol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/protocol/include/golos/protocol/README.md -------------------------------------------------------------------------------- /libraries/protocol/include/golos/protocol/asset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/protocol/include/golos/protocol/asset.hpp -------------------------------------------------------------------------------- /libraries/protocol/include/golos/protocol/authority.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/protocol/include/golos/protocol/authority.hpp -------------------------------------------------------------------------------- /libraries/protocol/include/golos/protocol/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/protocol/include/golos/protocol/base.hpp -------------------------------------------------------------------------------- /libraries/protocol/include/golos/protocol/block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/protocol/include/golos/protocol/block.hpp -------------------------------------------------------------------------------- /libraries/protocol/include/golos/protocol/block_header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/protocol/include/golos/protocol/block_header.hpp -------------------------------------------------------------------------------- /libraries/protocol/include/golos/protocol/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/protocol/include/golos/protocol/config.hpp -------------------------------------------------------------------------------- /libraries/protocol/include/golos/protocol/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/protocol/include/golos/protocol/exceptions.hpp -------------------------------------------------------------------------------- /libraries/protocol/include/golos/protocol/get_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/protocol/include/golos/protocol/get_config.hpp -------------------------------------------------------------------------------- /libraries/protocol/include/golos/protocol/operation_util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/protocol/include/golos/protocol/operation_util.hpp -------------------------------------------------------------------------------- /libraries/protocol/include/golos/protocol/operation_util_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/protocol/include/golos/protocol/operation_util_impl.hpp -------------------------------------------------------------------------------- /libraries/protocol/include/golos/protocol/operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/protocol/include/golos/protocol/operations.hpp -------------------------------------------------------------------------------- /libraries/protocol/include/golos/protocol/proposal_operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/protocol/include/golos/protocol/proposal_operations.hpp -------------------------------------------------------------------------------- /libraries/protocol/include/golos/protocol/protocol.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | -------------------------------------------------------------------------------- /libraries/protocol/include/golos/protocol/reward_curve.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/protocol/include/golos/protocol/reward_curve.hpp -------------------------------------------------------------------------------- /libraries/protocol/include/golos/protocol/sign_state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/protocol/include/golos/protocol/sign_state.hpp -------------------------------------------------------------------------------- /libraries/protocol/include/golos/protocol/steem_operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/protocol/include/golos/protocol/steem_operations.hpp -------------------------------------------------------------------------------- /libraries/protocol/include/golos/protocol/steem_virtual_operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/protocol/include/golos/protocol/steem_virtual_operations.hpp -------------------------------------------------------------------------------- /libraries/protocol/include/golos/protocol/transaction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/protocol/include/golos/protocol/transaction.hpp -------------------------------------------------------------------------------- /libraries/protocol/include/golos/protocol/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/protocol/include/golos/protocol/types.hpp -------------------------------------------------------------------------------- /libraries/protocol/include/golos/protocol/validate_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/protocol/include/golos/protocol/validate_helper.hpp -------------------------------------------------------------------------------- /libraries/protocol/include/golos/protocol/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/protocol/include/golos/protocol/version.hpp -------------------------------------------------------------------------------- /libraries/protocol/operation_util_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/protocol/operation_util_impl.cpp -------------------------------------------------------------------------------- /libraries/protocol/operations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/protocol/operations.cpp -------------------------------------------------------------------------------- /libraries/protocol/proposal_operations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/protocol/proposal_operations.cpp -------------------------------------------------------------------------------- /libraries/protocol/sign_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/protocol/sign_state.cpp -------------------------------------------------------------------------------- /libraries/protocol/steem_operations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/protocol/steem_operations.cpp -------------------------------------------------------------------------------- /libraries/protocol/transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/protocol/transaction.cpp -------------------------------------------------------------------------------- /libraries/protocol/types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/protocol/types.cpp -------------------------------------------------------------------------------- /libraries/protocol/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/protocol/version.cpp -------------------------------------------------------------------------------- /libraries/time/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/time/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/time/include/golos/time/time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/time/include/golos/time/time.hpp -------------------------------------------------------------------------------- /libraries/time/time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/time/time.cpp -------------------------------------------------------------------------------- /libraries/utilities/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/utilities/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/utilities/git_revision.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/utilities/git_revision.cpp.in -------------------------------------------------------------------------------- /libraries/utilities/include/graphene/utilities/git_revision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/utilities/include/graphene/utilities/git_revision.hpp -------------------------------------------------------------------------------- /libraries/utilities/include/graphene/utilities/key_conversion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/utilities/include/graphene/utilities/key_conversion.hpp -------------------------------------------------------------------------------- /libraries/utilities/include/graphene/utilities/padding_ostream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/utilities/include/graphene/utilities/padding_ostream.hpp -------------------------------------------------------------------------------- /libraries/utilities/include/graphene/utilities/string_escape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/utilities/include/graphene/utilities/string_escape.hpp -------------------------------------------------------------------------------- /libraries/utilities/include/graphene/utilities/tempdir.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/utilities/include/graphene/utilities/tempdir.hpp -------------------------------------------------------------------------------- /libraries/utilities/include/graphene/utilities/words.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/utilities/include/graphene/utilities/words.hpp -------------------------------------------------------------------------------- /libraries/utilities/key_conversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/utilities/key_conversion.cpp -------------------------------------------------------------------------------- /libraries/utilities/string_escape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/utilities/string_escape.cpp -------------------------------------------------------------------------------- /libraries/utilities/tempdir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/utilities/tempdir.cpp -------------------------------------------------------------------------------- /libraries/utilities/words.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/utilities/words.cpp -------------------------------------------------------------------------------- /libraries/wallet/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/wallet/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/wallet/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/wallet/Doxyfile.in -------------------------------------------------------------------------------- /libraries/wallet/api_documentation_standin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/wallet/api_documentation_standin.cpp -------------------------------------------------------------------------------- /libraries/wallet/generate_api_documentation.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/wallet/generate_api_documentation.pl -------------------------------------------------------------------------------- /libraries/wallet/include/golos/wallet/api_documentation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/wallet/include/golos/wallet/api_documentation.hpp -------------------------------------------------------------------------------- /libraries/wallet/include/golos/wallet/reflect_util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/wallet/include/golos/wallet/reflect_util.hpp -------------------------------------------------------------------------------- /libraries/wallet/include/golos/wallet/remote_node_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/wallet/include/golos/wallet/remote_node_api.hpp -------------------------------------------------------------------------------- /libraries/wallet/include/golos/wallet/time_converter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/wallet/include/golos/wallet/time_converter.hpp -------------------------------------------------------------------------------- /libraries/wallet/include/golos/wallet/wallet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/wallet/include/golos/wallet/wallet.hpp -------------------------------------------------------------------------------- /libraries/wallet/wallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/libraries/wallet/wallet.cpp -------------------------------------------------------------------------------- /plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/account_by_key/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/account_by_key/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/account_by_key/account_by_key_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/account_by_key/account_by_key_plugin.cpp -------------------------------------------------------------------------------- /plugins/account_by_key/include/golos/plugins/account_by_key/account_by_key_objects.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/account_by_key/include/golos/plugins/account_by_key/account_by_key_objects.hpp -------------------------------------------------------------------------------- /plugins/account_by_key/include/golos/plugins/account_by_key/account_by_key_plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/account_by_key/include/golos/plugins/account_by_key/account_by_key_plugin.hpp -------------------------------------------------------------------------------- /plugins/account_history/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/account_history/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/account_history/include/golos/plugins/account_history/history_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/account_history/include/golos/plugins/account_history/history_object.hpp -------------------------------------------------------------------------------- /plugins/account_history/include/golos/plugins/account_history/plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/account_history/include/golos/plugins/account_history/plugin.hpp -------------------------------------------------------------------------------- /plugins/account_history/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/account_history/plugin.cpp -------------------------------------------------------------------------------- /plugins/account_notes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/account_notes/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/account_notes/account_notes_evaluators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/account_notes/account_notes_evaluators.cpp -------------------------------------------------------------------------------- /plugins/account_notes/account_notes_operations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/account_notes/account_notes_operations.cpp -------------------------------------------------------------------------------- /plugins/account_notes/account_notes_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/account_notes/account_notes_plugin.cpp -------------------------------------------------------------------------------- /plugins/account_notes/include/golos/plugins/account_notes/account_notes_api_objects.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/account_notes/include/golos/plugins/account_notes/account_notes_api_objects.hpp -------------------------------------------------------------------------------- /plugins/account_notes/include/golos/plugins/account_notes/account_notes_evaluators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/account_notes/include/golos/plugins/account_notes/account_notes_evaluators.hpp -------------------------------------------------------------------------------- /plugins/account_notes/include/golos/plugins/account_notes/account_notes_objects.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/account_notes/include/golos/plugins/account_notes/account_notes_objects.hpp -------------------------------------------------------------------------------- /plugins/account_notes/include/golos/plugins/account_notes/account_notes_operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/account_notes/include/golos/plugins/account_notes/account_notes_operations.hpp -------------------------------------------------------------------------------- /plugins/account_notes/include/golos/plugins/account_notes/account_notes_plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/account_notes/include/golos/plugins/account_notes/account_notes_plugin.hpp -------------------------------------------------------------------------------- /plugins/auth_util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/auth_util/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/auth_util/include/golos/plugins/auth_util/plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/auth_util/include/golos/plugins/auth_util/plugin.hpp -------------------------------------------------------------------------------- /plugins/auth_util/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/auth_util/plugin.cpp -------------------------------------------------------------------------------- /plugins/block_info/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/block_info/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/block_info/include/golos/plugins/block_info/block_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/block_info/include/golos/plugins/block_info/block_info.hpp -------------------------------------------------------------------------------- /plugins/block_info/include/golos/plugins/block_info/plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/block_info/include/golos/plugins/block_info/plugin.hpp -------------------------------------------------------------------------------- /plugins/block_info/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/block_info/plugin.cpp -------------------------------------------------------------------------------- /plugins/chain/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/chain/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/chain/include/golos/plugins/chain/plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/chain/include/golos/plugins/chain/plugin.hpp -------------------------------------------------------------------------------- /plugins/chain/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/chain/plugin.cpp -------------------------------------------------------------------------------- /plugins/chain/serialize_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/chain/serialize_state.cpp -------------------------------------------------------------------------------- /plugins/chain/serialize_state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/chain/serialize_state.hpp -------------------------------------------------------------------------------- /plugins/database_api/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/database_api/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/database_api/api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/database_api/api.cpp -------------------------------------------------------------------------------- /plugins/database_api/include/golos/plugins/database_api/api_objects/account_recovery_request_api_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/database_api/include/golos/plugins/database_api/api_objects/account_recovery_request_api_object.hpp -------------------------------------------------------------------------------- /plugins/database_api/include/golos/plugins/database_api/api_objects/owner_authority_history_api_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/database_api/include/golos/plugins/database_api/api_objects/owner_authority_history_api_object.hpp -------------------------------------------------------------------------------- /plugins/database_api/include/golos/plugins/database_api/api_objects/proposal_api_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/database_api/include/golos/plugins/database_api/api_objects/proposal_api_object.hpp -------------------------------------------------------------------------------- /plugins/database_api/include/golos/plugins/database_api/api_objects/savings_withdraw_api_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/database_api/include/golos/plugins/database_api/api_objects/savings_withdraw_api_object.hpp -------------------------------------------------------------------------------- /plugins/database_api/include/golos/plugins/database_api/forward.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/database_api/include/golos/plugins/database_api/forward.hpp -------------------------------------------------------------------------------- /plugins/database_api/include/golos/plugins/database_api/plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/database_api/include/golos/plugins/database_api/plugin.hpp -------------------------------------------------------------------------------- /plugins/database_api/include/golos/plugins/database_api/state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/database_api/include/golos/plugins/database_api/state.hpp -------------------------------------------------------------------------------- /plugins/database_api/proposal_api_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/database_api/proposal_api_object.cpp -------------------------------------------------------------------------------- /plugins/debug_node/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/debug_node/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/debug_node/include/golos/plugins/debug_node/plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/debug_node/include/golos/plugins/debug_node/plugin.hpp -------------------------------------------------------------------------------- /plugins/debug_node/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/debug_node/plugin.cpp -------------------------------------------------------------------------------- /plugins/follow/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/follow/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/follow/follow_evaluators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/follow/follow_evaluators.cpp -------------------------------------------------------------------------------- /plugins/follow/follow_operations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/follow/follow_operations.cpp -------------------------------------------------------------------------------- /plugins/follow/include/golos/plugins/follow/follow_api_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/follow/include/golos/plugins/follow/follow_api_object.hpp -------------------------------------------------------------------------------- /plugins/follow/include/golos/plugins/follow/follow_evaluators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/follow/include/golos/plugins/follow/follow_evaluators.hpp -------------------------------------------------------------------------------- /plugins/follow/include/golos/plugins/follow/follow_forward.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/follow/include/golos/plugins/follow/follow_forward.hpp -------------------------------------------------------------------------------- /plugins/follow/include/golos/plugins/follow/follow_objects.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/follow/include/golos/plugins/follow/follow_objects.hpp -------------------------------------------------------------------------------- /plugins/follow/include/golos/plugins/follow/follow_operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/follow/include/golos/plugins/follow/follow_operations.hpp -------------------------------------------------------------------------------- /plugins/follow/include/golos/plugins/follow/plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/follow/include/golos/plugins/follow/plugin.hpp -------------------------------------------------------------------------------- /plugins/follow/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/follow/plugin.cpp -------------------------------------------------------------------------------- /plugins/json_rpc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/json_rpc/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/json_rpc/include/golos/plugins/json_rpc/api_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/json_rpc/include/golos/plugins/json_rpc/api_helper.hpp -------------------------------------------------------------------------------- /plugins/json_rpc/include/golos/plugins/json_rpc/plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/json_rpc/include/golos/plugins/json_rpc/plugin.hpp -------------------------------------------------------------------------------- /plugins/json_rpc/include/golos/plugins/json_rpc/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/json_rpc/include/golos/plugins/json_rpc/utility.hpp -------------------------------------------------------------------------------- /plugins/json_rpc/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/json_rpc/plugin.cpp -------------------------------------------------------------------------------- /plugins/market_history/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/market_history/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/market_history/include/golos/plugins/market_history/market_history_objects.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/market_history/include/golos/plugins/market_history/market_history_objects.hpp -------------------------------------------------------------------------------- /plugins/market_history/include/golos/plugins/market_history/market_history_plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/market_history/include/golos/plugins/market_history/market_history_plugin.hpp -------------------------------------------------------------------------------- /plugins/market_history/market_history_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/market_history/market_history_plugin.cpp -------------------------------------------------------------------------------- /plugins/mongo_db/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/mongo_db/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/mongo_db/include/golos/plugins/mongo_db/mongo_db_operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/mongo_db/include/golos/plugins/mongo_db/mongo_db_operations.hpp -------------------------------------------------------------------------------- /plugins/mongo_db/include/golos/plugins/mongo_db/mongo_db_plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/mongo_db/include/golos/plugins/mongo_db/mongo_db_plugin.hpp -------------------------------------------------------------------------------- /plugins/mongo_db/include/golos/plugins/mongo_db/mongo_db_state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/mongo_db/include/golos/plugins/mongo_db/mongo_db_state.hpp -------------------------------------------------------------------------------- /plugins/mongo_db/include/golos/plugins/mongo_db/mongo_db_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/mongo_db/include/golos/plugins/mongo_db/mongo_db_types.hpp -------------------------------------------------------------------------------- /plugins/mongo_db/include/golos/plugins/mongo_db/mongo_db_writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/mongo_db/include/golos/plugins/mongo_db/mongo_db_writer.hpp -------------------------------------------------------------------------------- /plugins/mongo_db/mongo_db_operations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/mongo_db/mongo_db_operations.cpp -------------------------------------------------------------------------------- /plugins/mongo_db/mongo_db_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/mongo_db/mongo_db_plugin.cpp -------------------------------------------------------------------------------- /plugins/mongo_db/mongo_db_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/mongo_db/mongo_db_state.cpp -------------------------------------------------------------------------------- /plugins/mongo_db/mongo_db_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/mongo_db/mongo_db_types.cpp -------------------------------------------------------------------------------- /plugins/mongo_db/mongo_db_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/mongo_db/mongo_db_writer.cpp -------------------------------------------------------------------------------- /plugins/network_broadcast_api/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/network_broadcast_api/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/network_broadcast_api/include/golos/plugins/network_broadcast_api/network_broadcast_api_plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/network_broadcast_api/include/golos/plugins/network_broadcast_api/network_broadcast_api_plugin.hpp -------------------------------------------------------------------------------- /plugins/network_broadcast_api/network_broadcast_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/network_broadcast_api/network_broadcast_api.cpp -------------------------------------------------------------------------------- /plugins/operation_dump/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/operation_dump/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/operation_dump/include/golos/plugins/operation_dump/operation_dump_container.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/operation_dump/include/golos/plugins/operation_dump/operation_dump_container.hpp -------------------------------------------------------------------------------- /plugins/operation_dump/include/golos/plugins/operation_dump/operation_dump_plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/operation_dump/include/golos/plugins/operation_dump/operation_dump_plugin.hpp -------------------------------------------------------------------------------- /plugins/operation_dump/include/golos/plugins/operation_dump/operation_dump_visitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/operation_dump/include/golos/plugins/operation_dump/operation_dump_visitor.hpp -------------------------------------------------------------------------------- /plugins/operation_dump/operation_dump_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/operation_dump/operation_dump_plugin.cpp -------------------------------------------------------------------------------- /plugins/operation_history/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/operation_history/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/operation_history/applied_operation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/operation_history/applied_operation.cpp -------------------------------------------------------------------------------- /plugins/operation_history/include/golos/plugins/operation_history/applied_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/operation_history/include/golos/plugins/operation_history/applied_operation.hpp -------------------------------------------------------------------------------- /plugins/operation_history/include/golos/plugins/operation_history/history_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/operation_history/include/golos/plugins/operation_history/history_object.hpp -------------------------------------------------------------------------------- /plugins/operation_history/include/golos/plugins/operation_history/plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/operation_history/include/golos/plugins/operation_history/plugin.hpp -------------------------------------------------------------------------------- /plugins/operation_history/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/operation_history/plugin.cpp -------------------------------------------------------------------------------- /plugins/p2p/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/p2p/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/p2p/include/golos/plugins/p2p/p2p_plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/p2p/include/golos/plugins/p2p/p2p_plugin.hpp -------------------------------------------------------------------------------- /plugins/p2p/p2p_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/p2p/p2p_plugin.cpp -------------------------------------------------------------------------------- /plugins/private_message/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/private_message/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/private_message/include/golos/plugins/private_message/private_message_api_objects.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/private_message/include/golos/plugins/private_message/private_message_api_objects.hpp -------------------------------------------------------------------------------- /plugins/private_message/include/golos/plugins/private_message/private_message_evaluators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/private_message/include/golos/plugins/private_message/private_message_evaluators.hpp -------------------------------------------------------------------------------- /plugins/private_message/include/golos/plugins/private_message/private_message_exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/private_message/include/golos/plugins/private_message/private_message_exceptions.hpp -------------------------------------------------------------------------------- /plugins/private_message/include/golos/plugins/private_message/private_message_objects.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/private_message/include/golos/plugins/private_message/private_message_objects.hpp -------------------------------------------------------------------------------- /plugins/private_message/include/golos/plugins/private_message/private_message_operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/private_message/include/golos/plugins/private_message/private_message_operations.hpp -------------------------------------------------------------------------------- /plugins/private_message/include/golos/plugins/private_message/private_message_plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/private_message/include/golos/plugins/private_message/private_message_plugin.hpp -------------------------------------------------------------------------------- /plugins/private_message/private_message_api_objects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/private_message/private_message_api_objects.cpp -------------------------------------------------------------------------------- /plugins/private_message/private_message_operations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/private_message/private_message_operations.cpp -------------------------------------------------------------------------------- /plugins/private_message/private_message_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/private_message/private_message_plugin.cpp -------------------------------------------------------------------------------- /plugins/raw_block/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/raw_block/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/raw_block/include/golos/plugins/raw_block/plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/raw_block/include/golos/plugins/raw_block/plugin.hpp -------------------------------------------------------------------------------- /plugins/raw_block/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/raw_block/plugin.cpp -------------------------------------------------------------------------------- /plugins/social_network/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/social_network/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/social_network/include/golos/plugins/social_network/social_network.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/social_network/include/golos/plugins/social_network/social_network.hpp -------------------------------------------------------------------------------- /plugins/social_network/include/golos/plugins/social_network/social_network_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/social_network/include/golos/plugins/social_network/social_network_types.hpp -------------------------------------------------------------------------------- /plugins/social_network/social_network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/social_network/social_network.cpp -------------------------------------------------------------------------------- /plugins/statsd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/statsd/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/statsd/include/golos/plugins/statsd/plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/statsd/include/golos/plugins/statsd/plugin.hpp -------------------------------------------------------------------------------- /plugins/statsd/include/golos/plugins/statsd/runtime_bucket_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/statsd/include/golos/plugins/statsd/runtime_bucket_object.hpp -------------------------------------------------------------------------------- /plugins/statsd/include/golos/plugins/statsd/statistics_sender.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/statsd/include/golos/plugins/statsd/statistics_sender.hpp -------------------------------------------------------------------------------- /plugins/statsd/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/statsd/plugin.cpp -------------------------------------------------------------------------------- /plugins/statsd/statistics_sender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/statsd/statistics_sender.cpp -------------------------------------------------------------------------------- /plugins/tags/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/tags/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/tags/discussion_query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/tags/discussion_query.cpp -------------------------------------------------------------------------------- /plugins/tags/include/golos/plugins/tags/discussion_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/tags/include/golos/plugins/tags/discussion_query.hpp -------------------------------------------------------------------------------- /plugins/tags/include/golos/plugins/tags/plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/tags/include/golos/plugins/tags/plugin.hpp -------------------------------------------------------------------------------- /plugins/tags/include/golos/plugins/tags/tag_api_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/tags/include/golos/plugins/tags/tag_api_object.hpp -------------------------------------------------------------------------------- /plugins/tags/include/golos/plugins/tags/tag_visitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/tags/include/golos/plugins/tags/tag_visitor.hpp -------------------------------------------------------------------------------- /plugins/tags/include/golos/plugins/tags/tags_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/tags/include/golos/plugins/tags/tags_object.hpp -------------------------------------------------------------------------------- /plugins/tags/include/golos/plugins/tags/tags_sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/tags/include/golos/plugins/tags/tags_sort.hpp -------------------------------------------------------------------------------- /plugins/tags/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/tags/plugin.cpp -------------------------------------------------------------------------------- /plugins/tags/tag_visitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/tags/tag_visitor.cpp -------------------------------------------------------------------------------- /plugins/test_api/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/test_api/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/test_api/include/golos/plugins/test_api/test_api_plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/test_api/include/golos/plugins/test_api/test_api_plugin.hpp -------------------------------------------------------------------------------- /plugins/test_api/test_api_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/test_api/test_api_plugin.cpp -------------------------------------------------------------------------------- /plugins/webserver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/webserver/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/webserver/include/golos/plugins/webserver/webserver_plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/webserver/include/golos/plugins/webserver/webserver_plugin.hpp -------------------------------------------------------------------------------- /plugins/webserver/webserver_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/webserver/webserver_plugin.cpp -------------------------------------------------------------------------------- /plugins/witness/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/witness/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/witness/include/golos/plugins/witness/witness.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/witness/include/golos/plugins/witness/witness.hpp -------------------------------------------------------------------------------- /plugins/witness/witness.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/witness/witness.cpp -------------------------------------------------------------------------------- /plugins/witness_api/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/witness_api/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/witness_api/include/golos/plugins/witness_api/api_objects/feed_history_api_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/witness_api/include/golos/plugins/witness_api/api_objects/feed_history_api_object.hpp -------------------------------------------------------------------------------- /plugins/witness_api/include/golos/plugins/witness_api/plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/witness_api/include/golos/plugins/witness_api/plugin.hpp -------------------------------------------------------------------------------- /plugins/witness_api/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/plugins/witness_api/plugin.cpp -------------------------------------------------------------------------------- /programs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/programs/CMakeLists.txt -------------------------------------------------------------------------------- /programs/build_helpers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/programs/build_helpers/CMakeLists.txt -------------------------------------------------------------------------------- /programs/build_helpers/cat-parts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/programs/build_helpers/cat-parts.cpp -------------------------------------------------------------------------------- /programs/build_helpers/cat_parts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/programs/build_helpers/cat_parts.py -------------------------------------------------------------------------------- /programs/build_helpers/check_reflect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/programs/build_helpers/check_reflect.py -------------------------------------------------------------------------------- /programs/build_helpers/configure_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/programs/build_helpers/configure_build.py -------------------------------------------------------------------------------- /programs/cli_wallet/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/programs/cli_wallet/CMakeLists.txt -------------------------------------------------------------------------------- /programs/cli_wallet/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/programs/cli_wallet/main.cpp -------------------------------------------------------------------------------- /programs/golosd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/programs/golosd/CMakeLists.txt -------------------------------------------------------------------------------- /programs/golosd/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/programs/golosd/main.cpp -------------------------------------------------------------------------------- /programs/js_operation_serializer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/programs/js_operation_serializer/CMakeLists.txt -------------------------------------------------------------------------------- /programs/js_operation_serializer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/programs/js_operation_serializer/main.cpp -------------------------------------------------------------------------------- /programs/size_checker/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/programs/size_checker/CMakeLists.txt -------------------------------------------------------------------------------- /programs/size_checker/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/programs/size_checker/main.cpp -------------------------------------------------------------------------------- /programs/util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/programs/util/CMakeLists.txt -------------------------------------------------------------------------------- /programs/util/get_dev_key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/programs/util/get_dev_key.cpp -------------------------------------------------------------------------------- /programs/util/inflation_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/programs/util/inflation_model.cpp -------------------------------------------------------------------------------- /programs/util/inflation_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/programs/util/inflation_plot.py -------------------------------------------------------------------------------- /programs/util/newplugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/programs/util/newplugin.py -------------------------------------------------------------------------------- /programs/util/pretty_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/programs/util/pretty_schema.py -------------------------------------------------------------------------------- /programs/util/saltpass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/programs/util/saltpass.py -------------------------------------------------------------------------------- /programs/util/schema_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/programs/util/schema_test.cpp -------------------------------------------------------------------------------- /programs/util/sign_digest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/programs/util/sign_digest.cpp -------------------------------------------------------------------------------- /programs/util/sign_transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/programs/util/sign_transaction.cpp -------------------------------------------------------------------------------- /programs/util/test_block_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/programs/util/test_block_log.cpp -------------------------------------------------------------------------------- /programs/util/test_shared_mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/programs/util/test_shared_mem.cpp -------------------------------------------------------------------------------- /python_scripts/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/python_scripts/setup.py -------------------------------------------------------------------------------- /python_scripts/steemdebugnode/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/python_scripts/steemdebugnode/__init__.py -------------------------------------------------------------------------------- /python_scripts/steemdebugnode/debugnode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/python_scripts/steemdebugnode/debugnode.py -------------------------------------------------------------------------------- /python_scripts/steemdebugnode/private_testnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/python_scripts/steemdebugnode/private_testnet.py -------------------------------------------------------------------------------- /python_scripts/tests/debug_hardforks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/python_scripts/tests/debug_hardforks.py -------------------------------------------------------------------------------- /python_scripts/tests/test_payouts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/python_scripts/tests/test_payouts.py -------------------------------------------------------------------------------- /share/golosd/config/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/share/golosd/config/config.ini -------------------------------------------------------------------------------- /share/golosd/config/config_debug.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/share/golosd/config/config_debug.ini -------------------------------------------------------------------------------- /share/golosd/config/config_debug_mongo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/share/golosd/config/config_debug_mongo.ini -------------------------------------------------------------------------------- /share/golosd/config/config_mongo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/share/golosd/config/config_mongo.ini -------------------------------------------------------------------------------- /share/golosd/config/config_stock_exchange.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/share/golosd/config/config_stock_exchange.ini -------------------------------------------------------------------------------- /share/golosd/config/config_witness.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/share/golosd/config/config_witness.ini -------------------------------------------------------------------------------- /share/golosd/docker/Dockerfile-mongo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/share/golosd/docker/Dockerfile-mongo -------------------------------------------------------------------------------- /share/golosd/docker/Dockerfile-small: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/share/golosd/docker/Dockerfile-small -------------------------------------------------------------------------------- /share/golosd/docker/Dockerfile-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/share/golosd/docker/Dockerfile-test -------------------------------------------------------------------------------- /share/golosd/docker/Dockerfile-testnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/share/golosd/docker/Dockerfile-testnet -------------------------------------------------------------------------------- /share/golosd/docker/Dockerfile-testnet-mongo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/share/golosd/docker/Dockerfile-testnet-mongo -------------------------------------------------------------------------------- /share/golosd/golosd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/share/golosd/golosd.sh -------------------------------------------------------------------------------- /share/golosd/golosdctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/share/golosd/golosdctl -------------------------------------------------------------------------------- /share/golosd/seednodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/share/golosd/seednodes -------------------------------------------------------------------------------- /share/golosd/seednodes_empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /share/golosd/snapshot5392323.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/share/golosd/snapshot5392323.json -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/common/comment_reward.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/tests/common/comment_reward.hpp -------------------------------------------------------------------------------- /tests/common/database_fixture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/tests/common/database_fixture.cpp -------------------------------------------------------------------------------- /tests/common/database_fixture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/tests/common/database_fixture.hpp -------------------------------------------------------------------------------- /tests/common/helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/tests/common/helpers.hpp -------------------------------------------------------------------------------- /tests/generate_empty_blocks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/tests/generate_empty_blocks/CMakeLists.txt -------------------------------------------------------------------------------- /tests/plugin_tests/account_history.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/tests/plugin_tests/account_history.cpp -------------------------------------------------------------------------------- /tests/plugin_tests/account_notes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/tests/plugin_tests/account_notes.cpp -------------------------------------------------------------------------------- /tests/plugin_tests/chain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/tests/plugin_tests/chain.cpp -------------------------------------------------------------------------------- /tests/plugin_tests/follow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/tests/plugin_tests/follow.cpp -------------------------------------------------------------------------------- /tests/plugin_tests/json_rpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/tests/plugin_tests/json_rpc.cpp -------------------------------------------------------------------------------- /tests/plugin_tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/tests/plugin_tests/main.cpp -------------------------------------------------------------------------------- /tests/plugin_tests/market_history.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/tests/plugin_tests/market_history.cpp -------------------------------------------------------------------------------- /tests/plugin_tests/operation_history.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/tests/plugin_tests/operation_history.cpp -------------------------------------------------------------------------------- /tests/plugin_tests/plugin_ops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/tests/plugin_tests/plugin_ops.cpp -------------------------------------------------------------------------------- /tests/plugin_tests/private_message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/tests/plugin_tests/private_message.cpp -------------------------------------------------------------------------------- /tests/tests/basic_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/tests/tests/basic_tests.cpp -------------------------------------------------------------------------------- /tests/tests/block_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/tests/tests/block_tests.cpp -------------------------------------------------------------------------------- /tests/tests/hf17_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/tests/tests/hf17_tests.cpp -------------------------------------------------------------------------------- /tests/tests/live_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/tests/tests/live_tests.cpp -------------------------------------------------------------------------------- /tests/tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/tests/tests/main.cpp -------------------------------------------------------------------------------- /tests/tests/operation_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/tests/tests/operation_tests.cpp -------------------------------------------------------------------------------- /tests/tests/operation_time_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/tests/tests/operation_time_tests.cpp -------------------------------------------------------------------------------- /tests/tests/proposal_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/tests/tests/proposal_tests.cpp -------------------------------------------------------------------------------- /tests/tests/serialization_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/tests/tests/serialization_tests.cpp -------------------------------------------------------------------------------- /tests/tests/transit_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/tests/tests/transit_tests.cpp -------------------------------------------------------------------------------- /thirdparty/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GolosChain/golos/HEAD/thirdparty/CMakeLists.txt --------------------------------------------------------------------------------