From a9b99743402c58f4d31e3a0b767ac1556b06faaa Mon Sep 17 00:00:00 2001 From: moneroexamples Date: Mon, 9 May 2016 04:13:17 +0000 Subject: [PATCH] README updated --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8d8fd27..69c71b9 100644 --- a/README.md +++ b/README.md @@ -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 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) {