2015-09-12 10:44:01 -03:00
|
|
|
<div
|
|
|
|
|
class="topbar-container"
|
|
|
|
|
ng-include="'views/includes/topbar.html'"
|
|
|
|
|
ng-init="titleSection='Wallet Information'; goBackToState = 'preferencesAdvanced'">
|
|
|
|
|
</div>
|
|
|
|
|
|
2015-10-15 18:18:11 -03:00
|
|
|
<div class="content preferences" ng-controller="preferencesInformation as info" ng-init="info.init()">
|
2015-09-12 10:44:01 -03:00
|
|
|
<h4 class="title m0" translate>Wallet Information</h4>
|
|
|
|
|
|
|
|
|
|
<ul class="no-bullet m0 size-14">
|
2015-10-15 18:18:11 -03:00
|
|
|
<li class="line-b p20 oh">
|
2015-09-12 10:44:01 -03:00
|
|
|
<span translate>Wallet Name (at creation)</span>
|
|
|
|
|
<span class="right text-gray">
|
|
|
|
|
{{walletName}}
|
|
|
|
|
</span>
|
|
|
|
|
</li>
|
|
|
|
|
|
2015-10-15 18:18:11 -03:00
|
|
|
<li class="line-b p20 oh">
|
2015-09-12 10:44:01 -03:00
|
|
|
<span translate>Wallet Id</span>
|
2015-10-15 18:18:11 -03:00
|
|
|
<span class="right text-gray enable_text_select">
|
2015-09-12 10:44:01 -03:00
|
|
|
{{walletId}}
|
|
|
|
|
</span>
|
|
|
|
|
</li>
|
|
|
|
|
|
2015-10-15 18:18:11 -03:00
|
|
|
<li class="line-b p20 oh">
|
2015-09-12 10:44:01 -03:00
|
|
|
<span translate>Wallet Configuration (m-n)</span>
|
|
|
|
|
<span class="right text-gray">
|
|
|
|
|
{{M}}-{{N}}
|
|
|
|
|
</span>
|
|
|
|
|
</li>
|
|
|
|
|
|
2015-10-15 18:18:11 -03:00
|
|
|
<li class="line-b p20 oh">
|
2015-09-12 10:44:01 -03:00
|
|
|
<span translate>Wallet Network</span>
|
|
|
|
|
<span class="right text-gray">
|
|
|
|
|
{{network}}
|
|
|
|
|
</span>
|
|
|
|
|
</li>
|
|
|
|
|
|
|
|
|
|
|
2015-10-15 18:18:11 -03:00
|
|
|
<li class="line-b p20 oh">
|
2015-09-12 10:44:01 -03:00
|
|
|
<span translate>Address Type</span>
|
|
|
|
|
<span class="right text-gray">
|
|
|
|
|
{{addressType}}
|
|
|
|
|
</span>
|
|
|
|
|
</li>
|
|
|
|
|
|
|
|
|
|
|
2015-10-15 18:18:11 -03:00
|
|
|
<li class="line-b p20 oh">
|
2015-09-12 10:44:01 -03:00
|
|
|
<span translate>Derivation Strategy</span>
|
|
|
|
|
<span class="right text-gray">
|
|
|
|
|
{{derivationStrategy}}
|
|
|
|
|
</span>
|
|
|
|
|
</li>
|
|
|
|
|
|
|
|
|
|
<h4 class="title m0" translate>Extended Public Keys</h4>
|
2015-10-08 11:58:55 -03:00
|
|
|
<li ng-repeat="pk in pubKeys">
|
2015-10-15 18:18:11 -03:00
|
|
|
<div class="row collapse">
|
|
|
|
|
<div class="small-4 columns">Copayer {{$index}}</div>
|
|
|
|
|
<div class="small-8 columns oh text-gray">
|
|
|
|
|
<div class="ellipsis enable_text_select">{{pk}}</div>
|
|
|
|
|
<div class="size-12 text-right" ng-if="$index == 0">
|
2015-09-29 15:16:54 -03:00
|
|
|
({{basePath}})
|
2015-10-15 18:18:11 -03:00
|
|
|
</div>
|
2015-09-12 10:44:01 -03:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</li>
|
2015-09-14 16:32:12 -03:00
|
|
|
</ul>
|
|
|
|
|
|
|
|
|
|
<ul class="no-bullet m0 size-14" ng-show="addrs">
|
2015-09-12 10:44:01 -03:00
|
|
|
<h4 class="title m0" translate>Last Wallet Addresses</h4>
|
2015-10-08 11:58:55 -03:00
|
|
|
<li ng-repeat="a in addrs" class="oh">
|
2015-10-15 18:18:11 -03:00
|
|
|
<div class="enable_text_select ellipsis">
|
2015-09-12 10:44:01 -03:00
|
|
|
{{a.address}}
|
|
|
|
|
</div>
|
2015-10-15 18:18:11 -03:00
|
|
|
<div class="text-gray size-12 right enable_text_select">
|
|
|
|
|
{{a.path}} · {{a.createdOn *1000 | amDateFormat:'MMMM Do YYYY, h:mm a' }}
|
2015-09-12 10:44:01 -03:00
|
|
|
</div>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="line-b p10 text-centered text-gray size-12">
|
|
|
|
|
<span translate>Only Main (not change) addresses are shown. The addresses on this list were not verified locally at this time.</span>
|
|
|
|
|
</li>
|
|
|
|
|
|
2015-10-08 11:58:55 -03:00
|
|
|
<li class="line-b p20" >
|
|
|
|
|
<button class="black round small expand" ng-style="{'background-color':index.backgroundColor}" ng-click="index.retryScan(); $root.go('walletHome'); ">
|
|
|
|
|
|
|
|
|
|
<span translate>Scan addresses for funds</span>
|
|
|
|
|
</button>
|
2015-10-15 18:18:11 -03:00
|
|
|
|
|
|
|
|
<button ng-show="index.isCordova" class="black round small expand"
|
|
|
|
|
ng-style="{'background-color':index.backgroundColor}"
|
|
|
|
|
ng-click="info.sendAddrs()"
|
|
|
|
|
ng-disabled="info.loading">
|
|
|
|
|
<i class="fi-mail"></i>
|
|
|
|
|
<span translate>Send addresses by email</span>
|
2015-09-12 10:44:01 -03:00
|
|
|
</button>
|
|
|
|
|
</li>
|
2015-09-14 16:32:12 -03:00
|
|
|
</ul>
|
2015-09-12 10:44:01 -03:00
|
|
|
|
2015-09-14 16:32:12 -03:00
|
|
|
<ul class="no-bullet m0 size-14" ng-show="index.balanceByAddress">
|
2015-09-28 16:36:35 -03:00
|
|
|
<div ng-if="index.balanceByAddress[0]">
|
|
|
|
|
<h4 class="title m0" translate>Balance By Address</h4>
|
2015-10-15 18:18:11 -03:00
|
|
|
<li class="line-b p20 oh" ng-repeat="a in index.balanceByAddress">
|
|
|
|
|
<div class="enable_text_select ellipsis">
|
|
|
|
|
{{a.address}}
|
|
|
|
|
</div>
|
2015-09-28 16:36:35 -03:00
|
|
|
<div class="text-gray text-right">
|
|
|
|
|
{{(a.amount/1e8).toFixed(8)}} BTC
|
|
|
|
|
</div>
|
|
|
|
|
</li>
|
|
|
|
|
</div>
|
2015-09-12 10:44:01 -03:00
|
|
|
</ul>
|
|
|
|
|
|
2015-10-29 12:10:31 -03:00
|
|
|
<ul class="no-bullet m0 size-14">
|
|
|
|
|
<h4 class="title m0" translate>Transaction history</h4>
|
|
|
|
|
<li class="line-b p20 oh">
|
2015-10-30 12:47:37 -03:00
|
|
|
<button class="black round small expand" ng-style="{'background-color':index.backgroundColor}" ng-click="info.clearTransactionHistory();">
|
2015-10-29 12:10:31 -03:00
|
|
|
<span translate>Clear history</span>
|
|
|
|
|
</button>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
|
2015-10-15 18:18:11 -03:00
|
|
|
<h4></h4>
|
2015-09-12 10:44:01 -03:00
|
|
|
|
2015-09-16 10:31:14 -03:00
|
|
|
<div class="extra-margin-bottom"></div>
|
2015-09-12 10:44:01 -03:00
|
|
|
</div>
|