2015-06-08 15:50:35 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2015, Cryptonomex, Inc.
|
|
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* This source code is provided for evaluation in private test networks only, until September 8, 2015. After this date, this license expires and
|
|
|
|
|
* the code may not be used, modified or distributed for any purpose. Redistribution and use in source and binary forms, with or without modification,
|
|
|
|
|
* are permitted until September 8, 2015, provided that the following conditions are met:
|
|
|
|
|
*
|
|
|
|
|
* 1. The code and/or derivative works are used only for private test networks consisting of no more than 10 P2P nodes.
|
|
|
|
|
*
|
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
|
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
|
|
|
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
|
|
|
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
|
|
|
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
*/
|
|
|
|
|
#include <graphene/chain/asset_evaluator.hpp>
|
|
|
|
|
#include <graphene/chain/asset_object.hpp>
|
|
|
|
|
#include <graphene/chain/account_object.hpp>
|
2015-07-08 20:39:23 +00:00
|
|
|
#include <graphene/chain/market_evaluator.hpp>
|
2015-06-08 15:50:35 +00:00
|
|
|
#include <graphene/chain/database.hpp>
|
2015-07-07 21:39:38 +00:00
|
|
|
#include <graphene/chain/exceptions.hpp>
|
2015-10-08 18:59:43 +00:00
|
|
|
#include <graphene/chain/hardfork.hpp>
|
2015-06-08 15:50:35 +00:00
|
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
|
|
|
|
|
|
namespace graphene { namespace chain {
|
2015-10-08 18:59:43 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Valid symbols can contain [A-Z0-9], and '.'
|
|
|
|
|
* They must start with [A, Z]
|
|
|
|
|
* They must end with [A, Z]
|
|
|
|
|
* They can contain a maximum of one '.'
|
|
|
|
|
*/
|
|
|
|
|
bool is_valid_symbol_old( const string& symbol )
|
|
|
|
|
{
|
|
|
|
|
if( symbol.size() < GRAPHENE_MIN_ASSET_SYMBOL_LENGTH )
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
if( symbol.size() > GRAPHENE_MAX_ASSET_SYMBOL_LENGTH )
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
if( !isalpha( symbol.front() ) )
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
if( !isalpha( symbol.back() ) )
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
bool dot_already_present = false;
|
|
|
|
|
for( const auto c : symbol )
|
|
|
|
|
{
|
|
|
|
|
if( (isalpha( c ) || isdigit(c)) && isupper( c ) )
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
if( c == '.' )
|
|
|
|
|
{
|
|
|
|
|
if( dot_already_present )
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
dot_already_present = true;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-23 21:33:06 +00:00
|
|
|
void_result asset_create_evaluator::do_evaluate( const asset_create_operation& op )
|
2015-06-08 15:50:35 +00:00
|
|
|
{ try {
|
2015-10-08 18:59:43 +00:00
|
|
|
|
2015-06-08 15:50:35 +00:00
|
|
|
database& d = db();
|
|
|
|
|
|
2015-10-08 20:20:33 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
|
# pragma message ("WARNING:HARDFORK remove this check after HARDFORK_359_TIME and rename is_valid_symbol_old -> is_valid_symbol")
|
|
|
|
|
#else
|
|
|
|
|
# warning HARDFORK remove this check after HARDFORK_359_TIME and rename is_valid_symbol_old -> is_valid_symbol
|
|
|
|
|
#endif
|
2015-10-08 18:59:43 +00:00
|
|
|
if( d.head_block_time() <= HARDFORK_359_TIME )
|
|
|
|
|
{
|
|
|
|
|
FC_ASSERT( is_valid_symbol_old( op.symbol ) );
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-08 15:50:35 +00:00
|
|
|
const auto& chain_parameters = d.get_global_properties().parameters;
|
|
|
|
|
FC_ASSERT( op.common_options.whitelist_authorities.size() <= chain_parameters.maximum_asset_whitelist_authorities );
|
|
|
|
|
FC_ASSERT( op.common_options.blacklist_authorities.size() <= chain_parameters.maximum_asset_whitelist_authorities );
|
|
|
|
|
|
|
|
|
|
// Check that all authorities do exist
|
|
|
|
|
for( auto id : op.common_options.whitelist_authorities )
|
|
|
|
|
d.get_object(id);
|
|
|
|
|
for( auto id : op.common_options.blacklist_authorities )
|
|
|
|
|
d.get_object(id);
|
|
|
|
|
|
|
|
|
|
auto& asset_indx = db().get_index_type<asset_index>().indices().get<by_symbol>();
|
|
|
|
|
auto asset_symbol_itr = asset_indx.find( op.symbol );
|
|
|
|
|
FC_ASSERT( asset_symbol_itr == asset_indx.end() );
|
|
|
|
|
|
2015-07-08 20:39:23 +00:00
|
|
|
core_fee_paid -= core_fee_paid.value/2;
|
2015-06-08 15:50:35 +00:00
|
|
|
|
2015-07-09 17:50:47 +00:00
|
|
|
if( op.bitasset_opts )
|
2015-06-08 15:50:35 +00:00
|
|
|
{
|
2015-07-09 17:50:47 +00:00
|
|
|
const asset_object& backing = op.bitasset_opts->short_backing_asset(d);
|
2015-06-08 15:50:35 +00:00
|
|
|
if( backing.is_market_issued() )
|
|
|
|
|
{
|
|
|
|
|
const asset_bitasset_data_object& backing_bitasset_data = backing.bitasset_data(d);
|
|
|
|
|
const asset_object& backing_backing = backing_bitasset_data.options.short_backing_asset(d);
|
|
|
|
|
FC_ASSERT( !backing_backing.is_market_issued(),
|
|
|
|
|
"May not create a bitasset backed by a bitasset backed by a bitasset." );
|
2015-06-26 19:11:41 +00:00
|
|
|
FC_ASSERT( op.issuer != GRAPHENE_COMMITTEE_ACCOUNT || backing_backing.get_id() == asset_id_type(),
|
|
|
|
|
"May not create a blockchain-controlled market asset which is not backed by CORE.");
|
|
|
|
|
} else
|
|
|
|
|
FC_ASSERT( op.issuer != GRAPHENE_COMMITTEE_ACCOUNT || backing.get_id() == asset_id_type(),
|
|
|
|
|
"May not create a blockchain-controlled market asset which is not backed by CORE.");
|
2015-07-09 17:50:47 +00:00
|
|
|
FC_ASSERT( op.bitasset_opts->feed_lifetime_sec > chain_parameters.block_interval &&
|
|
|
|
|
op.bitasset_opts->force_settlement_delay_sec > chain_parameters.block_interval );
|
2015-06-08 15:50:35 +00:00
|
|
|
}
|
2015-06-26 14:42:40 +00:00
|
|
|
if( op.is_prediction_market )
|
2015-06-25 18:46:53 +00:00
|
|
|
{
|
2015-07-09 17:50:47 +00:00
|
|
|
FC_ASSERT( op.bitasset_opts );
|
|
|
|
|
FC_ASSERT( op.precision == op.bitasset_opts->short_backing_asset(d).precision );
|
2015-06-25 18:46:53 +00:00
|
|
|
}
|
2015-06-08 15:50:35 +00:00
|
|
|
|
2015-06-23 21:33:06 +00:00
|
|
|
return void_result();
|
2015-06-08 15:50:35 +00:00
|
|
|
} FC_CAPTURE_AND_RETHROW( (op) ) }
|
|
|
|
|
|
|
|
|
|
object_id_type asset_create_evaluator::do_apply( const asset_create_operation& op )
|
2015-06-23 21:33:06 +00:00
|
|
|
{ try {
|
2015-06-08 15:50:35 +00:00
|
|
|
const asset_dynamic_data_object& dyn_asset =
|
|
|
|
|
db().create<asset_dynamic_data_object>( [&]( asset_dynamic_data_object& a ) {
|
|
|
|
|
a.current_supply = 0;
|
2015-07-08 20:39:23 +00:00
|
|
|
a.fee_pool = core_fee_paid; //op.calculate_fee(db().current_fee_schedule()).value / 2;
|
2015-06-08 15:50:35 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
asset_bitasset_data_id_type bit_asset_id;
|
2015-07-09 17:50:47 +00:00
|
|
|
if( op.bitasset_opts.valid() )
|
2015-06-08 15:50:35 +00:00
|
|
|
bit_asset_id = db().create<asset_bitasset_data_object>( [&]( asset_bitasset_data_object& a ) {
|
2015-07-09 17:50:47 +00:00
|
|
|
a.options = *op.bitasset_opts;
|
2015-06-08 15:50:35 +00:00
|
|
|
a.is_prediction_market = op.is_prediction_market;
|
|
|
|
|
}).id;
|
|
|
|
|
|
|
|
|
|
auto next_asset_id = db().get_index_type<asset_index>().get_next_id();
|
|
|
|
|
|
|
|
|
|
const asset_object& new_asset =
|
|
|
|
|
db().create<asset_object>( [&]( asset_object& a ) {
|
|
|
|
|
a.issuer = op.issuer;
|
|
|
|
|
a.symbol = op.symbol;
|
|
|
|
|
a.precision = op.precision;
|
|
|
|
|
a.options = op.common_options;
|
|
|
|
|
if( a.options.core_exchange_rate.base.asset_id.instance.value == 0 )
|
|
|
|
|
a.options.core_exchange_rate.quote.asset_id = next_asset_id;
|
|
|
|
|
else
|
|
|
|
|
a.options.core_exchange_rate.base.asset_id = next_asset_id;
|
|
|
|
|
a.dynamic_asset_data_id = dyn_asset.id;
|
2015-07-09 17:50:47 +00:00
|
|
|
if( op.bitasset_opts.valid() )
|
2015-06-08 15:50:35 +00:00
|
|
|
a.bitasset_data_id = bit_asset_id;
|
|
|
|
|
});
|
|
|
|
|
assert( new_asset.id == next_asset_id );
|
|
|
|
|
|
2015-06-23 21:33:06 +00:00
|
|
|
return new_asset.id;
|
|
|
|
|
} FC_CAPTURE_AND_RETHROW( (op) ) }
|
2015-06-08 15:50:35 +00:00
|
|
|
|
2015-06-09 20:53:14 +00:00
|
|
|
void_result asset_issue_evaluator::do_evaluate( const asset_issue_operation& o )
|
2015-06-08 15:50:35 +00:00
|
|
|
{ try {
|
|
|
|
|
database& d = db();
|
|
|
|
|
|
|
|
|
|
const asset_object& a = o.asset_to_issue.asset_id(d);
|
|
|
|
|
FC_ASSERT( o.issuer == a.issuer );
|
|
|
|
|
FC_ASSERT( !a.is_market_issued(), "Cannot manually issue a market-issued asset." );
|
|
|
|
|
|
|
|
|
|
to_account = &o.issue_to_account(d);
|
|
|
|
|
|
|
|
|
|
if( a.options.flags & white_list )
|
|
|
|
|
{
|
|
|
|
|
FC_ASSERT( to_account->is_authorized_asset( a ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
asset_dyn_data = &a.dynamic_asset_data_id(d);
|
|
|
|
|
FC_ASSERT( (asset_dyn_data->current_supply + o.asset_to_issue.amount) <= a.options.max_supply );
|
|
|
|
|
|
2015-06-09 20:53:14 +00:00
|
|
|
return void_result();
|
2015-06-08 15:50:35 +00:00
|
|
|
} FC_CAPTURE_AND_RETHROW( (o) ) }
|
|
|
|
|
|
2015-06-09 20:53:14 +00:00
|
|
|
void_result asset_issue_evaluator::do_apply( const asset_issue_operation& o )
|
2015-06-23 21:33:06 +00:00
|
|
|
{ try {
|
2015-06-08 15:50:35 +00:00
|
|
|
db().adjust_balance( o.issue_to_account, o.asset_to_issue );
|
|
|
|
|
|
|
|
|
|
db().modify( *asset_dyn_data, [&]( asset_dynamic_data_object& data ){
|
|
|
|
|
data.current_supply += o.asset_to_issue.amount;
|
|
|
|
|
});
|
|
|
|
|
|
2015-06-09 20:53:14 +00:00
|
|
|
return void_result();
|
2015-06-23 21:33:06 +00:00
|
|
|
} FC_CAPTURE_AND_RETHROW( (o) ) }
|
2015-06-08 15:50:35 +00:00
|
|
|
|
2015-07-01 18:43:17 +00:00
|
|
|
void_result asset_reserve_evaluator::do_evaluate( const asset_reserve_operation& o )
|
2015-06-08 15:50:35 +00:00
|
|
|
{ try {
|
|
|
|
|
database& d = db();
|
|
|
|
|
|
2015-07-01 18:43:17 +00:00
|
|
|
const asset_object& a = o.amount_to_reserve.asset_id(d);
|
2015-07-17 19:13:17 +00:00
|
|
|
GRAPHENE_ASSERT(
|
|
|
|
|
!a.is_market_issued(),
|
|
|
|
|
asset_reserve_invalid_on_mia,
|
|
|
|
|
"Cannot reserve ${sym} because it is a market-issued asset",
|
|
|
|
|
("sym", a.symbol)
|
|
|
|
|
);
|
2015-06-08 15:50:35 +00:00
|
|
|
|
|
|
|
|
from_account = &o.payer(d);
|
|
|
|
|
|
|
|
|
|
if( a.options.flags & white_list )
|
|
|
|
|
{
|
|
|
|
|
FC_ASSERT( from_account->is_authorized_asset( a ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
asset_dyn_data = &a.dynamic_asset_data_id(d);
|
2015-07-01 18:43:17 +00:00
|
|
|
FC_ASSERT( (asset_dyn_data->current_supply - o.amount_to_reserve.amount) >= 0 );
|
2015-06-08 15:50:35 +00:00
|
|
|
|
2015-06-09 20:53:14 +00:00
|
|
|
return void_result();
|
2015-06-08 15:50:35 +00:00
|
|
|
} FC_CAPTURE_AND_RETHROW( (o) ) }
|
|
|
|
|
|
2015-07-01 18:43:17 +00:00
|
|
|
void_result asset_reserve_evaluator::do_apply( const asset_reserve_operation& o )
|
2015-06-23 21:33:06 +00:00
|
|
|
{ try {
|
2015-07-01 18:43:17 +00:00
|
|
|
db().adjust_balance( o.payer, -o.amount_to_reserve );
|
2015-06-08 15:50:35 +00:00
|
|
|
|
|
|
|
|
db().modify( *asset_dyn_data, [&]( asset_dynamic_data_object& data ){
|
2015-07-01 18:43:17 +00:00
|
|
|
data.current_supply -= o.amount_to_reserve.amount;
|
2015-06-08 15:50:35 +00:00
|
|
|
});
|
|
|
|
|
|
2015-06-09 20:53:14 +00:00
|
|
|
return void_result();
|
2015-06-23 21:33:06 +00:00
|
|
|
} FC_CAPTURE_AND_RETHROW( (o) ) }
|
2015-06-08 15:50:35 +00:00
|
|
|
|
2015-06-09 20:53:14 +00:00
|
|
|
void_result asset_fund_fee_pool_evaluator::do_evaluate(const asset_fund_fee_pool_operation& o)
|
2015-06-08 15:50:35 +00:00
|
|
|
{ try {
|
|
|
|
|
database& d = db();
|
|
|
|
|
|
|
|
|
|
const asset_object& a = o.asset_id(d);
|
|
|
|
|
|
|
|
|
|
asset_dyn_data = &a.dynamic_asset_data_id(d);
|
|
|
|
|
|
2015-06-09 20:53:14 +00:00
|
|
|
return void_result();
|
2015-06-08 15:50:35 +00:00
|
|
|
} FC_CAPTURE_AND_RETHROW( (o) ) }
|
|
|
|
|
|
2015-06-09 20:53:14 +00:00
|
|
|
void_result asset_fund_fee_pool_evaluator::do_apply(const asset_fund_fee_pool_operation& o)
|
2015-06-23 21:33:06 +00:00
|
|
|
{ try {
|
2015-06-08 15:50:35 +00:00
|
|
|
db().adjust_balance(o.from_account, -o.amount);
|
|
|
|
|
|
|
|
|
|
db().modify( *asset_dyn_data, [&]( asset_dynamic_data_object& data ) {
|
|
|
|
|
data.fee_pool += o.amount;
|
|
|
|
|
});
|
|
|
|
|
|
2015-06-09 20:53:14 +00:00
|
|
|
return void_result();
|
2015-06-23 21:33:06 +00:00
|
|
|
} FC_CAPTURE_AND_RETHROW( (o) ) }
|
2015-06-08 15:50:35 +00:00
|
|
|
|
2015-06-09 20:53:14 +00:00
|
|
|
void_result asset_update_evaluator::do_evaluate(const asset_update_operation& o)
|
2015-06-08 15:50:35 +00:00
|
|
|
{ try {
|
|
|
|
|
database& d = db();
|
|
|
|
|
|
|
|
|
|
const asset_object& a = o.asset_to_update(d);
|
|
|
|
|
auto a_copy = a;
|
|
|
|
|
a_copy.options = o.new_options;
|
|
|
|
|
a_copy.validate();
|
|
|
|
|
|
2015-06-26 19:11:41 +00:00
|
|
|
if( o.new_issuer )
|
|
|
|
|
{
|
|
|
|
|
FC_ASSERT(d.find_object(*o.new_issuer));
|
|
|
|
|
if( a.is_market_issued() && *o.new_issuer == GRAPHENE_COMMITTEE_ACCOUNT )
|
|
|
|
|
{
|
|
|
|
|
const asset_object& backing = a.bitasset_data(d).options.short_backing_asset(d);
|
|
|
|
|
if( backing.is_market_issued() )
|
|
|
|
|
{
|
|
|
|
|
const asset_object& backing_backing = backing.bitasset_data(d).options.short_backing_asset(d);
|
|
|
|
|
FC_ASSERT( backing_backing.get_id() == asset_id_type(),
|
|
|
|
|
"May not create a blockchain-controlled market asset which is not backed by CORE.");
|
|
|
|
|
} else
|
|
|
|
|
FC_ASSERT( backing.get_id() == asset_id_type(),
|
|
|
|
|
"May not create a blockchain-controlled market asset which is not backed by CORE.");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-21 19:44:08 +00:00
|
|
|
// new issuer_permissions must be subset of old issuer permissions
|
2015-06-08 15:50:35 +00:00
|
|
|
FC_ASSERT(!(o.new_options.issuer_permissions & ~a.options.issuer_permissions),
|
|
|
|
|
"Cannot reinstate previously revoked issuer permissions on an asset.");
|
|
|
|
|
|
2015-07-21 19:44:08 +00:00
|
|
|
// changed flags must be subset of old issuer permissions
|
|
|
|
|
FC_ASSERT(!((o.new_options.flags ^ a.options.flags) & ~a.options.issuer_permissions),
|
|
|
|
|
"Flag change is forbidden by issuer permissions");
|
|
|
|
|
|
2015-06-08 15:50:35 +00:00
|
|
|
asset_to_update = &a;
|
|
|
|
|
FC_ASSERT( o.issuer == a.issuer, "", ("o.issuer", o.issuer)("a.issuer", a.issuer) );
|
|
|
|
|
|
|
|
|
|
const auto& chain_parameters = d.get_global_properties().parameters;
|
|
|
|
|
|
|
|
|
|
FC_ASSERT( o.new_options.whitelist_authorities.size() <= chain_parameters.maximum_asset_whitelist_authorities );
|
|
|
|
|
for( auto id : o.new_options.whitelist_authorities )
|
|
|
|
|
d.get_object(id);
|
|
|
|
|
FC_ASSERT( o.new_options.blacklist_authorities.size() <= chain_parameters.maximum_asset_whitelist_authorities );
|
|
|
|
|
for( auto id : o.new_options.blacklist_authorities )
|
|
|
|
|
d.get_object(id);
|
|
|
|
|
|
2015-06-09 20:53:14 +00:00
|
|
|
return void_result();
|
2015-06-08 15:50:35 +00:00
|
|
|
} FC_CAPTURE_AND_RETHROW((o)) }
|
|
|
|
|
|
2015-06-09 20:53:14 +00:00
|
|
|
void_result asset_update_evaluator::do_apply(const asset_update_operation& o)
|
2015-06-23 21:33:06 +00:00
|
|
|
{ try {
|
2015-06-08 15:50:35 +00:00
|
|
|
database& d = db();
|
|
|
|
|
|
|
|
|
|
// If we are now disabling force settlements, cancel all open force settlement orders
|
|
|
|
|
if( o.new_options.flags & disable_force_settle && asset_to_update->can_force_settle() )
|
|
|
|
|
{
|
|
|
|
|
const auto& idx = d.get_index_type<force_settlement_index>().indices().get<by_expiration>();
|
|
|
|
|
// Funky iteration code because we're removing objects as we go. We have to re-initialize itr every loop instead
|
|
|
|
|
// of simply incrementing it.
|
|
|
|
|
for( auto itr = idx.lower_bound(o.asset_to_update);
|
|
|
|
|
itr != idx.end() && itr->settlement_asset_id() == o.asset_to_update;
|
|
|
|
|
itr = idx.lower_bound(o.asset_to_update) )
|
|
|
|
|
d.cancel_order(*itr);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
d.modify(*asset_to_update, [&](asset_object& a) {
|
|
|
|
|
if( o.new_issuer )
|
|
|
|
|
a.issuer = *o.new_issuer;
|
|
|
|
|
a.options = o.new_options;
|
|
|
|
|
});
|
|
|
|
|
|
2015-06-09 20:53:14 +00:00
|
|
|
return void_result();
|
2015-06-23 21:33:06 +00:00
|
|
|
} FC_CAPTURE_AND_RETHROW( (o) ) }
|
2015-06-08 15:50:35 +00:00
|
|
|
|
2015-06-09 20:53:14 +00:00
|
|
|
void_result asset_update_bitasset_evaluator::do_evaluate(const asset_update_bitasset_operation& o)
|
2015-06-23 21:33:06 +00:00
|
|
|
{ try {
|
2015-06-08 15:50:35 +00:00
|
|
|
database& d = db();
|
|
|
|
|
|
|
|
|
|
const asset_object& a = o.asset_to_update(d);
|
|
|
|
|
|
|
|
|
|
FC_ASSERT(a.is_market_issued(), "Cannot update BitAsset-specific settings on a non-BitAsset.");
|
|
|
|
|
|
|
|
|
|
const asset_bitasset_data_object& b = a.bitasset_data(d);
|
2015-06-19 13:57:23 +00:00
|
|
|
FC_ASSERT( !b.has_settlement(), "Cannot update a bitasset after a settlement has executed" );
|
2015-06-08 15:50:35 +00:00
|
|
|
if( o.new_options.short_backing_asset != b.options.short_backing_asset )
|
|
|
|
|
{
|
|
|
|
|
FC_ASSERT(a.dynamic_asset_data_id(d).current_supply == 0);
|
|
|
|
|
FC_ASSERT(d.find_object(o.new_options.short_backing_asset));
|
2015-06-26 19:11:41 +00:00
|
|
|
|
|
|
|
|
if( a.issuer == GRAPHENE_COMMITTEE_ACCOUNT )
|
|
|
|
|
{
|
|
|
|
|
const asset_object& backing = a.bitasset_data(d).options.short_backing_asset(d);
|
|
|
|
|
if( backing.is_market_issued() )
|
|
|
|
|
{
|
|
|
|
|
const asset_object& backing_backing = backing.bitasset_data(d).options.short_backing_asset(d);
|
|
|
|
|
FC_ASSERT( backing_backing.get_id() == asset_id_type(),
|
|
|
|
|
"May not create a blockchain-controlled market asset which is not backed by CORE.");
|
|
|
|
|
} else
|
|
|
|
|
FC_ASSERT( backing.get_id() == asset_id_type(),
|
|
|
|
|
"May not create a blockchain-controlled market asset which is not backed by CORE.");
|
|
|
|
|
}
|
2015-06-08 15:50:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bitasset_to_update = &b;
|
|
|
|
|
FC_ASSERT( o.issuer == a.issuer, "", ("o.issuer", o.issuer)("a.issuer", a.issuer) );
|
|
|
|
|
|
2015-06-09 20:53:14 +00:00
|
|
|
return void_result();
|
2015-06-23 21:33:06 +00:00
|
|
|
} FC_CAPTURE_AND_RETHROW( (o) ) }
|
2015-06-08 15:50:35 +00:00
|
|
|
|
2015-06-09 20:53:14 +00:00
|
|
|
void_result asset_update_bitasset_evaluator::do_apply(const asset_update_bitasset_operation& o)
|
2015-06-23 21:33:06 +00:00
|
|
|
{ try {
|
2015-06-30 15:59:53 +00:00
|
|
|
bool should_update_feeds = false;
|
|
|
|
|
// If the minimum number of feeds to calculate a median has changed, we need to recalculate the median
|
|
|
|
|
if( o.new_options.minimum_feeds != bitasset_to_update->options.minimum_feeds )
|
|
|
|
|
should_update_feeds = true;
|
|
|
|
|
|
|
|
|
|
db().modify(*bitasset_to_update, [&](asset_bitasset_data_object& b) {
|
2015-06-08 15:50:35 +00:00
|
|
|
b.options = o.new_options;
|
2015-06-30 15:59:53 +00:00
|
|
|
|
|
|
|
|
if( should_update_feeds )
|
|
|
|
|
b.update_median_feeds(db().head_block_time());
|
2015-06-08 15:50:35 +00:00
|
|
|
});
|
|
|
|
|
|
2015-06-09 20:53:14 +00:00
|
|
|
return void_result();
|
2015-06-23 21:33:06 +00:00
|
|
|
} FC_CAPTURE_AND_RETHROW( (o) ) }
|
2015-06-08 15:50:35 +00:00
|
|
|
|
2015-06-09 20:53:14 +00:00
|
|
|
void_result asset_update_feed_producers_evaluator::do_evaluate(const asset_update_feed_producers_evaluator::operation_type& o)
|
2015-06-23 21:33:06 +00:00
|
|
|
{ try {
|
2015-06-08 15:50:35 +00:00
|
|
|
database& d = db();
|
|
|
|
|
|
|
|
|
|
FC_ASSERT( o.new_feed_producers.size() <= d.get_global_properties().parameters.maximum_asset_feed_publishers );
|
|
|
|
|
for( auto id : o.new_feed_producers )
|
|
|
|
|
d.get_object(id);
|
|
|
|
|
|
|
|
|
|
const asset_object& a = o.asset_to_update(d);
|
|
|
|
|
|
|
|
|
|
FC_ASSERT(a.is_market_issued(), "Cannot update feed producers on a non-BitAsset.");
|
2015-10-09 15:07:10 +00:00
|
|
|
FC_ASSERT(!(a.options.flags & committee_fed_asset), "Cannot set feed producers on a committee-fed asset.");
|
|
|
|
|
FC_ASSERT(!(a.options.flags & witness_fed_asset), "Cannot set feed producers on a witness-fed asset.");
|
2015-06-08 15:50:35 +00:00
|
|
|
|
|
|
|
|
const asset_bitasset_data_object& b = a.bitasset_data(d);
|
|
|
|
|
bitasset_to_update = &b;
|
|
|
|
|
FC_ASSERT( a.issuer == o.issuer );
|
2015-06-09 20:53:14 +00:00
|
|
|
return void_result();
|
2015-06-23 21:33:06 +00:00
|
|
|
} FC_CAPTURE_AND_RETHROW( (o) ) }
|
2015-06-08 15:50:35 +00:00
|
|
|
|
2015-06-09 20:53:14 +00:00
|
|
|
void_result asset_update_feed_producers_evaluator::do_apply(const asset_update_feed_producers_evaluator::operation_type& o)
|
2015-06-23 21:33:06 +00:00
|
|
|
{ try {
|
2015-06-08 15:50:35 +00:00
|
|
|
db().modify(*bitasset_to_update, [&](asset_bitasset_data_object& a) {
|
|
|
|
|
//This is tricky because I have a set of publishers coming in, but a map of publisher to feed is stored.
|
|
|
|
|
//I need to update the map such that the keys match the new publishers, but not munge the old price feeds from
|
|
|
|
|
//publishers who are being kept.
|
|
|
|
|
//First, remove any old publishers who are no longer publishers
|
|
|
|
|
for( auto itr = a.feeds.begin(); itr != a.feeds.end(); )
|
|
|
|
|
{
|
|
|
|
|
if( !o.new_feed_producers.count(itr->first) )
|
|
|
|
|
itr = a.feeds.erase(itr);
|
|
|
|
|
else
|
|
|
|
|
++itr;
|
|
|
|
|
}
|
|
|
|
|
//Now, add any new publishers
|
|
|
|
|
for( auto itr = o.new_feed_producers.begin(); itr != o.new_feed_producers.end(); ++itr )
|
|
|
|
|
if( !a.feeds.count(*itr) )
|
|
|
|
|
a.feeds[*itr];
|
|
|
|
|
a.update_median_feeds(db().head_block_time());
|
|
|
|
|
});
|
2015-06-25 18:33:46 +00:00
|
|
|
db().check_call_orders( o.asset_to_update(db()) );
|
2015-06-18 22:42:44 +00:00
|
|
|
|
2015-06-09 20:53:14 +00:00
|
|
|
return void_result();
|
2015-06-23 21:33:06 +00:00
|
|
|
} FC_CAPTURE_AND_RETHROW( (o) ) }
|
2015-06-08 15:50:35 +00:00
|
|
|
|
2015-06-09 20:53:14 +00:00
|
|
|
void_result asset_global_settle_evaluator::do_evaluate(const asset_global_settle_evaluator::operation_type& op)
|
2015-06-23 21:33:06 +00:00
|
|
|
{ try {
|
2015-06-08 15:50:35 +00:00
|
|
|
const database& d = db();
|
|
|
|
|
asset_to_settle = &op.asset_to_settle(d);
|
|
|
|
|
FC_ASSERT(asset_to_settle->is_market_issued());
|
|
|
|
|
FC_ASSERT(asset_to_settle->can_global_settle());
|
|
|
|
|
FC_ASSERT(asset_to_settle->issuer == op.issuer );
|
|
|
|
|
FC_ASSERT(asset_to_settle->dynamic_data(d).current_supply > 0);
|
|
|
|
|
const auto& idx = d.get_index_type<call_order_index>().indices().get<by_collateral>();
|
|
|
|
|
assert( !idx.empty() );
|
|
|
|
|
auto itr = idx.lower_bound(boost::make_tuple(price::min(asset_to_settle->bitasset_data(d).options.short_backing_asset,
|
|
|
|
|
op.asset_to_settle)));
|
|
|
|
|
assert( itr != idx.end() && itr->debt_type() == op.asset_to_settle );
|
|
|
|
|
const call_order_object& least_collateralized_short = *itr;
|
|
|
|
|
FC_ASSERT(least_collateralized_short.get_debt() * op.settle_price <= least_collateralized_short.get_collateral(),
|
|
|
|
|
"Cannot force settle at supplied price: least collateralized short lacks sufficient collateral to settle.");
|
|
|
|
|
|
2015-06-09 20:53:14 +00:00
|
|
|
return void_result();
|
2015-06-23 21:33:06 +00:00
|
|
|
} FC_CAPTURE_AND_RETHROW( (op) ) }
|
2015-06-08 15:50:35 +00:00
|
|
|
|
2015-06-09 20:53:14 +00:00
|
|
|
void_result asset_global_settle_evaluator::do_apply(const asset_global_settle_evaluator::operation_type& op)
|
2015-06-23 21:33:06 +00:00
|
|
|
{ try {
|
2015-06-08 15:50:35 +00:00
|
|
|
database& d = db();
|
|
|
|
|
d.globally_settle_asset( op.asset_to_settle(db()), op.settle_price );
|
2015-06-09 20:53:14 +00:00
|
|
|
return void_result();
|
2015-06-23 21:33:06 +00:00
|
|
|
} FC_CAPTURE_AND_RETHROW( (op) ) }
|
2015-06-08 15:50:35 +00:00
|
|
|
|
2015-06-23 21:33:06 +00:00
|
|
|
void_result asset_settle_evaluator::do_evaluate(const asset_settle_evaluator::operation_type& op)
|
|
|
|
|
{ try {
|
2015-06-08 15:50:35 +00:00
|
|
|
const database& d = db();
|
|
|
|
|
asset_to_settle = &op.amount.asset_id(d);
|
|
|
|
|
FC_ASSERT(asset_to_settle->is_market_issued());
|
2015-06-19 13:57:23 +00:00
|
|
|
const auto& bitasset = asset_to_settle->bitasset_data(d);
|
|
|
|
|
FC_ASSERT(asset_to_settle->can_force_settle() || bitasset.has_settlement() );
|
2015-06-23 21:33:06 +00:00
|
|
|
if( bitasset.is_prediction_market )
|
2015-06-19 19:57:08 +00:00
|
|
|
FC_ASSERT( bitasset.has_settlement(), "global settlement must occur before force settling a prediction market" );
|
2015-07-07 21:39:38 +00:00
|
|
|
else if( bitasset.current_feed.settlement_price.is_null() )
|
|
|
|
|
FC_THROW_EXCEPTION(insufficient_feeds, "Cannot force settle with no price feed.");
|
2015-06-08 15:50:35 +00:00
|
|
|
FC_ASSERT(d.get_balance(d.get(op.account), *asset_to_settle) >= op.amount);
|
|
|
|
|
|
2015-06-23 21:33:06 +00:00
|
|
|
return void_result();
|
|
|
|
|
} FC_CAPTURE_AND_RETHROW( (op) ) }
|
2015-06-08 15:50:35 +00:00
|
|
|
|
2015-06-19 13:57:23 +00:00
|
|
|
operation_result asset_settle_evaluator::do_apply(const asset_settle_evaluator::operation_type& op)
|
2015-06-23 21:33:06 +00:00
|
|
|
{ try {
|
2015-06-08 15:50:35 +00:00
|
|
|
database& d = db();
|
|
|
|
|
d.adjust_balance(op.account, -op.amount);
|
2015-06-19 13:57:23 +00:00
|
|
|
|
|
|
|
|
const auto& bitasset = asset_to_settle->bitasset_data(d);
|
|
|
|
|
if( bitasset.has_settlement() )
|
|
|
|
|
{
|
|
|
|
|
auto settled_amount = op.amount * bitasset.settlement_price;
|
|
|
|
|
FC_ASSERT( settled_amount.amount <= bitasset.settlement_fund );
|
|
|
|
|
|
|
|
|
|
d.modify( bitasset, [&]( asset_bitasset_data_object& obj ){
|
|
|
|
|
obj.settlement_fund -= settled_amount.amount;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
d.adjust_balance(op.account, settled_amount);
|
|
|
|
|
|
2015-06-19 18:47:42 +00:00
|
|
|
const auto& mia_dyn = asset_to_settle->dynamic_asset_data_id(d);
|
|
|
|
|
|
|
|
|
|
d.modify( mia_dyn, [&]( asset_dynamic_data_object& obj ){
|
|
|
|
|
obj.current_supply -= op.amount.amount;
|
|
|
|
|
});
|
|
|
|
|
|
2015-06-19 13:57:23 +00:00
|
|
|
return settled_amount;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return d.create<force_settlement_object>([&](force_settlement_object& s) {
|
|
|
|
|
s.owner = op.account;
|
|
|
|
|
s.balance = op.amount;
|
|
|
|
|
s.settlement_date = d.head_block_time() + asset_to_settle->bitasset_data(d).options.force_settlement_delay_sec;
|
|
|
|
|
}).id;
|
|
|
|
|
}
|
2015-06-23 21:33:06 +00:00
|
|
|
} FC_CAPTURE_AND_RETHROW( (op) ) }
|
2015-06-08 15:50:35 +00:00
|
|
|
|
2015-06-09 20:53:14 +00:00
|
|
|
void_result asset_publish_feeds_evaluator::do_evaluate(const asset_publish_feed_operation& o)
|
2015-06-08 15:50:35 +00:00
|
|
|
{ try {
|
|
|
|
|
database& d = db();
|
|
|
|
|
|
2015-06-18 19:17:48 +00:00
|
|
|
const asset_object& base = o.asset_id(d);
|
2015-06-08 15:50:35 +00:00
|
|
|
//Verify that this feed is for a market-issued asset and that asset is backed by the base
|
2015-06-18 19:17:48 +00:00
|
|
|
FC_ASSERT(base.is_market_issued());
|
2015-06-08 15:50:35 +00:00
|
|
|
|
2015-06-18 19:17:48 +00:00
|
|
|
const asset_bitasset_data_object& bitasset = base.bitasset_data(d);
|
2015-06-19 13:57:23 +00:00
|
|
|
FC_ASSERT( !bitasset.has_settlement(), "No further feeds may be published after a settlement event" );
|
2015-10-08 19:00:11 +00:00
|
|
|
|
2015-10-08 20:20:33 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
|
# pragma message ("WARNING: Remove this check when starting a new network")
|
|
|
|
|
#else
|
|
|
|
|
# warning Remove this check when starting a new network
|
|
|
|
|
#endif
|
2015-10-08 19:00:11 +00:00
|
|
|
if( d.head_block_time() <= HARDFORK_357_TIME )
|
|
|
|
|
{
|
|
|
|
|
FC_ASSERT(o.feed.settlement_price.quote.asset_id == bitasset.options.short_backing_asset);
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
// these two changes should go in price_feed::validate() when creating new network
|
|
|
|
|
if( !o.feed.core_exchange_rate.is_null() )
|
|
|
|
|
{
|
|
|
|
|
o.feed.core_exchange_rate.validate();
|
|
|
|
|
}
|
|
|
|
|
if( (!o.feed.settlement_price.is_null()) && (!o.feed.core_exchange_rate.is_null()) )
|
|
|
|
|
{
|
|
|
|
|
if( o.feed.settlement_price.base.asset_id == o.feed.core_exchange_rate.base.asset_id )
|
|
|
|
|
{
|
|
|
|
|
// uncrossed feed, this is the form we expect
|
|
|
|
|
FC_ASSERT( o.feed.settlement_price.base.asset_id == o.feed.core_exchange_rate.base.asset_id );
|
|
|
|
|
FC_ASSERT( o.feed.settlement_price.quote.asset_id == o.feed.core_exchange_rate.quote.asset_id );
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
// crossed feed, your feed script needs to be fixed
|
|
|
|
|
FC_ASSERT( o.feed.settlement_price.base.asset_id == o.feed.core_exchange_rate.quote.asset_id );
|
|
|
|
|
FC_ASSERT( o.feed.settlement_price.quote.asset_id == o.feed.core_exchange_rate.base.asset_id );
|
|
|
|
|
/*
|
|
|
|
|
wlog( "${aname} feed pub with crossed prices by ${name} in block ${n}",
|
|
|
|
|
("aname", base.symbol)
|
|
|
|
|
("n", d.head_block_num()+1)
|
|
|
|
|
("name", o.publisher(d).name)
|
|
|
|
|
);
|
|
|
|
|
*/
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( !o.feed.is_for( o.asset_id ) )
|
|
|
|
|
{
|
|
|
|
|
wlog( "${aname} feed pub with wrong asset by ${name} in block ${n}",
|
|
|
|
|
("aname", base.symbol)
|
|
|
|
|
("n", d.head_block_num()+1)
|
|
|
|
|
("name", o.publisher(d).name)
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch( const fc::exception& e )
|
|
|
|
|
{
|
|
|
|
|
wlog( "${aname} feed pub with invalid price feed by ${name} in block ${n}",
|
|
|
|
|
("aname", base.symbol)
|
|
|
|
|
("n", d.head_block_num()+1)
|
|
|
|
|
("name", o.publisher(d).name)
|
|
|
|
|
);
|
|
|
|
|
wdump( (e) );
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-08 20:20:33 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
|
# pragma message ("WARNING: Remove this check when starting a new network")
|
|
|
|
|
#else
|
|
|
|
|
# warning Remove this check when starting a new network
|
|
|
|
|
#endif
|
2015-10-08 19:00:11 +00:00
|
|
|
if( d.head_block_num() > 59300 )
|
|
|
|
|
{
|
|
|
|
|
FC_ASSERT(
|
|
|
|
|
(base.symbol != "SEK")
|
|
|
|
|
&& (base.symbol != "SILVER")
|
|
|
|
|
&& (base.symbol != "RUB")
|
|
|
|
|
&& (base.symbol != "GBP")
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
//
|
|
|
|
|
// many of these checks should be moved to price_feed.validate()
|
|
|
|
|
// or the operation validator when new network is started
|
|
|
|
|
//
|
|
|
|
|
if( !o.feed.core_exchange_rate.is_null() )
|
|
|
|
|
{
|
|
|
|
|
o.feed.core_exchange_rate.validate();
|
|
|
|
|
}
|
|
|
|
|
if( (!o.feed.settlement_price.is_null()) && (!o.feed.core_exchange_rate.is_null()) )
|
|
|
|
|
{
|
|
|
|
|
FC_ASSERT( o.feed.settlement_price.base.asset_id == o.feed.core_exchange_rate.base.asset_id );
|
|
|
|
|
FC_ASSERT( o.feed.settlement_price.quote.asset_id == o.feed.core_exchange_rate.quote.asset_id );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FC_ASSERT( !o.feed.settlement_price.is_null() );
|
|
|
|
|
FC_ASSERT( !o.feed.core_exchange_rate.is_null() );
|
|
|
|
|
FC_ASSERT( o.feed.settlement_price.quote.asset_id == bitasset.options.short_backing_asset );
|
|
|
|
|
FC_ASSERT( o.feed.is_for( o.asset_id ) );
|
|
|
|
|
}
|
2015-06-08 15:50:35 +00:00
|
|
|
//Verify that the publisher is authoritative to publish a feed
|
2015-10-09 15:07:10 +00:00
|
|
|
if( base.options.flags & witness_fed_asset )
|
2015-09-21 21:02:59 +00:00
|
|
|
{
|
2015-10-09 15:07:10 +00:00
|
|
|
FC_ASSERT( d.get(GRAPHENE_WITNESS_ACCOUNT).active.account_auths.count(o.publisher) );
|
|
|
|
|
}
|
|
|
|
|
else if( base.options.flags & committee_fed_asset )
|
|
|
|
|
{
|
|
|
|
|
FC_ASSERT( d.get(GRAPHENE_COMMITTEE_ACCOUNT).active.account_auths.count(o.publisher) );
|
2015-09-21 21:02:59 +00:00
|
|
|
}
|
|
|
|
|
else
|
2015-06-08 15:50:35 +00:00
|
|
|
{
|
|
|
|
|
FC_ASSERT(bitasset.feeds.count(o.publisher));
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-09 20:53:14 +00:00
|
|
|
return void_result();
|
2015-06-08 15:50:35 +00:00
|
|
|
} FC_CAPTURE_AND_RETHROW((o)) }
|
|
|
|
|
|
2015-06-09 20:53:14 +00:00
|
|
|
void_result asset_publish_feeds_evaluator::do_apply(const asset_publish_feed_operation& o)
|
2015-06-08 15:50:35 +00:00
|
|
|
{ try {
|
2015-10-08 19:00:11 +00:00
|
|
|
|
2015-10-08 20:20:33 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
|
# pragma message ("WARNING: Remove this check when preparing for new network release")
|
|
|
|
|
#else
|
|
|
|
|
# warning Remove this check when preparing for new network release
|
|
|
|
|
#endif
|
2015-10-08 19:00:11 +00:00
|
|
|
if( !o.feed.is_for( o.asset_id ) )
|
|
|
|
|
{
|
|
|
|
|
wlog( "Ignoring bad feed" );
|
|
|
|
|
return void_result();
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-08 15:50:35 +00:00
|
|
|
database& d = db();
|
|
|
|
|
|
2015-06-18 19:17:48 +00:00
|
|
|
const asset_object& base = o.asset_id(d);
|
2015-07-01 22:17:49 +00:00
|
|
|
const asset_bitasset_data_object& bad = base.bitasset_data(d);
|
|
|
|
|
|
|
|
|
|
auto old_feed = bad.current_feed;
|
2015-06-08 15:50:35 +00:00
|
|
|
// Store medians for this asset
|
2015-07-01 22:17:49 +00:00
|
|
|
d.modify(bad , [&o,&d](asset_bitasset_data_object& a) {
|
2015-06-08 15:50:35 +00:00
|
|
|
a.feeds[o.publisher] = make_pair(d.head_block_time(), o.feed);
|
|
|
|
|
a.update_median_feeds(d.head_block_time());
|
|
|
|
|
});
|
|
|
|
|
|
2015-07-01 22:17:49 +00:00
|
|
|
if( !(old_feed == bad.current_feed) )
|
|
|
|
|
db().check_call_orders(base);
|
2015-06-18 22:42:44 +00:00
|
|
|
|
2015-06-09 20:53:14 +00:00
|
|
|
return void_result();
|
2015-06-23 21:33:06 +00:00
|
|
|
} FC_CAPTURE_AND_RETHROW((o)) }
|
2015-06-08 15:50:35 +00:00
|
|
|
|
|
|
|
|
} } // graphene::chain
|