mirror of
https://github.com/mempool/mempool.git
synced 2025-01-09 15:06:54 +01:00
7 lines
289 B
HTML
7 lines
289 B
HTML
<ng-container *ngIf="(viewFiat$ | async) && (conversions$ | async) as conversions; else viewFiatVin">
|
|
<span>{{ conversions.USD * (satoshis / 100000000) | currency:'USD':'symbol':'1.2-2' }}</span>
|
|
</ng-container>
|
|
<ng-template #viewFiatVin>
|
|
{{ satoshis / 100000000 }} BTC
|
|
</ng-template>
|