Start thw work.
This commit is contained in:
parent
71c113c190
commit
689e953546
2 changed files with 2 additions and 2 deletions
|
|
@ -2492,7 +2492,7 @@ class wallet_api
|
||||||
* @brief Returns all tokens
|
* @brief Returns all tokens
|
||||||
* @return Returns vector of NFT objects, empty vector if none
|
* @return Returns vector of NFT objects, empty vector if none
|
||||||
*/
|
*/
|
||||||
vector<nft_object> nft_get_all_tokens() const;
|
vector<nft_object> nft_get_all_tokens(uint32_t limit, optional<nft_id_type> lower_id) const;
|
||||||
signed_transaction nft_lottery_buy_ticket( nft_metadata_id_type lottery, account_id_type buyer, uint64_t tickets_to_buy, bool broadcast );
|
signed_transaction nft_lottery_buy_ticket( nft_metadata_id_type lottery, account_id_type buyer, uint64_t tickets_to_buy, bool broadcast );
|
||||||
|
|
||||||
signed_transaction create_offer(set<nft_id_type> item_ids,
|
signed_transaction create_offer(set<nft_id_type> item_ids,
|
||||||
|
|
|
||||||
|
|
@ -7011,7 +7011,7 @@ bool wallet_api::nft_is_approved_for_all(string owner_account_id_or_name, string
|
||||||
return my->_remote_db->nft_is_approved_for_all(owner_account.id, operator_account.id);
|
return my->_remote_db->nft_is_approved_for_all(owner_account.id, operator_account.id);
|
||||||
}
|
}
|
||||||
|
|
||||||
vector<nft_object> wallet_api::nft_get_all_tokens() const
|
vector<nft_object> wallet_api::nft_get_all_tokens(uint32_t limit, optional<nft_id_type> lower_id) const
|
||||||
{
|
{
|
||||||
return my->_remote_db->nft_get_all_tokens();
|
return my->_remote_db->nft_get_all_tokens();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue