onion-wownero-blockchain-ex.../src/templates/rawtx.html

34 lines
1.4 KiB
HTML
Raw Normal View History

<div>
<div class="center">
2017-01-30 08:27:33 +00:00
<br/>
<h3 class="center">Transaction Pusher</h3>
</div>
2016-09-28 06:37:53 +00:00
<div class="center">
<form action="/checkandpush" method="post" style="width:100%; margin-top:15px" class="style-1">
2017-10-21 09:41:06 +00:00
Paste here either a hex string of raw transaction<br/>
2018-12-11 15:43:06 +00:00
(the <i>tx_blob</i> response in the wallet RPC, or the <i>raw_wownero_tx</i>
2017-10-21 09:41:06 +00:00
file saved by the wallet CLI with <i>--do-not-relay</i> option specified),<br/>
or base64 encoded, unsigned or signed transaction data<br/>
2017-10-21 09:41:06 +00:00
<br/>
2018-12-11 15:43:06 +00:00
(In Linux, can get the raw tx data: <i>cat raw_wownero_tx | xclip -selection clipboard</i>)<br/>
(In Windows, can get the raw tx data: <i>certutil.exe -encode -f raw_wownero_tx encoded.txt & type "encoded.txt" | clip</i>)<br/>
2017-11-08 08:22:01 +00:00
2016-09-28 06:37:53 +00:00
<textarea name="rawtxdata" rows="20" cols="80"></textarea>
<br/>
Note: data is sent to the server, as the calculations are done on the server side
<br/>
Note: "check" does not work for the hex string of raw transaction
<br/>
2016-09-28 06:37:53 +00:00
<input type="submit" name="action" value="check">
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
<input type="submit" name="action" value="push">
</form>
</div>
2017-01-30 08:33:42 +00:00
<br/>
</div>