onion-wownero-blockchain-ex.../README.md

226 lines
7.0 KiB
Markdown
Raw Normal View History

2016-04-15 23:07:47 +00:00
# Onion Monero Blockchain Explorer
2016-05-07 09:32:28 +00:00
2016-05-09 22:36:52 +00:00
Curently available Monero blockchain explorer websites have several limitations which are of special importance to privacy-oriented users:
2016-05-07 09:32:28 +00:00
2016-05-09 01:40:16 +00:00
- they use JavaScript,
2016-05-10 03:04:08 +00:00
- have images which might be used for [cookieless tracking](http://lucb1e.com/rp/cookielesscookies/),
2016-05-09 01:40:16 +00:00
- track users activates through google analytics,
- are closed sourced,
2016-05-09 09:51:25 +00:00
- are not available as hidden services,
2016-05-09 22:36:52 +00:00
- provide only basic search capabilities,
- can't identify users outputs based on provided Monero address and viewkey.
2016-05-07 09:32:28 +00:00
2016-05-09 01:40:16 +00:00
In this example, these limitations are addressed by development of
an Onion Monero Blockchain Explorer. The example not only shows how to use Monero C++ libraries, but also demonstrates how to use:
- [crow](https://github.com/ipkn/crow) - C++ micro web framework
- [lmdb++](https://github.com/bendiken/lmdbxx) - C++ wrapper for the LMDB
- [mstch](https://github.com/no1msd/mstch) - C++ {{mustache}} templates
- [rapidjson](https://github.com/miloyip/rapidjson) - C++ JSON parser/generator
2016-05-07 09:32:28 +00:00
2016-05-21 07:50:28 +00:00
## Onion address
Tor users:
- [http://xmrblocksvckbwvx.onion](http://xmrblocksvckbwvx.onion)
2016-05-23 01:13:53 +00:00
Non tor users, can try tor proxy, e.g.,
2016-05-21 07:50:28 +00:00
- [http://xmrblocksvckbwvx.onion.to](http://xmrblocksvckbwvx.onion.to)
2016-05-23 01:13:53 +00:00
## Still under development
The Onion Monero Blockchain Explorer is still under development and testing.
So not everything can work as expected and the explorer can be offline from time
to time, when changes are being made to it.
2016-05-07 09:34:37 +00:00
## Onion Monero Blockchain Explorer features
2016-05-07 09:32:28 +00:00
2016-05-09 22:36:52 +00:00
The key features of the Onion Monero Blockchain Explorer are
- available as a hidden service,
2016-05-09 09:51:25 +00:00
- no javascript, no web analytics trackers, no images,
2016-05-09 22:36:52 +00:00
- open sourced,
2016-05-09 09:51:25 +00:00
- made fully in C++,
- the only explorer showing encrypted payments ID,
2016-05-10 04:41:32 +00:00
- the only explorer with the ability to search by encrypted payments ID, tx public
2016-05-10 03:13:08 +00:00
keys, outputs public keys, input key images, output global indices,
output amount index and its amount,
2016-05-09 09:51:25 +00:00
- the only explorer showing ring signatures,
- the only explorer that can show which outputs belong to the given Monero address and viewkey,
- the only explorer showing detailed information about mixins, such as, mixins'
2016-05-10 00:39:10 +00:00
age, timescale, mixin of mixins,
2016-05-22 04:25:39 +00:00
- the only explorer showing amount output indices.
2016-05-07 10:04:03 +00:00
2016-05-08 08:45:51 +00:00
## Prerequisite
2016-05-07 09:32:28 +00:00
2016-05-09 09:51:25 +00:00
Everything here was done and tested using Monero 0.9.4 on Ubuntu 16.04 x86_64.
2016-05-07 09:32:28 +00:00
2016-05-08 08:45:51 +00:00
Instruction for Monero 0.9 compilation and Monero headers and libraries setup are
as shown here:
- [Compile Monero 0.9 on Ubuntu 16.04 x64](https://github.com/moneroexamples/compile-monero-09-on-ubuntu-16-04)
- [lmdbcpp-monero](https://github.com/moneroexamples/lmdbcpp-monero.git)
## C++ code
2016-05-07 09:32:28 +00:00
2016-05-08 08:45:51 +00:00
```c++
int main(int ac, const char* av[]) {
// get command line options
xmreg::CmdLineOptions opts {ac, av};
2016-05-07 09:32:28 +00:00
2016-05-08 08:45:51 +00:00
auto help_opt = opts.get_option<bool>("help");
2016-05-07 09:32:28 +00:00
2016-05-08 08:45:51 +00:00
// if help was chosen, display help text and finish
if (*help_opt)
{
return EXIT_SUCCESS;
}
auto port_opt = opts.get_option<string>("port");
auto bc_path_opt = opts.get_option<string>("bc-path");
auto custom_db_path_opt = opts.get_option<string>("custom-db-path");
auto deamon_url_opt = opts.get_option<string>("deamon-url");
//cast port number in string to uint16
uint16_t app_port = boost::lexical_cast<uint16_t>(*port_opt);
// get blockchain path
path blockchain_path;
if (!xmreg::get_blockchain_path(bc_path_opt, blockchain_path))
{
cerr << "Error getting blockchain path." << endl;
return EXIT_FAILURE;
}
// enable basic monero log output
xmreg::enable_monero_log();
// create instance of our MicroCore
// and make pointer to the Blockchain
xmreg::MicroCore mcore;
cryptonote::Blockchain* core_storage;
// initialize mcore and core_storage
if (!xmreg::init_blockchain(blockchain_path.string(),
mcore, core_storage))
{
cerr << "Error accessing blockchain." << endl;
return EXIT_FAILURE;
}
// create instance of page class which
// contains logic for the website
xmreg::page xmrblocks(&mcore, core_storage, *deamon_url_opt);
// crow instance
crow::SimpleApp app;
CROW_ROUTE(app, "/")
([&]() {
return xmrblocks.index2();
});
CROW_ROUTE(app, "/page/<uint>")
([&](size_t page_no) {
return xmrblocks.index2(page_no);
});
CROW_ROUTE(app, "/block/<uint>")
([&](size_t block_height) {
return xmrblocks.show_block(block_height);
});
CROW_ROUTE(app, "/block/<string>")
([&](string block_hash) {
return xmrblocks.show_block(block_hash);
});
CROW_ROUTE(app, "/tx/<string>")
([&](string tx_hash) {
return xmrblocks.show_tx(tx_hash);
});
CROW_ROUTE(app, "/tx/<string>/<uint>")
([&](string tx_hash, uint with_ring_signatures) {
return xmrblocks.show_tx(tx_hash, with_ring_signatures);
});
2016-05-09 05:53:33 +00:00
CROW_ROUTE(app, "/myoutputs").methods("GET"_method)
([&](const crow::request& req) {
string tx_hash = string(req.url_params.get("tx_hash"));
string xmr_address = string(req.url_params.get("xmr_address"));
string viewkey = string(req.url_params.get("viewkey"));
2016-05-09 04:13:17 +00:00
return xmrblocks.show_my_outputs(tx_hash, xmr_address, viewkey);
});
2016-05-08 08:45:51 +00:00
CROW_ROUTE(app, "/search").methods("GET"_method)
([&](const crow::request& req) {
return xmrblocks.search(string(req.url_params.get("value")));
});
CROW_ROUTE(app, "/autorefresh")
([&]() {
uint64_t page_no {0};
bool refresh_page {true};
return xmrblocks.index2(page_no, refresh_page);
});
// run the crow http server
app.port(app_port).multithreaded().run();
return EXIT_SUCCESS;
}
```
2016-05-08 09:46:01 +00:00
## Example screenshot
2016-05-08 09:56:26 +00:00
![Onion Monero Blockchain Explorer](https://raw.githubusercontent.com/moneroexamples/onion-monero-blockchain-explorer/master/screenshot/screenshot.jpg)
2016-05-08 09:46:01 +00:00
2016-05-08 08:45:51 +00:00
## Compile this example
2016-05-23 01:17:15 +00:00
2016-05-08 08:45:51 +00:00
The dependencies are same as those for Monero, so I assume Monero compiles
correctly. If so then to download and compile this example, the following
steps can be executed:
```bash
# download the source code
2016-05-21 06:23:56 +00:00
git clone https://github.com/moneroexamples/onion-monero-blockchain-explorer.git
2016-05-08 08:45:51 +00:00
# enter the downloaded sourced code folder
cd onion-monero-blockchain-explorer
# create the makefile
cmake .
# compile
make
```
2016-05-23 01:17:15 +00:00
Some explorer functionality depends on [lmdbcpp-monero](https://github.com/moneroexamples/lmdbcpp-monero.git) which must
be up to date with monero blockchain and running alongside monero daeamon, to
keep it up to date as new blocks are created in the blockchain.
2016-05-08 08:45:51 +00:00
## Other examples
2016-05-23 01:17:15 +00:00
2016-05-08 08:45:51 +00:00
Other examples can be found on [github](https://github.com/moneroexamples?tab=repositories).
Please know that some of the examples/repositories are not
finished and may not work as intended.
## How can you help?
Constructive criticism, code and website edits are always good. They can be made through github.
Some Monero are also welcome:
```
48daf1rG3hE1Txapcsxh6WXNe9MLNKtu7W7tKTivtSoVLHErYzvdcpea2nSTgGkz66RFP4GKVAsTV14v6G3oddBTHfxP6tU
```