mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-29 07:16:36 +01:00
22 lines
661 B
JavaScript
22 lines
661 B
JavaScript
import { connect } from 'react-redux'
|
|
import { getMetaMaskAccounts, getSendTokenAddress } from '../../../../selectors'
|
|
import { updateSendToken } from '../../../../store/actions'
|
|
import SendAssetRow from './send-asset-row.component'
|
|
|
|
function mapStateToProps(state) {
|
|
return {
|
|
tokens: state.metamask.tokens,
|
|
selectedAddress: state.metamask.selectedAddress,
|
|
sendTokenAddress: getSendTokenAddress(state),
|
|
accounts: getMetaMaskAccounts(state),
|
|
}
|
|
}
|
|
|
|
function mapDispatchToProps(dispatch) {
|
|
return {
|
|
setSendToken: (token) => dispatch(updateSendToken(token)),
|
|
}
|
|
}
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(SendAssetRow)
|