Bitcoin Core to Bitcoin (BTC)
This commit is contained in:
parent
dd72c3b46e
commit
2f07290dea
6 changed files with 18 additions and 18 deletions
|
|
@ -9,7 +9,7 @@ For a list of frequently asked questions please visit the [Bitcoin.com Wallet FA
|
||||||
## Main Features
|
## Main Features
|
||||||
|
|
||||||
- Multiple wallet creation and management in-app
|
- Multiple wallet creation and management in-app
|
||||||
- Creates both Bitcoin Cash (BCH) and Bitcoin Core (BTC) wallets by default
|
- Creates both Bitcoin Cash (BCH) and Bitcoin (BTC) wallets by default
|
||||||
- Intuitive, multisignature security for personal or shared wallets
|
- Intuitive, multisignature security for personal or shared wallets
|
||||||
- Easy spending proposal flow for shared wallets and group payments
|
- Easy spending proposal flow for shared wallets and group payments
|
||||||
- [BIP32](https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki) Hierarchical deterministic (HD) address generation and wallet backups
|
- [BIP32](https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki) Hierarchical deterministic (HD) address generation and wallet backups
|
||||||
|
|
|
||||||
|
|
@ -131,7 +131,7 @@ angular.module('copayApp.services').factory('incomingData', function($log, $stat
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
// Cash URI with bitcoin core address version number?
|
// Cash URI with bitcoin (btc) address version number?
|
||||||
} else if (bitcore.URI.isValid(data.replace(/^bitcoincash:/,'bitcoin:'))) {
|
} else if (bitcore.URI.isValid(data.replace(/^bitcoincash:/,'bitcoin:'))) {
|
||||||
$log.debug('Handling bitcoincash URI with legacy address');
|
$log.debug('Handling bitcoincash URI with legacy address');
|
||||||
var coin = 'bch';
|
var coin = 'bch';
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
|
|
||||||
<div class="subheader" ng-if="walletsBch[0] && walletsBtc[0]">
|
<div class="subheader" ng-if="walletsBch[0] && walletsBtc[0]">
|
||||||
<img class="wallet-coin-logo" src="img/bitcoin-cash-logo.svg" width="22">
|
<img class="wallet-coin-logo" src="img/bitcoin-cash-logo.svg" width="22">
|
||||||
<span translate>Bitcoin Cash Wallets</span>
|
<span translate>Bitcoin Cash (BCH)</span>
|
||||||
</div>
|
</div>
|
||||||
<a
|
<a
|
||||||
ng-repeat="wallet in walletsBch track by $index"
|
ng-repeat="wallet in walletsBch track by $index"
|
||||||
|
|
@ -39,7 +39,7 @@
|
||||||
|
|
||||||
<div class="subheader" ng-if="walletsBtc[0] && walletsBch[0]" translate>
|
<div class="subheader" ng-if="walletsBtc[0] && walletsBch[0]" translate>
|
||||||
<img class="wallet-coin-logo" src="img/icon-bitcoin.svg" width="18">
|
<img class="wallet-coin-logo" src="img/icon-bitcoin.svg" width="18">
|
||||||
<span translate>Bitcoin Core Wallets</span>
|
<span translate>Bitcoin (BTC)</span>
|
||||||
</div>
|
</div>
|
||||||
<a
|
<a
|
||||||
ng-repeat="wallet in walletsBtc track by $index"
|
ng-repeat="wallet in walletsBtc track by $index"
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@
|
||||||
<span ng-if="loadingFee">...</span>
|
<span ng-if="loadingFee">...</span>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<span translate>Bitcoin Core (BTC) rate for this policy</span>:
|
<span translate>Bitcoin (BTC) rate for this policy</span>:
|
||||||
<span class="fee-rate" ng-if="feePerSatByteBtc">{{feePerSatByteBtc}} satoshis/byte</span>
|
<span class="fee-rate" ng-if="feePerSatByteBtc">{{feePerSatByteBtc}} satoshis/byte</span>
|
||||||
<span ng-if="loadingFee">...</span>
|
<span ng-if="loadingFee">...</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -66,7 +66,7 @@
|
||||||
<div class="list card">
|
<div class="list card">
|
||||||
<div class="item item-icon-right item-heading">
|
<div class="item item-icon-right item-heading">
|
||||||
<img class="wallet-coin-logo" src="img/bitcoin-cash-logo.svg" width="22">
|
<img class="wallet-coin-logo" src="img/bitcoin-cash-logo.svg" width="22">
|
||||||
<span translate>Bitcoin Cash Wallets</span>
|
<span translate>Bitcoin Cash (BCH)</span>
|
||||||
<a ui-sref="tabs.add({coin:'bch'})"><i class="icon ion-ios-plus-empty list-add-button"></i></a>
|
<a ui-sref="tabs.add({coin:'bch'})"><i class="icon ion-ios-plus-empty list-add-button"></i></a>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
|
|
@ -81,7 +81,7 @@
|
||||||
<div class="list card">
|
<div class="list card">
|
||||||
<div class="item item-icon-right item-heading">
|
<div class="item item-icon-right item-heading">
|
||||||
<img class="wallet-coin-logo" src="img/icon-bitcoin.svg" width="18">
|
<img class="wallet-coin-logo" src="img/icon-bitcoin.svg" width="18">
|
||||||
<span translate>Bitcoin Core Wallets</span>
|
<span translate>Bitcoin (BTC)</span>
|
||||||
<a ui-sref="tabs.add"><i class="icon ion-ios-plus-empty list-add-button"></i></a>
|
<a ui-sref="tabs.add"><i class="icon ion-ios-plus-empty list-add-button"></i></a>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
|
|
|
||||||
|
|
@ -89,7 +89,7 @@
|
||||||
<i class="icon bp-arrow-right"></i>
|
<i class="icon bp-arrow-right"></i>
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<div class="item item-divider" ng-show="walletsBch[0]">{{'Bitcoin Cash Wallets' | translate}}</div>
|
<div class="item item-divider" ng-show="walletsBch[0]">{{'Bitcoin Cash (BCH)' | translate}}</div>
|
||||||
|
|
||||||
<a class="item item-icon-left item-icon-right" href
|
<a class="item item-icon-left item-icon-right" href
|
||||||
ui-sref="tabs.preferences({'walletId': wallet.id})"
|
ui-sref="tabs.preferences({'walletId': wallet.id})"
|
||||||
|
|
@ -97,7 +97,7 @@
|
||||||
<span ng-include="'views/includes/walletListSettings.html'"></span>
|
<span ng-include="'views/includes/walletListSettings.html'"></span>
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<div class="item item-divider" ng-show="walletsBtc[0]">{{'Bitcoin Core Wallets' | translate}}</div>
|
<div class="item item-divider" ng-show="walletsBtc[0]">{{'Bitcoin (BTC)' | translate}}</div>
|
||||||
|
|
||||||
<a class="item item-icon-left item-icon-right" href
|
<a class="item item-icon-left item-icon-right" href
|
||||||
ui-sref="tabs.preferences({'walletId': wallet.id})"
|
ui-sref="tabs.preferences({'walletId': wallet.id})"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue