mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
a759d427f0
* 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>
42 lines
1.1 KiB
JavaScript
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);
|