73 lines
2.7 KiB
HTML
73 lines
2.7 KiB
HTML
{{define "specific"}}{{$cs := .CoinShortcut}}{{$tx := .Tx}}{{$txSpecific := .TxSpecific}}
|
|
<h1>Transaction</h1>
|
|
<div class="alert alert-data ellipsis">
|
|
<span class="data">{{$tx.Txid}}</span>
|
|
</div>
|
|
<h3>Summary</h3>
|
|
<div class="data-div">
|
|
<table class="table data-table">
|
|
<tbody>
|
|
{{if $tx.Confirmations}}
|
|
<tr>
|
|
<td style="width: 25%;">Mined Time</td>
|
|
<td class="data">{{formatUnixTime $tx.Blocktime}}</td>
|
|
</tr>{{end}}
|
|
<tr>
|
|
<td style="width: 25%;">In Block</td>
|
|
<td class="ellipsis data">{{if $tx.Confirmations}}{{$tx.Blockhash}}{{else}}Unconfirmed{{end}}</td>
|
|
</tr>
|
|
{{if $tx.Confirmations}}
|
|
<tr>
|
|
<td>In Block Height</td>
|
|
<td class="data"><a href="/block/{{$tx.Blockheight}}">{{$tx.Blockheight}}</a></td>
|
|
</tr>{{end}}
|
|
<tr>
|
|
<td>Total Input</td>
|
|
<td class="data">{{formatAmount $tx.ValueIn}} {{$cs}}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Total Output</td>
|
|
<td class="data">{{formatAmount $tx.ValueOut}} {{$cs}}</td>
|
|
</tr>
|
|
{{if $tx.Fees}}
|
|
<tr>
|
|
<td>Fees</td>
|
|
<td class="data">{{formatAmount $tx.Fees}} {{$cs}}</td>
|
|
</tr>{{end}}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<h3>Details</h3>
|
|
<div class="data-div">
|
|
{{template "txdetail" .}}
|
|
</div>
|
|
<div class="data-div">
|
|
<h5>Transaction Data</h5>
|
|
<div class="alert alert-data" style="word-wrap: break-word; font-size: smaller;">
|
|
<pre id="txSpecific"></pre>
|
|
</div>
|
|
<script type="text/javascript">
|
|
txSpecific = {{ $txSpecific }};
|
|
function syntaxHighlight(json) {
|
|
json = JSON.stringify(json, undefined, 2);
|
|
json = json.replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>');
|
|
return json.replace(/("(\\u[a-zA-Z0-9]{4}|\\[^u]|[^\\"])*"(\s*:)?|\b(true|false|null)\b|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?)/g, function (match) {
|
|
var cls = 'number';
|
|
if (/^"/.test(match)) {
|
|
if (/:$/.test(match)) {
|
|
cls = 'key';
|
|
} else {
|
|
cls = 'string';
|
|
}
|
|
} else if (/true|false/.test(match)) {
|
|
cls = 'boolean';
|
|
} else if (/null/.test(match)) {
|
|
cls = 'null';
|
|
}
|
|
return '<span class="' + cls + '">' + match + '</span>';
|
|
});
|
|
}
|
|
document.getElementById('txSpecific').innerHTML = syntaxHighlight(txSpecific);
|
|
</script>
|
|
</div>
|
|
{{end}} |