mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
44 lines
1.2 KiB
JavaScript
44 lines
1.2 KiB
JavaScript
import { connect } from 'react-redux';
|
|
import {
|
|
getIsEthGasPriceFetched,
|
|
getNoGasPriceFetched,
|
|
checkNetworkOrAccountNotSupports1559,
|
|
getIsMultiLayerFeeNetwork,
|
|
} 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,
|
|
isMultiLayerFeeNetwork: getIsMultiLayerFeeNetwork(state),
|
|
};
|
|
}
|
|
|
|
function mapDispatchToProps(dispatch) {
|
|
return {
|
|
acknowledgeRecipientWarning: () => dispatch(acknowledgeRecipientWarning()),
|
|
};
|
|
}
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(SendContent);
|