aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send_/send.selectors.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/send_/send.selectors.js')
-rw-r--r--ui/app/components/send_/send.selectors.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/ui/app/components/send_/send.selectors.js b/ui/app/components/send_/send.selectors.js
index c5ae1ab7f..7e7cfe2e9 100644
--- a/ui/app/components/send_/send.selectors.js
+++ b/ui/app/components/send_/send.selectors.js
@@ -3,12 +3,16 @@ const abi = require('human-standard-token-abi')
const {
multiplyCurrencies,
} = require('../../conversion-util')
+const {
+ estimateGasPriceFromRecentBlocks,
+} = require('./send.utils')
const selectors = {
accountsWithSendEtherInfoSelector,
// autoAddToBetaUI,
getAddressBook,
getAmountConversionRate,
+ getBlockGasLimit,
getConversionRate,
getConvertedCurrency,
getCurrentAccountWithSendEtherInfo,
@@ -18,8 +22,10 @@ const selectors = {
getForceGasMin,
getGasLimit,
getGasPrice,
+ getGasPriceFromRecentBlocks,
getGasTotal,
getPrimaryCurrency,
+ getRecentBlocks,
getSelectedAccount,
getSelectedAddress,
getSelectedIdentity,
@@ -84,6 +90,10 @@ function getAmountConversionRate (state) {
: getConversionRate(state)
}
+function getBlockGasLimit (state) {
+ return state.metamask.currentBlockGasLimit
+}
+
function getConversionRate (state) {
return state.metamask.conversionRate
}
@@ -124,6 +134,10 @@ function getGasPrice (state) {
return state.metamask.send.gasPrice
}
+function getGasPriceFromRecentBlocks (state) {
+ return estimateGasPriceFromRecentBlocks(state.metamask.recentBlocks)
+}
+
function getGasTotal (state) {
return state.metamask.send.gasTotal
}
@@ -133,6 +147,10 @@ function getPrimaryCurrency (state) {
return selectedToken && selectedToken.symbol
}
+function getRecentBlocks (state) {
+ return state.metamask.recentBlocks
+}
+
function getSelectedAccount (state) {
const accounts = state.metamask.accounts
const selectedAddress = getSelectedAddress(state)