You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.1 KiB
40 lines
1.1 KiB
import { connect } from 'react-redux';
|
|
import {
|
|
accountsWithSendEtherInfoSelector,
|
|
getAddressBookEntry,
|
|
getIsEthGasPriceFetched,
|
|
getNoGasPriceFetched,
|
|
checkNetworkOrAccountNotSupports1559,
|
|
} from '../../../selectors';
|
|
import {
|
|
getIsBalanceInsufficient,
|
|
getSendTo,
|
|
getSendAsset,
|
|
getAssetError,
|
|
} from '../../../ducks/send';
|
|
|
|
import SendContent from './send-content.component';
|
|
|
|
function mapStateToProps(state) {
|
|
const ownedAccounts = accountsWithSendEtherInfoSelector(state);
|
|
const to = getSendTo(state);
|
|
return {
|
|
isOwnedAccount: Boolean(
|
|
ownedAccounts.find(
|
|
({ address }) => address.toLowerCase() === to.toLowerCase(),
|
|
),
|
|
),
|
|
contact: getAddressBookEntry(state, to),
|
|
isEthGasPrice: getIsEthGasPriceFetched(state),
|
|
noGasPrice: getNoGasPriceFetched(state),
|
|
to,
|
|
networkOrAccountNotSupports1559: checkNetworkOrAccountNotSupports1559(
|
|
state,
|
|
),
|
|
getIsBalanceInsufficient: getIsBalanceInsufficient(state),
|
|
asset: getSendAsset(state),
|
|
assetError: getAssetError(state),
|
|
};
|
|
}
|
|
|
|
export default connect(mapStateToProps)(SendContent);
|
|
|