2020-03-03 11:47:01 +01:00
|
|
|
<div class="container-lg">
|
2020-02-16 16:15:07 +01:00
|
|
|
|
2020-03-03 11:47:01 +01:00
|
|
|
<div style="position: relative;">
|
|
|
|
<app-blockchain position="top" [markHeight]="blockHeight"></app-blockchain>
|
|
|
|
</div>
|
2020-02-16 16:15:07 +01:00
|
|
|
|
2020-02-19 17:50:23 +01:00
|
|
|
<div class="title-block">
|
|
|
|
<h1>Block <ng-template [ngIf]="blockHeight"><a [routerLink]="['/block/', blockHash]">#{{ blockHeight }}</a></ng-template></h1>
|
|
|
|
</div>
|
2020-02-16 16:15:07 +01:00
|
|
|
|
2020-02-19 17:50:23 +01:00
|
|
|
<ng-template [ngIf]="!isLoadingBlock && !error">
|
|
|
|
|
|
|
|
<br>
|
|
|
|
|
|
|
|
<div class="box">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col">
|
|
|
|
<table class="table table-borderless table-striped">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>Timestamp</td>
|
|
|
|
<td>{{ block.timestamp * 1000 | date:'yyyy-MM-dd HH:mm' }} <i>(<app-time-since [time]="block.timestamp"></app-time-since> ago)</i></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Number of transactions</td>
|
|
|
|
<td>{{ block.tx_count }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Size</td>
|
|
|
|
<td>{{ block.size | bytes: 2 }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Weight</td>
|
|
|
|
<td>{{ block.weight | wuBytes: 2 }}</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
<div class="col">
|
|
|
|
<table class="table table-borderless table-striped">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>Hash</td>
|
2020-02-22 23:23:24 +01:00
|
|
|
<td><a [routerLink]="['/block/', block.id]" title="{{ block.id }}">{{ block.id | shortenString : 32 }}</a> <app-clipboard [text]="block.id"></app-clipboard></td>
|
2020-02-19 17:50:23 +01:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Previous Block</td>
|
|
|
|
<td><a [routerLink]="['/block/', block.previousblockhash]" [state]="{ data: { blockHeight: blockHeight - 1 } }" title="{{ block.previousblockhash }}">{{ block.previousblockhash | shortenString : 32 }}</a></td>
|
|
|
|
</tr>
|
2020-03-04 09:10:30 +01:00
|
|
|
<ng-template [ngIf]="fees" [ngIfElse]="loadingFees">
|
|
|
|
<tr>
|
|
|
|
<td>Total fees</td>
|
|
|
|
<td>{{ fees | number: '1.2-8' }} BTC (<app-fiat [value]="fees * 100000000"></app-fiat>)</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Reward + fees:</td>
|
|
|
|
<td>
|
|
|
|
{{ blockSubsidy + fees | number: '1.2-8' }} BTC (<app-fiat [value]="(blockSubsidy + fees) * 100000000"></app-fiat>)
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</ng-template>
|
|
|
|
<ng-template #loadingFees>
|
|
|
|
<tr>
|
|
|
|
<td>Total fees</td>
|
|
|
|
<td><span class="skeleton-loader"></span></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Reward + fees:</td>
|
|
|
|
<td><span class="skeleton-loader"></span></td>
|
|
|
|
</tr>
|
|
|
|
</ng-template>
|
2020-02-19 17:50:23 +01:00
|
|
|
</tbody>
|
|
|
|
</table>
|
2020-02-16 16:15:07 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-02-19 17:50:23 +01:00
|
|
|
</div>
|
2020-02-16 16:15:07 +01:00
|
|
|
|
2020-02-19 17:50:23 +01:00
|
|
|
<br>
|
2020-02-16 16:15:07 +01:00
|
|
|
|
2020-02-19 17:50:23 +01:00
|
|
|
<h2><ng-template [ngIf]="transactions?.length">{{ transactions?.length || '?' }} of </ng-template>{{ block.tx_count }} transactions</h2>
|
2020-02-16 16:15:07 +01:00
|
|
|
|
2020-02-19 17:50:23 +01:00
|
|
|
<br>
|
2020-02-16 16:15:07 +01:00
|
|
|
|
2020-02-29 21:32:12 +01:00
|
|
|
<app-transactions-list [transactions]="transactions" (loadMore)="loadMore()"></app-transactions-list>
|
2020-02-16 16:15:07 +01:00
|
|
|
|
2020-02-19 17:50:23 +01:00
|
|
|
<div class="text-center">
|
|
|
|
<ng-template [ngIf]="isLoadingTransactions">
|
|
|
|
<div class="spinner-border"></div>
|
|
|
|
<br><br>
|
|
|
|
</ng-template>
|
|
|
|
</div>
|
2020-02-16 16:15:07 +01:00
|
|
|
|
2020-02-19 17:50:23 +01:00
|
|
|
</ng-template>
|
|
|
|
|
|
|
|
<ng-template [ngIf]="isLoadingBlock && !error">
|
|
|
|
|
|
|
|
<br>
|
2020-02-16 16:15:07 +01:00
|
|
|
|
2020-02-19 17:50:23 +01:00
|
|
|
<div class="box">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col">
|
|
|
|
<table class="table table-borderless table-striped">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td colspan="2"><span class="skeleton-loader"></span></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td colspan="2"><span class="skeleton-loader"></span></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td colspan="2"><span class="skeleton-loader"></span></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td colspan="2"><span class="skeleton-loader"></span></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td colspan="2"><span class="skeleton-loader"></span></td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
<div class="col">
|
|
|
|
<table class="table table-borderless table-striped">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td colspan="2"><span class="skeleton-loader"></span></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td colspan="2"><span class="skeleton-loader"></span></td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2020-02-16 16:15:07 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-02-19 17:50:23 +01:00
|
|
|
</div>
|
2020-02-16 16:15:07 +01:00
|
|
|
|
2020-02-19 17:50:23 +01:00
|
|
|
<br>
|
|
|
|
|
|
|
|
<div class="text-center">
|
|
|
|
<div class="spinner-border"></div>
|
|
|
|
<br><br>
|
|
|
|
</div>
|
|
|
|
</ng-template>
|
|
|
|
|
|
|
|
<ng-template [ngIf]="error">
|
|
|
|
<div class="text-center">
|
|
|
|
Error loading block data.
|
2020-02-16 16:15:07 +01:00
|
|
|
<br>
|
2020-02-19 17:50:23 +01:00
|
|
|
<i>{{ error.error }}</i>
|
|
|
|
</div>
|
|
|
|
</ng-template>
|
2020-02-16 16:15:07 +01:00
|
|
|
|
2020-02-19 17:50:23 +01:00
|
|
|
</div>
|
2020-02-16 16:15:07 +01:00
|
|
|
|
2020-02-19 17:50:23 +01:00
|
|
|
<br>
|