2022-12-20 22:34:17 -06:00
|
|
|
<div
|
|
|
|
#tooltip
|
2023-03-04 03:16:59 -06:00
|
|
|
*ngIf="rbfInfo && tooltipPosition !== null"
|
2022-12-20 22:34:17 -06:00
|
|
|
class="rbf-tooltip"
|
|
|
|
[style.left]="tooltipPosition.x + 'px'"
|
|
|
|
[style.top]="tooltipPosition.y + 'px'"
|
|
|
|
>
|
2023-03-05 03:22:42 -06:00
|
|
|
<table>
|
2022-12-20 22:34:17 -06:00
|
|
|
<tbody>
|
|
|
|
<tr>
|
2023-03-05 03:22:42 -06:00
|
|
|
<td class="td-width" i18n="shared.transaction">Transaction</td>
|
|
|
|
<td>
|
|
|
|
<a [routerLink]="['/tx/' | relativeUrl, rbfInfo.tx.txid]">{{ rbfInfo.tx.txid | shortenString : 16}}</a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="td-width" i18n="transaction.first-seen|Transaction first seen">First seen</td>
|
2022-12-20 22:34:17 -06:00
|
|
|
<td><i><app-time kind="since" [time]="rbfInfo.time" [fastRender]="true"></app-time></i></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2023-03-05 03:22:42 -06:00
|
|
|
<td class="td-width" i18n="transaction.fee|Transaction fee">Fee</td>
|
2022-12-20 22:34:17 -06:00
|
|
|
<td>{{ rbfInfo.tx.fee | number }} <span class="symbol" i18n="shared.sat|sat">sat</span></td>
|
|
|
|
</tr>
|
2023-06-15 18:56:34 -04:00
|
|
|
<tr *only-vsize>
|
2023-03-05 03:22:42 -06:00
|
|
|
<td class="td-width" i18n="transaction.vsize|Transaction Virtual Size">Virtual size</td>
|
2022-12-20 22:34:17 -06:00
|
|
|
<td [innerHTML]="'‎' + (rbfInfo.tx.vsize | vbytes: 2)"></td>
|
|
|
|
</tr>
|
2023-06-15 18:56:34 -04:00
|
|
|
<tr *only-weight>
|
|
|
|
<td class="td-width" i18n="transaction.weight|Transaction Weight">Weight</td>
|
|
|
|
<td [innerHTML]="'‎' + (rbfInfo.tx.vsize * 4 | vbytes: 2)"></td>
|
|
|
|
</tr>
|
2022-12-20 22:34:17 -06:00
|
|
|
<tr>
|
2023-11-26 16:10:18 +09:00
|
|
|
<td class="td-width" i18n="transaction.status|Transaction Status">Status</td>
|
2023-03-05 03:22:42 -06:00
|
|
|
<td>
|
2023-11-25 20:45:59 +09:00
|
|
|
<span *ngIf="rbfInfo.tx.fullRbf" class="badge badge-info" i18n="transaction.full-rbf">Full RBF</span>
|
2024-04-03 18:13:42 +09:00
|
|
|
<span *ngIf="rbfInfo.tx.rbf; else rbfDisabled" class="badge badge-success" i18n="tx-features.tag.rbf|RBF">RBF</span>
|
2023-11-25 20:45:59 +09:00
|
|
|
<ng-template #rbfDisabled><span class="badge badge-danger mr-1"><del i18n="tx-features.tag.rbf|RBF">RBF</del></span></ng-template>
|
2023-03-05 03:22:42 -06:00
|
|
|
<span *ngIf="rbfInfo.tx.mined" class="badge badge-success" i18n="transaction.rbf.mined">Mined</span>
|
|
|
|
</td>
|
2022-12-20 22:34:17 -06:00
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|