You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
422 B
25 lines
422 B
7 years ago
|
const selectors = {
|
||
|
getToDropdownOpen,
|
||
6 years ago
|
getTokens,
|
||
7 years ago
|
sendToIsInError,
|
||
6 years ago
|
sendToIsInWarning,
|
||
7 years ago
|
}
|
||
|
|
||
|
module.exports = selectors
|
||
|
|
||
|
function getToDropdownOpen (state) {
|
||
|
return state.send.toDropdownOpen
|
||
|
}
|
||
|
|
||
|
function sendToIsInError (state) {
|
||
7 years ago
|
return Boolean(state.send.errors.to)
|
||
7 years ago
|
}
|
||
6 years ago
|
|
||
6 years ago
|
function sendToIsInWarning (state) {
|
||
|
return Boolean(state.send.warnings.to)
|
||
|
}
|
||
|
|
||
6 years ago
|
function getTokens (state) {
|
||
|
return state.metamask.tokens
|
||
|
}
|