56 lines
2 KiB
HTML
56 lines
2 KiB
HTML
<ion-view id="cash-scan" hide-tabs>
|
|
<ion-nav-bar class="bar-royal">
|
|
<ion-nav-title>
|
|
<span translate>Bitcoin Cash (BCH) Balances</span>
|
|
</ion-nav-title>
|
|
<ion-nav-back-button>
|
|
</ion-nav-back-button>
|
|
</ion-nav-bar>
|
|
|
|
<ion-content>
|
|
|
|
<div class="list card">
|
|
<div class="item" ng-if="(!wallets || !wallets[0]) && !nonBIP44Wallets[0]">
|
|
<span class="assertive" translate>No wallets eligible for Bitcoin Cash support</span>
|
|
</div>
|
|
|
|
<div class="item" ng-if="error">
|
|
<span class="assertive">{{error}}</span>
|
|
</div>
|
|
|
|
<div class="item heading">
|
|
<span translate>BTC Wallets</span>
|
|
</div>
|
|
|
|
<div ng-repeat="wallet in wallets track by $index" class="item wallet supported">
|
|
<i class="icon big-icon-svg" ng-include="'views/includes/walletIcon.html'"></i>
|
|
<div class="wallet-content">
|
|
<div>{{wallet.name || wallet.id}}</div>
|
|
<div class="balanced">{{wallet.bchBalance || ('Checking...' | translate)}} </div>
|
|
<div class="tab-home__wallet__multisig-number" ng-if="wallet.n > 1" translate>{{wallet.m}}-of-{{wallet.n}}</div>
|
|
</div>
|
|
|
|
<div class="duplicate-button">
|
|
<button ng-click="duplicate(wallet)" class="button button-small button-outline button-primary" translate>Duplicate for BCH</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div ng-if="nonBIP44Wallets[0]">
|
|
<div class="item item-divider"></div>
|
|
|
|
<div class="item heading">
|
|
<span translate>Non eligible BTC wallets</span>
|
|
</div>
|
|
|
|
<div ng-repeat="wallet in nonBIP44Wallets track by $index" class="item item-sub item-icon-left item-big-icon-left item-button-right wallet">
|
|
<i class="icon big-icon-svg" ng-include="'views/includes/walletIcon.html'"></i>
|
|
<span class="text-disabled">{{wallet.name || wallet.id}}</span>
|
|
</div>
|
|
|
|
<div class="item">
|
|
<span class="comment">Some of you wallets are not eligible for Bitcon Cash support because there where created before Copay v1.2. Please use our recovery tool to access your Bitcoin Cash balance for those wallets</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</ion-content>
|