mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-25 03:20:23 +01:00
4826c8c95e
* Add collectibles send flow
39 lines
1.0 KiB
JavaScript
39 lines
1.0 KiB
JavaScript
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);
|