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.
30 lines
856 B
30 lines
856 B
import { connect } from 'react-redux'
|
|
import { withRouter } from 'react-router-dom'
|
|
import { compose } from 'recompose'
|
|
import TransactionViewBalance from './transaction-view-balance.component'
|
|
import { getSelectedToken, getSelectedAddress } from '../../selectors'
|
|
import { showModal } from '../../actions'
|
|
|
|
const mapStateToProps = state => {
|
|
const selectedAddress = getSelectedAddress(state)
|
|
const { metamask: { network, accounts } } = state
|
|
const account = accounts[selectedAddress]
|
|
const { balance } = account
|
|
|
|
return {
|
|
selectedToken: getSelectedToken(state),
|
|
network,
|
|
balance,
|
|
}
|
|
}
|
|
|
|
const mapDispatchToProps = dispatch => {
|
|
return {
|
|
showDepositModal: () => dispatch(showModal({ name: 'DEPOSIT_ETHER' })),
|
|
}
|
|
}
|
|
|
|
export default compose(
|
|
withRouter,
|
|
connect(mapStateToProps, mapDispatchToProps)
|
|
)(TransactionViewBalance)
|
|
|