1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02:00
metamask-extension/ui/hooks/useAddressDetails.js

42 lines
1.1 KiB
JavaScript
Raw Normal View History

import { useSelector } from 'react-redux';
import { toChecksumHexAddress } from '../../shared/modules/hexstring-utils';
import {
getAddressBook,
getMetaMaskIdentities,
getTokenList,
} from '../selectors';
import { shortenAddress } from '../helpers/utils/util';
const useAddressDetails = (toAddress) => {
const addressBook = useSelector(getAddressBook);
const identities = useSelector(getMetaMaskIdentities);
const tokenList = useSelector(getTokenList);
const checksummedAddress = toChecksumHexAddress(toAddress);
if (!toAddress) {
return {};
}
const addressBookEntryObject = addressBook.find(
(entry) => entry.address === checksummedAddress,
);
if (addressBookEntryObject?.name) {
return { toName: addressBookEntryObject.name, isTrusted: true };
}
if (identities[toAddress]?.name) {
return { toName: identities[toAddress].name, isTrusted: true };
}
if (tokenList[toAddress?.toLowerCase()]?.name) {
return {
toName: tokenList[toAddress?.toLowerCase()].name,
isTrusted: true,
};
}
return {
toName: shortenAddress(checksummedAddress),
isTrusted: false,
};
};
export default useAddressDetails;