You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

81 lines
2.7 KiB
HTML

9 years ago
<div class="center">
<h3 style="font-size: 12px; margin-top: 20px">
Server time: {{server_timestamp}} | <a href="/mempool">Memory pool</a>
| <a href="/rawtx">Tx pusher </a>
| <a href="/rawkeyimgs">Key images checker</a>
| <a href="/rawoutputkeys">Output keys checker</a> |
9 years ago
{{#refresh}}
<a href="/">Autorefresh is ON (10 s)</a>
{{/refresh}}
{{^refresh}}
<a href="/autorefresh">Autorefresh is OFF</a>
{{/refresh}}
{{#testnet}}
|
This is <span style="color:#ff6b62">testnet</span> blockchian
{{/testnet}}
9 years ago
</h3>
</div>
{{{mempool_info}}}
{{#is_page_zero}}
<h2 style="margin-bottom: 0px">Transactions in the last 25 blocks</h2>
9 years ago
{{/is_page_zero}}
{{^is_page_zero}}
<h2 style="margin-bottom: 0px">Transactions in older blocks<!--(height: {{height}})--></h2>
9 years ago
{{/is_page_zero}}
<h4 style="font-size: 14px; margin-top: 0px">(Median size of these blocks: {{blk_size_median}} kB)</h4>
9 years ago
<div class="center">
<table class="center">
<tr>
<td>height</td>
<td>age {{age_format}}<!--(Δm)--></td>
<td>size [kB]<!--(Δm)--></td>
9 years ago
<td>tx hash</td>
9 years ago
<td>fees</td>
<td>outputs</td>
9 years ago
<td>in/out</td>
<td>rct/type</td>
9 years ago
<td>mixin</td>
<td>tx size [kB]</td>
9 years ago
</tr>
9 years ago
{{#txs}}
9 years ago
<tr>
<td><a href="/block/{{height}}">{{height}}</a></td>
<td>{{age}}<!--{{time_delta}}--></td>
<td>{{blk_size}}</td>
9 years ago
<td><a href="/tx/{{hash}}">{{hash}}</a></td>
9 years ago
<td>{{tx_fee_short}}</td>
<td>{{sum_outputs_short}}</td>
<td>{{no_inputs}}/{{no_outputs}}</td>
<td>
{{#is_ringct}}yes/{{rct_type}}{{/is_ringct}}
{{^is_ringct}}no{{/is_ringct}}
</td>
9 years ago
<td>{{mixin}}</td>
9 years ago
<td>{{tx_size_short}}</td>
9 years ago
</tr>
9 years ago
{{/txs}}
9 years ago
</table>
<div id="pages" class="center" style="text-align: center;">
9 years ago
{{^is_page_zero}}
<a href="/page/{{prev_page}}">previous page</a> |
<a href="/">first page</a> |
{{/is_page_zero}}
current page: {{page_no}}/<a href="/page/{{total_page_no}}">{{total_page_no}}</a>
| <a href="/page/{{next_page}}">next page</a>
</div>
</div>