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.
45 lines
1.4 KiB
45 lines
1.4 KiB
{{#if model.candidates}} |
|
<h4>Recently Found Blocks</h4> |
|
<div class="table-responsive"> |
|
<table class="table table-condensed table-striped"> |
|
<thead> |
|
<tr> |
|
<th>Height</th> |
|
<th>Login</th> |
|
<th>Time Found</th> |
|
<th>Type</th> |
|
<th>Variance</th> |
|
<th>Shares/Diff</th> |
|
</tr> |
|
</thead> |
|
<tbody> |
|
{{#each model.candidates as |block|}} |
|
<tr> |
|
<td><a href="https://expedition.dev/block/{{block.height}}" rel="nofollow" target="_blank">{{format-number |
|
block.height}}</a></td> |
|
<td>{{#link-to 'account' block.finder class='hash'}}{{block.finder}}{{/link-to}}</td> |
|
<td>{{format-date-locale block.timestamp}}</td> |
|
<td> |
|
{{#if block.isSolo}} |
|
<span class="label label-danger">{{block.miningType}}</span> |
|
{{else}} |
|
<span class="label label-warning">{{block.miningType}}</span> |
|
{{/if}} |
|
|
|
</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>{{format-hashrate block.shareDiff}}</td> |
|
</tr> |
|
{{/each}} |
|
</tbody> |
|
</table> |
|
</div> |
|
{{else}} |
|
<h3>No new blocks yet</h3> |
|
{{/if}} |