onion-wownero-blockchain-ex.../src/templates/block.html

100 lines
2.9 KiB
HTML
Raw Normal View History

2016-04-15 23:07:47 +00:00
<div>
2016-04-16 03:44:58 +00:00
2016-04-16 04:11:17 +00:00
<H4>Block hash (height): {{blk_hash}} ({{blk_height}})</H4>
2016-04-16 03:44:58 +00:00
{{#have_prev_hash}}
2016-04-16 04:11:17 +00:00
<H5>Previous block: <a href="/block/{{prev_hash}}">{{prev_hash}}</a></H5>
2016-04-16 03:44:58 +00:00
{{/have_prev_hash}}
{{#have_next_hash}}
2016-04-16 04:11:17 +00:00
<H5>Next block: <a href="/block/{{next_hash}}">{{next_hash}}</a></H5>
2016-04-16 03:44:58 +00:00
{{/have_next_hash}}
2016-04-17 23:50:59 +00:00
<table class="center">
2016-04-16 03:44:58 +00:00
<tr>
2016-09-07 00:01:07 +00:00
<td>Timestamp [UCT] (epoch):</td><td>{{blk_timestamp}} ({{blk_timestamp_epoch}})</td>
2016-04-16 03:44:58 +00:00
<td>Age {{age_format}}:</td><td>{{blk_age}}</td>
2016-04-16 04:11:17 +00:00
<td>Δ [h:m:s]:</td><td>{{delta_time}}</td>
2016-04-16 03:44:58 +00:00
</tr>
<tr>
2016-04-17 05:09:46 +00:00
<td>Major.minor version:</td><td>{{major_ver}}.{{minor_ver}}</td>
<td>Block reward:</td><td>{{blk_reward}}</td>
2016-04-16 03:44:58 +00:00
<td>Block size [kB]:</td><td>{{blk_size}}</td>
</tr>
<tr>
<td>nonce:</td><td>{{blk_nonce}}</td>
2016-04-17 05:09:46 +00:00
<td>Total fees:</td><td>{{sum_fees}}</td>
2016-04-17 01:44:24 +00:00
<td>No of txs:</td><td>{{no_txs}}</td>
2016-04-16 03:44:58 +00:00
</tr>
<tr>
<td>PoW hash:</td><td>{{blk_pow_hash}}</td>
<td>Difficulty:</td><td>{{blk_difficulty}}</td>
2019-05-25 04:46:50 +00:00
{{#is_randomx}}
<td colspan="2"><a href="/randomx/{{blk_height}}">RandomX source code</a></td>
{{/is_randomx}}
{{^is_randomx}}
<td></td>
{{/is_randomx}}
<td></td>
</tr>
2016-04-17 01:44:24 +00:00
</table>
2016-04-17 05:09:46 +00:00
<h3>Miner reward transaction</h3>
2016-04-17 23:50:59 +00:00
<table class="center">
2016-04-17 01:44:24 +00:00
<tr>
<td>hash</td>
2016-04-17 05:09:46 +00:00
<td>outputs</td>
2016-04-17 01:44:24 +00:00
<td>size [kB]</td>
2016-04-17 01:46:14 +00:00
<td>version</td>
2016-04-17 01:44:24 +00:00
</tr>
2016-04-17 05:09:46 +00:00
{{#coinbase_txs}}
2016-04-17 01:44:24 +00:00
<tr>
2016-04-19 22:10:50 +00:00
<td><a href="/tx/{{hash}}">{{hash}}</a>
2016-04-17 05:09:46 +00:00
<td>{{sum_outputs}}</td>
2016-04-17 01:44:24 +00:00
<td>{{tx_size}}</td>
2016-04-17 01:46:14 +00:00
<td>{{version}}</td>
2016-04-17 01:44:24 +00:00
</tr>
2016-04-17 05:09:46 +00:00
{{/coinbase_txs}}
2016-04-16 03:44:58 +00:00
</table>
2016-04-17 01:44:24 +00:00
2016-04-17 05:09:46 +00:00
<h3>Transactions ({{no_txs}})</h3>
{{#have_txs}}
<table class="center" style="width:80%">
<tr>
<td>hash</td>
<td>outputs</td>
<td>fee [&#181;&#x271]</td>
2016-04-21 21:55:19 +00:00
<td>in/out</td>
2016-04-17 05:09:46 +00:00
<td>size [kB]</td>
<td>version</td>
</tr>
{{#blk_txs}}
<tr>
2016-04-19 22:10:50 +00:00
<td><a href="/tx/{{hash}}">{{hash}}</a></td>
<td>{{sum_outputs}}</td>
<td>{{fee_micro}}</td>
2016-04-19 07:13:16 +00:00
<td>{{no_inputs}}/{{no_outputs}}</td>
2016-04-17 05:09:46 +00:00
<td>{{tx_size}}</td>
<td>{{version}}</td>
</tr>
{{/blk_txs}}
</table>
2018-07-24 04:06:03 +00:00
{{/have_txs}}
{{#enable_as_hex}}
<h5 style="margin-top:1px">
<a href="/blockhex/{{blk_height}}">Block as hex</a>
2018-08-07 03:53:25 +00:00
| <a href="/blockhexcomplete/{{blk_height}}">Complete block as hex</a>
2018-07-24 04:06:03 +00:00
</h5>
{{/enable_as_hex}}
2016-04-17 05:09:46 +00:00
2016-04-17 01:44:24 +00:00
</div>