2020-09-26 23:40:26 +07:00
|
|
|
<table style="width: 100%;">
|
2020-07-30 13:13:22 +07:00
|
|
|
<tr *ngIf="(isLoadingWebSocket$ | async) === false && (feeEstimations$ | async) as feeEstimations; else loadingFees">
|
2020-09-26 23:40:26 +07:00
|
|
|
<td class="d-none d-md-block">
|
|
|
|
<h5 class="card-title">Low priority</h5>
|
|
|
|
<p class="card-text">
|
|
|
|
{{ feeEstimations.hourFee }} sat/vB (<app-fiat [value]="feeEstimations.hourFee * 250"></app-fiat>)
|
|
|
|
</p>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<h5 class="card-title">Medium priority</h5>
|
|
|
|
<p class="card-text">
|
|
|
|
{{ feeEstimations.halfHourFee }} sat/vB (<app-fiat [value]="feeEstimations.halfHourFee * 250"></app-fiat>)
|
|
|
|
</p>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<h5 class="card-title">High priority</h5>
|
|
|
|
<p class="card-text">
|
|
|
|
{{ feeEstimations.fastestFee }} sat/vB (<app-fiat [value]="feeEstimations.fastestFee * 250"></app-fiat>)
|
|
|
|
</p>
|
|
|
|
</td>
|
2020-07-29 15:16:09 +07:00
|
|
|
</tr>
|
|
|
|
</table>
|
2020-09-26 23:40:26 +07:00
|
|
|
|
|
|
|
<ng-template #loadingFees>
|
|
|
|
<tr>
|
|
|
|
<td class="d-none d-md-block">
|
|
|
|
<h5 class="card-title">Low priority</h5>
|
|
|
|
<p class="card-text"><span class="skeleton-loader"></span></p>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<h5 class="card-title">Medium priority</h5>
|
|
|
|
<p class="card-text"><span class="skeleton-loader"></span></p>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<h5 class="card-title">High priority</h5>
|
|
|
|
<p class="card-text"><span class="skeleton-loader"></span></p>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</ng-template>
|