92 lines
3.2 KiB
C++
92 lines
3.2 KiB
C++
#pragma once
|
|
#include <graphene/chain/protocol/base.hpp>
|
|
#include <graphene/chain/protocol/memo.hpp>
|
|
|
|
namespace graphene { namespace chain {
|
|
|
|
/**
|
|
* @ingroup operations
|
|
*
|
|
* @brief Transfers an amount of one asset from one account to another
|
|
*
|
|
* Fees are paid by the "from" account
|
|
*
|
|
* @pre amount.amount > 0
|
|
* @pre fee.amount >= 0
|
|
* @pre from != to
|
|
* @post from account's balance will be reduced by fee and amount
|
|
* @post to account's balance will be increased by amount
|
|
* @return n/a
|
|
*/
|
|
struct transfer_operation : public base_operation
|
|
{
|
|
struct fee_parameters_type {
|
|
uint64_t fee = 20 * GRAPHENE_BLOCKCHAIN_PRECISION;
|
|
uint32_t price_per_kbyte = 10 * GRAPHENE_BLOCKCHAIN_PRECISION; /// only required for large memos.
|
|
};
|
|
|
|
asset fee;
|
|
/// Account to transfer asset from
|
|
account_id_type from;
|
|
/// Account to transfer asset to
|
|
account_id_type to;
|
|
/// The amount of asset to transfer from @ref from to @ref to
|
|
asset amount;
|
|
|
|
/// User provided data encrypted to the memo key of the "to" account
|
|
optional<memo_data> memo;
|
|
extensions_type extensions;
|
|
|
|
account_id_type fee_payer()const { return from; }
|
|
void validate()const;
|
|
share_type calculate_fee(const fee_parameters_type& k)const;
|
|
void get_impacted_accounts( flat_set<account_id_type>& i )const
|
|
{ i.insert(to); }
|
|
};
|
|
|
|
/**
|
|
* @class override_transfer_operation
|
|
* @brief Allows the issuer of an asset to transfer an asset from any account to any account if they have override_authority
|
|
* @ingroup operations
|
|
*
|
|
* @pre amount.asset_id->issuer == issuer
|
|
* @pre issuer != from because this is pointless, use a normal transfer operation
|
|
*/
|
|
struct override_transfer_operation : public base_operation
|
|
{
|
|
struct fee_parameters_type {
|
|
uint64_t fee = 20 * GRAPHENE_BLOCKCHAIN_PRECISION;
|
|
uint32_t price_per_kbyte = 10; /// only required for large memos.
|
|
};
|
|
|
|
asset fee;
|
|
account_id_type issuer;
|
|
/// Account to transfer asset from
|
|
account_id_type from;
|
|
/// Account to transfer asset to
|
|
account_id_type to;
|
|
/// The amount of asset to transfer from @ref from to @ref to
|
|
asset amount;
|
|
|
|
/// User provided data encrypted to the memo key of the "to" account
|
|
optional<memo_data> memo;
|
|
extensions_type extensions;
|
|
|
|
account_id_type fee_payer()const { return issuer; }
|
|
void validate()const;
|
|
share_type calculate_fee(const fee_parameters_type& k)const;
|
|
void get_impacted_accounts( flat_set<account_id_type>& i )const
|
|
{
|
|
i.insert(to);
|
|
i.insert(from);
|
|
i.insert(issuer);
|
|
}
|
|
};
|
|
|
|
}} // graphene::chain
|
|
|
|
FC_REFLECT( graphene::chain::transfer_operation::fee_parameters_type, (fee)(price_per_kbyte) )
|
|
FC_REFLECT( graphene::chain::override_transfer_operation::fee_parameters_type, (fee)(price_per_kbyte) )
|
|
|
|
FC_REFLECT( graphene::chain::override_transfer_operation, (fee)(issuer)(from)(to)(amount)(memo)(extensions) )
|
|
FC_REFLECT( graphene::chain::transfer_operation, (fee)(from)(to)(amount)(memo)(extensions) )
|