You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.4 KiB
40 lines
1.4 KiB
<tr> |
|
<td> |
|
{{#if block.uncle}} |
|
<a href="https://expedition.dev/uncle/{{block.uncleHeight}}" rel="nofollow" target="_blank">{{format-number block.height}}</a> |
|
{{else}} |
|
<a href="https://expedition.dev/block/{{block.height}}" rel="nofollow" target="_blank">{{format-number block.height}}</a> |
|
{{/if}} |
|
</td> |
|
<td> |
|
{{#if block.uncle}} |
|
<a href="https://expedition.dev/uncle/{{block.hash}}" class="hash" rel="nofollow" target="_blank">{{block.hash}}</a> |
|
{{else if block.orphan}} |
|
<span class="label label-danger">Orphan</span> |
|
{{else}} |
|
<a href="https://expedition.dev/block/{{block.hash}}" class="hash" rel="nofollow" target="_blank">{{block.hash}}</a> |
|
{{/if}} |
|
</td> |
|
<td>{{format-date-locale block.timestamp}}</td> |
|
<td> |
|
{{#if block.isLucky}} |
|
<span class="label label-success">{{format-number block.variance style='percent'}}</span> |
|
{{else}} |
|
<span class="label label-info">{{format-number block.variance style='percent'}}</span> |
|
{{/if}} |
|
</td> |
|
<td> |
|
{{#if block.uncle}} |
|
<span class="label label-default">{{block.formatReward}}</span> |
|
{{else if block.isOk}} |
|
<span class="label label-primary">{{block.formatReward}}</span> |
|
{{/if}} |
|
</td> |
|
<td> |
|
{{#if block.uncle}} |
|
<span class="label label-default">Uncle</span> |
|
{{else if block.isOk}} |
|
<span class="label label-primary">Block</span> |
|
{{/if}} |
|
</td> |
|
</tr>
|
|
|