2022-06-15 01:40:05 +00:00
|
|
|
<div
|
|
|
|
#tooltip
|
|
|
|
class="block-overview-tooltip"
|
|
|
|
[class.clickable]="clickable"
|
|
|
|
[style.visibility]="tx ? 'visible' : 'hidden'"
|
|
|
|
[style.left]="tooltipPosition.x + 'px'"
|
|
|
|
[style.top]="tooltipPosition.y + 'px'"
|
|
|
|
>
|
|
|
|
<table>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
2022-07-07 16:25:26 +02:00
|
|
|
<td class="td-width" i18n="shared.transaction">Transaction</td>
|
2022-06-15 01:40:05 +00:00
|
|
|
<td>
|
|
|
|
<a [routerLink]="['/tx/' | relativeUrl, txid]">{{ txid | shortenString : 16}}</a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2022-07-08 13:31:10 +02:00
|
|
|
<td class="td-width" i18n="dashboard.latest-transactions.amount">Amount</td>
|
2023-03-03 02:55:48 -06:00
|
|
|
<td><app-amount [blockConversion]="blockConversion" [satoshis]="value" [noFiat]="true"></app-amount></td>
|
2022-06-15 01:40:05 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="td-width" i18n="transaction.fee|Transaction fee">Fee</td>
|
2023-02-23 13:34:48 +09:00
|
|
|
<td>{{ fee | number }} <span class="symbol" i18n="shared.sat|sat">sat</span> <span class="fiat"><app-fiat [blockConversion]="blockConversion" [value]="fee"></app-fiat></span></td>
|
2022-06-15 01:40:05 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2022-07-07 16:25:26 +02:00
|
|
|
<td class="td-width" i18n="transaction.fee-rate|Transaction fee rate">Fee rate</td>
|
2022-06-15 01:40:05 +00:00
|
|
|
<td>
|
2023-06-15 15:17:32 -04:00
|
|
|
<app-fee-rate [fee]="feeRate"></app-fee-rate>
|
2022-06-15 01:40:05 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
2023-03-14 15:39:55 +09:00
|
|
|
<tr *ngIf="effectiveRate && effectiveRate !== feeRate">
|
2023-05-26 21:10:32 -04:00
|
|
|
<td *ngIf="!this.acceleration" class="td-width" i18n="transaction.effective-fee-rate|Effective transaction fee rate">Effective fee rate</td>
|
|
|
|
<td *ngIf="this.acceleration" class="td-width" i18n="transaction.effective-fee-rate|Effective transaction fee rate">Accelerated fee rate</td>
|
2023-03-14 15:39:55 +09:00
|
|
|
<td>
|
2023-06-15 15:17:32 -04:00
|
|
|
<app-fee-rate [fee]="effectiveRate"></app-fee-rate>
|
2023-03-14 15:39:55 +09:00
|
|
|
</td>
|
|
|
|
</tr>
|
2023-06-15 18:56:34 -04:00
|
|
|
<tr *only-vsize>
|
2022-07-07 16:25:26 +02:00
|
|
|
<td class="td-width" i18n="transaction.vsize|Transaction Virtual Size">Virtual size</td>
|
2022-06-15 01:40:05 +00:00
|
|
|
<td [innerHTML]="'‎' + (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]="'‎' + ((vsize * 4) | wuBytes: 2)"></td>
|
|
|
|
</tr>
|
2023-01-26 19:14:40 -06:00
|
|
|
<tr *ngIf="auditEnabled && tx && tx.status && tx.status.length">
|
2022-10-19 00:23:45 +00:00
|
|
|
<td class="td-width" i18n="transaction.audit-status">Audit status</td>
|
|
|
|
<ng-container [ngSwitch]="tx?.status">
|
2023-01-29 13:09:11 +04:00
|
|
|
<td *ngSwitchCase="'found'"><span class="badge badge-success" i18n="transaction.audit.match">Match</span></td>
|
|
|
|
<td *ngSwitchCase="'censored'"><span class="badge badge-danger" i18n="transaction.audit.removed">Removed</span></td>
|
|
|
|
<td *ngSwitchCase="'missing'"><span class="badge badge-warning" i18n="transaction.audit.marginal">Marginal fee rate</span></td>
|
2023-05-17 11:46:50 -04:00
|
|
|
<td *ngSwitchCase="'sigop'"><span class="badge badge-warning" i18n="transaction.audit.sigop">High sigop count</span></td>
|
2023-01-29 13:09:11 +04:00
|
|
|
<td *ngSwitchCase="'fresh'"><span class="badge badge-warning" i18n="transaction.audit.recently-broadcasted">Recently broadcasted</span></td>
|
2023-07-16 13:49:33 +09:00
|
|
|
<td *ngSwitchCase="'freshcpfp'"><span class="badge badge-warning" i18n="transaction.audit.recently-cpfped">Recently CPFP'd</span></td>
|
2023-01-29 13:09:11 +04:00
|
|
|
<td *ngSwitchCase="'added'"><span class="badge badge-warning" i18n="transaction.audit.added">Added</span></td>
|
|
|
|
<td *ngSwitchCase="'selected'"><span class="badge badge-warning" i18n="transaction.audit.marginal">Marginal fee rate</span></td>
|
2023-07-25 14:00:17 +09:00
|
|
|
<td *ngSwitchCase="'rbf'"><span class="badge badge-warning" i18n="transaction.audit.conflicting">Conflicting</span></td>
|
2023-05-22 18:16:58 -04:00
|
|
|
<td *ngSwitchCase="'accelerated'"><span class="badge badge-success" i18n="transaction.audit.accelerated">Accelerated</span></td>
|
2022-10-19 00:23:45 +00:00
|
|
|
</ng-container>
|
|
|
|
</tr>
|
2022-06-15 01:40:05 +00:00
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|