mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
4d88e1cf86
* Enable indent linting via ESLint * yarn run lint:fix
25 lines
420 B
JavaScript
25 lines
420 B
JavaScript
const selectors = {
|
|
getToDropdownOpen,
|
|
getTokens,
|
|
sendToIsInError,
|
|
sendToIsInWarning,
|
|
}
|
|
|
|
module.exports = selectors
|
|
|
|
function getToDropdownOpen (state) {
|
|
return state.send.toDropdownOpen
|
|
}
|
|
|
|
function sendToIsInError (state) {
|
|
return Boolean(state.send.errors.to)
|
|
}
|
|
|
|
function sendToIsInWarning (state) {
|
|
return Boolean(state.send.warnings.to)
|
|
}
|
|
|
|
function getTokens (state) {
|
|
return state.metamask.tokens
|
|
}
|