mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-25 03:20:23 +01:00
4826c8c95e
* Add collectibles send flow
33 lines
945 B
JavaScript
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);
|