54 lines
1.4 KiB
HTML
54 lines
1.4 KiB
HTML
<!--
|
|
Generated template for the AddressPage page.
|
|
|
|
See http://ionicframework.com/docs/components/#navigation for more info on
|
|
Ionic pages and navigation.
|
|
-->
|
|
<ion-header>
|
|
|
|
<ion-navbar>
|
|
<ion-title>Address</ion-title>
|
|
</ion-navbar>
|
|
|
|
</ion-header>
|
|
|
|
|
|
<ion-content padding>
|
|
<ion-grid>
|
|
<ion-row>
|
|
<ion-col col-12>
|
|
<h1>Address</h1>
|
|
<p>{{ address.addrStr }}</p>
|
|
<p>{{ address.balance }} BTC</p>
|
|
</ion-col>
|
|
</ion-row>
|
|
<ion-row>
|
|
<ion-col col-12><h2>Summary</h2></ion-col>
|
|
</ion-row>
|
|
<ion-row>
|
|
<ion-col col-6>Total Received:</ion-col>
|
|
<ion-col col-6 text-right>{{ address.totalReceived }} BTC</ion-col>
|
|
</ion-row>
|
|
<ion-row>
|
|
<ion-col col-6>Total Sent:</ion-col>
|
|
<ion-col col-6 text-right>{{ address.totalSent }} BTC</ion-col>
|
|
</ion-row>
|
|
<ion-row>
|
|
<ion-col col-6>Final Balance:</ion-col>
|
|
<ion-col col-6 text-right>{{ address.balance }} BTC</ion-col>
|
|
</ion-row>
|
|
<ion-row>
|
|
<ion-col col-6>No. Transactions:</ion-col>
|
|
<ion-col col-6 text-right>{{ address.txApperances }}</ion-col>
|
|
</ion-row>
|
|
<ion-row>
|
|
<ion-col col-12 text-center>QR CODE</ion-col>
|
|
</ion-row>
|
|
<ion-row>
|
|
<ion-col col-12><h2>Transactions</h2></ion-col>
|
|
</ion-row>
|
|
</ion-grid>
|
|
|
|
<transaction-list [queryType]="'address'" [queryValue]="addrStr"></transaction-list>
|
|
</ion-content>
|