mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
27 lines
734 B
JavaScript
27 lines
734 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)
|