Transfers an amount of one asset from one account to another.
struct transfer_operation : public base_operation{struct fee_parameters_type {uint64_t fee = 20 * ECHO_BLOCKCHAIN_PRECISION;};​asset fee;/// Account to transfer asset fromaccount_id_type from;/// Account to transfer asset toaccount_id_type to;/// The amount of asset to transfer from @ref from to @ref toasset amount;​extensions_type extensions;​account_id_type fee_payer()const { return from; }share_type calculate_fee(const fee_parameters_type& k)const;};
​asset​
[0,{"fee": {"amount": 0,"asset_id": "1.3.0"},"from": "1.2.0","to": "1.2.0","amount": {"amount": 0,"asset_id": "1.3.0"},"extensions": []}]
Transfers an amount of one asset from one account to account address.
struct transfer_to_address_operation : public base_operation{struct fee_parameters_type {uint64_t fee = 20 * ECHO_BLOCKCHAIN_PRECISION;};​asset fee;/// Account to transfer asset fromaccount_id_type from;/// Account address to transfer asset tofc::ripemd160 to;/// The amount of asset to transfer from @ref from to @ref toasset amount;​extensions_type extensions;​account_id_type fee_payer()const { return from; }};
​asset​
[1,{"fee": {"amount": 0,"asset_id": "1.3.0"},"from": "1.2.0","to": "0000000000000000000000000000000000000000","amount": {"amount": 0,"asset_id": "1.3.0"},"extensions": []}]
Allows the issuer of an asset to transfer an asset from any account to any account if they have override_authority. See asset_issuer_permission_flags.
struct override_transfer_operation : public base_operation{struct fee_parameters_type {uint64_t fee = 20 * ECHO_BLOCKCHAIN_PRECISION;};​asset fee;account_id_type issuer;/// Account to transfer asset fromaccount_id_type from;/// Account to transfer asset toaccount_id_type to;/// The amount of asset to transfer from @ref from to @ref toasset amount;​extensions_type extensions;​account_id_type fee_payer()const { return issuer; }share_type calculate_fee(const fee_parameters_type& k)const;};
[2,{"fee": {"amount": 0,"asset_id": "1.3.0"},"issuer": "1.2.0","from": "1.2.0","to": "1.2.0","amount": {"amount": 0,"asset_id": "1.3.0"},"extensions": []}]