50 lines
1.2 KiB
HTML
50 lines
1.2 KiB
HTML
<!--
|
|
Generated template for the TransactionPage page.
|
|
|
|
See http://ionicframework.com/docs/components/#navigation for more info on
|
|
Ionic pages and navigation.
|
|
-->
|
|
<ion-header>
|
|
|
|
<ion-navbar>
|
|
<ion-title>Transaction</ion-title>
|
|
</ion-navbar>
|
|
|
|
</ion-header>
|
|
|
|
|
|
<ion-content padding>
|
|
<ion-grid>
|
|
<ion-row>
|
|
<ion-col col-12>
|
|
<h1>Transaction</h1>
|
|
<p>{{ tx.txid }}</p>
|
|
</ion-col>
|
|
</ion-row>
|
|
<ion-row>
|
|
<ion-col col-12><h2>Summary</h2></ion-col>
|
|
</ion-row>
|
|
<ion-row>
|
|
<ion-col col-6>Size</ion-col>
|
|
<ion-col col-6 text-right>{{ tx.size }} (bytes)</ion-col>
|
|
</ion-row>
|
|
<ion-row>
|
|
<ion-col col-6>Received Time</ion-col>
|
|
<ion-col col-6 text-right>{{ tx.time * 1000 | date:'medium' }}</ion-col>
|
|
</ion-row>
|
|
<ion-row>
|
|
<ion-col col-6>Mined Time</ion-col>
|
|
<ion-col col-6 text-right>{{ tx.blocktime * 1000 | date:'medium' }}</ion-col>
|
|
</ion-row>
|
|
<ion-row>
|
|
<ion-col col-6>Included in Block</ion-col>
|
|
<ion-col col-6 text-right>{{ tx.blockhash }}</ion-col>
|
|
</ion-row>
|
|
<ion-row>
|
|
<ion-col col-12><h2>Details</h2></ion-col>
|
|
</ion-row>
|
|
</ion-grid>
|
|
|
|
<transaction [tx]="tx"></transaction>
|
|
</ion-content>
|