mirror of
https://github.com/mempool/mempool.git
synced 2025-03-13 11:36:07 +01:00
Handle Liquid native asset issuance transaction.
This commit is contained in:
parent
766803ded1
commit
dd4710b602
1 changed files with 3 additions and 0 deletions
|
@ -55,6 +55,9 @@
|
|||
<ng-container *ngSwitchCase="vin.prevout && vin.prevout.scriptpubkey_type === 'p2pk'">
|
||||
<span>P2PK</span>
|
||||
</ng-container>
|
||||
<ng-container *ngSwitchCase="!vin.prevout">
|
||||
<span>{{ vin.issuance ? 'Issuance' : 'UNKNOWN' }}</span>
|
||||
</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>
|
||||
|
|
Loading…
Add table
Reference in a new issue