* ppy marketplace 1 - add evaluators and objects * NFT object and basic operations * ci: update .gitlab-ci.yml * ci: update .gitlab-ci.yml * NFT evaluators and basic tests, no evaluator checks * Evaluator checks in place * ppy marketplace 2 - batch sale, offer_object escrow * Database API * Wallet API * NFT metadata implemented * Fix NFT tests * Database API for NFT metadata and enumerables * ppy marketplace 4 - Add tests NFT+Marketplace * ppy marketplace 5 - Add revenue split * ppy marketplace 6 - Remove unnecessary files * ppy marketplace 7 - Add db, wallet changes and some NFT fixes * ppy marketplace 8 - Add pagination for list APIs * New DB API, list all NFTs, list NFTs by owner * Marketplace + NFT + RBAC (#368) * rbac1 - evaluators and op validators added * rbac2 - op_type hf checks * rbac3 - tx auth verify changes * Update .gitlab-ci.yml * rbac4 - basic op tests * rbac5 - clear expired and deleted permission linked auths * rbac6 - more tests * rbac7 - more tests * rbac8 - more tests * rbac9 - wallet and db api changes * rbac10 - db api changes for required signature fetch * rbac11 - add db_api tests * rbac12 - add missing code for key auths Co-authored-by: satyakoneru <15652887+satyakoneru@users.noreply.github.com> Co-authored-by: Roshan Syed <roshan.syed.rs@gmail.com> Co-authored-by: sierra19XX <15652887+sierra19XX@users.noreply.github.com> * Fix nft_get_token_uri returning empty string * Fix nft_mint_evaluator to save token_uri * Fix cli_wallet to properly pass metadata id for nft_create * ppy marketplace 9 - FC_REFLECT offer create op * Add stricter checks to NFTs * Unlisting offers, add result in offer history object * Reverting genesis.json wrong commit * Add non-transferable non-sellable properties to NFTs * Review comments - change variable names, use scoped enums * nft_metadata_update changes * NFT HF checks and op fee addition changes * NFT make revenue_split integer from double * revenue_split condition check allow zero or above Co-authored-by: Srdjan Obucina <obucinac@gmail.com> Co-authored-by: Roshan Syed <roshan.syed.rs@gmail.com> Co-authored-by: Satyanarayana Koneru <skoneru@SK-GT.local> Co-authored-by: obucina <11353193+obucina@users.noreply.github.com> Co-authored-by: satyakoneru <15652887+satyakoneru@users.noreply.github.com>
57 lines
No EOL
1.6 KiB
C++
57 lines
No EOL
1.6 KiB
C++
#include <graphene/chain/protocol/offer.hpp>
|
|
#include <fc/io/raw.hpp>
|
|
|
|
namespace graphene
|
|
{
|
|
namespace chain
|
|
{
|
|
share_type offer_operation::calculate_fee(const fee_parameters_type &schedule) const
|
|
{
|
|
return schedule.fee + calculate_data_fee( fc::raw::pack_size(*this), schedule.price_per_kbyte );
|
|
}
|
|
|
|
void offer_operation::validate() const
|
|
{
|
|
FC_ASSERT(item_ids.size() > 0);
|
|
FC_ASSERT(fee.amount >= 0);
|
|
FC_ASSERT(minimum_price.asset_id == maximum_price.asset_id);
|
|
FC_ASSERT(minimum_price.amount >= 0 && maximum_price.amount > 0);
|
|
FC_ASSERT(maximum_price >= minimum_price);
|
|
}
|
|
|
|
share_type bid_operation::calculate_fee(const fee_parameters_type &schedule) const
|
|
{
|
|
share_type core_fee_required = schedule.fee;
|
|
return core_fee_required;
|
|
}
|
|
|
|
void bid_operation::validate() const
|
|
{
|
|
FC_ASSERT(fee.amount.value >= 0);
|
|
FC_ASSERT(bid_price.amount.value >= 0);
|
|
}
|
|
|
|
void cancel_offer_operation::validate() const
|
|
{
|
|
FC_ASSERT(fee.amount.value >= 0);
|
|
}
|
|
|
|
share_type cancel_offer_operation::calculate_fee(const fee_parameters_type &schedule) const
|
|
{
|
|
share_type core_fee_required = schedule.fee;
|
|
return core_fee_required;
|
|
}
|
|
|
|
void finalize_offer_operation::validate() const
|
|
{
|
|
FC_ASSERT(fee.amount.value >= 0);
|
|
}
|
|
|
|
share_type finalize_offer_operation::calculate_fee(const fee_parameters_type &schedule) const
|
|
{
|
|
share_type core_fee_required = schedule.fee;
|
|
return core_fee_required;
|
|
}
|
|
|
|
} // namespace chain
|
|
} // namespace graphene
|