A Metamask fork with Infura removed and default networks editable
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.
ciphermask/ui/pages/send/send-content/send-asset-row/send-asset-row.container.js

33 lines
945 B

import { connect } from 'react-redux';
import {
getCollectibles,
getNativeCurrency,
} from '../../../../ducks/metamask/metamask';
import {
getMetaMaskAccounts,
getNativeCurrencyImage,
} from '../../../../selectors';
import { updateSendAsset, getSendAsset } from '../../../../ducks/send';
import SendAssetRow from './send-asset-row.component';
function mapStateToProps(state) {
return {
tokens: state.metamask.tokens,
selectedAddress: state.metamask.selectedAddress,
collectibles: getCollectibles(state),
sendAsset: getSendAsset(state),
accounts: getMetaMaskAccounts(state),
nativeCurrency: getNativeCurrency(state),
nativeCurrencyImage: getNativeCurrencyImage(state),
};
}
function mapDispatchToProps(dispatch) {
return {
updateSendAsset: ({ type, details }) =>
dispatch(updateSendAsset({ type, details })),
};
}
export default connect(mapStateToProps, mapDispatchToProps)(SendAssetRow);