#include #include #include #include #include #include #include namespace graphene { namespace peerplays_sidechain { libbitcoin_client::libbitcoin_client(std::string url) : obelisk_client(LIBBITCOIN_SERVER_TIMEOUT, LIBBITCOIN_SERVER_RETRIES) { std::string reg_expr = "^((?Phttps|http|tcp):\\/\\/)?(?P[a-zA-Z0-9\\-\\.]+)(:(?P\\d{1,5}))?(?P\\/.+)?"; boost::xpressive::sregex sr = boost::xpressive::sregex::compile(reg_expr); boost::xpressive::smatch sm; if (boost::xpressive::regex_search(url, sm, sr)) { protocol = sm["Protocol"]; if (protocol.empty()) { protocol = "tcp"; } host = sm["Host"]; if (host.empty()) { host + "localhost"; } port = sm["Port"]; if (port.empty()) { port = "9091"; } } uint16_t port_num = std::stoi(port); std::string final_url = protocol + "://" + host; libbitcoin::config::endpoint address(final_url, port_num); libbitcoin::client::connection_type connection; connection.retries = LIBBITCOIN_SERVER_RETRIES; connection.server = address; if (!obelisk_client.connect(connection)) { elog("Can't connect libbitcoin for url: ${url}", ("url", final_url)); } is_connected = true; } std::string libbitcoin_client::send_transaction(std::string tx) { std::string res; auto error_handler = [&](const std::error_code &ec) { elog("error on sending bitcoin transaction ${error_code}", ("error_code", ec.message())); }; auto result_handler = [&](libbitcoin::code result_code) { ilog("result code on sending transaction ${result_code}", ("result_code", result_code.message())); res = std::to_string(result_code.value()); }; libbitcoin::explorer::config::transaction transaction(tx); libbitcoin::chain::transaction trx; // This validates the tx, submits it to local tx pool, and notifies peers. obelisk_client.transaction_pool_broadcast(error_handler, result_handler, transaction); obelisk_client.wait(); return res; } libbitcoin::chain::output::list libbitcoin_client::get_transaction(std::string tx_id, std::string &tx_hash, uint32_t &confirmitions) { libbitcoin::chain::output::list outs; auto error_handler = [&](const std::error_code &ec) { elog("error on fetch_trx_by_hash: ${hash} ${error_code}", ("hash", tx_id)("error_code", ec.message())); }; auto transaction_handler = [&](const libbitcoin::chain::transaction &tx_handler) { tx_hash = libbitcoin::config::hash256(tx_handler.hash(false)).to_string(); // TODO try to find this value (confirmitions) confirmitions = 1; outs = tx_handler.outputs(); }; libbitcoin::hash_digest hash = libbitcoin::config::hash256(tx_id); // obelisk_client.blockchain_fetch_transaction (error_handler, transaction_handler,hash); obelisk_client.blockchain_fetch_transaction2(error_handler, transaction_handler, hash); obelisk_client.wait(); return outs; } std::vector libbitcoin_client::listunspent(std::string address, double amount) { std::vector result; auto error_handler = [&](const std::error_code &ec) { elog("error on list_unspent ${error_code}", ("error_code", ec.message())); }; auto replay_handler = [&](const libbitcoin::chain::points_value &points) { for (auto &point : points.points) { list_unspent_replay output; output.hash = libbitcoin::config::hash256(point.hash()).to_string(); output.value = point.value(); output.index = point.index(); result.emplace_back(output); } }; libbitcoin::wallet::payment_address payment_address(address); uint64_t satoshi = 100000000 * amount; obelisk_client.blockchain_fetch_unspent_outputs(error_handler, replay_handler, payment_address, satoshi, libbitcoin::wallet::select_outputs::algorithm::individual); obelisk_client.wait(); return result; } bool libbitcoin_client::get_is_test_net() { bool result = false; auto error_handler = [&](const std::error_code &ec) { elog("error on fetching genesis block ${error_code}", ("error_code", ec.message())); }; auto block_header_handler = [&](const libbitcoin::chain::header &block_header) { std::string hash_str = libbitcoin::config::hash256(block_header.hash()).to_string(); if (hash_str == GENESIS_TESTNET_HASH || hash_str == GENESIS_REGTEST_HASH) { result = true; } }; obelisk_client.blockchain_fetch_block_header(error_handler, block_header_handler, 0); obelisk_client.wait(); return result; } } } // namespace graphene::peerplays_sidechain