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.
27 lines
755 B
27 lines
755 B
import { connect } from 'react-redux'
|
|
import Balance from './balance.component'
|
|
import {
|
|
getNativeCurrency,
|
|
getAssetImages,
|
|
conversionRateSelector,
|
|
getCurrentCurrency,
|
|
getMetaMaskAccounts,
|
|
} from '../../selectors'
|
|
|
|
const mapStateToProps = state => {
|
|
const accounts = getMetaMaskAccounts(state)
|
|
const network = state.metamask.network
|
|
const selectedAddress = state.metamask.selectedAddress || Object.keys(accounts)[0]
|
|
const account = accounts[selectedAddress]
|
|
|
|
return {
|
|
account,
|
|
network,
|
|
nativeCurrency: getNativeCurrency(state),
|
|
conversionRate: conversionRateSelector(state),
|
|
currentCurrency: getCurrentCurrency(state),
|
|
assetImages: getAssetImages(state),
|
|
}
|
|
}
|
|
|
|
export default connect(mapStateToProps)(Balance)
|
|
|