mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 02:58:09 +01:00
76a2a9bb8b
* @metamask/eslint-config@5.0.0 * Update eslintrc and prettierrc * yarn lint:fix
27 lines
744 B
JavaScript
27 lines
744 B
JavaScript
import { connect } from 'react-redux';
|
|
|
|
import { setPendingTokens, clearPendingTokens } from '../../store/actions';
|
|
import { getMostRecentOverviewPage } from '../../ducks/history/history';
|
|
import AddToken from './add-token.component';
|
|
|
|
const mapStateToProps = (state) => {
|
|
const {
|
|
metamask: { identities, tokens, pendingTokens },
|
|
} = state;
|
|
return {
|
|
identities,
|
|
mostRecentOverviewPage: getMostRecentOverviewPage(state),
|
|
tokens,
|
|
pendingTokens,
|
|
};
|
|
};
|
|
|
|
const mapDispatchToProps = (dispatch) => {
|
|
return {
|
|
setPendingTokens: (tokens) => dispatch(setPendingTokens(tokens)),
|
|
clearPendingTokens: () => dispatch(clearPendingTokens()),
|
|
};
|
|
};
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(AddToken);
|