2017-06-28 16:28:17 -03:00
< ion-view id = "settings-fee" class = "settings" show-tabs >
2016-09-01 12:36:59 -04:00
< ion-nav-bar class = "bar-royal" >
2016-09-22 11:55:23 -03:00
< ion-nav-title >
{{'Bitcoin Network Fee Policy'|translate}}
< / ion-nav-title >
2016-08-29 16:48:15 -03:00
< ion-nav-back-button >
< / ion-nav-back-button >
2016-08-15 17:42:04 -03:00
< / ion-nav-bar >
2016-09-22 11:55:23 -03:00
< ion-content >
2016-10-26 16:44:03 -03:00
< div class = "settings-explanation" >
2016-10-12 18:59:45 -04:00
< div class = "settings-heading" translate > Bitcoin transactions include a fee collected by miners on the network.< / div >
< div class = "settings-description" translate > The higher the fee, the greater the incentive a miner has to include that transaction in a block. Current fees are determined based on network load and the selected policy.< / div >
2017-01-10 10:23:01 -03:00
< div class = "estimates" >
< div >
2017-05-17 16:37:49 -03:00
< span translate > Average confirmation time< / span > :
2017-01-10 10:23:01 -03:00
< span class = "fee-minutes" ng-if = "avgConfirmationTime" > {{avgConfirmationTime | amDurationFormat: 'minute'}}< / span >
< span ng-if = "loadingFee" > ...< / span >
< / div >
< div >
2017-11-23 15:08:55 +09:00
< span translate > Bitcoin Cash (BCH) rate for this policy< / span > :
< span class = "fee-rate" ng-if = "feePerSatByteBch" > {{feePerSatByteBch}} satoshis/byte< / span >
< span ng-if = "loadingFee" > ...< / span >
< / div >
< div >
2017-12-17 17:30:39 +00:00
< span translate > Bitcoin Core (BTC) rate for this policy< / span > :
2017-11-23 15:08:55 +09:00
< span class = "fee-rate" ng-if = "feePerSatByteBtc" > {{feePerSatByteBtc}} satoshis/byte< / span >
2017-01-10 10:23:01 -03:00
< span ng-if = "loadingFee" > ...< / span >
2016-10-12 18:59:45 -04:00
< / div >
2016-08-15 17:42:04 -03:00
< / div >
2016-09-05 17:36:11 -03:00
< / div >
2016-10-12 18:59:45 -04:00
< div class = "fee-policies" >
2017-07-07 10:26:31 -03:00
< ion-radio ng-repeat = "(fee, level) in feeOpts" ng-if = "fee != 'custom'" ng-value = "fee" ng-model = "currentFeeLevel" ng-click = "save(fee)" >
2017-01-10 10:23:01 -03:00
{{level|translate}}
2016-10-12 18:59:45 -04:00
< / ion-radio >
2016-09-05 17:36:11 -03:00
< / div >
2016-08-15 17:42:04 -03:00
< / ion-content >
< / ion-view >