#include <fc/fixed_string.hpp>
#include <fc/shared_string.hpp>
#include <fc/uint128.hpp>
#include <scorum/chain/schema/scorum_object_types.hpp>
#include <scorum/protocol/types.hpp>
#include <boost/multi_index/composite_key.hpp>
#include <boost/multi_index/hashed_index.hpp>
#include <numeric>
Go to the source code of this file.
|
using | scorum::chain::nft_index = shared_multi_index_container< nft_object, indexed_by< ordered_unique< tag< by_id >, member< nft_object, nft_id_type, &nft_object::id > >, hashed_unique< tag< by_uuid >, member< nft_object, uuid_type, &nft_object::uuid > >, hashed_unique< tag< by_name >, member< nft_object, account_name_type, &nft_object::name > > > > |
|
using | scorum::chain::game_round_index = shared_multi_index_container< game_round_object, indexed_by< ordered_unique< tag< by_id >, member< game_round_object, game_round_id_type, &game_round_object::id > >, hashed_unique< tag< by_uuid >, member< game_round_object, uuid_type, &game_round_object::uuid > > > > |
|