mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-25 11:28:51 +01:00
113 lines
3.3 KiB
JavaScript
113 lines
3.3 KiB
JavaScript
import { toChecksumAddress } from 'ethereumjs-util';
|
|
import { getSelectedIdentity, getAccountType } from '../selectors';
|
|
import { getProviderConfig } from '../../ducks/metamask/metamask';
|
|
import { hexToDecimal } from '../../../shared/modules/conversion.utils';
|
|
|
|
export function getWaitForConfirmDeepLinkDialog(state) {
|
|
return state.metamask.waitForConfirmDeepLinkDialog;
|
|
}
|
|
|
|
export function getTransactionStatusMap(state) {
|
|
return state.metamask.custodyStatusMaps;
|
|
}
|
|
|
|
export function getCustodyAccountDetails(state) {
|
|
return state.metamask.custodyAccountDetails;
|
|
}
|
|
|
|
export function getCustodyAccountSupportedChains(state, address) {
|
|
return state.metamask.custodianSupportedChains
|
|
? state.metamask.custodianSupportedChains[toChecksumAddress(address)]
|
|
: [];
|
|
}
|
|
|
|
export function getMmiPortfolioEnabled(state) {
|
|
return state.metamask.mmiConfiguration?.portfolio?.enabled;
|
|
}
|
|
|
|
export function getMmiPortfolioUrl(state) {
|
|
return state.metamask.mmiConfiguration?.portfolio?.url;
|
|
}
|
|
|
|
export function getConfiguredCustodians(state) {
|
|
return state.metamask.mmiConfiguration?.custodians || [];
|
|
}
|
|
|
|
export function getCustodianIconForAddress(state, address) {
|
|
let custodianIcon;
|
|
|
|
const checksummedAddress = address && toChecksumAddress(address);
|
|
if (
|
|
checksummedAddress &&
|
|
state.metamask.custodyAccountDetails?.[checksummedAddress]
|
|
) {
|
|
const { custodianName } =
|
|
state.metamask.custodyAccountDetails[checksummedAddress];
|
|
custodianIcon = state.metamask.mmiConfiguration?.custodians?.find(
|
|
(custodian) => custodian.name === custodianName,
|
|
)?.iconUrl;
|
|
}
|
|
|
|
return custodianIcon;
|
|
}
|
|
|
|
export function getIsCustodianSupportedChain(state) {
|
|
try {
|
|
const selectedIdentity = getSelectedIdentity(state);
|
|
const accountType = getAccountType(state);
|
|
const providerConfig = getProviderConfig(state);
|
|
|
|
if (!selectedIdentity || !accountType || !providerConfig) {
|
|
throw new Error('Invalid state');
|
|
}
|
|
|
|
if (accountType !== 'custody') {
|
|
return true;
|
|
}
|
|
|
|
const supportedChains = getCustodyAccountSupportedChains(
|
|
state,
|
|
selectedIdentity.address,
|
|
);
|
|
|
|
if (!supportedChains || !supportedChains.supportedChains) {
|
|
return true;
|
|
}
|
|
|
|
return supportedChains.supportedChains.includes(
|
|
hexToDecimal(providerConfig.chainId),
|
|
);
|
|
} catch (error) {
|
|
console.error(error);
|
|
throw error;
|
|
}
|
|
}
|
|
|
|
export function getMMIAddressFromModalOrAddress(state) {
|
|
const modalAddress = state?.appState?.modal?.modalState?.props?.address;
|
|
const selectedAddress = state?.metamask?.selectedAddress;
|
|
|
|
return modalAddress || selectedAddress;
|
|
}
|
|
|
|
export function getMMIConfiguration(state) {
|
|
return state.metamask.mmiConfiguration || [];
|
|
}
|
|
|
|
export function getInteractiveReplacementToken(state) {
|
|
return state.metamask.interactiveReplacementToken || {};
|
|
}
|
|
|
|
export function getIsNoteToTraderSupported(state, fromChecksumHexAddress) {
|
|
let isNoteToTraderSupported = false;
|
|
if (state.metamask.custodyAccountDetails?.[fromChecksumHexAddress]) {
|
|
const { custodianName } =
|
|
state.metamask.custodyAccountDetails[fromChecksumHexAddress];
|
|
|
|
isNoteToTraderSupported = state.metamask.mmiConfiguration?.custodians?.find(
|
|
(custodian) => custodian.name === custodianName,
|
|
)?.isNoteToTraderSupported;
|
|
}
|
|
return isNoteToTraderSupported;
|
|
}
|