| 
									
										
										
										
											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'" | 
					
						
							|  |  |  | > | 
					
						
							| 
									
										
										
										
											2024-03-22 07:13:21 +00:00
										 |  |  |   <table class="table-fixed"> | 
					
						
							| 
									
										
										
										
											2022-06-15 01:40:05 +00:00
										 |  |  |     <tbody> | 
					
						
							|  |  |  |       <tr> | 
					
						
							| 
									
										
										
										
											2024-03-22 07:13:21 +00:00
										 |  |  |         <td class="label" i18n="shared.transaction">Transaction</td> | 
					
						
							|  |  |  |         <td class="value"> | 
					
						
							| 
									
										
										
										
											2022-06-15 01:40:05 +00:00
										 |  |  |           <a [routerLink]="['/tx/' | relativeUrl, txid]">{{ txid | shortenString : 16}}</a> | 
					
						
							|  |  |  |         </td> | 
					
						
							|  |  |  |       </tr> | 
					
						
							|  |  |  |       <tr> | 
					
						
							| 
									
										
										
										
											2024-03-22 07:13:21 +00:00
										 |  |  |         <td class="label" i18n="dashboard.latest-transactions.amount">Amount</td> | 
					
						
							|  |  |  |         <td class="value"><app-amount [blockConversion]="blockConversion" [satoshis]="value" [noFiat]="true"></app-amount></td> | 
					
						
							| 
									
										
										
										
											2022-06-15 01:40:05 +00:00
										 |  |  |       </tr> | 
					
						
							|  |  |  |       <tr> | 
					
						
							| 
									
										
										
										
											2024-03-22 07:13:21 +00:00
										 |  |  |         <td class="label" i18n="transaction.fee|Transaction fee">Fee</td> | 
					
						
							|  |  |  |         <td class="value">{{ fee | number }} <span class="symbol" i18n="shared.sat|sat">sat</span>   <span class="fiat"><app-fiat [blockConversion]="blockConversion" [value]="fee"></app-fiat></span> | 
					
						
							| 
									
										
										
										
											2022-06-15 01:40:05 +00:00
										 |  |  |       </tr> | 
					
						
							|  |  |  |       <tr> | 
					
						
							| 
									
										
										
										
											2024-03-22 07:13:21 +00:00
										 |  |  |         <td class="label" i18n="transaction.fee-rate|Transaction fee rate">Fee rate</td> | 
					
						
							|  |  |  |         <td class="value"> | 
					
						
							| 
									
										
										
										
											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> | 
					
						
							| 
									
										
										
										
											2024-03-03 16:40:28 +00:00
										 |  |  |       <tr *ngIf="hasEffectiveRate && effectiveRate != null"> | 
					
						
							| 
									
										
										
										
											2024-03-22 07:13:21 +00:00
										 |  |  |         <td *ngIf="!this.acceleration" class="label" i18n="transaction.effective-fee-rate|Effective transaction fee rate">Effective fee rate</td> | 
					
						
							|  |  |  |         <td *ngIf="this.acceleration" class="label" i18n="transaction.effective-fee-rate|Effective transaction fee rate">Accelerated fee rate</td> | 
					
						
							|  |  |  |         <td class="value"> | 
					
						
							| 
									
										
										
										
											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> | 
					
						
							| 
									
										
										
										
											2024-03-22 07:13:21 +00:00
										 |  |  |         <td class="label" i18n="transaction.vsize|Transaction Virtual Size">Virtual size</td> | 
					
						
							|  |  |  |         <td class="value" [innerHTML]="'‎' + (vsize | vbytes: 2)"></td> | 
					
						
							| 
									
										
										
										
											2022-06-15 01:40:05 +00:00
										 |  |  |       </tr> | 
					
						
							| 
									
										
										
										
											2023-06-15 18:56:34 -04:00
										 |  |  |       <tr *only-weight> | 
					
						
							| 
									
										
										
										
											2024-03-22 07:13:21 +00:00
										 |  |  |         <td class="label" i18n="transaction.weight|Transaction Weight">Weight</td> | 
					
						
							|  |  |  |         <td class="value" [innerHTML]="'‎' + ((vsize * 4) | wuBytes: 2)"></td> | 
					
						
							| 
									
										
										
										
											2023-06-15 18:56:34 -04:00
										 |  |  |       </tr> | 
					
						
							| 
									
										
										
										
											2023-01-26 19:14:40 -06:00
										 |  |  |       <tr *ngIf="auditEnabled && tx && tx.status && tx.status.length"> | 
					
						
							| 
									
										
										
										
											2024-03-22 07:13:21 +00:00
										 |  |  |         <td class="label" i18n="transaction.audit-status">Audit status</td> | 
					
						
							|  |  |  |         <td class="value"> | 
					
						
							|  |  |  |           <ng-container [ngSwitch]="tx?.status"> | 
					
						
							|  |  |  |             <span *ngSwitchCase="'found'" class="badge badge-success" i18n="transaction.audit.match">Match</span> | 
					
						
							|  |  |  |             <span *ngSwitchCase="'censored'" class="badge badge-danger" i18n="transaction.audit.removed">Removed</span> | 
					
						
							|  |  |  |             <span *ngSwitchCase="'missing'" class="badge badge-warning" i18n="transaction.audit.marginal">Marginal fee rate</span> | 
					
						
							|  |  |  |             <span *ngSwitchCase="'sigop'" class="badge badge-warning" i18n="transaction.audit.sigop">High sigop count</span> | 
					
						
							|  |  |  |             <span *ngSwitchCase="'fresh'" class="badge badge-warning" i18n="transaction.audit.recently-broadcasted">Recently broadcasted</span> | 
					
						
							|  |  |  |             <span *ngSwitchCase="'freshcpfp'" class="badge badge-warning" i18n="transaction.audit.recently-cpfped">Recently CPFP'd</span> | 
					
						
							|  |  |  |             <span *ngSwitchCase="'added'" class="badge badge-warning" i18n="transaction.audit.added">Added</span> | 
					
						
							|  |  |  |             <span *ngSwitchCase="'selected'" class="badge badge-warning" i18n="transaction.audit.marginal">Marginal fee rate</span> | 
					
						
							|  |  |  |             <span *ngSwitchCase="'rbf'" class="badge badge-warning" i18n="transaction.audit.conflicting">Conflicting</span> | 
					
						
							|  |  |  |             <span *ngSwitchCase="'accelerated'" class="badge badge-accelerated" i18n="transaction.audit.accelerated">Accelerated</span> | 
					
						
							|  |  |  |           </ng-container> | 
					
						
							|  |  |  |         </td> | 
					
						
							| 
									
										
										
										
											2022-10-19 00:23:45 +00:00
										 |  |  |       </tr> | 
					
						
							| 
									
										
										
										
											2024-03-22 07:13:21 +00:00
										 |  |  |       {{ activeFilters.rbf }} | 
					
						
							| 
									
										
										
										
											2024-03-26 02:33:33 +00:00
										 |  |  |       <tr *ngIf="(!auditEnabled && tx && (tx.status === 'accelerated' || tx.acc || acceleration)) || filters.length"> | 
					
						
							| 
									
										
										
										
											2024-03-22 07:13:21 +00:00
										 |  |  |         <td colspan="2"> | 
					
						
							| 
									
										
										
										
											2024-03-23 14:08:43 +09:00
										 |  |  |           <div class="tags mt-2" [class.any-mode]="filterMode === 'or'"> | 
					
						
							| 
									
										
										
										
											2024-03-26 02:33:33 +00:00
										 |  |  |             <span *ngIf="!auditEnabled && tx && (tx.status === 'accelerated' || tx.acc || acceleration)" class="badge badge-accelerated" i18n="transaction.audit.accelerated">Accelerated</span> | 
					
						
							| 
									
										
										
										
											2024-03-22 07:13:21 +00:00
										 |  |  |             <ng-container *ngFor="let filter of filters;"> | 
					
						
							|  |  |  |               <span class="btn badge filter-tag" [class.matching]="activeFilters[filter.key]">{{ filter.label }}</span> | 
					
						
							|  |  |  |             </ng-container> | 
					
						
							|  |  |  |           </div> | 
					
						
							|  |  |  |         </td> | 
					
						
							| 
									
										
										
										
											2023-12-29 14:13:13 +00:00
										 |  |  |       </tr> | 
					
						
							| 
									
										
										
										
											2022-06-15 01:40:05 +00:00
										 |  |  |     </tbody> | 
					
						
							|  |  |  |   </table> | 
					
						
							|  |  |  | </div> |