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.

32 lines
944 B
HTML

9 years ago
<h1>Hidden Monero blockchain explorer</h1>
<h2>Current height: {{height}} | Server time {{server_timestamp}}</h2>
<div>
<ul>
9 years ago
<table>
<tr>
<td>height</td>
<td>timestamp_(Δ mm:ss)</td>
<td>block hash</td>
<td>reward (w/ fees)</td>
<td>no_of_txs</td>
9 years ago
<td>xmr_outputs</td>
<td>mixin_range</td>
</tr>
9 years ago
{{#blocks}}
<tr>
<td>{{height}}</td>
<td>{{timestamp}}</td>
<td>{{hash}}</td>
<td>{{block_reward}}</td>
9 years ago
<td>{{notx}}</td>
<td>{{xmr_outputs}}</td>
<td>{{mixin_range}}</td>
9 years ago
</tr>
{{/blocks}}
</table>
</ul>
</div>