mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
0792e4ebbc
* Recipient name passed to confirm-page-container component should be used if pet name exists for the to address * Ensure recipient edit/add popup is shown for non-owned accounts * Ensure contract name is rendered if it exists for recipient address * Ensure that shortened address is last fallback after account, addressbook, token and ens names
38 lines
1.1 KiB
JavaScript
38 lines
1.1 KiB
JavaScript
import { connect } from 'react-redux';
|
|
import {
|
|
getAddressBookEntry,
|
|
getIsBuyableChain,
|
|
getNetworkIdentifier,
|
|
getSwapsDefaultToken,
|
|
getMetadataContractName,
|
|
getAccountName,
|
|
getMetaMaskIdentities,
|
|
} from '../../../selectors';
|
|
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;
|
|
const identities = getMetaMaskIdentities(state);
|
|
const ownedAccountName = getAccountName(identities, to);
|
|
const toName = ownedAccountName || contact?.name;
|
|
const toMetadataName = getMetadataContractName(state, to);
|
|
|
|
return {
|
|
isBuyableChain,
|
|
contact,
|
|
toName,
|
|
toMetadataName,
|
|
recipientIsOwnedAccount: Boolean(ownedAccountName),
|
|
to,
|
|
networkIdentifier,
|
|
accountBalance,
|
|
};
|
|
}
|
|
|
|
export default connect(mapStateToProps)(ConfirmPageContainer);
|