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

41 lines
1.5 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
Two Monero blockchain explorer exist in the clearnet. Although useful,
their limitations are that they use JavaScript, have images
2016-05-07 09:34:59 +00:00
([might be used for coockless tracking](http://lucb1e.com/rp/cookielesscookies/)),
2016-05-07 09:34:37 +00:00
track users activates through google analytics, are not open sourced, and are not
2016-05-07 09:32:28 +00:00
available as hidden services. These things are of importance
for privacy-oriented users.
In this example, these limitations are addressed. Specifically,
an Onion Monero Blockchain Explorer is developed. It is build in C++,
and it 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:34:37 +00:00
## Onion Monero Blockchain Explorer features
2016-05-07 09:32:28 +00:00
- no javascript, no web analytics trackers, no images, i.e., no user tracking
- open source which allows everyone to check its source code, fork it, contribute
- made fully in C++ allowing for seamless integration with Monero
- does not use RPC calls, except to get mempool data, which improves its performance
2016-05-07 09:40:00 +00:00
and enables to fetch more information from the blockchain
2016-05-07 10:04:03 +00:00
- index page lists recent transactions in the blockchain and in the memory pool,
rather than only recent blocks, allowing for fast overview of recent activity in Monero
2016-05-07 09:40:00 +00:00
2016-05-07 09:32:28 +00:00