2018-05-20 08:04:19 +02:00
|
|
|
import { connect } from 'react-redux'
|
|
|
|
|
2020-01-09 04:34:58 +01:00
|
|
|
import { addTokens, clearPendingTokens } from '../../store/actions'
|
2020-06-01 19:54:32 +02:00
|
|
|
import { getMostRecentOverviewPage } from '../../ducks/history/history'
|
2020-08-18 21:18:25 +02:00
|
|
|
import ConfirmAddToken from './confirm-add-token.component'
|
2018-05-20 08:04:19 +02:00
|
|
|
|
2020-06-01 19:54:32 +02:00
|
|
|
const mapStateToProps = (state) => {
|
|
|
|
const { metamask: { pendingTokens } } = state
|
2018-05-20 08:04:19 +02:00
|
|
|
return {
|
2020-06-01 19:54:32 +02:00
|
|
|
mostRecentOverviewPage: getMostRecentOverviewPage(state),
|
2018-05-20 08:04:19 +02:00
|
|
|
pendingTokens,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-15 21:34:12 +01:00
|
|
|
const mapDispatchToProps = (dispatch) => {
|
2018-05-20 08:04:19 +02:00
|
|
|
return {
|
2020-02-15 21:34:12 +01:00
|
|
|
addTokens: (tokens) => dispatch(addTokens(tokens)),
|
2018-05-20 08:04:19 +02:00
|
|
|
clearPendingTokens: () => dispatch(clearPendingTokens()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(ConfirmAddToken)
|