Add fee rate display component

This commit is contained in:
Mononaut
2023-06-15 15:16:49 -04:00
parent a45f1fde1c
commit c29558db20
6 changed files with 39 additions and 2 deletions

View File

@@ -0,0 +1,4 @@
<ng-container *ngIf="rateUnits$ | async as units">
<ng-container *ngIf="units !== 'wu'">{{ fee / (weight / 4) | feeRounding:rounding }} <span *ngIf="showUnit" [class]="unitClass">sat/vB</span></ng-container>
<ng-container *ngIf="units === 'wu'">{{ fee / weight | feeRounding:rounding }} <span *ngIf="showUnit" [class]="unitClass">sat/WU</span></ng-container>
</ng-container>