2020-07-03 23:45:19 +07:00
|
|
|
<div class="container-xl">
|
2020-07-13 23:22:24 +07:00
|
|
|
<h1 style="float: left;">Transactions</h1>
|
2020-07-03 23:45:19 +07:00
|
|
|
<br>
|
|
|
|
|
|
|
|
<div class="clearfix"></div>
|
|
|
|
|
2020-07-16 14:36:02 +07:00
|
|
|
<div class="table-responsive-sm">
|
|
|
|
<table class="table table-borderless table-striped">
|
|
|
|
<thead>
|
|
|
|
<th style="width: 18%;">Transaction</th>
|
|
|
|
<th style="width: 20%;">Type</th>
|
|
|
|
<th style="width: 15%;">Total Sent (BSQ)</th>
|
|
|
|
<th style="width: 10%;">Outputs</th>
|
|
|
|
<th style="width: 12%;">Block Height</th>
|
|
|
|
<th style="width: 15%;">Block Time</th>
|
|
|
|
</thead>
|
|
|
|
<tbody *ngIf="!isLoading; else loadingTmpl">
|
|
|
|
<tr *ngFor="let tx of transactions; trackBy: trackByFn">
|
|
|
|
<td><a [routerLink]="['/tx/' | relativeUrl, tx.id]" [state]="{ data: tx }">{{ tx.id | shortenString : 16 }}</a></td>
|
|
|
|
<td><app-bisq-icon class="mr-1" [txType]="tx.txType"></app-bisq-icon> {{ tx.txTypeDisplayString }}</td>
|
|
|
|
<td>
|
|
|
|
<ng-template [ngIf]="tx.txType === 'PAY_TRADE_FEE'" [ngIfElse]="defaultTxType">
|
|
|
|
{{ tx.burntFee / 100 | number: '1.2-2' }}
|
|
|
|
</ng-template>
|
|
|
|
<ng-template #defaultTxType>
|
|
|
|
{{ calculateTotalOutput(tx.outputs) / 100 | number: '1.2-2' }}
|
|
|
|
</ng-template>
|
|
|
|
</td>
|
|
|
|
<td>{{ tx.outputs.length }}</td>
|
|
|
|
<td><a [routerLink]="['/block/' | relativeUrl, tx.blockHash]">{{ tx.blockHeight }}</a></td>
|
|
|
|
<td>{{ tx.time | date:'yyyy-MM-dd HH:mm' }}</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2020-07-03 23:45:19 +07:00
|
|
|
|
|
|
|
<br>
|
|
|
|
|
|
|
|
<ngb-pagination [collectionSize]="totalCount" [rotate]="true" [pageSize]="itemsPerPage" [(page)]="page" (pageChange)="pageChange(page)" [maxSize]="5" [boundaryLinks]="true"></ngb-pagination>
|
|
|
|
|
2020-07-15 13:10:13 +07:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<ng-template #loadingTmpl>
|
|
|
|
<tr *ngFor="let i of loadingItems">
|
|
|
|
<td *ngFor="let j of [1, 2, 3, 4, 5, 6]"><span class="skeleton-loader"></span></td>
|
|
|
|
</tr>
|
|
|
|
</ng-template>
|