Wallet/www/views/preferencesFee.html

37 lines
1.7 KiB
HTML
Raw Normal View History

<ion-view id="settings-fee" class="settings" show-tabs>
<ion-nav-bar class="bar-royal">
<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>
<ion-content>
<div class="settings-explanation">
<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>
<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>
</div>
2016-08-15 17:42:04 -03:00
</div>
</div>
<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}}
</ion-radio>
</div>
2016-08-15 17:42:04 -03:00
</ion-content>
</ion-view>