Libbitcoin Node: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
→Dependencies (Version3): use libbitcoin-system |
||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
The [https://github.com/libbitcoin/libbitcoin-node libbitcoin-node] library provides an abstraction over the low level networking calls required to implement a full node on the Bitcoin peer-to-peer network. It was originally contained within [[Libbitcoin_Common|libbitcoin]]. | The [https://github.com/libbitcoin/libbitcoin-node libbitcoin-node] library provides an abstraction over the low level networking calls required to implement a full node on the Bitcoin peer-to-peer network. It was originally contained within [[Libbitcoin_Common|libbitcoin]]. | ||
==Example== | ==Example (Version3) == | ||
#include <future> | |||
#include <iostream> | |||
#include <bitcoin/node.hpp> | |||
int main() | int main() | ||
{ | { | ||
std:: | std::cout << "Starting up..." << std::endl; | ||
bc:: | |||
bc::threadpool pool(1); | |||
bc::node::configuration settings(bc::config::settings::mainnet); | |||
bc::node::full_node node(settings); | |||
std::promise<bc::code> started; | |||
const auto handle_started = [&started](const bc::code& ec) | |||
{ | |||
started.set_value(ec); | |||
}; | |||
// To also "run" the node on the p2p nework next call node.run(...). | |||
node.start(handle_started); | |||
const auto ec = started.get_future().get(); | |||
if (ec) | |||
{ | |||
std::cout << "The node failed to start: " << ec.message() << std::endl; | |||
return 1; | |||
} | |||
const auto display_history = [](const bc::code& code, | |||
const bc::chain::history_compact::list& history) | |||
{ | |||
if (code) | |||
{ | |||
std::cout << "Error: " << code.message(); | |||
return; | |||
} | |||
for (const auto& entry : history) | |||
{ | |||
auto output = (entry.kind == bc::chain::point_kind::output); | |||
auto kind = (output ? "output" : "spend"); | |||
auto height = entry.height; | |||
auto hash = bc::encode_hash(entry.point.hash()); | |||
auto index = entry.point.index(); | |||
// The value for a spend is the entry.point.checksum() of the | |||
// output. This allows the spends to be correlated to outputs. | |||
std::cout << "History..." << std::endl; | |||
std::cout << "Kind: " << kind << std::endl; | |||
std::cout << "Height: " << height << std::endl; | |||
std::cout << "Point: " << hash << ":" << index << std::endl; | |||
std::cout << "Value: " << entry.value << std::endl; | |||
std::cout << std::endl; | |||
} | |||
}; | |||
while (true) | while (true) | ||
{ | { | ||
std::cout << "Type a bitcoin address or 'stop' to exit." << std::endl; | |||
std::string command; | |||
std::getline(std::cin, command); | std::getline(std::cin, command); | ||
if (command == "stop") | if (command == "stop") | ||
break; | break; | ||
if (!address | bc::wallet::payment_address address(command); | ||
if (!address) | |||
{ | { | ||
std::cout << "Invalid address | std::cout << "Invalid address: " << command << std::endl; | ||
continue; | continue; | ||
} | } | ||
// Accept up to 1000 rows and search from block 0. | |||
node.chain().fetch_history(address, 1000, 0, display_history); | |||
} | } | ||
std::cout << "Shutting down..." | std::cout << "Shutting down..." << std::endl; | ||
return 0; | return 0; | ||
Line 45: | Line 90: | ||
==Design== | ==Design== | ||
* See [https://github.com/libbitcoin/libbitcoin-server/wiki/Design-Overview Design Overview] (Bitcoin Server) | |||
==Dependencies== | ==Dependencies (Version2)== | ||
* [http://www.boost.org boost] | * [http://www.boost.org boost] | ||
* [https://github.com/bitcoin/secp256k1 secp256k1] | * [https://github.com/bitcoin/secp256k1 secp256k1] | ||
* [[Libbitcoin_Common|libbitcoin]] | * [[Libbitcoin_Common|libbitcoin]] | ||
* [[Libbitcoin_Consensus|libbitcoin-consensus (optional)]] | |||
* [[Libbitcoin_Blockchain|libbitcoin-blockchain]] | |||
==Dependencies (Version3)== | |||
* [http://www.boost.org boost] | |||
* [https://github.com/bitcoin/secp256k1 secp256k1] | |||
* [[Libbitcoin_Common|libbitcoin-system]] | |||
* [[Libbitcoin_Blockchain|libbitcoin-network]] | |||
* [[Libbitcoin_Blockchain|libbitcoin-database]] | |||
* [[Libbitcoin_Consensus|libbitcoin-consensus (optional)]] | * [[Libbitcoin_Consensus|libbitcoin-consensus (optional)]] | ||
* [[Libbitcoin_Blockchain|libbitcoin-blockchain]] | * [[Libbitcoin_Blockchain|libbitcoin-blockchain]] |
Latest revision as of 01:32, 9 March 2021
The libbitcoin-node library provides an abstraction over the low level networking calls required to implement a full node on the Bitcoin peer-to-peer network. It was originally contained within libbitcoin.
Example (Version3)
#include <future> #include <iostream> #include <bitcoin/node.hpp> int main() { std::cout << "Starting up..." << std::endl; bc::threadpool pool(1); bc::node::configuration settings(bc::config::settings::mainnet); bc::node::full_node node(settings); std::promise<bc::code> started; const auto handle_started = [&started](const bc::code& ec) { started.set_value(ec); }; // To also "run" the node on the p2p nework next call node.run(...). node.start(handle_started); const auto ec = started.get_future().get(); if (ec) { std::cout << "The node failed to start: " << ec.message() << std::endl; return 1; } const auto display_history = [](const bc::code& code, const bc::chain::history_compact::list& history) { if (code) { std::cout << "Error: " << code.message(); return; } for (const auto& entry : history) { auto output = (entry.kind == bc::chain::point_kind::output); auto kind = (output ? "output" : "spend"); auto height = entry.height; auto hash = bc::encode_hash(entry.point.hash()); auto index = entry.point.index(); // The value for a spend is the entry.point.checksum() of the // output. This allows the spends to be correlated to outputs. std::cout << "History..." << std::endl; std::cout << "Kind: " << kind << std::endl; std::cout << "Height: " << height << std::endl; std::cout << "Point: " << hash << ":" << index << std::endl; std::cout << "Value: " << entry.value << std::endl; std::cout << std::endl; } }; while (true) { std::cout << "Type a bitcoin address or 'stop' to exit." << std::endl; std::string command; std::getline(std::cin, command); if (command == "stop") break; bc::wallet::payment_address address(command); if (!address) { std::cout << "Invalid address: " << command << std::endl; continue; } // Accept up to 1000 rows and search from block 0. node.chain().fetch_history(address, 1000, 0, display_history); } std::cout << "Shutting down..." << std::endl; return 0; }
Console Application
The library is accompanied by the console application Bitcoin Node (bn).
Design
- See Design Overview (Bitcoin Server)
Dependencies (Version2)
Dependencies (Version3)
- boost
- secp256k1
- libbitcoin-system
- libbitcoin-network
- libbitcoin-database
- libbitcoin-consensus (optional)
- libbitcoin-blockchain