1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-25 03:20:23 +01:00
metamask-extension/ui/pages/send/send-content/send-asset-row/send-asset-row.container.js
Alex Donesky 4826c8c95e
Feat/collectibles send flow (#13048)
* Add collectibles send flow
2022-01-10 10:23:53 -06:00

33 lines
945 B
JavaScript

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);