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.
32 lines
1013 B
32 lines
1013 B
import { connect } from 'react-redux';
|
|
import { compose } from 'redux';
|
|
import { withRouter } from 'react-router-dom';
|
|
import { addToken, removeSuggestedTokens } from '../../store/actions';
|
|
import { getMostRecentOverviewPage } from '../../ducks/history/history';
|
|
import ConfirmAddSuggestedToken from './confirm-add-suggested-token.component';
|
|
|
|
const mapStateToProps = (state) => {
|
|
const {
|
|
metamask: { pendingTokens, suggestedTokens, tokens },
|
|
} = state;
|
|
const params = { ...pendingTokens, ...suggestedTokens };
|
|
|
|
return {
|
|
mostRecentOverviewPage: getMostRecentOverviewPage(state),
|
|
pendingTokens: params,
|
|
tokens,
|
|
};
|
|
};
|
|
|
|
const mapDispatchToProps = (dispatch) => {
|
|
return {
|
|
addToken: ({ address, symbol, decimals, image }) =>
|
|
dispatch(addToken(address, symbol, Number(decimals), image)),
|
|
removeSuggestedTokens: () => dispatch(removeSuggestedTokens()),
|
|
};
|
|
};
|
|
|
|
export default compose(
|
|
withRouter,
|
|
connect(mapStateToProps, mapDispatchToProps),
|
|
)(ConfirmAddSuggestedToken);
|
|
|