mirror of
https://git.wownero.com/wownero/onion-wownero-blockchain-explorer.git
synced 2024-08-15 00:33:12 +00:00
showing public address components added
This commit is contained in:
parent
a96618b78b
commit
840e81426e
2 changed files with 81 additions and 1 deletions
54
src/page.h
54
src/page.h
|
@ -33,6 +33,7 @@
|
||||||
#define TMPL_FOOTER TMPL_DIR "/footer.html"
|
#define TMPL_FOOTER TMPL_DIR "/footer.html"
|
||||||
#define TMPL_BLOCK TMPL_DIR "/block.html"
|
#define TMPL_BLOCK TMPL_DIR "/block.html"
|
||||||
#define TMPL_TX TMPL_DIR "/tx.html"
|
#define TMPL_TX TMPL_DIR "/tx.html"
|
||||||
|
#define TMPL_ADDRESS TMPL_DIR "/address.html"
|
||||||
#define TMPL_MY_OUTPUTS TMPL_DIR "/my_outputs.html"
|
#define TMPL_MY_OUTPUTS TMPL_DIR "/my_outputs.html"
|
||||||
#define TMPL_SEARCH_RESULTS TMPL_DIR "/search_results.html"
|
#define TMPL_SEARCH_RESULTS TMPL_DIR "/search_results.html"
|
||||||
|
|
||||||
|
@ -1407,7 +1408,34 @@ namespace xmreg {
|
||||||
{
|
{
|
||||||
return result_html;
|
return result_html;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// check if monero address is given based on its length
|
||||||
|
// if yes, then we can only show its public components
|
||||||
|
if (search_text.length() == 95)
|
||||||
|
{
|
||||||
|
cout << "address is given " << endl;
|
||||||
|
|
||||||
|
// parse string representing given monero address
|
||||||
|
cryptonote::account_public_address address;
|
||||||
|
|
||||||
|
bool testnet {false};
|
||||||
|
|
||||||
|
if (search_text[0] == '9' || search_text[0] == 'A')
|
||||||
|
testnet = true;
|
||||||
|
|
||||||
|
if (!xmreg::parse_str_address(search_text, address, testnet))
|
||||||
|
{
|
||||||
|
cerr << "Cant parse string address: " << search_text << endl;
|
||||||
|
return string("Cant parse address (probably incorrect format): ")
|
||||||
|
+ search_text;
|
||||||
|
}
|
||||||
|
|
||||||
|
cout << "public spend key: " << address.m_spend_public_key << endl;
|
||||||
|
cout << "public view key: " << address.m_view_public_key << endl;
|
||||||
|
|
||||||
|
return show_address_details(address, testnet);
|
||||||
}
|
}
|
||||||
|
|
||||||
// second let try searching for tx
|
// second let try searching for tx
|
||||||
|
@ -1646,12 +1674,36 @@ namespace xmreg {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
result_html = show_search_results(search_text, all_possible_tx_hashes);
|
result_html = show_search_results(search_text, all_possible_tx_hashes);
|
||||||
|
|
||||||
return result_html;
|
return result_html;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
string
|
||||||
|
show_address_details(const account_public_address& address, bool testnet = false)
|
||||||
|
{
|
||||||
|
|
||||||
|
string address_str = xmreg::print_address(address, testnet);
|
||||||
|
string pub_viewkey_str = fmt::format("{:s}", address.m_view_public_key);
|
||||||
|
string pub_spendkey_str = fmt::format("{:s}", address.m_spend_public_key);
|
||||||
|
|
||||||
|
mstch::map context {
|
||||||
|
{"xmr_address" , REMOVE_HASH_BRAKETS(address_str)},
|
||||||
|
{"public_viewkey" , REMOVE_HASH_BRAKETS(pub_viewkey_str)},
|
||||||
|
{"public_spendkey" , REMOVE_HASH_BRAKETS(pub_spendkey_str)},
|
||||||
|
{"testnet" , testnet},
|
||||||
|
};
|
||||||
|
|
||||||
|
// read address.html
|
||||||
|
string address_html = xmreg::read(TMPL_ADDRESS);
|
||||||
|
|
||||||
|
// add header and footer
|
||||||
|
string full_page = get_full_page(address_html);
|
||||||
|
|
||||||
|
// render the page
|
||||||
|
return mstch::render(full_page, context);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
map<string, vector<string>>
|
map<string, vector<string>>
|
||||||
search_txs(vector<transaction> txs, const string& search_text)
|
search_txs(vector<transaction> txs, const string& search_text)
|
||||||
|
|
28
src/templates/address.html
Normal file
28
src/templates/address.html
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<br/>
|
||||||
|
<H4 style="margin:5px">Address:<br/>{{xmr_address}}</H4>
|
||||||
|
<br/>
|
||||||
|
|
||||||
|
{{#testnet}}
|
||||||
|
<H4 style="margin:5px">Testnet address: Yes</H4>
|
||||||
|
{{/testnet}}
|
||||||
|
{{^testnet}}
|
||||||
|
<H4 style="margin:5px">Testnet address: No</H4>
|
||||||
|
{{/testnet}}
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
<H4 style="margin:5px">Associated public keys</H4>
|
||||||
|
|
||||||
|
<H4 style="margin:5px">Public view key: {{public_viewkey}}</H4>
|
||||||
|
<H4 style="margin:5px">Public spend key: {{public_spendkey}}</H4>
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
<H4 style="margin:5px">
|
||||||
|
Transactions:<br/> Sorry, its not possible to find txs associated with
|
||||||
|
normal addresses in Monero
|
||||||
|
</H4>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<br/>
|
||||||
|
<br/>
|
Loading…
Add table
Add a link
Reference in a new issue