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.
22 lines
590 B
22 lines
590 B
import { connect } from 'react-redux'
|
|
import AddToken from './add-token.component'
|
|
|
|
const { setPendingTokens, clearPendingTokens } = require('../../store/actions')
|
|
|
|
const mapStateToProps = ({ metamask }) => {
|
|
const { identities, tokens, pendingTokens } = metamask
|
|
return {
|
|
identities,
|
|
tokens,
|
|
pendingTokens,
|
|
}
|
|
}
|
|
|
|
const mapDispatchToProps = dispatch => {
|
|
return {
|
|
setPendingTokens: tokens => dispatch(setPendingTokens(tokens)),
|
|
clearPendingTokens: () => dispatch(clearPendingTokens()),
|
|
}
|
|
}
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(AddToken)
|
|
|