Scorum
|
Database NFT API. More...
Functions | |
nft_api_obj | scorum::app::database_api::get_nft_by_id (int64_t id) const |
Get NFT object by id. More... | |
nft_api_obj | scorum::app::database_api::get_nft_by_name (const account_name_type &name) const |
Get NFT object by name. More... | |
nft_api_obj | scorum::app::database_api::get_nft_by_uuid (const uuid_type &uuid) const |
Get NFT object by uuid. More... | |
std::vector< nft_api_obj > | scorum::app::database_api::lookup_nft (int64_t from, uint32_t limit) const |
Retrieve list of NFT objects in range [from, from+limit-1]. More... | |
game_round_api_obj | scorum::app::database_api::get_game_round_by_uuid (const uuid_type &uuid) const |
Get game round by uuid object. More... | |
std::vector< game_round_api_obj > | scorum::app::database_api::lookup_game_round (int64_t id, uint32_t limit) const |
Retrieve list of game rounds in range [from, from+limit-1]. More... | |
Database NFT API.
game_round_api_obj scorum::app::database_api::get_game_round_by_uuid | ( | const uuid_type & | uuid | ) | const |
Get game round by uuid object.
uuid | UUID of the game round |
Definition at line 1101 of file database_api.cpp.
nft_api_obj scorum::app::database_api::get_nft_by_id | ( | int64_t | id | ) | const |
Get NFT object by id.
id | id of the NFT object |
Definition at line 1069 of file database_api.cpp.
nft_api_obj scorum::app::database_api::get_nft_by_name | ( | const account_name_type & | name | ) | const |
Get NFT object by name.
name | name of the NFT object |
Definition at line 1074 of file database_api.cpp.
nft_api_obj scorum::app::database_api::get_nft_by_uuid | ( | const uuid_type & | uuid | ) | const |
Get NFT object by uuid.
uuid | UUID of the NFT object |
Definition at line 1079 of file database_api.cpp.
std::vector< game_round_api_obj > scorum::app::database_api::lookup_game_round | ( | int64_t | id, |
uint32_t | limit | ||
) | const |
Retrieve list of game rounds in range [from, from+limit-1].
id | lower bound game round id |
limit | limit number of objects in response |
Definition at line 1106 of file database_api.cpp.
std::vector< nft_api_obj > scorum::app::database_api::lookup_nft | ( | int64_t | from, |
uint32_t | limit | ||
) | const |
Retrieve list of NFT objects in range [from, from+limit-1].
from | lower bound NFT id |
limit | limit number of objects in response |
Definition at line 1084 of file database_api.cpp.