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.
Tag:
Branch:
Tree:
119693fe05
develop
feature/default_network_editable
v10.22.3
${ noResults }
29 lines
876 B
29 lines
876 B
import { connect } from 'react-redux';
|
|||
|
|
||
import { setPendingTokens, clearPendingTokens } from '../../store/actions';
|
|||
import { getMostRecentOverviewPage } from '../../ducks/history/history';
|
|||
import { getIsMainnet } from '../../selectors/selectors';
|
|||
import AddToken from './add-token.component';
|
|||
|
|
||
const mapStateToProps = (state) => {
|
|||
|
const {
|
||
metamask: { identities, tokens, pendingTokens },
|
|||
} = state;
|
|||
|
return {
|
||
identities,
|
|||
mostRecentOverviewPage: getMostRecentOverviewPage(state),
|
|||
|
tokens,
|
||
pendingTokens,
|
|||
showSearchTab: getIsMainnet(state) || process.env.IN_TEST === 'true',
|
|||
};
|
|||
};
|
|||
|
|
||
|
const mapDispatchToProps = (dispatch) => {
|
||
|
return {
|
||
|
setPendingTokens: (tokens) => dispatch(setPendingTokens(tokens)),
|
||
|
clearPendingTokens: () => dispatch(clearPendingTokens()),
|
||
};
|
|||
};
|
|||
|
|
||
export default connect(mapStateToProps, mapDispatchToProps)(AddToken);
|