added signed outputs's keys file checker
parent
d96a0f9829
commit
4a81039cf0
@ -0,0 +1,66 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
|
||||
{{#refresh}}
|
||||
<meta http-equiv="refresh" content="10">
|
||||
{{/refresh}}
|
||||
<title>Onion Monero Blockchain Explorer</title>
|
||||
<!--<link rel="stylesheet" type="text/css" href="/css/style.css">-->
|
||||
<style type="text/css">
|
||||
{{#css_styles}}{{/css_styles}}
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div>
|
||||
|
||||
<div class="center">
|
||||
<h1 class="center"><a href="/">Onion Monero Signed Output Keys Checker</a></h1>
|
||||
<h4 style="font-size: 15px; margin: 0px">(no javascript - no cookies - no web analytics trackers - no images - open sourced)</h4>
|
||||
</div>
|
||||
|
||||
|
||||
{{#has_error}}
|
||||
<h4 style="color:red">Attempt failed</h4>
|
||||
<h4>{{error_msg}}</h4>
|
||||
{{/has_error}}
|
||||
{{^has_error}}
|
||||
<h4>Output keys for address: {{address}}</h4>
|
||||
<h4>Viewkey: {{viewkey}}</h4>
|
||||
{{#has_total_xmr}}
|
||||
<h4>Total value of xmr received: {{total_xmr}}</h4>
|
||||
{{/has_total_xmr}}
|
||||
|
||||
<div class="center">
|
||||
|
||||
<form method="post" style="width:100%; margin-top:15px" class="style-1">
|
||||
<table class="center" style="width:80%">
|
||||
<tr>
|
||||
<td>Output no.</td>
|
||||
<td>Public key</td>
|
||||
<td>Timestamp</td>
|
||||
<td>RingCT</td>
|
||||
<td>Amount</td>
|
||||
</tr>
|
||||
{{#output_keys}}
|
||||
<input type="hidden" id="key_img_{{key_image}}" name="key_sig_pair_{{key_image}}" value="{{signature}}">
|
||||
<tr>
|
||||
<td>{{output_no}}</td>
|
||||
<td><a href="/tx/{{tx_hash}}">{{output_pub_key}}</a></td>
|
||||
<td>{{timestamp}}</td>
|
||||
<td>{{is_ringct}}</td>
|
||||
<td>{{amount}}</td>
|
||||
|
||||
</tr>
|
||||
{{/output_keys}}
|
||||
</table>
|
||||
<br/>
|
||||
</form>
|
||||
|
||||
</div>
|
||||
|
||||
{{/has_error}}
|
||||
|
||||
</div>
|
@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
|
||||
{{#refresh}}
|
||||
<meta http-equiv="refresh" content="10">
|
||||
{{/refresh}}
|
||||
<title>Onion Monero Blockchain Explorer</title>
|
||||
<!--<link rel="stylesheet" type="text/css" href="/css/style.css">-->
|
||||
<style type="text/css">
|
||||
{{#css_styles}}{{/css_styles}}
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div>
|
||||
|
||||
<div class="center">
|
||||
<h1 class="center"><a href="/">Onion Monero Signed Output Keys Checker</a></h1>
|
||||
<h4 style="font-size: 15px; margin: 0px">(no javascript - no cookies - no web analytics trackers - no images - open sourced)</h4>
|
||||
</div>
|
||||
|
||||
<div class="center">
|
||||
<form action="/checkrawoutputkeys" method="post" style="width:100%; margin-top:15px" class="style-1">
|
||||
Paste base64 encoded, signed output keys data here<br/>
|
||||
(In Linux, can get base64 signed raw tx data: <i>base64 your_output_keys_filename | xclip -selection clipboard</i>)<br/>
|
||||
|
||||
<textarea name="rawoutputkeysdata" rows="20" cols="80"></textarea><br/><br/>
|
||||
Viewkey (<i>output keys file data is encoded using your viewkey. Thus is needed for decryption</i>)
|
||||
<br/>
|
||||
<input type="text" name="viewkey" size="80">
|
||||
<br/>
|
||||
<input type="submit" name="action" value="check">
|
||||
</form>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
Loading…
Reference in New Issue