copay/www/views/preferencesInformation.html

109 lines
3.4 KiB
HTML
Raw Normal View History

2016-09-22 12:36:44 -07:00
<ion-view class="settings">
<ion-nav-bar class="bar-royal">
<ion-nav-title>{{'Wallet Information' | translate}}</ion-nav-title>
2016-08-29 12:48:15 -07:00
<ion-nav-back-button>
</ion-nav-back-button>
2016-08-16 12:47:51 -07:00
</ion-nav-bar>
<ion-content>
2016-08-16 12:47:51 -07:00
<div class="list">
<div ng-include="'views/includes/walletItem.html'"></div>
2016-08-16 12:47:51 -07:00
<div class="item" ng-click="saveBlack()">
2015-09-12 06:44:01 -07:00
<span translate>Wallet Name (at creation)</span>
2016-08-16 12:47:51 -07:00
<span class="item-note">
2015-09-12 06:44:01 -07:00
{{walletName}}
</span>
2016-08-16 12:47:51 -07:00
</div>
<div class="item" copy-to-clipboard="walletId">
2015-09-12 06:44:01 -07:00
<span translate>Wallet Id</span>
2016-08-16 12:47:51 -07:00
<span class="item-note">
2015-09-12 06:44:01 -07:00
{{walletId}}
</span>
2016-08-16 12:47:51 -07:00
</div>
<div class="item">
2015-09-12 06:44:01 -07:00
<span translate>Wallet Configuration (m-n)</span>
2016-08-16 12:47:51 -07:00
<span class="item-note">
2015-09-12 06:44:01 -07:00
{{M}}-{{N}}
</span>
2016-08-16 12:47:51 -07:00
</div>
<div class="item">
2015-09-12 06:44:01 -07:00
<span translate>Wallet Network</span>
2016-08-16 12:47:51 -07:00
<span class="item-note">
2015-09-12 06:44:01 -07:00
{{network}}
</span>
2016-08-16 12:47:51 -07:00
</div>
<div class="item">
2015-09-12 06:44:01 -07:00
<span translate>Address Type</span>
2016-08-16 12:47:51 -07:00
<span class="item-note">
2015-09-12 06:44:01 -07:00
{{addressType}}
</span>
2016-08-16 12:47:51 -07:00
</div>
<div class="item">
2015-09-12 06:44:01 -07:00
<span translate>Derivation Strategy</span>
2016-08-16 12:47:51 -07:00
<span class="item-note">
2015-09-12 06:44:01 -07:00
{{derivationStrategy}}
</span>
2016-08-16 12:47:51 -07:00
</div>
2017-04-17 07:55:16 -07:00
<div class="item" ng-show="wallet.isPrivKeyExternal() && !externalSource.isEmbeddedHardware">
<span translate>Hardware Wallet</span>
<span class="item-note">
{{externalSource}}
</span>
</div>
<a class="item item-icon-right" href ui-sref="tabs.preferences.preferencesExternal" ng-show="wallet.isPrivKeyExternal() && externalSource.isEmbeddedHardware">
2016-12-05 14:33:46 -08:00
<span translate>Hardware Wallet</span>
<span class="item-note">
{{externalSource}}
</span>
<i class="icon bp-arrow-right"></i>
</a>
2016-08-18 15:23:58 -07:00
<div class="item" ng-show="!wallet.isPrivKeyExternal() && !wallet.canSign()">
2015-11-07 06:40:35 -08:00
<span translate></span>
2016-08-16 12:47:51 -07:00
<span class="item-note">
2015-11-07 06:40:35 -08:00
No private key
</span>
2016-08-16 12:47:51 -07:00
</div>
2016-08-18 15:23:58 -07:00
<div class="item" ng-show="wallet.credentials.account">
2016-08-16 12:47:51 -07:00
<span translate>Account</span>({{derivationStrategy}})
<span class="item-note">
2016-08-18 15:23:58 -07:00
#{{wallet.credentials.account}}
2015-11-07 06:40:35 -08:00
</span>
2016-08-16 12:47:51 -07:00
</div>
2015-11-07 06:40:35 -08:00
<div ng-show="wallet.cachedStatus.wallet.copayers[0]" class="item item-divider">
2016-08-16 12:47:51 -07:00
Copayers
</div>
<div class="item item-icon-right" ng-repeat="copayer in wallet.cachedStatus.wallet.copayers">
{{copayer.name}}
<span ng-show="copayer.id == wallet.copayerId">
({{'Me'|translate}})
</span>
2016-08-16 12:47:51 -07:00
</div>
<div class="item item-divider" translate>
2016-08-16 12:47:51 -07:00
Extended Public Keys
</div>
<div class="item" ng-repeat="pk in pubKeys" copy-to-clipboard="pk">
<span translate>Copayer {{$index}}</span>
2016-08-16 12:47:51 -07:00
<span class="item-note">
<span>{{pk}}</span>
<span ng-if="$index == 0">({{basePath}})</span>
2015-11-06 10:32:10 -08:00
</span>
2016-08-16 12:47:51 -07:00
</div>
2015-11-06 10:32:10 -08:00
<div ng-show="wallet.balanceByAddress[0]">
<div class="item item-divider" translate>
2016-08-16 12:47:51 -07:00
Balance By Address
</div>
<div class="item" ng-repeat="a in wallet.balanceByAddress" copy-to-clipboard="a.address">
2016-08-16 12:47:51 -07:00
<span>{{a.address}}</span>
<span class="item-note">
{{(a.amount/1e8).toFixed(8)}} BTC
2016-08-16 12:47:51 -07:00
</span>
</div>
2015-09-28 12:36:35 -07:00
</div>
2016-08-16 12:47:51 -07:00
</div>
</ion-content>
</ion-view>