1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-24 19:10:22 +01:00
metamask-extension/ui/pages/send/send-content/send-content.container.js
ryanml a759d427f0
Remove new address alert (#14811)
* Removing new address alert

* remove unused copy

* fix broken e2e test

* rework layout nesting

* satisfy lint

* change layout to fix firefox tests

* change selector specificity on e2e test

* revert test change after fix has been merged from develop

* fix linting

Co-authored-by: Brad Decker <bhdecker84@gmail.com>
Co-authored-by: Pedro Figueiredo <pedro.figueiredo@consensys.net>
2022-12-08 14:20:24 +00:00

42 lines
1.1 KiB
JavaScript

import { connect } from 'react-redux';
import {
getIsEthGasPriceFetched,
getNoGasPriceFetched,
checkNetworkOrAccountNotSupports1559,
} from '../../../selectors';
import {
getIsBalanceInsufficient,
getSendAsset,
getAssetError,
getRecipient,
acknowledgeRecipientWarning,
getRecipientWarningAcknowledgement,
} from '../../../ducks/send';
import SendContent from './send-content.component';
function mapStateToProps(state) {
const recipient = getRecipient(state);
const recipientWarningAcknowledged =
getRecipientWarningAcknowledgement(state);
return {
isEthGasPrice: getIsEthGasPriceFetched(state),
noGasPrice: getNoGasPriceFetched(state),
networkOrAccountNotSupports1559:
checkNetworkOrAccountNotSupports1559(state),
getIsBalanceInsufficient: getIsBalanceInsufficient(state),
asset: getSendAsset(state),
assetError: getAssetError(state),
recipient,
recipientWarningAcknowledged,
};
}
function mapDispatchToProps(dispatch) {
return {
acknowledgeRecipientWarning: () => dispatch(acknowledgeRecipientWarning()),
};
}
export default connect(mapStateToProps, mapDispatchToProps)(SendContent);