-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmempool.html
38 lines (33 loc) · 1.26 KB
/
mempool.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<h2 style="margin-bottom: 0px">
Transaction pool
</h2>
<h4 style="font-size: 12px; margin-top: 0px">(no of txs: {{mempool_size}}, size: {{mempool_size_kB}} kB, updated every {{ mempool_refresh_time }} seconds)</h4>
<div class="center">
<table class="center" style="width:80%">
<tr>
<td>age [h:m:s]</td>
<td>transaction hash</td>
<td>fee/per_kB [GRFT]</td>
<!--<td>outputs</td>-->
<td>in/out/pID</td>
<td>tx size [kB]</td>
</tr>
{{#mempooltxs}}
<tr>
<td>{{age}}</td>
<td><a href="/tx/{{hash}}">{{hash}}</a></td>
<td>{{fee}}/{{payed_for_kB}}</td>
<!--<td>{{xmr_outputs}}</td>-->
<td>{{no_inputs}}/{{no_outputs}}/{{pID}}</td>
<td>{{txsize}}</td>
</tr>
{{/mempooltxs}}
</table>
{{^mempool_fits_on_front_page}}
{{#partial_mempool_shown}}
<div class="center" style="text-align: center; margin-bottom: 10px">
<a href="/txpool">Only {{no_of_mempool_tx_of_frontpage}} txs shown. Click here to see all of them</a>
</div>
{{/partial_mempool_shown}}
{{/mempool_fits_on_front_page}}
</div>