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
960 B
30 lines
960 B
import { connect } from 'react-redux';
|
|
import { getNativeCurrency } from '../../../../ducks/metamask/metamask';
|
|
import {
|
|
getMetaMaskAccounts,
|
|
getNativeCurrencyImage,
|
|
getAssetImages,
|
|
} from '../../../../selectors';
|
|
import { updateSendAsset, getSendAssetAddress } from '../../../../ducks/send';
|
|
import SendAssetRow from './send-asset-row.component';
|
|
|
|
function mapStateToProps(state) {
|
|
return {
|
|
tokens: state.metamask.tokens,
|
|
selectedAddress: state.metamask.selectedAddress,
|
|
sendAssetAddress: getSendAssetAddress(state),
|
|
accounts: getMetaMaskAccounts(state),
|
|
nativeCurrency: getNativeCurrency(state),
|
|
nativeCurrencyImage: getNativeCurrencyImage(state),
|
|
assetImages: getAssetImages(state),
|
|
};
|
|
}
|
|
|
|
function mapDispatchToProps(dispatch) {
|
|
return {
|
|
updateSendAsset: ({ type, details }) =>
|
|
dispatch(updateSendAsset({ type, details })),
|
|
};
|
|
}
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(SendAssetRow);
|
|
|