2015-06-08 15:50:35 +00:00
|
|
|
/*
|
2015-10-12 17:48:40 +00:00
|
|
|
* Copyright (c) 2015 Cryptonomex, Inc., and contributors.
|
|
|
|
|
*
|
2016-01-06 09:51:18 +00:00
|
|
|
* The MIT License
|
2015-10-12 17:48:40 +00:00
|
|
|
*
|
2016-01-06 09:51:18 +00:00
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
* furnished to do so, subject to the following conditions:
|
2015-10-12 17:48:40 +00:00
|
|
|
*
|
2016-01-06 09:51:18 +00:00
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
|
* all copies or substantial portions of the Software.
|
2015-10-12 17:02:59 +00:00
|
|
|
*
|
2016-01-06 09:51:18 +00:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
|
* THE SOFTWARE.
|
2015-06-08 15:50:35 +00:00
|
|
|
*/
|
|
|
|
|
#include <graphene/chain/account_object.hpp>
|
2015-06-15 21:28:20 +00:00
|
|
|
#include <graphene/chain/database.hpp>
|
2019-05-13 22:18:12 +00:00
|
|
|
|
|
|
|
|
#include <fc/io/raw.hpp>
|
2015-06-08 15:50:35 +00:00
|
|
|
#include <fc/uint128.hpp>
|
|
|
|
|
|
|
|
|
|
namespace graphene { namespace chain {
|
|
|
|
|
|
2015-06-15 21:28:20 +00:00
|
|
|
share_type cut_fee(share_type a, uint16_t p)
|
|
|
|
|
{
|
|
|
|
|
if( a == 0 || p == 0 )
|
|
|
|
|
return 0;
|
|
|
|
|
if( p == GRAPHENE_100_PERCENT )
|
|
|
|
|
return a;
|
|
|
|
|
|
2019-05-07 06:27:57 +00:00
|
|
|
fc::uint128_t r = a.value;
|
2015-06-15 21:28:20 +00:00
|
|
|
r *= p;
|
|
|
|
|
r /= GRAPHENE_100_PERCENT;
|
2020-08-21 20:04:37 +00:00
|
|
|
return r;
|
2015-06-15 21:28:20 +00:00
|
|
|
}
|
|
|
|
|
|
2015-06-08 15:50:35 +00:00
|
|
|
void account_balance_object::adjust_balance(const asset& delta)
|
|
|
|
|
{
|
|
|
|
|
assert(delta.asset_id == asset_type);
|
|
|
|
|
balance += delta.amount;
|
2019-11-07 05:55:02 +00:00
|
|
|
if( asset_type == asset_id_type() ) // CORE asset
|
|
|
|
|
maintenance_flag = true;
|
2015-06-08 15:50:35 +00:00
|
|
|
}
|
|
|
|
|
|
2015-06-15 21:28:20 +00:00
|
|
|
void account_statistics_object::process_fees(const account_object& a, database& d) const
|
|
|
|
|
{
|
|
|
|
|
if( pending_fees > 0 || pending_vested_fees > 0 )
|
|
|
|
|
{
|
|
|
|
|
auto pay_out_fees = [&](const account_object& account, share_type core_fee_total, bool require_vesting)
|
|
|
|
|
{
|
2015-06-19 19:58:51 +00:00
|
|
|
// Check the referrer -- if he's no longer a member, pay to the lifetime referrer instead.
|
|
|
|
|
// No need to check the registrar; registrars are required to be lifetime members.
|
2015-06-18 21:05:12 +00:00
|
|
|
if( account.referrer(d).is_basic_account(d.head_block_time()) )
|
2018-07-05 17:52:55 +00:00
|
|
|
d.modify( account, [](account_object& acc) {
|
|
|
|
|
acc.referrer = acc.lifetime_referrer;
|
2015-06-18 21:05:12 +00:00
|
|
|
});
|
|
|
|
|
|
2015-06-15 21:28:20 +00:00
|
|
|
share_type network_cut = cut_fee(core_fee_total, account.network_fee_percentage);
|
|
|
|
|
assert( network_cut <= core_fee_total );
|
2015-06-23 21:41:09 +00:00
|
|
|
|
|
|
|
|
#ifndef NDEBUG
|
2015-09-21 14:52:45 +00:00
|
|
|
const auto& props = d.get_global_properties();
|
|
|
|
|
|
2015-07-01 18:43:17 +00:00
|
|
|
share_type reserveed = cut_fee(network_cut, props.parameters.reserve_percent_of_fee);
|
|
|
|
|
share_type accumulated = network_cut - reserveed;
|
|
|
|
|
assert( accumulated + reserveed == network_cut );
|
2015-06-23 21:41:09 +00:00
|
|
|
#endif
|
2015-06-15 21:28:20 +00:00
|
|
|
share_type lifetime_cut = cut_fee(core_fee_total, account.lifetime_referrer_fee_percentage);
|
|
|
|
|
share_type referral = core_fee_total - network_cut - lifetime_cut;
|
|
|
|
|
|
2018-07-05 17:52:55 +00:00
|
|
|
d.modify( d.get_core_dynamic_data(), [network_cut](asset_dynamic_data_object& addo) {
|
|
|
|
|
addo.accumulated_fees += network_cut;
|
2015-06-15 21:28:20 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// Potential optimization: Skip some of this math and object lookups by special casing on the account type.
|
|
|
|
|
// For example, if the account is a lifetime member, we can skip all this and just deposit the referral to
|
|
|
|
|
// it directly.
|
|
|
|
|
share_type referrer_cut = cut_fee(referral, account.referrer_rewards_percentage);
|
|
|
|
|
share_type registrar_cut = referral - referrer_cut;
|
|
|
|
|
|
|
|
|
|
d.deposit_cashback(d.get(account.lifetime_referrer), lifetime_cut, require_vesting);
|
|
|
|
|
d.deposit_cashback(d.get(account.referrer), referrer_cut, require_vesting);
|
|
|
|
|
d.deposit_cashback(d.get(account.registrar), registrar_cut, require_vesting);
|
|
|
|
|
|
2015-07-01 18:43:17 +00:00
|
|
|
assert( referrer_cut + registrar_cut + accumulated + reserveed + lifetime_cut == core_fee_total );
|
2015-06-15 21:28:20 +00:00
|
|
|
};
|
|
|
|
|
|
2015-10-20 15:16:57 +00:00
|
|
|
pay_out_fees(a, pending_fees, true);
|
|
|
|
|
pay_out_fees(a, pending_vested_fees, false);
|
2015-06-15 21:28:20 +00:00
|
|
|
|
2015-10-20 15:16:57 +00:00
|
|
|
d.modify(*this, [&](account_statistics_object& s) {
|
|
|
|
|
s.lifetime_fees_paid += pending_fees + pending_vested_fees;
|
2015-06-15 21:28:20 +00:00
|
|
|
s.pending_fees = 0;
|
|
|
|
|
s.pending_vested_fees = 0;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-12-03 20:48:52 +00:00
|
|
|
void account_statistics_object::pay_fee( share_type core_fee, share_type cashback_vesting_threshold )
|
|
|
|
|
{
|
|
|
|
|
if( core_fee > cashback_vesting_threshold )
|
|
|
|
|
pending_fees += core_fee;
|
|
|
|
|
else
|
|
|
|
|
pending_vested_fees += core_fee;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-02 05:52:45 +00:00
|
|
|
set<account_id_type> account_member_index::get_account_members(const account_object& a)const
|
2015-06-23 17:33:13 +00:00
|
|
|
{
|
2015-07-02 05:52:45 +00:00
|
|
|
set<account_id_type> result;
|
|
|
|
|
for( auto auth : a.owner.account_auths )
|
2015-06-23 17:33:13 +00:00
|
|
|
result.insert(auth.first);
|
2015-10-27 17:52:23 +00:00
|
|
|
for( auto auth : a.active.account_auths )
|
|
|
|
|
result.insert(auth.first);
|
2015-07-02 05:52:45 +00:00
|
|
|
return result;
|
|
|
|
|
}
|
2019-09-05 13:08:21 +00:00
|
|
|
set<public_key_type, account_member_index::key_compare> account_member_index::get_key_members(const account_object& a)const
|
2015-07-02 05:52:45 +00:00
|
|
|
{
|
2019-09-05 13:08:21 +00:00
|
|
|
set<public_key_type, key_compare> result;
|
2015-07-02 05:52:45 +00:00
|
|
|
for( auto auth : a.owner.key_auths )
|
2015-06-23 17:33:13 +00:00
|
|
|
result.insert(auth.first);
|
2015-10-27 17:52:23 +00:00
|
|
|
for( auto auth : a.active.key_auths )
|
|
|
|
|
result.insert(auth.first);
|
|
|
|
|
result.insert( a.options.memo_key );
|
2015-06-23 17:33:13 +00:00
|
|
|
return result;
|
|
|
|
|
}
|
2015-08-20 19:19:15 +00:00
|
|
|
set<address> account_member_index::get_address_members(const account_object& a)const
|
|
|
|
|
{
|
|
|
|
|
set<address> result;
|
|
|
|
|
for( auto auth : a.owner.address_auths )
|
|
|
|
|
result.insert(auth.first);
|
2015-10-27 17:52:23 +00:00
|
|
|
for( auto auth : a.active.address_auths )
|
|
|
|
|
result.insert(auth.first);
|
|
|
|
|
result.insert( a.options.memo_key );
|
2015-08-20 19:19:15 +00:00
|
|
|
return result;
|
|
|
|
|
}
|
2015-06-23 17:33:13 +00:00
|
|
|
|
2021-12-23 22:03:43 +00:00
|
|
|
void account_member_index::object_loaded(const object& obj)
|
|
|
|
|
{
|
|
|
|
|
object_created(obj);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void account_member_index::object_created(const object& obj)
|
2015-06-23 17:33:13 +00:00
|
|
|
{
|
|
|
|
|
assert( dynamic_cast<const account_object*>(&obj) ); // for debug only
|
|
|
|
|
const account_object& a = static_cast<const account_object&>(obj);
|
|
|
|
|
|
2015-07-02 05:52:45 +00:00
|
|
|
auto account_members = get_account_members(a);
|
|
|
|
|
for( auto item : account_members )
|
|
|
|
|
account_to_account_memberships[item].insert(obj.id);
|
|
|
|
|
|
|
|
|
|
auto key_members = get_key_members(a);
|
|
|
|
|
for( auto item : key_members )
|
|
|
|
|
account_to_key_memberships[item].insert(obj.id);
|
2015-08-20 19:19:15 +00:00
|
|
|
|
|
|
|
|
auto address_members = get_address_members(a);
|
|
|
|
|
for( auto item : address_members )
|
|
|
|
|
account_to_address_memberships[item].insert(obj.id);
|
2015-06-23 17:33:13 +00:00
|
|
|
}
|
|
|
|
|
|
2015-06-23 21:05:35 +00:00
|
|
|
void account_member_index::object_removed(const object& obj)
|
2015-06-23 17:33:13 +00:00
|
|
|
{
|
|
|
|
|
assert( dynamic_cast<const account_object*>(&obj) ); // for debug only
|
|
|
|
|
const account_object& a = static_cast<const account_object&>(obj);
|
|
|
|
|
|
2015-07-02 05:52:45 +00:00
|
|
|
auto key_members = get_key_members(a);
|
|
|
|
|
for( auto item : key_members )
|
|
|
|
|
account_to_key_memberships[item].erase( obj.id );
|
2015-08-20 19:19:15 +00:00
|
|
|
|
|
|
|
|
auto address_members = get_address_members(a);
|
|
|
|
|
for( auto item : address_members )
|
|
|
|
|
account_to_address_memberships[item].erase( obj.id );
|
|
|
|
|
|
2015-07-02 05:52:45 +00:00
|
|
|
auto account_members = get_account_members(a);
|
|
|
|
|
for( auto item : account_members )
|
|
|
|
|
account_to_account_memberships[item].erase( obj.id );
|
2015-06-23 17:33:13 +00:00
|
|
|
}
|
|
|
|
|
|
2015-06-23 21:05:35 +00:00
|
|
|
void account_member_index::about_to_modify(const object& before)
|
2015-06-23 17:33:13 +00:00
|
|
|
{
|
2015-07-02 05:52:45 +00:00
|
|
|
before_key_members.clear();
|
|
|
|
|
before_account_members.clear();
|
2015-06-23 17:33:13 +00:00
|
|
|
assert( dynamic_cast<const account_object*>(&before) ); // for debug only
|
|
|
|
|
const account_object& a = static_cast<const account_object&>(before);
|
2015-07-02 05:52:45 +00:00
|
|
|
before_key_members = get_key_members(a);
|
2015-08-20 19:19:15 +00:00
|
|
|
before_address_members = get_address_members(a);
|
2015-07-02 05:52:45 +00:00
|
|
|
before_account_members = get_account_members(a);
|
2015-06-23 17:33:13 +00:00
|
|
|
}
|
|
|
|
|
|
2015-06-23 21:05:35 +00:00
|
|
|
void account_member_index::object_modified(const object& after)
|
2015-06-23 17:33:13 +00:00
|
|
|
{
|
|
|
|
|
assert( dynamic_cast<const account_object*>(&after) ); // for debug only
|
|
|
|
|
const account_object& a = static_cast<const account_object&>(after);
|
2015-06-23 21:05:35 +00:00
|
|
|
|
2015-07-02 05:52:45 +00:00
|
|
|
{
|
2015-08-20 19:19:15 +00:00
|
|
|
set<account_id_type> after_account_members = get_account_members(a);
|
|
|
|
|
vector<account_id_type> removed; removed.reserve(before_account_members.size());
|
|
|
|
|
std::set_difference(before_account_members.begin(), before_account_members.end(),
|
|
|
|
|
after_account_members.begin(), after_account_members.end(),
|
|
|
|
|
std::inserter(removed, removed.end()));
|
|
|
|
|
|
|
|
|
|
for( auto itr = removed.begin(); itr != removed.end(); ++itr )
|
|
|
|
|
account_to_account_memberships[*itr].erase(after.id);
|
|
|
|
|
|
|
|
|
|
vector<object_id_type> added; added.reserve(after_account_members.size());
|
|
|
|
|
std::set_difference(after_account_members.begin(), after_account_members.end(),
|
|
|
|
|
before_account_members.begin(), before_account_members.end(),
|
|
|
|
|
std::inserter(added, added.end()));
|
|
|
|
|
|
|
|
|
|
for( auto itr = added.begin(); itr != added.end(); ++itr )
|
|
|
|
|
account_to_account_memberships[*itr].insert(after.id);
|
|
|
|
|
}
|
2015-06-23 17:33:13 +00:00
|
|
|
|
2015-06-23 21:05:35 +00:00
|
|
|
|
2015-08-20 19:19:15 +00:00
|
|
|
{
|
2019-09-05 13:08:21 +00:00
|
|
|
set<public_key_type, key_compare> after_key_members = get_key_members(a);
|
2015-06-23 21:05:35 +00:00
|
|
|
|
2015-08-20 19:19:15 +00:00
|
|
|
vector<public_key_type> removed; removed.reserve(before_key_members.size());
|
|
|
|
|
std::set_difference(before_key_members.begin(), before_key_members.end(),
|
|
|
|
|
after_key_members.begin(), after_key_members.end(),
|
|
|
|
|
std::inserter(removed, removed.end()));
|
2015-07-02 05:52:45 +00:00
|
|
|
|
2015-08-20 19:19:15 +00:00
|
|
|
for( auto itr = removed.begin(); itr != removed.end(); ++itr )
|
|
|
|
|
account_to_key_memberships[*itr].erase(after.id);
|
2015-07-02 05:52:45 +00:00
|
|
|
|
2015-08-20 19:19:15 +00:00
|
|
|
vector<public_key_type> added; added.reserve(after_key_members.size());
|
|
|
|
|
std::set_difference(after_key_members.begin(), after_key_members.end(),
|
|
|
|
|
before_key_members.begin(), before_key_members.end(),
|
|
|
|
|
std::inserter(added, added.end()));
|
2015-07-02 05:52:45 +00:00
|
|
|
|
2015-08-20 19:19:15 +00:00
|
|
|
for( auto itr = added.begin(); itr != added.end(); ++itr )
|
|
|
|
|
account_to_key_memberships[*itr].insert(after.id);
|
|
|
|
|
}
|
2015-07-02 05:52:45 +00:00
|
|
|
|
|
|
|
|
{
|
2015-08-20 19:19:15 +00:00
|
|
|
set<address> after_address_members = get_address_members(a);
|
2015-07-02 05:52:45 +00:00
|
|
|
|
2015-08-20 19:19:15 +00:00
|
|
|
vector<address> removed; removed.reserve(before_address_members.size());
|
|
|
|
|
std::set_difference(before_address_members.begin(), before_address_members.end(),
|
|
|
|
|
after_address_members.begin(), after_address_members.end(),
|
|
|
|
|
std::inserter(removed, removed.end()));
|
2015-07-02 05:52:45 +00:00
|
|
|
|
2015-08-20 19:19:15 +00:00
|
|
|
for( auto itr = removed.begin(); itr != removed.end(); ++itr )
|
|
|
|
|
account_to_address_memberships[*itr].erase(after.id);
|
2015-07-02 05:52:45 +00:00
|
|
|
|
2015-08-20 19:19:15 +00:00
|
|
|
vector<address> added; added.reserve(after_address_members.size());
|
|
|
|
|
std::set_difference(after_address_members.begin(), after_address_members.end(),
|
|
|
|
|
before_address_members.begin(), before_address_members.end(),
|
|
|
|
|
std::inserter(added, added.end()));
|
2015-07-02 05:52:45 +00:00
|
|
|
|
2015-08-20 19:19:15 +00:00
|
|
|
for( auto itr = added.begin(); itr != added.end(); ++itr )
|
|
|
|
|
account_to_address_memberships[*itr].insert(after.id);
|
2015-07-02 05:52:45 +00:00
|
|
|
}
|
|
|
|
|
|
2015-06-23 17:33:13 +00:00
|
|
|
}
|
|
|
|
|
|
2021-12-23 22:03:43 +00:00
|
|
|
void account_referrer_index::object_loaded( const object& obj )
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
void account_referrer_index::object_created( const object& obj )
|
2015-06-23 17:33:13 +00:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
void account_referrer_index::object_removed( const object& obj )
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
void account_referrer_index::about_to_modify( const object& before )
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
void account_referrer_index::object_modified( const object& after )
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-10 13:26:27 +00:00
|
|
|
const uint8_t balances_by_account_index::bits = 20;
|
|
|
|
|
const uint64_t balances_by_account_index::mask = (1ULL << balances_by_account_index::bits) - 1;
|
|
|
|
|
|
2021-12-23 22:03:43 +00:00
|
|
|
void balances_by_account_index::object_loaded( const object& obj )
|
|
|
|
|
{
|
|
|
|
|
object_created(obj);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void balances_by_account_index::object_created( const object& obj )
|
2019-09-10 13:26:27 +00:00
|
|
|
{
|
|
|
|
|
const auto& abo = dynamic_cast< const account_balance_object& >( obj );
|
|
|
|
|
while( balances.size() < (abo.owner.instance.value >> bits) + 1 )
|
|
|
|
|
{
|
|
|
|
|
balances.reserve( (abo.owner.instance.value >> bits) + 1 );
|
|
|
|
|
balances.resize( balances.size() + 1 );
|
|
|
|
|
balances.back().resize( 1ULL << bits );
|
|
|
|
|
}
|
|
|
|
|
balances[abo.owner.instance.value >> bits][abo.owner.instance.value & mask][abo.asset_type] = &abo;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void balances_by_account_index::object_removed( const object& obj )
|
|
|
|
|
{
|
|
|
|
|
const auto& abo = dynamic_cast< const account_balance_object& >( obj );
|
|
|
|
|
if( balances.size() < (abo.owner.instance.value >> bits) + 1 ) return;
|
|
|
|
|
balances[abo.owner.instance.value >> bits][abo.owner.instance.value & mask].erase( abo.asset_type );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void balances_by_account_index::about_to_modify( const object& before )
|
|
|
|
|
{
|
|
|
|
|
ids_being_modified.emplace( before.id );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void balances_by_account_index::object_modified( const object& after )
|
|
|
|
|
{
|
|
|
|
|
FC_ASSERT( ids_being_modified.top() == after.id, "Modification of ID is not supported!");
|
|
|
|
|
ids_being_modified.pop();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const map< asset_id_type, const account_balance_object* >& balances_by_account_index::get_account_balances( const account_id_type& acct )const
|
|
|
|
|
{
|
|
|
|
|
static const map< asset_id_type, const account_balance_object* > _empty;
|
|
|
|
|
|
|
|
|
|
if( balances.size() < (acct.instance.value >> bits) + 1 ) return _empty;
|
|
|
|
|
return balances[acct.instance.value >> bits][acct.instance.value & mask];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const account_balance_object* balances_by_account_index::get_account_balance( const account_id_type& acct, const asset_id_type& asset )const
|
|
|
|
|
{
|
|
|
|
|
if( balances.size() < (acct.instance.value >> bits) + 1 ) return nullptr;
|
|
|
|
|
const auto& mine = balances[acct.instance.value >> bits][acct.instance.value & mask];
|
|
|
|
|
const auto itr = mine.find( asset );
|
|
|
|
|
if( mine.end() == itr ) return nullptr;
|
|
|
|
|
return itr->second;
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-08 15:50:35 +00:00
|
|
|
} } // graphene::chain
|
2019-05-13 22:18:12 +00:00
|
|
|
|
|
|
|
|
GRAPHENE_EXTERNAL_SERIALIZATION( /*not extern*/, graphene::chain::account_object )
|
|
|
|
|
GRAPHENE_EXTERNAL_SERIALIZATION( /*not extern*/, graphene::chain::account_balance_object )
|
|
|
|
|
GRAPHENE_EXTERNAL_SERIALIZATION( /*not extern*/, graphene::chain::account_statistics_object )
|
|
|
|
|
GRAPHENE_EXTERNAL_SERIALIZATION( /*not extern*/, graphene::chain::pending_dividend_payout_balance_for_holder_object )
|