2017-06-28 16:28:17 -03:00
< ion-view id = "tab-home" show-tabs >
2016-08-31 15:54:53 -04:00
< ion-nav-bar class = "bar-royal" >
2017-11-16 16:25:53 +09:00
< ion-nav-title > < span class = "nav-bar-title textlogo" > < span class = "moon-symbol" > < / span > itcoin.com Wallet< / span > < / ion-nav-title >
2016-08-17 13:07:48 -03:00
< / ion-nav-bar >
2016-08-18 10:08:23 -03:00
2016-10-21 01:51:00 -04:00
< ion-content >
2016-10-11 12:59:02 -03:00
< ion-refresher
pulling-icon="ion-ios-refresh"
spinner="ios-small"
on-refresh="onRefresh()">
< / ion-refresher >
2017-06-07 12:23:07 -03:00
2017-01-24 17:13:22 -03:00
< div class = "list card release ng-hide" ng-show = "newRelease" >
< i class = "item icon big-icon-svg" >
< img src = "img/icon-update.svg" class = "bg" / >
< / i >
2017-01-25 09:40:31 -03:00
< div class = "item title" > {{updateText}}< / div >
2017-01-24 17:13:22 -03:00
< div class = "button" ng-click = "openExternalLink()" >
< span translate > Download< / span >
< / div >
2016-10-26 12:56:33 -03:00
< / div >
2017-01-24 17:13:22 -03:00
2016-11-15 15:09:08 -05:00
< div class = "ng-hide" ng-show = "showRateCard.value" ng-include = "'views/feedback/rateCard.html'" > < / div >
2018-05-04 16:56:19 +09:00
< div class = "list card homeTip" ng-if = "homeTip" >
< div class = "item item-icon-right item-heading" >
< a ng-click = "hideHomeTip()" > < i class = "icon ion-ios-close-empty close-home-tip" > < / i > < / a >
< / div >
< div class = "title" translate >
Your bitcoin wallets are ready!
< / div >
< div class = "subtitle" translate >
Your Bitcoin Cash (BCH) wallet is ready to use. A Bitcoin Core (BTC) wallet can be displayed from Settings < i class = "icon bp-arrow-right" > < / i > Advanced < i class = "icon bp-arrow-right" > < / i > Bitcoin Core Wallet
< / div >
< / div >
2017-04-26 08:53:32 -03:00
< div class = "list card" ng-hide = "!txps[0]" >
< a class = "item item-icon-right item-heading" ui-sref = "tabs.proposals" >
{{'Payment Proposals'|translate}}
< i class = "icon bp-arrow-right" > < / i >
< span class = "badge badge-assertive m5t m10r" ng-show = "txpsN>3" > {{txpsN}}< / span >
< / a >
< div ng-repeat = "tx in txps" ng-click = "openTxpModal(tx)" >
< a class = "wallet-details__item item item-sub" ng-include = "'views/includes/txp.html'" > < / a >
2016-11-03 17:29:29 -04:00
< / div >
2016-09-01 19:14:18 -03:00
< / div >
2017-04-26 08:53:32 -03:00
< div class = "list card" ng-if = "notifications[0] && recentTransactionsEnabled" >
< a class = "item item-icon-right item-heading" ui-sref = "tabs.activity" >
< span translate > Recent Transactions< / span >
< i class = "icon bp-arrow-right" > < / i >
< span class = "badge badge-assertive m5t m10r" ng-show = "notificationsN>3" > {{notificationsN}}< / span >
< / a >
< a class = "item item-sub activity" ng-repeat = "notification in notifications" ng-click = "openNotificationModal(notification)" >
< span ng-include = "'views/includes/walletActivity.html'" > < / span >
< / a >
< / div >
2017-04-14 18:26:56 -03:00
2017-11-14 16:57:59 +09:00
< div class = "list card" >
2017-04-26 08:53:32 -03:00
< div class = "item item-icon-right item-heading" >
2017-11-14 16:57:59 +09:00
< img class = "wallet-coin-logo" src = "img/bitcoin-cash-logo.svg" width = "22" >
2017-12-06 15:48:11 +09:00
< span translate > Bitcoin Cash (BCH)< / span >
2017-11-14 16:57:59 +09:00
< a ui-sref = "tabs.add({coin:'bch'})" > < i class = "icon ion-ios-plus-empty list-add-button" > < / i > < / a >
2017-04-26 08:53:32 -03:00
< / div >
< div >
2017-11-14 16:57:59 +09:00
< a ng-repeat = "wallet in walletsBch track by $index"
2017-04-26 08:53:32 -03:00
class="item item-sub item-icon-left item-big-icon-left item-icon-right wallet"
ng-click="openWallet(wallet)">
2017-10-05 15:18:30 -03:00
< span ng-include = "'views/includes/walletList.html'" > < / span >
< / a >
< / div >
< / div >
2017-02-23 16:56:46 -05:00
2018-03-27 11:30:34 +09:00
< div class = "list card"
ng-show="displayBitcoinCore">
2017-10-05 15:18:30 -03:00
< div class = "item item-icon-right item-heading" >
2017-11-14 16:57:59 +09:00
< img class = "wallet-coin-logo" src = "img/icon-bitcoin.svg" width = "18" >
2017-12-17 17:30:39 +00:00
< span translate > Bitcoin Core (BTC)< / span >
2017-11-14 16:57:59 +09:00
< a ui-sref = "tabs.add" > < i class = "icon ion-ios-plus-empty list-add-button" > < / i > < / a >
2017-10-05 15:18:30 -03:00
< / div >
< div >
2017-11-14 16:57:59 +09:00
< a ng-repeat = "wallet in walletsBtc track by $index"
2017-10-05 15:18:30 -03:00
class="item item-sub item-icon-left item-big-icon-left item-icon-right wallet"
ng-click="openWallet(wallet)">
< span ng-include = "'views/includes/walletList.html'" > < / span >
2017-04-26 08:53:32 -03:00
< / a >
2016-11-11 18:11:52 -05:00
< / div >
< / div >
2017-10-05 15:18:30 -03:00
< div class = "ng-hide list card" ng-show = "walletsBtc[0] && bitpayCardItems.length>0" ng-include = "'views/includes/bitpayCardsCard.html'" > < / div >
< div class = "ng-hide list card" ng-show = "walletsBtc[0] && buyAndSellItems.length>0" ng-include = "'views/includes/buyAndSellCard.html'" > < / div >
2017-06-29 14:48:59 -03:00
< div class = "ng-hide list card" ng-show = "homeIntegrations.length>0" ng-include = "'views/includes/homeIntegrations.html'" > < / div >
< div class = "ng-hide list card" ng-show = "nextStepsItems.length>0 && !isWindowsPhoneApp" ng-include = "'views/includes/nextSteps.html'" > < / div >
2017-12-14 13:33:42 +09:00
< div class = "ng-hide list card" ng-show = "showServices && (walletsBch[0] || walletsBtc[0])" ng-include = "'views/includes/services.html'" > < / div >
2018-02-16 16:20:22 +00:00
< div class = "ng-hide list card" ng-show = "nextStepsItems.length>0 && !isWindowsPhoneApp" ng-include = "'views/includes/community.html'" > < / div >
2017-12-14 13:27:04 +09:00
2016-08-11 17:38:27 -03:00
< / ion-content >
2016-08-11 18:04:37 -03:00
< / ion-view >