|
|
|
@ -8,7 +8,7 @@ Curently avaliable Monero blockchain explorer websites exist in the clearnet. Al
|
|
|
|
|
- are closed sourced,
|
|
|
|
|
- are not available as hidden services,
|
|
|
|
|
- have very only basic search capabilities,
|
|
|
|
|
- cant identify users ouputs based on provided Monero address and viewkey.
|
|
|
|
|
- can't identify users ouputs based on provided Monero address and viewkey.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
In this example, these limitations are addressed by development of
|
|
|
|
@ -127,6 +127,10 @@ int main(int ac, const char* av[]) {
|
|
|
|
|
return xmrblocks.show_tx(tx_hash, with_ring_signatures);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
CROW_ROUTE(app, "/myoutputs/<string>/<string>/<string>")
|
|
|
|
|
([&](string tx_hash, string xmr_address, string viewkey) {
|
|
|
|
|
return xmrblocks.show_my_outputs(tx_hash, xmr_address, viewkey);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
CROW_ROUTE(app, "/search").methods("GET"_method)
|
|
|
|
|
([&](const crow::request& req) {
|
|
|
|
|