mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
38 lines
1012 B
JavaScript
38 lines
1012 B
JavaScript
import { connect } from 'react-redux';
|
|
import {
|
|
getAccountsWithLabels,
|
|
getAddressBookEntry,
|
|
getIsBuyableChain,
|
|
getNetworkIdentifier,
|
|
} from '../../../selectors';
|
|
import { showModal } from '../../../store/actions';
|
|
import ConfirmPageContainer from './confirm-page-container.component';
|
|
|
|
function mapStateToProps(state, ownProps) {
|
|
const to = ownProps.toAddress;
|
|
const isBuyableChain = getIsBuyableChain(state);
|
|
const contact = getAddressBookEntry(state, to);
|
|
const networkIdentifier = getNetworkIdentifier(state);
|
|
return {
|
|
isBuyableChain,
|
|
contact,
|
|
toName: contact?.name || ownProps.toName,
|
|
isOwnedAccount: getAccountsWithLabels(state)
|
|
.map((accountWithLabel) => accountWithLabel.address)
|
|
.includes(to),
|
|
to,
|
|
networkIdentifier,
|
|
};
|
|
}
|
|
|
|
const mapDispatchToProps = (dispatch) => {
|
|
return {
|
|
showBuyModal: () => dispatch(showModal({ name: 'DEPOSIT_ETHER' })),
|
|
};
|
|
};
|
|
|
|
export default connect(
|
|
mapStateToProps,
|
|
mapDispatchToProps,
|
|
)(ConfirmPageContainer);
|