mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
* Update eslint-plugin-import version * Convert JS files to use ESM * Update ESLint rules to check imports * Fix test:unit:global command env * Cleanup mock-dev script
15 lines
282 B
JavaScript
15 lines
282 B
JavaScript
const selectors = {
|
|
getCurrentBlockTime,
|
|
getBasicGasEstimateLoadingStatus,
|
|
}
|
|
|
|
export default selectors
|
|
|
|
function getCurrentBlockTime (state) {
|
|
return state.gas.currentBlockTime
|
|
}
|
|
|
|
function getBasicGasEstimateLoadingStatus (state) {
|
|
return state.gas.basicEstimateIsLoading
|
|
}
|