2016-09-06 18:38:53 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2015 Cryptonomex, Inc., and contributors.
|
|
|
|
|
*
|
|
|
|
|
* The MIT License
|
|
|
|
|
*
|
|
|
|
|
* 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:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
2016-10-03 14:56:51 +00:00
|
|
|
#include <graphene/generate_genesis/generate_genesis_plugin.hpp>
|
2016-09-06 18:38:53 +00:00
|
|
|
|
|
|
|
|
#include <graphene/chain/database.hpp>
|
|
|
|
|
#include <graphene/chain/genesis_state.hpp>
|
|
|
|
|
#include <graphene/chain/witness_object.hpp>
|
|
|
|
|
|
|
|
|
|
#include <graphene/utilities/key_conversion.hpp>
|
|
|
|
|
|
|
|
|
|
#include <fc/smart_ref_impl.hpp>
|
|
|
|
|
#include <fc/thread/thread.hpp>
|
|
|
|
|
|
2016-10-06 16:15:02 +00:00
|
|
|
#include <graphene/chain/market_object.hpp>
|
2017-06-01 14:02:40 +00:00
|
|
|
#include <graphene/chain/vesting_balance_object.hpp>
|
2016-10-06 16:15:02 +00:00
|
|
|
|
2016-09-06 18:38:53 +00:00
|
|
|
#include <iostream>
|
2016-10-07 10:11:28 +00:00
|
|
|
#include <fstream>
|
2016-09-06 18:38:53 +00:00
|
|
|
|
|
|
|
|
using namespace graphene::generate_genesis_plugin;
|
|
|
|
|
using std::string;
|
|
|
|
|
using std::vector;
|
|
|
|
|
|
|
|
|
|
namespace bpo = boost::program_options;
|
|
|
|
|
|
|
|
|
|
void generate_genesis_plugin::plugin_set_program_options(
|
2016-10-10 09:06:48 +00:00
|
|
|
boost::program_options::options_description& command_line_options,
|
|
|
|
|
boost::program_options::options_description& config_file_options)
|
2016-09-06 18:38:53 +00:00
|
|
|
{
|
2016-10-10 09:06:48 +00:00
|
|
|
command_line_options.add_options()
|
|
|
|
|
("output-genesis-file,o", bpo::value<std::string>()->default_value("genesis.json"), "Genesis file to create")
|
|
|
|
|
("output-csvlog-file,o", bpo::value<std::string>()->default_value("log.csv"), "CSV log file to create")
|
2017-06-01 15:05:43 +00:00
|
|
|
("snapshot-block-number", bpo::value<uint32_t>(), "Block number at which to snapshot balances")
|
2016-10-10 09:06:48 +00:00
|
|
|
;
|
|
|
|
|
config_file_options.add(command_line_options);
|
2016-09-06 18:38:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::string generate_genesis_plugin::plugin_name()const
|
|
|
|
|
{
|
2016-10-10 09:06:48 +00:00
|
|
|
return "generate_genesis";
|
2016-09-06 18:38:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void generate_genesis_plugin::plugin_initialize(const boost::program_options::variables_map& options)
|
|
|
|
|
{ try {
|
2016-10-10 09:06:48 +00:00
|
|
|
ilog("generate genesis plugin: plugin_initialize() begin");
|
|
|
|
|
_options = &options;
|
2016-09-06 18:38:53 +00:00
|
|
|
|
2016-10-10 09:06:48 +00:00
|
|
|
_genesis_filename = options["output-genesis-file"].as<std::string>();
|
|
|
|
|
_csvlog_filename = options["output-csvlog-file"].as<std::string>();
|
2017-06-01 15:05:43 +00:00
|
|
|
if (options.count("snapshot-block-number"))
|
|
|
|
|
_block_to_snapshot = options["snapshot-block-number"].as<uint32_t>();
|
2016-10-10 09:06:48 +00:00
|
|
|
database().applied_block.connect([this](const graphene::chain::signed_block& b){ block_applied(b); });
|
|
|
|
|
ilog("generate genesis plugin: plugin_initialize() end");
|
|
|
|
|
} FC_LOG_AND_RETHROW() }
|
2016-09-06 18:38:53 +00:00
|
|
|
|
|
|
|
|
void generate_genesis_plugin::plugin_startup()
|
|
|
|
|
{ try {
|
2017-06-01 14:02:40 +00:00
|
|
|
ilog("generate genesis plugin: plugin_startup() begin");
|
2017-06-01 15:05:43 +00:00
|
|
|
if (_block_to_snapshot)
|
2016-10-10 09:06:48 +00:00
|
|
|
{
|
2017-06-01 15:05:43 +00:00
|
|
|
chain::database& d = database();
|
|
|
|
|
if (d.head_block_num() == *_block_to_snapshot)
|
|
|
|
|
{
|
|
|
|
|
ilog("generate genesis plugin: already at snapshot block");
|
|
|
|
|
generate_snapshot();
|
|
|
|
|
}
|
|
|
|
|
else if (d.head_block_num() > *_block_to_snapshot)
|
|
|
|
|
elog("generate genesis plugin: already passed snapshot block, you must reindex to return to the snapshot state");
|
|
|
|
|
else
|
|
|
|
|
elog("generate genesis plugin: waiting for block ${snapshot_block} to generate snapshot, current head is ${head}",
|
|
|
|
|
("snapshot_block", _block_to_snapshot)("head", d.head_block_num()));
|
2016-10-10 09:06:48 +00:00
|
|
|
}
|
2017-06-01 14:02:40 +00:00
|
|
|
else
|
2017-06-01 15:05:43 +00:00
|
|
|
ilog("generate genesis plugin: no snapshot block number provided, plugin is disabled");
|
2017-06-01 14:02:40 +00:00
|
|
|
|
|
|
|
|
ilog("generate genesis plugin: plugin_startup() end");
|
2016-10-10 09:06:48 +00:00
|
|
|
} FC_CAPTURE_AND_RETHROW() }
|
2016-09-06 18:38:53 +00:00
|
|
|
|
|
|
|
|
void generate_genesis_plugin::block_applied(const graphene::chain::signed_block& b)
|
|
|
|
|
{
|
2017-06-01 15:05:43 +00:00
|
|
|
if (_block_to_snapshot && b.block_num() == *_block_to_snapshot)
|
2016-10-10 09:06:48 +00:00
|
|
|
{
|
|
|
|
|
ilog("generate genesis plugin: snapshot block has arrived");
|
|
|
|
|
generate_snapshot();
|
|
|
|
|
}
|
2016-09-06 18:38:53 +00:00
|
|
|
}
|
|
|
|
|
|
2016-10-03 14:56:51 +00:00
|
|
|
std::string modify_account_name(const std::string& name)
|
|
|
|
|
{
|
2016-10-10 09:06:48 +00:00
|
|
|
return std::string("bts-") + name;
|
2016-10-03 14:56:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool is_special_account(const graphene::chain::account_id_type& account_id)
|
|
|
|
|
{
|
[SON-107] Merge develop branch to SONs-base (#166)
* fix rng and get_winner_numbers implemented
* coipied code for bitshares fixing 429 and 433 isuues
* ticket_purchase_operation implemented. added lottery_options to asset
* lottery end implemented
* minor logic changes. added db_api and cli_wallet methods
* fix reindex on peerplays network
* fix some tests. add gitlab-ci.yml
* add pull to gitlab-ci
* fix
* fix and comment some tests
* added owner to lottery_asset_options. commented async call in on_applied_block callback
* added get_account_lotteries method to db_api and cli, lottery end_date and ticket_price verification
* merge get_account_lotteries branch. fix create_witness test
* fix test genesis and end_date verification
* fixed indices sorting and lottery end checking by date
* update db_version for replay and removed duplicate include files
* Added ntp and upgraded boost version
* Revert "GPOS protocol"
* need to remove backup files
* virtual-op-fix for deterministic virtual_op number
* Merged beatrice into 5050
* Updated gitmodules, changes to allow voting on lottery fee
* Removed submodule libraries/fc
* Added libraries/fc
* added missing , in types.hpp
* Added sweeps parameters to parameter_extension
* added missing comma in operations.hpp, small changes to config.hpp
* fixed returntype in chain_parameters.hpp
* removed sweeps_parameter_extensions
* Changed fc library
* fixed asset_object
* Changed peerplays-fc submodule
* Changed fc submodule to ubuntu 18.04 upgrade
* Removed submodule libraries/fc
* Added fc library back
* fix casting in overloaded function
* Removed blind_sign and unblind_signature functions
* Added new lottery_asset_create_operation
* Changed sweeps hardfork time
* Removed redundant if from asset_evaluator and fixed db_notify
* fixed duplicate code in fee_tests
* removed redundant tgenesis file
* Enable building on Ubuntu 18.04 using GCC 7 compiler
* fix: is_benefactor_reward had the default value of true when not set
* Docker file for Ubuntu 18.04
Base image updated to Unbuntu 18.04
Prerequisite list updated
Basic configuration updated
* Quick fix: Added missing package pkg-config
* Docker file updates
* 5050 fee update and compilation error fix
* Dockerfile, set system locale
Prevents locale::facet::_S_create_c_locale name error
* Update README.md
Fix typo
* Update README.md
* Changed hardfork time for SWEEPS and Core-429
* revert master changes that were brought in previous commit
* Fixed error when account_history_object with id 0 doesnt exist
* Fixed error while loading object database
* test for zero id object in account history
* Reorder operations in Dockerfile, to make image creation faster
- Reorder prevents unnecessary building of Boost libraries
* Fix for irrelevant signature included issue
* fix copyrigth messages order
* remove double empty lines
* Backport fix for `get_account_history` from https://github.com/bitshares/bitshares-core/pull/628 and add additional account history test case
* NTP client back
* GRPH-53-Log_format_error
* Merge pull request #1036 from jmjatlanta/issue_730
Add fail_reason to proposal_object
* Unit test case fixes and prepared SONs base
* Use offsetof instead of custom macro
* Hide some compiler warnings
* Make all the tests compile
* Add nullptr check in api.cpp for easier testing
* Add test case for broadcast_trx_with_callback API
* Unit test case fixes and prepared SONs base
* Merge pull request #714 from pmconrad/json_fix
JSON fix
* Increase max depth for trx confirmation callback
* Adapt to variant API with `max_depth` argument
* Update fc submodule
* Created unit test for #325
* remove needless find()
* GRPH-4-CliWallet_crash_ctrlD
* fix copyright message
* Make all the tests compile
* increase delay for node connection
* Increase block creation timeout to 2500ms
* remove cache from cli get_account
* add cli tests framework
* Adjust newly merged code to new API
* Improved resilience of block database against corruption
* Merged changes from Bitshares PR 1036
* GRPH-76 - Short-cut long sequences of missed blocks
Fixes database::update_global_dynamic_data to speed up counting missed blocks.
(This also fixes a minor issue with counting - the previous algorithm would skip missed blocks for the witness who signed the first block after the gap.)
* Moved reindex logic into database / chain_database, make use of additional blocks in block_database
Fixed tests wrt db.open
* Enable undo + fork database for final blocks in a replay
Dont remove blocks from block db when popping blocks, handle edge case in replay wrt fork_db, adapted unit tests
* Log starting block number of replay
* Prevent unsigned integer underflow
* Fixed lock detection
* Dont leave _data_dir empty if db is locked
* Writing the object_database is now almost atomic
* Improved consistency check for block_log
* Cut back block_log index file if inconsistent
* Fixed undo_database
* Added test case for broken merge on empty undo_db
* Merge pull request #938 from bitshares/fix-block-storing
Store correct block ID when switching forks
* exclude second undo_db.enable() call in some cases
* Add missing change
* change bitshares to core in message
* Fixed integer overflow issue
* Fix for for history ID mismatch ( Bitshares PR #875 )
* Update the FC submodule with the changes for GRPH-4
* Fix #436 object_database created outside of witness data directory
* supplement more comments on database::_opened variable
* prevent segfault when destructing application obj
* Fixed duplicate ops returned from get_account_history
* minor performance improvement
* Added comment
* Merged Bitshares PR #1462 and compilation fixes
* Support/gitlab (#123)
* Updated gitlab process
* Fix undefined references in cli test
* Fixed test failures and compilation issue
* Fixed account_history_pagination test
* Fix compilation in debug mode
* Removed unrelated comment
* Skip auth check when pushing self-generated blocks
* Extract public keys before pushing a transaction
* Dereference chain_database shared_ptr
* Updated transaction::signees to mutable
and
* updated get_signature_keys() to return a const reference,
* get_signature_keys() will update signees on first call,
* modified test cases and wallet.cpp accordingly,
* no longer construct a new signed_transaction object before pushing
* Added get_asset_count API
* Allow sufficient space for new undo_session
* Throw for deep nesting
* No longer extract public keys before pushing a trx
and removed unused new added constructor and _get_signature_keys() function from signed_transaction struct
* Added cli_test to CI
* use random port numbers in app_test (#154)
* proposal fail_reason bug fixed (#157)
* Added Sonarcloud code_quality to CI (#159)
* Added sonarcloud analysis (#158)
* fix for lottery end
* fix declarations
* fix declarations
* fix boost integer
* fix compilation
* fix chain tests
* fix app_test
* try to fix cli test
* fix incorrect max_depth param
* working cli test
* correct fc version
2019-10-08 01:25:03 +00:00
|
|
|
return account_id.instance.value < 100;
|
2016-10-03 14:56:51 +00:00
|
|
|
}
|
|
|
|
|
|
2017-06-01 14:02:40 +00:00
|
|
|
bool is_scam(const std::string& account_name)
|
|
|
|
|
{
|
|
|
|
|
static std::set<std::string> scam_accounts{
|
|
|
|
|
"polonie-wallet",
|
|
|
|
|
"polonie-xwallet",
|
|
|
|
|
"poloniewallet",
|
|
|
|
|
"poloniex-deposit",
|
|
|
|
|
"poloniex-wallet",
|
|
|
|
|
"poloniexwall-et",
|
|
|
|
|
"poloniexwallett",
|
|
|
|
|
"poloniexwall-t",
|
|
|
|
|
"poloniexwalle",
|
|
|
|
|
"poloniex",
|
|
|
|
|
"poloneix",
|
|
|
|
|
"poloniex1",
|
|
|
|
|
"bittrex-deopsit",
|
|
|
|
|
"bittrex-deposi",
|
|
|
|
|
"bittrex-depositt",
|
|
|
|
|
"bittrex-dposit",
|
|
|
|
|
"bittrex",
|
|
|
|
|
"bittrex-deposits",
|
|
|
|
|
"coinbase",
|
|
|
|
|
"blocktrade",
|
|
|
|
|
"locktrades",
|
|
|
|
|
"yun.bts",
|
|
|
|
|
"transwiser-walle",
|
|
|
|
|
"transwiser-wallets",
|
|
|
|
|
"ranswiser-wallet",
|
|
|
|
|
"yun.btc",
|
|
|
|
|
"pay.coinbase.com",
|
|
|
|
|
"pay.bts.com",
|
|
|
|
|
"btc38.com",
|
|
|
|
|
"yunbi.com",
|
|
|
|
|
"coinbase.com",
|
|
|
|
|
"ripple.com"
|
|
|
|
|
};
|
|
|
|
|
return scam_accounts.find(account_name) != scam_accounts.end();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool is_exchange(const std::string& account_name)
|
|
|
|
|
{
|
|
|
|
|
static std::set<std::string> exchange_accounts{
|
|
|
|
|
"poloniexcoldstorage",
|
|
|
|
|
"btc38-public-for-bts-cold",
|
|
|
|
|
"poloniexwallet",
|
|
|
|
|
"btercom",
|
|
|
|
|
"yunbi-cold-wallet",
|
|
|
|
|
"btc38-btsx-octo-72722",
|
|
|
|
|
"bittrex-deposit",
|
|
|
|
|
"btc38btsxwithdrawal"
|
|
|
|
|
};
|
|
|
|
|
return exchange_accounts.find(account_name) != exchange_accounts.end();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool exclude_account_from_sharedrop(graphene::chain::database& d, const graphene::chain::account_id_type& account_id)
|
|
|
|
|
{
|
|
|
|
|
if (is_special_account(account_id))
|
|
|
|
|
return true;
|
|
|
|
|
const std::string& account_name = account_id(d).name;
|
|
|
|
|
return is_exchange(account_name) || is_scam(account_name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2016-10-03 14:56:51 +00:00
|
|
|
|
2016-09-06 18:38:53 +00:00
|
|
|
void generate_genesis_plugin::generate_snapshot()
|
2017-06-01 14:02:40 +00:00
|
|
|
{ try {
|
2016-10-10 09:06:48 +00:00
|
|
|
ilog("generate genesis plugin: generating snapshot now");
|
|
|
|
|
graphene::chain::genesis_state_type new_genesis_state;
|
|
|
|
|
chain::database& d = database();
|
|
|
|
|
|
2017-06-01 14:02:40 +00:00
|
|
|
// we'll distribute 5% of (some amount of tokens), so:
|
|
|
|
|
graphene::chain::share_type total_amount_to_distribute(27302662972);
|
|
|
|
|
|
|
|
|
|
my_account_balance_object_index_type db_balances;
|
|
|
|
|
graphene::chain::share_type total_bts_balance;
|
2016-10-10 09:06:48 +00:00
|
|
|
|
|
|
|
|
auto& balance_index = d.get_index_type<graphene::chain::account_balance_index>().indices().get<graphene::chain::by_asset_balance>();
|
|
|
|
|
for (auto balance_iter = balance_index.begin(); balance_iter != balance_index.end() && balance_iter->asset_type == graphene::chain::asset_id_type(); ++balance_iter)
|
2017-06-01 14:02:40 +00:00
|
|
|
{
|
|
|
|
|
if (balance_iter->balance > 0 && !exclude_account_from_sharedrop(d, balance_iter->owner))
|
2016-10-10 09:06:48 +00:00
|
|
|
{
|
2017-06-01 14:02:40 +00:00
|
|
|
total_bts_balance += balance_iter->balance;
|
|
|
|
|
|
|
|
|
|
my_account_balance_object new_balance_object;
|
|
|
|
|
new_balance_object.account_id = balance_iter->owner;
|
|
|
|
|
new_balance_object.balance = balance_iter->balance;
|
|
|
|
|
db_balances.insert(new_balance_object);
|
2016-10-10 09:06:48 +00:00
|
|
|
}
|
2017-06-01 14:02:40 +00:00
|
|
|
}
|
2016-10-10 09:06:48 +00:00
|
|
|
|
|
|
|
|
|
2017-06-01 14:02:40 +00:00
|
|
|
// account for BTS tied up in market orders
|
|
|
|
|
auto limit_order_index = d.get_index_type<graphene::chain::limit_order_index>().indices();
|
|
|
|
|
for (const graphene::chain::limit_order_object& limit_order : limit_order_index)
|
|
|
|
|
if (limit_order.amount_for_sale().asset_id == graphene::chain::asset_id_type())
|
|
|
|
|
{
|
|
|
|
|
graphene::chain::share_type limit_order_amount = limit_order.amount_for_sale().amount;
|
|
|
|
|
if (limit_order_amount > 0 && !exclude_account_from_sharedrop(d, limit_order.seller))
|
|
|
|
|
{
|
|
|
|
|
total_bts_balance += limit_order_amount;
|
2016-10-10 09:06:48 +00:00
|
|
|
|
2017-06-01 14:02:40 +00:00
|
|
|
auto my_balance_iter = db_balances.find(limit_order.seller);
|
|
|
|
|
if (my_balance_iter == db_balances.end())
|
|
|
|
|
{
|
|
|
|
|
my_account_balance_object balance_object;
|
|
|
|
|
balance_object.account_id = limit_order.seller;
|
|
|
|
|
balance_object.orders = limit_order_amount;
|
|
|
|
|
db_balances.insert(balance_object);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
db_balances.modify(my_balance_iter, [&](my_account_balance_object& balance_object) {
|
|
|
|
|
balance_object.orders += limit_order_amount;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-10-10 09:06:48 +00:00
|
|
|
|
2017-06-01 14:02:40 +00:00
|
|
|
// account for BTS tied up in collateral for SmartCoins
|
|
|
|
|
auto call_order_index = d.get_index_type<graphene::chain::call_order_index>().indices();
|
|
|
|
|
for (const graphene::chain::call_order_object& call_order : call_order_index)
|
|
|
|
|
if (call_order.get_collateral().asset_id == graphene::chain::asset_id_type())
|
|
|
|
|
{
|
|
|
|
|
graphene::chain::share_type call_order_amount = call_order.get_collateral().amount;
|
|
|
|
|
if (call_order_amount > 0 && !exclude_account_from_sharedrop(d, call_order.borrower))
|
|
|
|
|
{
|
|
|
|
|
total_bts_balance += call_order_amount;
|
2016-10-10 09:06:48 +00:00
|
|
|
|
2017-06-01 14:02:40 +00:00
|
|
|
auto my_balance_iter = db_balances.find(call_order.borrower);
|
|
|
|
|
if (my_balance_iter == db_balances.end())
|
|
|
|
|
{
|
|
|
|
|
my_account_balance_object balance_object;
|
|
|
|
|
balance_object.account_id = call_order.borrower;
|
|
|
|
|
balance_object.collateral = call_order_amount;
|
|
|
|
|
db_balances.insert(balance_object);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
db_balances.modify(my_balance_iter, [&](my_account_balance_object& balance_object) {
|
|
|
|
|
balance_object.collateral += call_order_amount;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// account available-but-unclaimed BTS in vesting balances
|
|
|
|
|
auto vesting_balance_index = d.get_index_type<graphene::chain::vesting_balance_index>().indices();
|
|
|
|
|
for (const graphene::chain::vesting_balance_object& vesting_balance : vesting_balance_index)
|
|
|
|
|
if (vesting_balance.balance.asset_id == graphene::chain::asset_id_type())
|
2016-10-10 09:06:48 +00:00
|
|
|
{
|
2017-06-01 14:02:40 +00:00
|
|
|
graphene::chain::share_type vesting_balance_amount = vesting_balance.get_allowed_withdraw(d.head_block_time()).amount;
|
|
|
|
|
if (vesting_balance_amount > 0 && !exclude_account_from_sharedrop(d, vesting_balance.owner))
|
|
|
|
|
{
|
|
|
|
|
total_bts_balance += vesting_balance_amount;
|
|
|
|
|
|
|
|
|
|
auto my_balance_iter = db_balances.find(vesting_balance.owner);
|
|
|
|
|
if (my_balance_iter == db_balances.end())
|
|
|
|
|
{
|
|
|
|
|
my_account_balance_object balance_object;
|
|
|
|
|
balance_object.account_id = vesting_balance.owner;
|
|
|
|
|
balance_object.vesting = vesting_balance_amount;
|
|
|
|
|
db_balances.insert(balance_object);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
db_balances.modify(my_balance_iter, [&](my_account_balance_object& balance_object) {
|
|
|
|
|
balance_object.vesting += vesting_balance_amount;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-10-10 09:06:48 +00:00
|
|
|
|
|
|
|
|
graphene::chain::share_type total_shares_dropped;
|
2017-06-01 14:02:40 +00:00
|
|
|
|
2016-10-10 09:06:48 +00:00
|
|
|
// Now, we assume we're distributing balances to all BTS holders proportionally, figure
|
|
|
|
|
// the smallest balance we can distribute and still assign the user a satoshi of the share drop
|
|
|
|
|
graphene::chain::share_type effective_total_bts_balance;
|
2017-06-01 14:02:40 +00:00
|
|
|
auto& by_effective_balance_index = db_balances.get<by_effective_balance>();
|
|
|
|
|
auto balance_iter = by_effective_balance_index.begin();
|
|
|
|
|
for (; balance_iter != by_effective_balance_index.end(); ++balance_iter)
|
2016-10-10 09:06:48 +00:00
|
|
|
{
|
|
|
|
|
fc::uint128 share_drop_amount = total_amount_to_distribute.value;
|
2017-06-01 14:02:40 +00:00
|
|
|
share_drop_amount *= balance_iter->get_effective_balance().value;
|
2016-10-10 09:06:48 +00:00
|
|
|
share_drop_amount /= total_bts_balance.value;
|
|
|
|
|
if (!share_drop_amount.to_uint64())
|
2016-10-03 14:56:51 +00:00
|
|
|
break; // balances are decreasing, so every balance after will also round to zero
|
2016-10-10 09:06:48 +00:00
|
|
|
total_shares_dropped += share_drop_amount.to_uint64();
|
2017-06-01 14:02:40 +00:00
|
|
|
effective_total_bts_balance += balance_iter->get_effective_balance();
|
2016-10-10 09:06:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// our iterator is just after the smallest balance we will process,
|
|
|
|
|
// walk it backwards towards the larger balances, distributing the sharedrop as we go
|
|
|
|
|
graphene::chain::share_type remaining_amount_to_distribute = total_amount_to_distribute;
|
|
|
|
|
graphene::chain::share_type bts_balance_remaining = effective_total_bts_balance;
|
|
|
|
|
|
|
|
|
|
do {
|
|
|
|
|
--balance_iter;
|
|
|
|
|
fc::uint128 share_drop_amount = remaining_amount_to_distribute.value;
|
2017-06-01 14:02:40 +00:00
|
|
|
share_drop_amount *= balance_iter->get_effective_balance().value;
|
2016-10-10 09:06:48 +00:00
|
|
|
share_drop_amount /= bts_balance_remaining.value;
|
|
|
|
|
graphene::chain::share_type amount_distributed = share_drop_amount.to_uint64();
|
2017-06-01 14:02:40 +00:00
|
|
|
|
|
|
|
|
by_effective_balance_index.modify(balance_iter, [&](my_account_balance_object& balance_object) {
|
|
|
|
|
balance_object.sharedrop += amount_distributed;
|
|
|
|
|
});
|
2016-10-10 09:06:48 +00:00
|
|
|
|
|
|
|
|
remaining_amount_to_distribute -= amount_distributed;
|
2017-06-01 14:02:40 +00:00
|
|
|
bts_balance_remaining -= balance_iter->get_effective_balance();
|
|
|
|
|
} while (balance_iter != by_effective_balance_index.begin());
|
2016-10-10 09:06:48 +00:00
|
|
|
assert(remaining_amount_to_distribute == 0);
|
|
|
|
|
|
2017-06-01 14:02:40 +00:00
|
|
|
std::ofstream logfile;
|
2016-10-10 09:06:48 +00:00
|
|
|
logfile.open(_csvlog_filename);
|
|
|
|
|
assert(logfile.is_open());
|
2017-06-01 14:02:40 +00:00
|
|
|
logfile << "name,balance+orders+collateral+vesting,balance,orders,collateral,vesting,sharedrop\n";
|
|
|
|
|
for (const my_account_balance_object& balance : by_effective_balance_index)
|
|
|
|
|
logfile << balance.account_id(d).name << "," <<
|
|
|
|
|
balance.get_effective_balance().value << "," <<
|
|
|
|
|
balance.balance.value << "," <<
|
|
|
|
|
balance.orders.value << "," <<
|
|
|
|
|
balance.collateral.value << "," <<
|
|
|
|
|
balance.vesting.value << "," <<
|
|
|
|
|
balance.sharedrop.value << "\n";
|
2016-10-10 09:06:48 +00:00
|
|
|
ilog("CSV log written to file ${filename}", ("filename", _csvlog_filename));
|
|
|
|
|
logfile.close();
|
|
|
|
|
|
2017-06-01 14:02:40 +00:00
|
|
|
// remove all balance objects with zero sharedrops
|
|
|
|
|
by_effective_balance_index.erase(by_effective_balance_index.lower_bound(0),
|
|
|
|
|
by_effective_balance_index.end());
|
|
|
|
|
|
2016-10-10 09:06:48 +00:00
|
|
|
// inefficient way of crawling the graph, but we only do it once
|
|
|
|
|
std::set<graphene::chain::account_id_type> already_generated;
|
|
|
|
|
for (;;)
|
|
|
|
|
{
|
|
|
|
|
unsigned accounts_generated_this_round = 0;
|
2017-06-01 14:02:40 +00:00
|
|
|
for (const my_account_balance_object& balance : by_effective_balance_index)
|
2016-10-10 09:06:48 +00:00
|
|
|
{
|
2017-06-01 14:02:40 +00:00
|
|
|
const graphene::chain::account_object& account_obj = balance.account_id(d);
|
|
|
|
|
if (already_generated.find(balance.account_id) == already_generated.end())
|
2016-10-03 14:56:51 +00:00
|
|
|
{
|
2016-10-10 09:06:48 +00:00
|
|
|
graphene::chain::genesis_state_type::initial_bts_account_type::initial_authority owner;
|
|
|
|
|
owner.weight_threshold = account_obj.owner.weight_threshold;
|
|
|
|
|
owner.key_auths = account_obj.owner.key_auths;
|
|
|
|
|
for (const auto& value : account_obj.owner.account_auths)
|
|
|
|
|
{
|
|
|
|
|
owner.account_auths.insert(std::make_pair(modify_account_name(value.first(d).name), value.second));
|
2017-06-01 14:02:40 +00:00
|
|
|
db_balances.insert(my_account_balance_object{value.first}); // make sure the account is generated, even if it has a zero balance
|
2016-10-10 09:06:48 +00:00
|
|
|
}
|
|
|
|
|
owner.key_auths = account_obj.owner.key_auths;
|
|
|
|
|
owner.address_auths = account_obj.owner.address_auths;
|
|
|
|
|
|
|
|
|
|
graphene::chain::genesis_state_type::initial_bts_account_type::initial_authority active;
|
|
|
|
|
active.weight_threshold = account_obj.active.weight_threshold;
|
|
|
|
|
active.key_auths = account_obj.active.key_auths;
|
|
|
|
|
for (const auto& value : account_obj.active.account_auths)
|
|
|
|
|
{
|
|
|
|
|
active.account_auths.insert(std::make_pair(modify_account_name(value.first(d).name), value.second));
|
2017-06-01 14:02:40 +00:00
|
|
|
db_balances.insert(my_account_balance_object{value.first}); // make sure the account is generated, even if it has a zero balance
|
2016-10-10 09:06:48 +00:00
|
|
|
}
|
|
|
|
|
active.key_auths = account_obj.active.key_auths;
|
|
|
|
|
active.address_auths = account_obj.active.address_auths;
|
|
|
|
|
|
|
|
|
|
new_genesis_state.initial_bts_accounts.emplace_back(
|
|
|
|
|
graphene::chain::genesis_state_type::initial_bts_account_type(modify_account_name(account_obj.name),
|
|
|
|
|
owner, active,
|
2017-06-01 14:02:40 +00:00
|
|
|
balance.sharedrop));
|
|
|
|
|
already_generated.insert(balance.account_id);
|
2016-10-10 09:06:48 +00:00
|
|
|
++accounts_generated_this_round;
|
2016-10-03 14:56:51 +00:00
|
|
|
}
|
2016-10-10 09:06:48 +00:00
|
|
|
}
|
|
|
|
|
if (accounts_generated_this_round == 0)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
fc::json::save_to_file(new_genesis_state, _genesis_filename);
|
|
|
|
|
ilog("New genesis state written to file ${filename}", ("filename", _genesis_filename));
|
2017-06-01 14:02:40 +00:00
|
|
|
} FC_LOG_AND_RETHROW() }
|
2016-09-06 18:38:53 +00:00
|
|
|
|
|
|
|
|
void generate_genesis_plugin::plugin_shutdown()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|