mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-29 15:50:28 +01:00
33cc8d587a
* replaced all the instances of collectibles with nfts * updated actions * updated e2e seeder * updated confirm Approve test * updated test dapp change * updated test dapp change * nit fix * nit fix * updated casing and snapshots * updated casinG * added migrations * updated ,igration * updated 078.test * updated tests for 078 migration * updated migration * updated 078 index.js
35 lines
981 B
JavaScript
35 lines
981 B
JavaScript
import { connect } from 'react-redux';
|
|
import {
|
|
getNftContracts,
|
|
getNfts,
|
|
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,
|
|
nfts: getNfts(state),
|
|
collections: getNftContracts(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);
|