A Metamask fork with Infura removed and default networks editable
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.
 
 
 
 
 
ciphermask/ui/pages/send/send-content/send-content.container.js

38 lines
1.0 KiB

import { connect } from 'react-redux';
import {
accountsWithSendEtherInfoSelector,
getAddressBookEntry,
getIsEthGasPriceFetched,
getNoGasPriceFetched,
checkNetworkOrAccountNotSupports1559,
} from '../../../selectors';
import {
getIsBalanceInsufficient,
getSendTo,
getSendAsset,
} 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),
};
}
export default connect(mapStateToProps)(SendContent);