|
|
|
@ -7,7 +7,7 @@
|
|
|
|
|
<section id="header">
|
|
|
|
|
<h1>Wownero Block Explorer</h1>
|
|
|
|
|
<nav id="nav">
|
|
|
|
|
<img src="//files.lzahq.tech/wow/WOW-Laptop-720x515.png"/ width=200>
|
|
|
|
|
<img src="//files.lzahq.tech/wow/Wownero-Development-Stock-720x440.png"/ width=300>
|
|
|
|
|
<div class="search">
|
|
|
|
|
<form action="/search" method="get">
|
|
|
|
|
<input type="text" name="value" placeholder="Enter a transaction hash, block hash, block height, or wallet address.">
|
|
|
|
@ -99,23 +99,21 @@
|
|
|
|
|
<h2>Transaction Pool ({{ daemon_info.tx_pool_size }})</h2>
|
|
|
|
|
<p>Transactions that have yet to be mined into a block. This is where payments sit in a PENDING state.</p>
|
|
|
|
|
</caption>
|
|
|
|
|
{% if daemon_info.tx_pool_size > 0 %}
|
|
|
|
|
<tr>
|
|
|
|
|
<th>Received Time</th>
|
|
|
|
|
<th>Hash</th>
|
|
|
|
|
<th>Fee</th>
|
|
|
|
|
<!-- <th>Inputs / Outputs</th> -->
|
|
|
|
|
<!-- <th>Ring Decoys</th> -->
|
|
|
|
|
<th>Inputs / Outputs</th>
|
|
|
|
|
<th>Ring Decoys</th>
|
|
|
|
|
</tr>
|
|
|
|
|
{% if daemon_info.tx_pool_size > 0 %}
|
|
|
|
|
{% for tx in tx_pool_txs %}
|
|
|
|
|
<tr>
|
|
|
|
|
<td>{{ tx.receive_time }}</td>
|
|
|
|
|
<td>{{ tx.receive_time | date(format="%Y-%m-%d %H:%M") }}</td>
|
|
|
|
|
<td><a href="/transaction/{{ tx.id_hash }}">{{ tx.id_hash | truncate(length=8) }}</a></td>
|
|
|
|
|
<td>{{ tx.fee / 1000000000000 }} WOW</td>
|
|
|
|
|
{% raw %}
|
|
|
|
|
<!-- <td>{{ tx.tx_json_full.vin | length }} / {{ tx.tx_json_full.vout | length }}</td> -->
|
|
|
|
|
<!-- <td>{{ tx.tx_json_full.vin.0.key.key_offsets | length }}</td> -->
|
|
|
|
|
{% endraw %}
|
|
|
|
|
<td>{{ tx.tx_json_full.vin | length }} / {{ tx.tx_json_full.vout | length }}</td>
|
|
|
|
|
<td>{{ tx.tx_json_full.vin.0.key.key_offsets | length }}</td>
|
|
|
|
|
</tr>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
{% endif %}
|
|
|
|
|