1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 03:36:18 +02:00
metamask-extension/ui/app/components/gas-customization/gas.selectors.js

15 lines
284 B
JavaScript

const selectors = {
getCurrentBlockTime,
getBasicGasEstimateLoadingStatus,
}
module.exports = selectors
function getCurrentBlockTime (state) {
return state.gas.currentBlockTime
}
function getBasicGasEstimateLoadingStatus (state) {
return state.gas.basicEstimateIsLoading
}