| 
									
										
										
										
											2020-07-03 23:45:19 +07:00
										 |  |  | <div class="container-xl"> | 
					
						
							| 
									
										
										
										
											2020-07-13 15:16:12 +07:00
										 |  |  |   <h2 style="float: left;">BSQ Transactions</h2> | 
					
						
							| 
									
										
										
										
											2020-07-03 23:45:19 +07:00
										 |  |  |   <br> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   <div class="clearfix"></div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   <table class="table table-borderless table-striped"> | 
					
						
							|  |  |  |     <thead> | 
					
						
							|  |  |  |       <th>Transaction</th> | 
					
						
							|  |  |  |       <th>Type</th> | 
					
						
							|  |  |  |       <th>Total Sent (BSQ)</th> | 
					
						
							|  |  |  |       <th>Outputs</th> | 
					
						
							|  |  |  |       <th>Block Height</th> | 
					
						
							|  |  |  |       <th>Block Time</th> | 
					
						
							|  |  |  |     </thead> | 
					
						
							|  |  |  |     <tbody> | 
					
						
							| 
									
										
										
										
											2020-07-13 15:16:12 +07:00
										 |  |  |       <tr *ngFor="let tx of transactions; trackBy: trackByFn"> | 
					
						
							| 
									
										
										
										
											2020-07-03 23:45:19 +07:00
										 |  |  |         <td><a [routerLink]="['/tx/' | relativeUrl, tx.id]" [state]="{ bsqTx: tx }">{{ tx.id | shortenString : 16 }}</a></td> | 
					
						
							|  |  |  |         <td><app-bisq-icon class="mr-1" [txType]="tx.txType"></app-bisq-icon> {{ tx.txTypeDisplayString }}</td> | 
					
						
							|  |  |  |         <td>{{ calculateTotalOutput(tx.outputs) / 100 | number: '1.2-2' }}</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> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   <br> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   <ngb-pagination [collectionSize]="totalCount" [rotate]="true" [pageSize]="itemsPerPage" [(page)]="page" (pageChange)="pageChange(page)" [maxSize]="5" [boundaryLinks]="true"></ngb-pagination> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | </div> |