2020-03-23 01:43:03 +07:00
|
|
|
<div class="container-xl" *ngIf="mempoolBlock$ | async as mempoolBlock">
|
2020-03-17 21:53:20 +07:00
|
|
|
|
|
|
|
<div class="title-block">
|
2020-07-30 15:38:55 +07:00
|
|
|
<h1 class="float-left">{{ ordinal$ | async }}</h1>
|
2020-07-19 22:54:31 +07:00
|
|
|
<button [routerLink]="['/' | relativeUrl]" class="btn btn-sm float-right mr-2 mt-2">✕</button>
|
2020-03-17 21:53:20 +07:00
|
|
|
</div>
|
|
|
|
|
2020-07-19 19:49:27 +07:00
|
|
|
<div class="clearfix"></div>
|
|
|
|
|
2020-03-17 21:53:20 +07:00
|
|
|
<div class="box">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm">
|
|
|
|
<table class="table table-borderless table-striped">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>Median fee</td>
|
2020-04-11 23:23:39 +07:00
|
|
|
<td>~{{ mempoolBlock.medianFee | number:'1.0-0' }} sat/vB (<app-fiat [value]="mempoolBlock.medianFee * 250" digitsInfo="1.2-2"></app-fiat>)</td>
|
2020-03-17 21:53:20 +07:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Fee span</td>
|
2020-04-09 15:23:46 +07:00
|
|
|
<td><span class="yellow-color">{{ mempoolBlock.feeRange[0] | number:'1.0-0' }} - {{ mempoolBlock.feeRange[mempoolBlock.feeRange.length - 1] | number:'1.0-0' }} sat/vB</span></td>
|
2020-03-17 21:53:20 +07:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Total fees</td>
|
2020-07-24 14:11:49 +07:00
|
|
|
<td><app-amount [satoshis]="mempoolBlock.totalFees" [digitsInfo]="'1.2-2'" [noFiat]="true"></app-amount> (<app-fiat [value]="mempoolBlock.totalFees" digitsInfo="1.0-0"></app-fiat>)</td>
|
2020-03-17 21:53:20 +07:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Transactions</td>
|
|
|
|
<td>{{ mempoolBlock.nTx }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Filled</td>
|
|
|
|
<td>
|
|
|
|
<div class="progress position-relative">
|
2020-07-30 15:38:55 +07:00
|
|
|
<div class="progress-bar progress-mempool {{ (network$ | async) }}" role="progressbar" [ngStyle]="{'width': (mempoolBlock.blockVSize / 1000000) * 100 + '%' }"></div>
|
2020-03-17 21:53:20 +07:00
|
|
|
<div class="progress-text">{{ mempoolBlock.blockSize | bytes: 2 }}</div>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
<div class="col-sm">
|
|
|
|
<app-fee-distribution-graph [feeRange]="mempoolBlock.feeRange"></app-fee-distribution-graph>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<br>
|
|
|
|
|
|
|
|
</div>
|