|
@ -29,6 +29,7 @@ block content |
|
|
span(data-toggle="tooltip", title=utils.formatExchangedCurrency(mempoolstats["totalFees"])) |
|
|
span(data-toggle="tooltip", title=utils.formatExchangedCurrency(mempoolstats["totalFees"])) |
|
|
i(class="fas fa-exchange-alt") |
|
|
i(class="fas fa-exchange-alt") |
|
|
|
|
|
|
|
|
|
|
|
if (getmempoolinfo.size > 0) |
|
|
tr |
|
|
tr |
|
|
th(class="table-active properties-header") Average Fee |
|
|
th(class="table-active properties-header") Average Fee |
|
|
td(class="monospace") #{utils.formatCurrencyAmount(mempoolstats["averageFee"], currencyFormatType)} |
|
|
td(class="monospace") #{utils.formatCurrencyAmount(mempoolstats["averageFee"], currencyFormatType)} |
|
@ -41,6 +42,7 @@ block content |
|
|
th(class="table-active properties-header") Average Fee per Byte |
|
|
th(class="table-active properties-header") Average Fee per Byte |
|
|
td(class="monospace") #{utils.formatCurrencyAmountInSmallestUnits(mempoolstats["averageFeePerByte"])}/B |
|
|
td(class="monospace") #{utils.formatCurrencyAmountInSmallestUnits(mempoolstats["averageFeePerByte"])}/B |
|
|
|
|
|
|
|
|
|
|
|
if (getmempoolinfo.size > 0) |
|
|
h4 Transactions by fee rate |
|
|
h4 Transactions by fee rate |
|
|
hr |
|
|
hr |
|
|
|
|
|
|
|
@ -102,6 +104,7 @@ block content |
|
|
th Fee Rate |
|
|
th Fee Rate |
|
|
th(class="text-right") Tx Count |
|
|
th(class="text-right") Tx Count |
|
|
th(class="text-right") Total Fees |
|
|
th(class="text-right") Total Fees |
|
|
|
|
|
th(class="text-right") Average Fee |
|
|
th(class="text-right") Average Fee Rate |
|
|
th(class="text-right") Average Fee Rate |
|
|
tbody |
|
|
tbody |
|
|
each item, index in mempoolstats["satoshiPerByteBuckets"] |
|
|
each item, index in mempoolstats["satoshiPerByteBuckets"] |
|
@ -111,8 +114,17 @@ block content |
|
|
td(class="text-right monospace") #{utils.formatCurrencyAmount(item["totalFees"], currencyFormatType)} |
|
|
td(class="text-right monospace") #{utils.formatCurrencyAmount(item["totalFees"], currencyFormatType)} |
|
|
|
|
|
|
|
|
if (item["totalBytes"] > 0) |
|
|
if (item["totalBytes"] > 0) |
|
|
|
|
|
- var avgFee = item["totalFees"] / item["count"]; |
|
|
- var avgFeeRate = item["totalFees"] / item["totalBytes"]; |
|
|
- var avgFeeRate = item["totalFees"] / item["totalBytes"]; |
|
|
|
|
|
|
|
|
|
|
|
td(class="text-right monospace") #{utils.formatCurrencyAmount(avgFee, currencyFormatType)} |
|
|
|
|
|
if (global.exchangeRate) |
|
|
|
|
|
span |
|
|
|
|
|
span(data-toggle="tooltip", title=utils.formatExchangedCurrency(avgFee)) |
|
|
|
|
|
i(class="fas fa-exchange-alt") |
|
|
|
|
|
|
|
|
td(class="text-right monospace") #{utils.formatCurrencyAmountInSmallestUnits(avgFeeRate)}/B |
|
|
td(class="text-right monospace") #{utils.formatCurrencyAmountInSmallestUnits(avgFeeRate)}/B |
|
|
else |
|
|
else |
|
|
td(class="text-right monospace") - |
|
|
td(class="text-right monospace") - |
|
|
|
|
|
td(class="text-right monospace") - |
|
|
|
|
|
|