mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
2ba6e68c8b
* Updated header for NFT approval and Set approval for all screens
43 lines
1.1 KiB
JavaScript
43 lines
1.1 KiB
JavaScript
import { connect } from 'react-redux';
|
|
import {
|
|
getAccountsWithLabels,
|
|
getAddressBookEntry,
|
|
getIsBuyableChain,
|
|
getNetworkIdentifier,
|
|
getSwapsDefaultToken,
|
|
} 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);
|
|
const defaultToken = getSwapsDefaultToken(state);
|
|
const accountBalance = defaultToken.string;
|
|
|
|
return {
|
|
isBuyableChain,
|
|
contact,
|
|
toName: contact?.name || ownProps.toName,
|
|
isOwnedAccount: getAccountsWithLabels(state)
|
|
.map((accountWithLabel) => accountWithLabel.address)
|
|
.includes(to),
|
|
to,
|
|
networkIdentifier,
|
|
accountBalance,
|
|
};
|
|
}
|
|
|
|
const mapDispatchToProps = (dispatch) => {
|
|
return {
|
|
showBuyModal: () => dispatch(showModal({ name: 'DEPOSIT_ETHER' })),
|
|
};
|
|
};
|
|
|
|
export default connect(
|
|
mapStateToProps,
|
|
mapDispatchToProps,
|
|
)(ConfirmPageContainer);
|