2020-02-16 22:15:07 +07:00
|
|
|
<ng-container *ngFor="let tx of transactions; let i = index; trackBy: trackByFn">
|
|
|
|
<div *ngIf="!transactionPage" class="header-bg box" style="padding: 10px; margin-bottom: 10px;">
|
2020-05-09 20:37:50 +07:00
|
|
|
<a [routerLink]="['/tx/' | relativeUrl, tx.txid]" [state]="{ data: tx }">
|
2020-03-25 02:55:26 +07:00
|
|
|
<span style="float: left;" class="d-block d-md-none">{{ tx.txid | shortenString : 16 }}</span>
|
2020-03-10 14:46:12 +07:00
|
|
|
<span style="float: left;" class="d-none d-md-block">{{ tx.txid }}</span>
|
|
|
|
</a>
|
2020-02-28 01:09:07 +07:00
|
|
|
<div class="float-right">
|
|
|
|
<ng-template [ngIf]="tx.status.confirmed">{{ tx.status.block_time * 1000 | date:'yyyy-MM-dd HH:mm' }}</ng-template>
|
|
|
|
<ng-template [ngIf]="!tx.status.confirmed && tx.firstSeen">
|
2020-03-23 04:07:31 +07:00
|
|
|
<i><app-time-since [time]="tx.firstSeen" [fastRender]="true"></app-time-since> ago</i>
|
2020-02-28 01:09:07 +07:00
|
|
|
</ng-template>
|
|
|
|
</div>
|
2020-05-17 17:06:09 +07:00
|
|
|
<div class="clearfix"></div>
|
2020-02-16 22:15:07 +07:00
|
|
|
</div>
|
2020-03-01 16:33:18 +07:00
|
|
|
<div class="header-bg box" infiniteScroll [alwaysCallback]="true" [fromRoot]="true" [infiniteScrollContainer]="'body'" [infiniteScrollDistance]="2" [infiniteScrollUpDistance]="1.5" [infiniteScrollThrottle]="50" (scrolled)="onScroll()">
|
2020-02-16 22:15:07 +07:00
|
|
|
<div class="row">
|
|
|
|
<div class="col">
|
|
|
|
<table class="table table-borderless smaller-text table-xs" style="margin: 0;">
|
|
|
|
<tbody>
|
2020-11-15 17:58:38 +07:00
|
|
|
<ng-template ngFor let-vin [ngForOf]="tx['@vinLimit'] ? tx.vin.slice(0, 10) : tx.vin" [ngForTrackBy]="trackByIndexFn">
|
|
|
|
<tr>
|
|
|
|
<td class="arrow-td">
|
|
|
|
<ng-template [ngIf]="vin.prevout === null && !vin.is_pegin" [ngIfElse]="hasPrevout">
|
|
|
|
<i class="arrow grey"></i>
|
|
|
|
</ng-template>
|
|
|
|
<ng-template #hasPrevout>
|
|
|
|
<a *ngIf="vin.is_pegin; else defaultPrevout" [routerLink]="['/tx/', vin.txid]">
|
2020-05-09 20:37:50 +07:00
|
|
|
<i class="arrow red"></i>
|
|
|
|
</a>
|
2020-11-15 17:58:38 +07:00
|
|
|
<ng-template #defaultPrevout>
|
|
|
|
<a [routerLink]="['/tx/' | relativeUrl, vin.txid]">
|
|
|
|
<i class="arrow red"></i>
|
|
|
|
</a>
|
|
|
|
</ng-template>
|
2020-05-09 20:37:50 +07:00
|
|
|
</ng-template>
|
2020-11-15 17:58:38 +07:00
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<div [ngSwitch]="true">
|
|
|
|
<ng-container *ngSwitchCase="vin.is_coinbase"><a placement="bottom" [ngbTooltip]="vin.scriptsig | hex2ascii">Coinbase<ng-template [ngIf]="network !== 'liquid'"> (Newly Generated Coins)</ng-template></a><br><span class="badge badge-secondary scriptmessage longer">{{ vin.scriptsig | hex2ascii }}</span></ng-container>
|
|
|
|
<ng-container *ngSwitchCase="vin.is_pegin">
|
|
|
|
Peg-in
|
|
|
|
</ng-container>
|
|
|
|
<ng-container *ngSwitchDefault>
|
|
|
|
<a [routerLink]="['/address/' | relativeUrl, vin.prevout.scriptpubkey_address]" title="{{ vin.prevout.scriptpubkey_address }}">
|
|
|
|
<span class="d-block d-lg-none">{{ vin.prevout.scriptpubkey_address | shortenString : 16 }}</span>
|
|
|
|
<span class="d-none d-lg-block">{{ vin.prevout.scriptpubkey_address | shortenString : 35 }}</span>
|
|
|
|
</a>
|
|
|
|
<div>
|
|
|
|
<app-address-labels [vin]="vin"></app-address-labels>
|
|
|
|
</div>
|
|
|
|
</ng-container>
|
2020-06-12 16:17:52 +07:00
|
|
|
</div>
|
2020-11-15 17:58:38 +07:00
|
|
|
</td>
|
|
|
|
<td class="text-right nowrap">
|
|
|
|
<ng-template [ngIf]="vin.prevout && vin.prevout.asset && vin.prevout.asset !== nativeAssetId" [ngIfElse]="defaultOutput">
|
|
|
|
<div *ngIf="assetsMinimal && assetsMinimal[vin.prevout.asset]">
|
|
|
|
<ng-container *ngTemplateOutlet="assetBox; context:{ $implicit: vin.prevout }"></ng-container>
|
|
|
|
</div>
|
|
|
|
</ng-template>
|
|
|
|
<ng-template #defaultOutput>
|
|
|
|
<app-amount *ngIf="vin.prevout" [satoshis]="vin.prevout.value"></app-amount>
|
|
|
|
</ng-template>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr *ngIf="displayDetails">
|
2020-11-16 02:25:10 +07:00
|
|
|
<td colspan="3">
|
2020-11-16 02:02:16 +07:00
|
|
|
<table class="table table-striped table-borderless details-table mb-3">
|
2020-11-15 17:58:38 +07:00
|
|
|
<tbody>
|
|
|
|
<ng-template [ngIf]="vin.scriptsig">
|
|
|
|
<tr>
|
|
|
|
<td>ScriptSig (ASM)</td>
|
2020-11-21 04:47:39 +09:00
|
|
|
<td [innerHTML]="vin.scriptsig_asm | asmStyler"></td>
|
2020-11-15 17:58:38 +07:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>ScriptSig (HEX)</td>
|
2020-11-16 02:25:10 +07:00
|
|
|
<td>{{ vin.scriptsig }}</td>
|
2020-11-15 17:58:38 +07:00
|
|
|
</tr>
|
|
|
|
</ng-template>
|
|
|
|
<tr *ngIf="vin.witness">
|
|
|
|
<td>Witness</td>
|
2020-11-16 02:25:10 +07:00
|
|
|
<td>{{ vin.witness.join(' ') }}</td>
|
2020-11-15 17:58:38 +07:00
|
|
|
</tr>
|
|
|
|
<tr *ngIf="vin.inner_redeemscript_asm">
|
|
|
|
<td>P2SH redeem script</td>
|
2020-11-21 04:47:39 +09:00
|
|
|
<td [innerHTML]="vin.inner_redeemscript_asm | asmStyler"></td>
|
2020-11-15 17:58:38 +07:00
|
|
|
</tr>
|
|
|
|
<tr *ngIf="vin.inner_witnessscript_asm">
|
|
|
|
<td>P2WSH witness script</td>
|
2020-11-21 04:47:39 +09:00
|
|
|
<td [innerHTML]="vin.inner_witnessscript_asm | asmStyler"></td>
|
2020-11-15 17:58:38 +07:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>nSequence</td>
|
2020-11-16 02:25:10 +07:00
|
|
|
<td>{{ formatHex(vin.sequence) }}</td>
|
2020-11-15 17:58:38 +07:00
|
|
|
</tr>
|
2020-11-16 02:02:16 +07:00
|
|
|
<tr *ngIf="vin.prevout">
|
|
|
|
<td>Previous output script</td>
|
2020-11-21 04:47:39 +09:00
|
|
|
<td [innerHTML]="vin.prevout.scriptpubkey_asm | asmStyler">{{ vin.prevout.scriptpubkey_type ? ('(' + vin.prevout.scriptpubkey_type + ')') : '' }}"</td>
|
2020-11-16 02:02:16 +07:00
|
|
|
</tr>
|
2020-11-15 17:58:38 +07:00
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</ng-template>
|
2020-09-29 15:05:52 +07:00
|
|
|
<tr *ngIf="tx.vin.length > 10 && tx['@vinLimit']">
|
2020-03-27 02:34:09 +07:00
|
|
|
<td colspan="3" class="text-center">
|
2020-09-29 15:05:52 +07:00
|
|
|
<button class="btn btn-sm btn-primary mt-2" (click)="tx['@vinLimit'] = false;">Load all ({{ tx.vin.length - 10 }})</button>
|
2020-03-27 02:34:09 +07:00
|
|
|
</td>
|
|
|
|
</tr>
|
2020-02-16 22:15:07 +07:00
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2020-05-28 15:50:19 +07:00
|
|
|
<div class="w-100 d-block d-md-none"></div>
|
2020-03-10 14:46:12 +07:00
|
|
|
<div class="col mobile-bottomcol">
|
2020-03-10 15:25:49 +07:00
|
|
|
<table class="table table-borderless smaller-text table-xs" style="margin: 0;">
|
2020-02-16 22:15:07 +07:00
|
|
|
<tbody>
|
2020-11-15 17:58:38 +07:00
|
|
|
<ng-template ngFor let-vout let-vindex="index" [ngForOf]="tx['@voutLimit'] ? tx.vout.slice(0, 10) : tx.vout" [ngForTrackBy]="trackByIndexFn">
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<a *ngIf="vout.scriptpubkey_address; else scriptpubkey_type" [routerLink]="['/address/' | relativeUrl, vout.scriptpubkey_address]" title="{{ vout.scriptpubkey_address }}">
|
|
|
|
<span class="d-block d-lg-none">{{ vout.scriptpubkey_address | shortenString : 16 }}</span>
|
|
|
|
<span class="d-none d-lg-block">{{ vout.scriptpubkey_address | shortenString : 35 }}</span>
|
|
|
|
</a>
|
|
|
|
<ng-template #scriptpubkey_type>
|
|
|
|
<ng-template [ngIf]="vout.pegout" [ngIfElse]="defaultscriptpubkey_type">
|
|
|
|
Peg-out to <a [routerLink]="['/address/', vout.pegout.scriptpubkey_address]" title="{{ vout.pegout.scriptpubkey_address }}">
|
|
|
|
<span class="d-block d-lg-none">{{ vout.pegout.scriptpubkey_address | shortenString : 16 }}</span>
|
|
|
|
<span class="d-none d-lg-block">{{ vout.pegout.scriptpubkey_address | shortenString : 35 }}</span>
|
|
|
|
</a>
|
|
|
|
</ng-template>
|
|
|
|
<ng-template #defaultscriptpubkey_type>
|
2020-11-16 16:21:37 +07:00
|
|
|
<ng-template [ngIf]="vout.scriptpubkey_type === 'op_return'" [ngIfElse]="otherPubkeyType">
|
|
|
|
<a placement="bottom" [ngbTooltip]="vout.scriptpubkey | hex2ascii">OP_RETURN</a> <span class="badge badge-secondary scriptmessage">{{ vout.scriptpubkey_asm | hex2ascii }}</span>
|
|
|
|
</ng-template>
|
|
|
|
<ng-template #otherPubkeyType>{{ vout.scriptpubkey_type | scriptpubkeyType }}</ng-template>
|
2020-11-15 17:58:38 +07:00
|
|
|
</ng-template>
|
2020-05-02 16:29:34 +07:00
|
|
|
</ng-template>
|
2020-11-15 17:58:38 +07:00
|
|
|
</td>
|
|
|
|
<td class="text-right nowrap">
|
|
|
|
<ng-template [ngIf]="vout.asset && vout.asset !== nativeAssetId" [ngIfElse]="defaultOutput">
|
|
|
|
<div *ngIf="assetsMinimal && assetsMinimal[vout.asset]">
|
|
|
|
<ng-container *ngTemplateOutlet="assetBox; context:{ $implicit: vout }"></ng-container>
|
|
|
|
</div>
|
2020-05-02 16:29:34 +07:00
|
|
|
</ng-template>
|
2020-11-15 17:58:38 +07:00
|
|
|
<ng-template #defaultOutput>
|
|
|
|
<app-amount [satoshis]="vout.value"></app-amount>
|
2020-02-16 22:15:07 +07:00
|
|
|
</ng-template>
|
2020-11-15 17:58:38 +07:00
|
|
|
</td>
|
|
|
|
<td class="pl-1 arrow-td">
|
|
|
|
<i *ngIf="!outspends[i] || vout.scriptpubkey_type === 'op_return' || vout.scriptpubkey_type === 'fee' ; else outspend" class="arrow grey"></i>
|
|
|
|
<ng-template #outspend>
|
|
|
|
<i *ngIf="!outspends[i][vindex] || !outspends[i][vindex].spent; else spent" class="arrow green"></i>
|
|
|
|
<ng-template #spent>
|
|
|
|
<a [routerLink]="['/tx/' | relativeUrl, outspends[i][vindex].txid]"><i class="arrow red"></i></a>
|
|
|
|
</ng-template>
|
|
|
|
</ng-template>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr *ngIf="displayDetails">
|
2020-11-16 02:25:10 +07:00
|
|
|
<td colspan="3">
|
2020-11-15 17:58:38 +07:00
|
|
|
<table class="table table-striped table-borderless details-table mb-3">
|
|
|
|
<tbody>
|
|
|
|
<tr *ngIf="vout.scriptpubkey_type">
|
|
|
|
<td>Type</td>
|
2020-11-16 02:25:10 +07:00
|
|
|
<td>{{ vout.scriptpubkey_type.toUpperCase() }}</td>
|
2020-11-15 17:58:38 +07:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>scriptPubKey (ASM)</td>
|
2020-11-21 04:47:39 +09:00
|
|
|
<td [innerHTML]="vout.scriptpubkey_asm | asmStyler"></td>
|
2020-11-15 17:58:38 +07:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>scriptPubKey (HEX)</td>
|
2020-11-16 02:25:10 +07:00
|
|
|
<td>{{ vout.scriptpubkey }}</td>
|
2020-11-15 17:58:38 +07:00
|
|
|
</tr>
|
|
|
|
<tr *ngIf="vout.scriptpubkey_type == 'op_return'">
|
|
|
|
<td>OP_RETURN data</td>
|
2020-11-16 02:25:10 +07:00
|
|
|
<td>{{ vout.scriptpubkey_asm | hex2ascii }}</td>
|
2020-11-15 17:58:38 +07:00
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</ng-template>
|
2020-09-29 15:05:52 +07:00
|
|
|
<tr *ngIf="tx.vout.length > 10 && tx['@voutLimit']">
|
2020-03-27 02:34:09 +07:00
|
|
|
<td colspan="3" class="text-center">
|
2020-09-29 15:05:52 +07:00
|
|
|
<button class="btn btn-sm btn-primary mt-2" (click)="tx['@voutLimit'] = false;">Load all ({{ tx.vout.length - 10 }})</button>
|
2020-03-27 02:34:09 +07:00
|
|
|
</td>
|
|
|
|
</tr>
|
2020-02-16 22:15:07 +07:00
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-05-21 01:55:46 +07:00
|
|
|
|
|
|
|
<div>
|
|
|
|
<div class="float-left mt-2-5" *ngIf="!transactionPage && tx.fee">
|
|
|
|
{{ tx.fee / (tx.weight / 4) | number : '1.1-1' }} sat/vB <span class="d-none d-sm-inline-block"> – {{ tx.fee | number }} sat (<app-fiat [value]="tx.fee"></app-fiat>)</span>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="float-right">
|
2020-06-21 14:55:16 +07:00
|
|
|
<span *ngIf="showConfirmations && latestBlock$ | async as latestBlock">
|
2020-05-21 01:55:46 +07:00
|
|
|
<button *ngIf="tx.status.confirmed; else unconfirmedButton" type="button" class="btn btn-sm btn-success mt-2">{{ latestBlock.height - tx.status.block_height + 1 }} confirmation<ng-container *ngIf="latestBlock.height - tx.status.block_height + 1 > 1">s</ng-container></button>
|
|
|
|
<ng-template #unconfirmedButton>
|
|
|
|
<button type="button" class="btn btn-sm btn-danger mt-2">Unconfirmed</button>
|
|
|
|
</ng-template>
|
|
|
|
|
|
|
|
</span>
|
|
|
|
<button type="button" class="btn btn-sm btn-primary mt-2" (click)="switchCurrency()">
|
|
|
|
<ng-template [ngIf]="network === 'liquid'" [ngIfElse]="defaultAmount">Confidential</ng-template>
|
|
|
|
<ng-template #defaultAmount>
|
|
|
|
<app-amount [satoshis]="getTotalTxOutput(tx)"></app-amount>
|
|
|
|
</ng-template>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<div class="clearfix"></div>
|
|
|
|
</div>
|
|
|
|
|
2020-02-16 22:15:07 +07:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<br>
|
|
|
|
|
|
|
|
</ng-container>
|
2020-06-12 16:17:52 +07:00
|
|
|
|
|
|
|
<ng-template #assetBox let-item>
|
|
|
|
{{ item.value / 100000000 | number: '1.0-' + assetsMinimal[item.asset][3] }} {{ assetsMinimal[item.asset][1] }}
|
|
|
|
<br>
|
|
|
|
{{ assetsMinimal[item.asset][0] }}
|
|
|
|
<br>
|
|
|
|
<a [routerLink]="['/asset/' | relativeUrl, item.asset]">{{ item.asset | shortenString : 13 }}</a>
|
|
|
|
<br><br>
|
|
|
|
</ng-template>
|