2022-10-28 10:37:33 +02:00
|
|
|
import {
|
|
|
|
createSelector,
|
|
|
|
createSelectorCreator,
|
|
|
|
defaultMemoize,
|
|
|
|
} from 'reselect';
|
|
|
|
import {
|
|
|
|
///: BEGIN:ONLY_INCLUDE_IN(flask)
|
|
|
|
memoize,
|
|
|
|
///: END:ONLY_INCLUDE_IN
|
|
|
|
isEqual,
|
|
|
|
} from 'lodash';
|
2021-04-28 21:53:59 +02:00
|
|
|
import { addHexPrefix } from '../../app/scripts/lib/util';
|
2021-02-16 16:31:16 +01:00
|
|
|
import {
|
|
|
|
TEST_CHAINS,
|
2021-04-02 00:57:00 +02:00
|
|
|
NATIVE_CURRENCY_TOKEN_IMAGE_MAP,
|
2022-01-28 14:46:26 +01:00
|
|
|
BUYABLE_CHAINS_MAP,
|
2022-03-31 15:48:05 +02:00
|
|
|
MAINNET_DISPLAY_NAME,
|
|
|
|
BSC_DISPLAY_NAME,
|
|
|
|
POLYGON_DISPLAY_NAME,
|
|
|
|
AVALANCHE_DISPLAY_NAME,
|
2022-08-02 23:56:02 +02:00
|
|
|
CHAIN_ID_TO_RPC_URL_MAP,
|
2022-09-14 16:55:31 +02:00
|
|
|
CHAIN_IDS,
|
|
|
|
NETWORK_TYPES,
|
2021-04-28 21:53:59 +02:00
|
|
|
} from '../../shared/constants/network';
|
2022-11-21 15:23:35 +01:00
|
|
|
import { KEYRING_TYPES } from '../../shared/constants/keyrings';
|
2021-10-21 21:17:03 +02:00
|
|
|
import {
|
|
|
|
WEBHID_CONNECTED_STATUSES,
|
|
|
|
LEDGER_TRANSPORT_TYPES,
|
2021-11-04 19:19:53 +01:00
|
|
|
TRANSPORT_STATES,
|
2021-10-21 21:17:03 +02:00
|
|
|
} from '../../shared/constants/hardware-wallets';
|
2021-04-02 00:57:00 +02:00
|
|
|
|
2022-02-15 01:02:51 +01:00
|
|
|
import {
|
|
|
|
MESSAGE_TYPE,
|
|
|
|
///: BEGIN:ONLY_INCLUDE_IN(flask)
|
|
|
|
SUBJECT_TYPES,
|
|
|
|
///: END:ONLY_INCLUDE_IN
|
|
|
|
} from '../../shared/constants/app';
|
|
|
|
|
|
|
|
import { TRUNCATED_NAME_CHAR_LIMIT } from '../../shared/constants/labels';
|
|
|
|
|
2021-04-02 00:57:00 +02:00
|
|
|
import {
|
|
|
|
SWAPS_CHAINID_DEFAULT_TOKEN_MAP,
|
2022-04-14 17:02:38 +02:00
|
|
|
ALLOWED_PROD_SWAPS_CHAIN_IDS,
|
|
|
|
ALLOWED_DEV_SWAPS_CHAIN_IDS,
|
2021-04-28 21:53:59 +02:00
|
|
|
} from '../../shared/constants/swaps';
|
2021-04-02 00:57:00 +02:00
|
|
|
|
2022-08-02 23:56:02 +02:00
|
|
|
import {
|
|
|
|
shortenAddress,
|
|
|
|
getAccountByAddress,
|
|
|
|
getURLHostName,
|
|
|
|
} from '../helpers/utils/util';
|
2022-09-16 21:05:21 +02:00
|
|
|
import { getValueFromWeiHex } from '../helpers/utils/conversions.util';
|
2021-04-02 00:57:00 +02:00
|
|
|
|
2021-03-23 22:12:32 +01:00
|
|
|
import { TEMPLATED_CONFIRMATION_MESSAGE_TYPES } from '../pages/confirmation/templates';
|
2022-08-10 03:26:25 +02:00
|
|
|
import { STATIC_MAINNET_TOKEN_LIST } from '../../shared/constants/tokens';
|
2021-05-17 23:19:39 +02:00
|
|
|
import { toChecksumHexAddress } from '../../shared/modules/hexstring-utils';
|
2021-06-05 08:33:58 +02:00
|
|
|
import { DAY } from '../../shared/constants/time';
|
2021-06-24 01:28:49 +02:00
|
|
|
import {
|
|
|
|
getNativeCurrency,
|
|
|
|
getConversionRate,
|
2021-09-30 13:57:59 +02:00
|
|
|
isNotEIP1559Network,
|
2021-08-03 00:52:18 +02:00
|
|
|
isEIP1559Network,
|
2021-10-21 21:17:03 +02:00
|
|
|
getLedgerTransportType,
|
|
|
|
isAddressLedger,
|
|
|
|
findKeyringForAddress,
|
2021-06-24 01:28:49 +02:00
|
|
|
} from '../ducks/metamask/metamask';
|
2021-11-04 19:19:53 +01:00
|
|
|
import {
|
|
|
|
getLedgerWebHidConnectedStatus,
|
|
|
|
getLedgerTransportStatus,
|
|
|
|
} from '../ducks/app/app';
|
2022-03-07 19:54:36 +01:00
|
|
|
import { isEqualCaseInsensitive } from '../../shared/modules/string-utils';
|
2022-09-20 19:00:07 +02:00
|
|
|
import { hexToDecimal } from '../../shared/lib/metamask-controller-utils';
|
2022-09-23 18:38:40 +02:00
|
|
|
import { formatMoonpaySymbol } from '../helpers/utils/moonpay';
|
2022-11-04 17:14:43 +01:00
|
|
|
import { TRANSACTION_STATUSES } from '../../shared/constants/transaction';
|
2022-04-19 17:08:09 +02:00
|
|
|
///: BEGIN:ONLY_INCLUDE_IN(flask)
|
|
|
|
import { SNAPS_VIEW_ROUTE } from '../helpers/constants/routes';
|
2022-09-20 19:00:07 +02:00
|
|
|
import { getPermissionSubjects } from './permissions';
|
2022-04-19 17:08:09 +02:00
|
|
|
///: END:ONLY_INCLUDE_IN
|
2021-04-02 00:57:00 +02:00
|
|
|
|
2021-03-12 23:23:26 +01:00
|
|
|
/**
|
|
|
|
* One of the only remaining valid uses of selecting the network subkey of the
|
|
|
|
* metamask state tree is to determine if the network is currently 'loading'.
|
|
|
|
*
|
|
|
|
* This will be used for all cases where this state key is accessed only for that
|
|
|
|
* purpose.
|
2022-01-07 16:57:33 +01:00
|
|
|
*
|
2022-07-27 15:28:05 +02:00
|
|
|
* @param {object} state - redux state object
|
2021-03-12 23:23:26 +01:00
|
|
|
*/
|
|
|
|
export function isNetworkLoading(state) {
|
|
|
|
return state.metamask.network === 'loading';
|
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export function getNetworkIdentifier(state) {
|
|
|
|
const {
|
|
|
|
metamask: {
|
|
|
|
provider: { type, nickname, rpcUrl },
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
} = state;
|
2018-12-05 13:34:19 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
return nickname || rpcUrl || type;
|
2018-12-05 13:34:19 +01:00
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export function getMetricsNetworkIdentifier(state) {
|
2021-02-04 19:15:23 +01:00
|
|
|
const { provider } = state.metamask;
|
2022-09-14 16:55:31 +02:00
|
|
|
return provider.type === NETWORK_TYPES.RPC ? provider.rpcUrl : provider.type;
|
2020-10-21 23:10:55 +02:00
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export function getCurrentChainId(state) {
|
2021-02-04 19:15:23 +01:00
|
|
|
const { chainId } = state.metamask.provider;
|
|
|
|
return chainId;
|
2020-10-21 23:10:55 +02:00
|
|
|
}
|
|
|
|
|
2022-10-27 12:25:30 +02:00
|
|
|
export function isCurrentProviderCustom(state) {
|
|
|
|
const provider = getProvider(state);
|
|
|
|
return (
|
|
|
|
provider.type === NETWORK_TYPES.RPC &&
|
|
|
|
!Object.values(CHAIN_IDS).includes(provider.chainId)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-11-23 18:28:39 +01:00
|
|
|
export function getCurrentQRHardwareState(state) {
|
|
|
|
const { qrHardware } = state.metamask;
|
|
|
|
return qrHardware || {};
|
|
|
|
}
|
|
|
|
|
|
|
|
export function hasUnsignedQRHardwareTransaction(state) {
|
|
|
|
const { txParams } = state.confirmTransaction.txData;
|
2022-01-06 23:56:51 +01:00
|
|
|
if (!txParams) {
|
|
|
|
return false;
|
|
|
|
}
|
2021-11-23 18:28:39 +01:00
|
|
|
const { from } = txParams;
|
|
|
|
const { keyrings } = state.metamask;
|
|
|
|
const qrKeyring = keyrings.find((kr) => kr.type === KEYRING_TYPES.QR);
|
2022-01-06 23:56:51 +01:00
|
|
|
if (!qrKeyring) {
|
|
|
|
return false;
|
|
|
|
}
|
2021-11-23 18:28:39 +01:00
|
|
|
return Boolean(
|
|
|
|
qrKeyring.accounts.find(
|
|
|
|
(account) => account.toLowerCase() === from.toLowerCase(),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function hasUnsignedQRHardwareMessage(state) {
|
|
|
|
const { type, msgParams } = state.confirmTransaction.txData;
|
|
|
|
if (!type || !msgParams) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
const { from } = msgParams;
|
|
|
|
const { keyrings } = state.metamask;
|
|
|
|
const qrKeyring = keyrings.find((kr) => kr.type === KEYRING_TYPES.QR);
|
2022-01-06 23:56:51 +01:00
|
|
|
if (!qrKeyring) {
|
|
|
|
return false;
|
|
|
|
}
|
2021-11-23 18:28:39 +01:00
|
|
|
switch (type) {
|
|
|
|
case MESSAGE_TYPE.ETH_SIGN_TYPED_DATA:
|
|
|
|
case MESSAGE_TYPE.ETH_SIGN:
|
|
|
|
case MESSAGE_TYPE.PERSONAL_SIGN:
|
|
|
|
return Boolean(
|
|
|
|
qrKeyring.accounts.find(
|
|
|
|
(account) => account.toLowerCase() === from.toLowerCase(),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export function getCurrentKeyring(state) {
|
2021-02-04 19:15:23 +01:00
|
|
|
const identity = getSelectedIdentity(state);
|
2019-03-05 16:45:01 +01:00
|
|
|
|
|
|
|
if (!identity) {
|
2021-02-04 19:15:23 +01:00
|
|
|
return null;
|
2019-03-05 16:45:01 +01:00
|
|
|
}
|
|
|
|
|
2021-10-21 21:17:03 +02:00
|
|
|
const keyring = findKeyringForAddress(state, identity.address);
|
2019-03-05 16:45:01 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
return keyring;
|
2019-03-05 16:45:01 +01:00
|
|
|
}
|
|
|
|
|
2021-10-19 19:01:42 +02:00
|
|
|
export function getParticipateInMetaMetrics(state) {
|
|
|
|
return Boolean(state.metamask.participateInMetaMetrics);
|
|
|
|
}
|
|
|
|
|
2021-12-09 03:46:54 +01:00
|
|
|
export function isEIP1559Account() {
|
2021-11-30 15:28:28 +01:00
|
|
|
return true;
|
2021-08-03 00:52:18 +02:00
|
|
|
}
|
|
|
|
|
2021-09-30 13:57:59 +02:00
|
|
|
/**
|
|
|
|
* The function returns true if network and account details are fetched and
|
|
|
|
* both of them support EIP-1559.
|
2022-01-07 16:57:33 +01:00
|
|
|
*
|
|
|
|
* @param state
|
2021-09-30 13:57:59 +02:00
|
|
|
*/
|
2021-08-03 00:52:18 +02:00
|
|
|
export function checkNetworkAndAccountSupports1559(state) {
|
|
|
|
const networkSupports1559 = isEIP1559Network(state);
|
|
|
|
const accountSupports1559 = isEIP1559Account(state);
|
|
|
|
|
|
|
|
return networkSupports1559 && accountSupports1559;
|
|
|
|
}
|
|
|
|
|
2021-09-30 13:57:59 +02:00
|
|
|
/**
|
|
|
|
* The function returns true if network and account details are fetched and
|
|
|
|
* either of them do not support EIP-1559.
|
2022-01-07 16:57:33 +01:00
|
|
|
*
|
|
|
|
* @param state
|
2021-09-30 13:57:59 +02:00
|
|
|
*/
|
|
|
|
export function checkNetworkOrAccountNotSupports1559(state) {
|
|
|
|
const networkNotSupports1559 = isNotEIP1559Network(state);
|
|
|
|
const accountSupports1559 = isEIP1559Account(state);
|
|
|
|
|
|
|
|
return networkNotSupports1559 || accountSupports1559 === false;
|
|
|
|
}
|
|
|
|
|
2021-05-06 16:14:42 +02:00
|
|
|
/**
|
|
|
|
* Checks if the current wallet is a hardware wallet.
|
2022-01-07 16:57:33 +01:00
|
|
|
*
|
2022-07-27 15:28:05 +02:00
|
|
|
* @param {object} state
|
2022-01-07 16:57:33 +01:00
|
|
|
* @returns {boolean}
|
2021-05-06 16:14:42 +02:00
|
|
|
*/
|
|
|
|
export function isHardwareWallet(state) {
|
|
|
|
const keyring = getCurrentKeyring(state);
|
2021-08-27 17:46:56 +02:00
|
|
|
return Boolean(keyring?.type?.includes('Hardware'));
|
2021-05-06 16:14:42 +02:00
|
|
|
}
|
|
|
|
|
2021-05-12 17:17:17 +02:00
|
|
|
/**
|
|
|
|
* Get a HW wallet type, e.g. "Ledger Hardware"
|
2022-01-07 16:57:33 +01:00
|
|
|
*
|
2022-07-27 15:28:05 +02:00
|
|
|
* @param {object} state
|
2022-01-07 16:57:33 +01:00
|
|
|
* @returns {string | undefined}
|
2021-05-12 17:17:17 +02:00
|
|
|
*/
|
|
|
|
export function getHardwareWalletType(state) {
|
|
|
|
const keyring = getCurrentKeyring(state);
|
2021-08-27 17:46:56 +02:00
|
|
|
return isHardwareWallet(state) ? keyring.type : undefined;
|
2021-05-12 17:17:17 +02:00
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export function getAccountType(state) {
|
2021-02-04 19:15:23 +01:00
|
|
|
const currentKeyring = getCurrentKeyring(state);
|
|
|
|
const type = currentKeyring && currentKeyring.type;
|
2019-03-05 16:45:01 +01:00
|
|
|
|
|
|
|
switch (type) {
|
2021-10-13 16:25:27 +02:00
|
|
|
case KEYRING_TYPES.TREZOR:
|
|
|
|
case KEYRING_TYPES.LEDGER:
|
2021-11-08 15:48:41 +01:00
|
|
|
case KEYRING_TYPES.LATTICE:
|
2021-02-04 19:15:23 +01:00
|
|
|
return 'hardware';
|
2022-11-21 15:23:35 +01:00
|
|
|
case KEYRING_TYPES.IMPORTED:
|
2021-02-04 19:15:23 +01:00
|
|
|
return 'imported';
|
2019-03-05 16:45:01 +01:00
|
|
|
default:
|
2021-02-04 19:15:23 +01:00
|
|
|
return 'default';
|
2019-03-05 16:45:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-12 23:23:26 +01:00
|
|
|
/**
|
|
|
|
* get the currently selected networkId which will be 'loading' when the
|
|
|
|
* network changes. The network id should not be used in most cases,
|
|
|
|
* instead use chainId in most situations. There are a limited number of
|
|
|
|
* use cases to use this method still, such as when comparing transaction
|
|
|
|
* metadata that predates the switch to using chainId.
|
2022-01-07 16:57:33 +01:00
|
|
|
*
|
2021-03-12 23:23:26 +01:00
|
|
|
* @deprecated - use getCurrentChainId instead
|
2022-07-27 15:28:05 +02:00
|
|
|
* @param {object} state - redux state object
|
2021-03-12 23:23:26 +01:00
|
|
|
*/
|
|
|
|
export function deprecatedGetCurrentNetworkId(state) {
|
2021-02-04 19:15:23 +01:00
|
|
|
return state.metamask.network;
|
2019-03-05 16:45:01 +01:00
|
|
|
}
|
|
|
|
|
2019-12-04 03:21:55 +01:00
|
|
|
export const getMetaMaskAccounts = createSelector(
|
|
|
|
getMetaMaskAccountsRaw,
|
|
|
|
getMetaMaskCachedBalances,
|
2020-11-03 00:41:28 +01:00
|
|
|
(currentAccounts, cachedBalances) =>
|
|
|
|
Object.entries(currentAccounts).reduce(
|
|
|
|
(selectedAccounts, [accountID, account]) => {
|
|
|
|
if (account.balance === null || account.balance === undefined) {
|
|
|
|
return {
|
|
|
|
...selectedAccounts,
|
|
|
|
[accountID]: {
|
|
|
|
...account,
|
|
|
|
balance: cachedBalances && cachedBalances[accountID],
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2020-11-03 00:41:28 +01:00
|
|
|
}
|
|
|
|
return {
|
|
|
|
...selectedAccounts,
|
|
|
|
[accountID]: account,
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2020-11-03 00:41:28 +01:00
|
|
|
},
|
|
|
|
{},
|
|
|
|
),
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2019-12-04 03:21:55 +01:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export function getSelectedAddress(state) {
|
2021-02-04 19:15:23 +01:00
|
|
|
return state.metamask.selectedAddress;
|
2017-08-10 06:40:01 +02:00
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export function getSelectedIdentity(state) {
|
2021-02-04 19:15:23 +01:00
|
|
|
const selectedAddress = getSelectedAddress(state);
|
|
|
|
const { identities } = state.metamask;
|
2017-08-10 06:40:01 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
return identities[selectedAddress];
|
2017-08-10 06:40:01 +02:00
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export function getNumberOfAccounts(state) {
|
2021-02-04 19:15:23 +01:00
|
|
|
return Object.keys(state.metamask.accounts).length;
|
2019-03-05 16:45:01 +01:00
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export function getNumberOfTokens(state) {
|
2021-02-04 19:15:23 +01:00
|
|
|
const { tokens } = state.metamask;
|
|
|
|
return tokens ? tokens.length : 0;
|
2019-03-05 16:45:01 +01:00
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export function getMetaMaskKeyrings(state) {
|
2021-02-04 19:15:23 +01:00
|
|
|
return state.metamask.keyrings;
|
2019-12-04 03:21:55 +01:00
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export function getMetaMaskIdentities(state) {
|
2021-02-04 19:15:23 +01:00
|
|
|
return state.metamask.identities;
|
2019-12-04 03:21:55 +01:00
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export function getMetaMaskAccountsRaw(state) {
|
2021-02-04 19:15:23 +01:00
|
|
|
return state.metamask.accounts;
|
2018-11-30 23:51:24 +01:00
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export function getMetaMaskCachedBalances(state) {
|
2021-03-02 23:53:07 +01:00
|
|
|
const chainId = getCurrentChainId(state);
|
|
|
|
|
|
|
|
// Fallback to fetching cached balances from network id
|
|
|
|
// this can eventually be removed
|
2021-03-12 23:23:26 +01:00
|
|
|
const network = deprecatedGetCurrentNetworkId(state);
|
2019-12-04 03:21:55 +01:00
|
|
|
|
2021-03-02 23:53:07 +01:00
|
|
|
return (
|
|
|
|
state.metamask.cachedBalances[chainId] ??
|
|
|
|
state.metamask.cachedBalances[network]
|
|
|
|
);
|
2019-12-04 03:21:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get ordered (by keyrings) accounts with identity and balance
|
|
|
|
*/
|
|
|
|
export const getMetaMaskAccountsOrdered = createSelector(
|
|
|
|
getMetaMaskKeyrings,
|
|
|
|
getMetaMaskIdentities,
|
|
|
|
getMetaMaskAccounts,
|
2020-11-03 00:41:28 +01:00
|
|
|
(keyrings, identities, accounts) =>
|
|
|
|
keyrings
|
|
|
|
.reduce((list, keyring) => list.concat(keyring.accounts), [])
|
|
|
|
.filter((address) => Boolean(identities[address]))
|
|
|
|
.map((address) => ({ ...identities[address], ...accounts[address] })),
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2019-12-04 03:21:55 +01:00
|
|
|
|
2021-03-09 21:39:16 +01:00
|
|
|
export const getMetaMaskAccountsConnected = createSelector(
|
|
|
|
getMetaMaskAccountsOrdered,
|
|
|
|
(connectedAccounts) =>
|
|
|
|
connectedAccounts.map(({ address }) => address.toLowerCase()),
|
|
|
|
);
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export function isBalanceCached(state) {
|
|
|
|
const selectedAccountBalance =
|
2021-02-04 19:15:23 +01:00
|
|
|
state.metamask.accounts[getSelectedAddress(state)].balance;
|
|
|
|
const cachedBalance = getSelectedAccountCachedBalance(state);
|
2019-01-30 13:16:12 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
return Boolean(!selectedAccountBalance && cachedBalance);
|
2019-01-30 13:16:12 +01:00
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export function getSelectedAccountCachedBalance(state) {
|
2021-03-02 23:53:07 +01:00
|
|
|
const cachedBalances = getMetaMaskCachedBalances(state);
|
2021-02-04 19:15:23 +01:00
|
|
|
const selectedAddress = getSelectedAddress(state);
|
2019-01-30 13:16:12 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
return cachedBalances && cachedBalances[selectedAddress];
|
2019-01-30 13:16:12 +01:00
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export function getSelectedAccount(state) {
|
2021-02-04 19:15:23 +01:00
|
|
|
const accounts = getMetaMaskAccounts(state);
|
|
|
|
const selectedAddress = getSelectedAddress(state);
|
2017-08-10 06:40:01 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
return accounts[selectedAddress];
|
2017-08-11 04:35:01 +02:00
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export function getTargetAccount(state, targetAddress) {
|
2021-02-04 19:15:23 +01:00
|
|
|
const accounts = getMetaMaskAccounts(state);
|
|
|
|
return accounts[targetAddress];
|
2020-03-11 19:40:35 +01:00
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export const getTokenExchangeRates = (state) =>
|
2021-02-04 19:15:23 +01:00
|
|
|
state.metamask.contractExchangeRates;
|
2017-10-13 22:19:22 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export function getAddressBook(state) {
|
2021-02-04 19:15:23 +01:00
|
|
|
const chainId = getCurrentChainId(state);
|
2020-10-13 01:35:55 +02:00
|
|
|
if (!state.metamask.addressBook[chainId]) {
|
2021-02-04 19:15:23 +01:00
|
|
|
return [];
|
2019-09-21 19:36:06 +02:00
|
|
|
}
|
2021-02-04 19:15:23 +01:00
|
|
|
return Object.values(state.metamask.addressBook[chainId]);
|
2019-07-31 21:56:44 +02:00
|
|
|
}
|
|
|
|
|
2022-06-13 18:18:33 +02:00
|
|
|
export function getEnsResolutionByAddress(state, address) {
|
2022-11-30 16:24:28 +01:00
|
|
|
if (state.metamask.ensResolutionsByAddress[address]) {
|
|
|
|
return state.metamask.ensResolutionsByAddress[address];
|
|
|
|
}
|
|
|
|
|
|
|
|
const entry =
|
|
|
|
getAddressBookEntry(state, address) ||
|
|
|
|
Object.values(state.metamask.identities).find((identity) =>
|
|
|
|
isEqualCaseInsensitive(identity.address, toChecksumHexAddress(address)),
|
|
|
|
);
|
|
|
|
|
|
|
|
return entry?.name || '';
|
2022-06-13 18:18:33 +02:00
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export function getAddressBookEntry(state, address) {
|
2021-02-04 19:15:23 +01:00
|
|
|
const addressBook = getAddressBook(state);
|
2021-09-10 19:37:19 +02:00
|
|
|
const entry = addressBook.find((contact) =>
|
|
|
|
isEqualCaseInsensitive(contact.address, toChecksumHexAddress(address)),
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
return entry;
|
2019-07-31 21:56:44 +02:00
|
|
|
}
|
|
|
|
|
2021-11-04 07:58:32 +01:00
|
|
|
export function getAddressBookEntryOrAccountName(state, address) {
|
2020-11-03 00:41:28 +01:00
|
|
|
const entry =
|
2021-11-04 07:58:32 +01:00
|
|
|
getAddressBookEntry(state, address) ||
|
|
|
|
Object.values(state.metamask.identities).find((identity) =>
|
|
|
|
isEqualCaseInsensitive(identity.address, toChecksumHexAddress(address)),
|
|
|
|
);
|
|
|
|
return entry && entry.name !== '' ? entry.name : address;
|
2017-10-17 17:46:36 +02:00
|
|
|
}
|
|
|
|
|
2022-11-10 11:28:34 +01:00
|
|
|
export function getAccountName(identities, address) {
|
|
|
|
const entry = Object.values(identities).find((identity) =>
|
2022-11-08 09:34:21 +01:00
|
|
|
isEqualCaseInsensitive(identity.address, toChecksumHexAddress(address)),
|
|
|
|
);
|
|
|
|
return entry && entry.name !== '' ? entry.name : '';
|
|
|
|
}
|
|
|
|
|
2022-11-10 11:28:34 +01:00
|
|
|
export function getMetadataContractName(state, address) {
|
|
|
|
const tokenList = getTokenList(state);
|
|
|
|
const entry = Object.values(tokenList).find((identity) =>
|
2022-11-08 09:34:21 +01:00
|
|
|
isEqualCaseInsensitive(identity.address, toChecksumHexAddress(address)),
|
|
|
|
);
|
|
|
|
return entry && entry.name !== '' ? entry.name : '';
|
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export function accountsWithSendEtherInfoSelector(state) {
|
2021-02-04 19:15:23 +01:00
|
|
|
const accounts = getMetaMaskAccounts(state);
|
|
|
|
const identities = getMetaMaskIdentities(state);
|
2017-10-13 22:19:22 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
const accountsWithSendEtherInfo = Object.entries(identities).map(
|
|
|
|
([key, identity]) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
return { ...identity, ...accounts[key] };
|
2020-11-03 00:41:28 +01:00
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2017-10-13 22:19:22 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
return accountsWithSendEtherInfo;
|
2017-10-13 22:19:22 +02:00
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export function getAccountsWithLabels(state) {
|
|
|
|
return getMetaMaskAccountsOrdered(state).map(
|
|
|
|
({ address, name, balance }) => ({
|
|
|
|
address,
|
2021-10-13 19:54:48 +02:00
|
|
|
addressLabel: `${
|
|
|
|
name.length < TRUNCATED_NAME_CHAR_LIMIT
|
|
|
|
? name
|
|
|
|
: `${name.slice(0, TRUNCATED_NAME_CHAR_LIMIT - 1)}...`
|
|
|
|
} (${shortenAddress(address)})`,
|
2020-11-03 00:41:28 +01:00
|
|
|
label: name,
|
|
|
|
balance,
|
|
|
|
}),
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
Connect distinct accounts per site (#7004)
* add PermissionsController
remove provider approval controller
integrate rpc-cap
create PermissionsController
move provider approval functionality to permissions controller
add permissions approval ui, settings page
add permissions activity and history
move some functionality to metamask-inpage-provider
rename siteMetadata -> domainMetadata
add accountsChange notification to inpage provider
move functionality to inpage provider
update inpage provider
Remove 'Connections' settings page (#7369)
add hooks for exposing accounts in settings
rename unused messages in non-English locales
Add external extension id to metadata (#7396)
update inpage provider, rpc-cap
add eth_requestAccounts handling to background
prevent notifying connections if extension is locked
update inpage provider
Fix lint errors
add migration
review fixes
transaction controller review updates
removed unused messages
* Login Per Site UI (#7368)
* LoginPerSite original UI changes to keep
* First commit
* Get necessary connected tab info for redirect and icon display for permissioned sites
* Fix up designs and add missing features
* Some lint fixes
* More lint fixes
* Ensures the tx controller + tx-state-manager orders transactions in the order they are received
* Code cleanup for LoginPerSite-ui
* Update e2e tests to use new connection flow
* Fix display of connect screen and app header after login when connect request present
* Update metamask-responsive-ui.spec for new item in accounts dropdown
* Fix approve container by replacing approvedOrigins with domainMetaData
* Adds test/e2e/permissions.spec.js
* Correctly handle cancellation of a permissions request
* Redirect to home after disconnecting all sites / cancelling all permissions
* Fix display of site icons in menu
* Fix height of permissions page container
* Remove unused locale messages
* Set default values for openExternalTabs and tabIdOrigins in account-menu.container
* More code cleanup for LoginPerSite-ui
* Use extensions api to close tab in permissions-connect
* Remove unnecessary change in domIsReady() in contentscript
* Remove unnecessary private function markers and class methods (for background tab info) in metamask-controller.
* Adds getOriginOfCurrentTab selector
* Adds IconWithFallback component and substitutes for appropriate cases
* Add and utilize font mixins
* Remove unused method in disconnect-all.container.js
* Simplify buttonSizeLarge code in page-container-footer.component.js
* Add and utilize getAccountsWithLabels selector
* Remove console.log in ui/app/store/actions.js
* Change last connected time format to yyyy-M-d
* Fix css associated with IconWithFallback change
* Ensure tracked openNonMetamaskTabsIDs are correctly set to inactive on tab changes
* Code cleanup for LoginPerSite-ui
* Use reusable function for modifying openNonMetamaskTabsIDs in background.js
* Enables automatic switching to connected account when connected domain is open
* Prevent exploit of tabIdOriginMap in background.js
* Remove unneeded code from contentscript.js
* Simplify current tab origin and window opener logic using remotePort listener tabs.queryTabs
* Design and styling fixes for LoginPerSite-ui
* Fix permissionHistory and permission logging for eth_requestAccounts and eth_accounts
* Front end changes to support display of lastConnected time in connected and permissions screens
* Fix lint errors
* Refactor structure of permissionsHistory
* Fix default values and object modifications for domain and permissionsHistory related data
* Fix connecting to new accounts from modal
* Replace retweet.svg with connect-white.svg
* Fix signature-request.spec
* Update metamask-inpage-provider version
* Fix permissions e2e tests
* Remove unneeded delay from test/e2e/signature-request.spec.js
* Add delay before attempting to retrieve network id in dapp in ethereum-on=.spec
* Use requestAccountTabIds strategy for determining tab id that opened a given window
* Improve default values for permissions requests
* Add some message descriptions to app/_locales/en/messages.json
* Code clean up in permission controller
* Stopped deep cloning object in mapObjectValues
* Bump metamask-inpage-provider version
* Add missing description in app/_locales/en/messages.json
* Return promises from queryTabs and switchToTab of extension.js
* Remove unused getAllPermissions function
* Use default props in icon-with-fallback.component.js
* Stop passing to permissions controller
* Delete no longer used clear-approved-origins modal code
* Remove duplicate imports in ui/app/components/app/index.scss
* Use URL instead of regex in getOriginFromUrl()
* Add runtime error checking to platform, promise based extension.tab methods
* Support permission requests from external extensions
* Improve font size and colour of the domain origin on the permission confirmation screen
* Add support for toggling permissions
* Ensure getRenderablePermissionsDomains only returns domains with exposedAccount caveat permissions
* Remove unused code from LoginPerSite-ui branch
* Ensure modal closes on Enter press for new-account-modal.component.js
* Lint fix
* fixup! Login Per Site UI (#7368)
* Some code cleanup for LoginPerSite
* Adds UX for connecting to dapps via the connected sites screen (#7593)
* Adds UX for connecting to dapps via the connected sites screen
* Use openMetaMaskTabIds from background.js to determine if current active tab is MetaMask
* Delete unused permissions controller methods
* Fixes two small bugs in the LoginPerSite ui (#7595)
* Restore `providerRequest` message translations (#7600)
This message was removed, but it was replaced with a very similar
message called `likeToConnect`. The only difference is that the new
message has "MetaMask" in it. Preserving these messages without
"MetaMask" is probably better than deleting them, so these messages
have all been restored and renamed to `likeToConnect`.
* Login per site no sitemetadata fix (#7610)
* Support connected sites for which we have no site metadata.
* Change property containing subtitle info often populated by origin to a more accurate of purpose name
* Lint fix
* Improve disconnection modal messages (#7612)
* Improve disconnectAccountModalDescription and disconnectAllModalDescription messages
* Update disconnectAccountModalDescription app/_locales/en/messages.json
Co-Authored-By: Mark Stacey <markjstacey@gmail.com>
* Improve disconnectAccount modal message clarity
* Adds cancel button to the account selection screen of the permissions request flow (#7613)
* Fix eth_accounts permission language & selectability (#7614)
* fix eth_accounts language & selectability
* fix MetaMask capitalization in all messages
* Close sidebar when opening connected sites (#7611)
The 'Connected Sites' button in the accounts details now closes the
sidebar, if it is open. This was accomplished by pulling the click
handler for that button up to the wallet view component, where another
button already followed a similar pattern of closing the sidebar.
It seemed confusing to me that one handler was in the `AccountsDetails`
container component, and one was handed down from above, so I added
PropTypes to the container component.
I'm not sure that the WalletView component is the best place for this
logic, but I've put it there for now to be consistent with the add
token button.
* Reject permissions request upon tab close (#7618)
Permissions requests are now rejected when the page is closed. This
only applies to the full-screen view, as that is the view permission
requests should be handled in. The case where the user deals with the
request through a different view is handled in #7617
* Handle tab update failure (#7619)
`extension.tabs.update` can sometimes fail if the user interacts with
the tabs directly around the same time. The redirect flow has been
updated to ensure that the permissions tab is still closed in that
case. The user is on their own to find the dapp tab again in that case.
* Login per site tab popup fixes (#7617)
* Handle redirect in response to state update in permissions-connect
* Ensure origin is available to permissions-connect subcomponents during redirect
* Hide app bar whenever on redirect route
* Improvements to handling of redirects in permissions-connect
* Ensure permission request id change handling only happens when page is not null
* Lint fix
* Decouple confirm transaction screen from the selected address (#7622)
* Avoid race condtion that could prevent contextual account switching (#7623)
There was a race condition in the logic responsible for switching the
selected account based upon the active tab. It was asynchronously
querying the active tab, then assuming it had been retrieved later.
The active tab info itself was already in the redux store in another
spot, one that is guaranteed to be set before the UI renders. The
race condition was avoided by deleting the duplicate state, and using
the other active tab state.
* Only redirect back to dapp if current tab is active (#7621)
The "redirect back to dapp" behaviour can be disruptive when the
permissions connect tab is not active. The purpose of the redirect was
to maintain context between the dapp and the permissions request, but
if the user has already moved to another tab, that no longer applies.
* Fix JSX style lint errors
* Remove unused state
2019-12-03 18:35:56 +01:00
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export function getCurrentAccountWithSendEtherInfo(state) {
|
2021-02-04 19:15:23 +01:00
|
|
|
const currentAddress = getSelectedAddress(state);
|
|
|
|
const accounts = accountsWithSendEtherInfoSelector(state);
|
2017-10-13 22:19:22 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
return getAccountByAddress(accounts, currentAddress);
|
2020-03-06 22:34:56 +01:00
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export function getTargetAccountWithSendEtherInfo(state, targetAddress) {
|
2021-02-04 19:15:23 +01:00
|
|
|
const accounts = accountsWithSendEtherInfoSelector(state);
|
|
|
|
return getAccountByAddress(accounts, targetAddress);
|
2017-10-13 22:19:22 +02:00
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export function getCurrentEthBalance(state) {
|
2022-09-19 19:40:30 +02:00
|
|
|
return getCurrentAccountWithSendEtherInfo(state)?.balance;
|
2018-10-26 07:50:36 +02:00
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export function getGasIsLoading(state) {
|
2021-02-04 19:15:23 +01:00
|
|
|
return state.appState.gasIsLoading;
|
2018-06-19 17:53:33 +02:00
|
|
|
}
|
|
|
|
|
2022-01-06 03:47:26 +01:00
|
|
|
export function getAppIsLoading(state) {
|
|
|
|
return state.appState.isLoading;
|
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export function getCurrentCurrency(state) {
|
2021-02-04 19:15:23 +01:00
|
|
|
return state.metamask.currentCurrency;
|
2017-10-19 04:09:26 +02:00
|
|
|
}
|
2017-10-22 22:14:03 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export function getTotalUnapprovedCount(state) {
|
2018-06-23 08:52:45 +02:00
|
|
|
const {
|
2020-04-20 19:21:57 +02:00
|
|
|
unapprovedMsgCount = 0,
|
|
|
|
unapprovedPersonalMsgCount = 0,
|
|
|
|
unapprovedDecryptMsgCount = 0,
|
|
|
|
unapprovedEncryptionPublicKeyMsgCount = 0,
|
|
|
|
unapprovedTypedMessagesCount = 0,
|
2021-02-22 17:20:42 +01:00
|
|
|
pendingApprovalCount = 0,
|
2021-02-04 19:15:23 +01:00
|
|
|
} = state.metamask;
|
2018-06-23 08:52:45 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
return (
|
|
|
|
unapprovedMsgCount +
|
|
|
|
unapprovedPersonalMsgCount +
|
|
|
|
unapprovedDecryptMsgCount +
|
|
|
|
unapprovedEncryptionPublicKeyMsgCount +
|
|
|
|
unapprovedTypedMessagesCount +
|
|
|
|
getUnapprovedTxCount(state) +
|
2021-02-22 17:20:42 +01:00
|
|
|
pendingApprovalCount +
|
2021-09-10 19:37:19 +02:00
|
|
|
getSuggestedAssetCount(state)
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-04-20 19:21:57 +02:00
|
|
|
}
|
|
|
|
|
2022-05-16 20:36:19 +02:00
|
|
|
export function getTotalUnapprovedMessagesCount(state) {
|
|
|
|
const {
|
|
|
|
unapprovedMsgCount = 0,
|
|
|
|
unapprovedPersonalMsgCount = 0,
|
|
|
|
unapprovedDecryptMsgCount = 0,
|
|
|
|
unapprovedEncryptionPublicKeyMsgCount = 0,
|
|
|
|
unapprovedTypedMessagesCount = 0,
|
|
|
|
} = state.metamask;
|
|
|
|
|
|
|
|
return (
|
|
|
|
unapprovedMsgCount +
|
|
|
|
unapprovedPersonalMsgCount +
|
|
|
|
unapprovedDecryptMsgCount +
|
|
|
|
unapprovedEncryptionPublicKeyMsgCount +
|
|
|
|
unapprovedTypedMessagesCount
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-12-13 13:33:35 +01:00
|
|
|
export function getUnapprovedTxCount(state) {
|
2021-02-04 19:15:23 +01:00
|
|
|
const { unapprovedTxs = {} } = state.metamask;
|
|
|
|
return Object.keys(unapprovedTxs).length;
|
2020-04-20 19:21:57 +02:00
|
|
|
}
|
|
|
|
|
2021-02-22 17:20:42 +01:00
|
|
|
export function getUnapprovedConfirmations(state) {
|
|
|
|
const { pendingApprovals } = state.metamask;
|
|
|
|
return Object.values(pendingApprovals);
|
|
|
|
}
|
|
|
|
|
2021-03-23 22:12:32 +01:00
|
|
|
export function getUnapprovedTemplatedConfirmations(state) {
|
|
|
|
const unapprovedConfirmations = getUnapprovedConfirmations(state);
|
|
|
|
return unapprovedConfirmations.filter((approval) =>
|
|
|
|
TEMPLATED_CONFIRMATION_MESSAGE_TYPES.includes(approval.type),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-09-10 19:37:19 +02:00
|
|
|
function getSuggestedAssetCount(state) {
|
|
|
|
const { suggestedAssets = [] } = state.metamask;
|
|
|
|
return suggestedAssets.length;
|
2018-06-23 08:52:45 +02:00
|
|
|
}
|
2018-10-17 01:03:29 +02:00
|
|
|
|
2022-03-11 03:40:06 +01:00
|
|
|
export function getSuggestedAssets(state) {
|
|
|
|
return state.metamask.suggestedAssets;
|
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export function getIsMainnet(state) {
|
2021-02-23 17:27:32 +01:00
|
|
|
const chainId = getCurrentChainId(state);
|
2022-09-14 16:55:31 +02:00
|
|
|
return chainId === CHAIN_IDS.MAINNET;
|
2019-02-26 19:30:41 +01:00
|
|
|
}
|
|
|
|
|
2021-02-16 16:31:16 +01:00
|
|
|
export function getIsTestnet(state) {
|
|
|
|
const chainId = getCurrentChainId(state);
|
|
|
|
return TEST_CHAINS.includes(chainId);
|
|
|
|
}
|
|
|
|
|
2021-07-01 03:54:47 +02:00
|
|
|
export function getIsNonStandardEthChain(state) {
|
|
|
|
return !(getIsMainnet(state) || getIsTestnet(state) || process.env.IN_TEST);
|
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export function getPreferences({ metamask }) {
|
2021-02-04 19:15:23 +01:00
|
|
|
return metamask.preferences;
|
2018-10-17 01:03:29 +02:00
|
|
|
}
|
2019-02-06 01:24:28 +01:00
|
|
|
|
2021-10-28 21:31:05 +02:00
|
|
|
export function getShowTestNetworks(state) {
|
|
|
|
const { showTestNetworks } = getPreferences(state);
|
|
|
|
return Boolean(showTestNetworks);
|
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export function getShouldShowFiat(state) {
|
2021-02-04 19:15:23 +01:00
|
|
|
const isMainNet = getIsMainnet(state);
|
2022-10-11 16:56:15 +02:00
|
|
|
const isCustomNetwork = getIsCustomNetwork(state);
|
2021-06-24 01:28:49 +02:00
|
|
|
const conversionRate = getConversionRate(state);
|
2021-02-04 19:15:23 +01:00
|
|
|
const { showFiatInTestnets } = getPreferences(state);
|
2022-10-11 16:56:15 +02:00
|
|
|
return Boolean(
|
|
|
|
(isMainNet || isCustomNetwork || showFiatInTestnets) && conversionRate,
|
|
|
|
);
|
2020-05-12 21:07:35 +02:00
|
|
|
}
|
|
|
|
|
2021-03-09 20:35:55 +01:00
|
|
|
export function getShouldHideZeroBalanceTokens(state) {
|
|
|
|
const { hideZeroBalanceTokens } = getPreferences(state);
|
|
|
|
return hideZeroBalanceTokens;
|
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export function getAdvancedInlineGasShown(state) {
|
2021-02-04 19:15:23 +01:00
|
|
|
return Boolean(state.metamask.featureFlags.advancedInlineGas);
|
2019-02-06 01:24:28 +01:00
|
|
|
}
|
2019-04-29 08:18:40 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export function getUseNonceField(state) {
|
2021-02-04 19:15:23 +01:00
|
|
|
return Boolean(state.metamask.useNonceField);
|
2019-09-27 06:30:36 +02:00
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export function getCustomNonceValue(state) {
|
2021-02-04 19:15:23 +01:00
|
|
|
return String(state.metamask.customNonceValue);
|
2019-09-27 06:30:36 +02:00
|
|
|
}
|
|
|
|
|
Permission System 2.0 (#12243)
# Permission System 2.0
## Background
This PR migrates the extension permission system to [the new `PermissionController`](https://github.com/MetaMask/snaps-skunkworks/tree/main/packages/controllers/src/permissions).
The original permission system, based on [`rpc-cap`](https://github.com/MetaMask/rpc-cap), introduced [`ZCAP-LD`](https://w3c-ccg.github.io/zcap-ld/)-like permissions to our JSON-RPC stack.
We used it to [implement](https://github.com/MetaMask/metamask-extension/pull/7004) what we called "LoginPerSite" in [version 7.7.0](https://github.com/MetaMask/metamask-extension/releases/tag/v7.7.0) of the extension, which enabled the user to choose which accounts, if any, should be exposed to each dapp.
While that was a worthwhile feature in and of itself, we wanted a permission _system_ in order to enable everything we are going to with Snaps.
Unfortunately, the original permission system was difficult to use, and necessitated the creation of the original `PermissionsController` (note the "s"), which was more or less a wrapper for `rpc-cap`.
With this PR, we shake off the yoke of the original permission system, in favor of the modular, self-contained, ergonomic, and more mature permission system 2.0.
Note that [the `PermissionController` readme](https://github.com/MetaMask/snaps-skunkworks/tree/main/packages/controllers/src/permissions/README.md) explains how the new permission system works.
The `PermissionController` and `SubjectMetadataController` are currently shipped via `@metamask/snap-controllers`. This is a temporary state of affairs, and we'll move them to `@metamask/controllers` once they've landed in prod.
## Changes in Detail
First, the changes in this PR are not as big as they seem. Roughly half of the additions in this PR are fixtures in the test for the new migration (number 68), and a significant portion of the remaining ~2500 lines are due to find-and-replace changes in other test fixtures and UI files.
- The extension `PermissionsController` has been deleted, and completely replaced with the new `PermissionController` from [`@metamask/snap-controllers`](https://www.npmjs.com/package/@metamask/snap-controllers).
- The original `PermissionsController` "domain metadata" functionality is now managed by the new `SubjectMetadataController`, also from [`@metamask/snap-controllers`](https://www.npmjs.com/package/@metamask/snap-controllers).
- The permission activity and history log controller has been renamed `PermissionLogController` and has its own top-level state key, but is otherwise functionally equivalent to the existing implementation.
- Migration number 68 has been added to account for the new state changes.
- The tests in `app/scripts/controllers/permissions` have been migrated from `mocha` to `jest`.
Reviewers should focus their attention on the following files:
- `app/scripts/`
- `metamask-controller.js`
- This is where most of the integration work for the new `PermissionController` occurs.
Some functions that were internal to the original controller were moved here.
- `controllers/permissions/`
- `selectors.js`
- These selectors are for `ControllerMessenger` selector subscriptions. The actual subscriptions occur in `metamask-controller.js`. See the `ControllerMessenger` implementation for details.
- `specifications.js`
- The caveat and permission specifications are required by the new `PermissionController`, and are used to specify the `eth_accounts` permission and its JSON-RPC method implementation.
See the `PermissionController` readme for details.
- `migrations/068.js`
- The new state should be cross-referenced with the controllers that manage it.
The accompanying tests should also be thoroughly reviewed.
Some files may appear new but have just moved and/or been renamed:
- `app/scripts/lib/rpc-method-middleware/handlers/request-accounts.js`
- This was previously implemented in `controllers/permissions/permissionsMethodMiddleware.js`.
- `test/mocks/permissions.js`
- A truncated version of `test/mocks/permission-controller.js`.
Co-authored-by: Mark Stacey <markjstacey@gmail.com>
2021-12-07 04:16:49 +01:00
|
|
|
export function getSubjectMetadata(state) {
|
|
|
|
return state.metamask.subjectMetadata;
|
Connect distinct accounts per site (#7004)
* add PermissionsController
remove provider approval controller
integrate rpc-cap
create PermissionsController
move provider approval functionality to permissions controller
add permissions approval ui, settings page
add permissions activity and history
move some functionality to metamask-inpage-provider
rename siteMetadata -> domainMetadata
add accountsChange notification to inpage provider
move functionality to inpage provider
update inpage provider
Remove 'Connections' settings page (#7369)
add hooks for exposing accounts in settings
rename unused messages in non-English locales
Add external extension id to metadata (#7396)
update inpage provider, rpc-cap
add eth_requestAccounts handling to background
prevent notifying connections if extension is locked
update inpage provider
Fix lint errors
add migration
review fixes
transaction controller review updates
removed unused messages
* Login Per Site UI (#7368)
* LoginPerSite original UI changes to keep
* First commit
* Get necessary connected tab info for redirect and icon display for permissioned sites
* Fix up designs and add missing features
* Some lint fixes
* More lint fixes
* Ensures the tx controller + tx-state-manager orders transactions in the order they are received
* Code cleanup for LoginPerSite-ui
* Update e2e tests to use new connection flow
* Fix display of connect screen and app header after login when connect request present
* Update metamask-responsive-ui.spec for new item in accounts dropdown
* Fix approve container by replacing approvedOrigins with domainMetaData
* Adds test/e2e/permissions.spec.js
* Correctly handle cancellation of a permissions request
* Redirect to home after disconnecting all sites / cancelling all permissions
* Fix display of site icons in menu
* Fix height of permissions page container
* Remove unused locale messages
* Set default values for openExternalTabs and tabIdOrigins in account-menu.container
* More code cleanup for LoginPerSite-ui
* Use extensions api to close tab in permissions-connect
* Remove unnecessary change in domIsReady() in contentscript
* Remove unnecessary private function markers and class methods (for background tab info) in metamask-controller.
* Adds getOriginOfCurrentTab selector
* Adds IconWithFallback component and substitutes for appropriate cases
* Add and utilize font mixins
* Remove unused method in disconnect-all.container.js
* Simplify buttonSizeLarge code in page-container-footer.component.js
* Add and utilize getAccountsWithLabels selector
* Remove console.log in ui/app/store/actions.js
* Change last connected time format to yyyy-M-d
* Fix css associated with IconWithFallback change
* Ensure tracked openNonMetamaskTabsIDs are correctly set to inactive on tab changes
* Code cleanup for LoginPerSite-ui
* Use reusable function for modifying openNonMetamaskTabsIDs in background.js
* Enables automatic switching to connected account when connected domain is open
* Prevent exploit of tabIdOriginMap in background.js
* Remove unneeded code from contentscript.js
* Simplify current tab origin and window opener logic using remotePort listener tabs.queryTabs
* Design and styling fixes for LoginPerSite-ui
* Fix permissionHistory and permission logging for eth_requestAccounts and eth_accounts
* Front end changes to support display of lastConnected time in connected and permissions screens
* Fix lint errors
* Refactor structure of permissionsHistory
* Fix default values and object modifications for domain and permissionsHistory related data
* Fix connecting to new accounts from modal
* Replace retweet.svg with connect-white.svg
* Fix signature-request.spec
* Update metamask-inpage-provider version
* Fix permissions e2e tests
* Remove unneeded delay from test/e2e/signature-request.spec.js
* Add delay before attempting to retrieve network id in dapp in ethereum-on=.spec
* Use requestAccountTabIds strategy for determining tab id that opened a given window
* Improve default values for permissions requests
* Add some message descriptions to app/_locales/en/messages.json
* Code clean up in permission controller
* Stopped deep cloning object in mapObjectValues
* Bump metamask-inpage-provider version
* Add missing description in app/_locales/en/messages.json
* Return promises from queryTabs and switchToTab of extension.js
* Remove unused getAllPermissions function
* Use default props in icon-with-fallback.component.js
* Stop passing to permissions controller
* Delete no longer used clear-approved-origins modal code
* Remove duplicate imports in ui/app/components/app/index.scss
* Use URL instead of regex in getOriginFromUrl()
* Add runtime error checking to platform, promise based extension.tab methods
* Support permission requests from external extensions
* Improve font size and colour of the domain origin on the permission confirmation screen
* Add support for toggling permissions
* Ensure getRenderablePermissionsDomains only returns domains with exposedAccount caveat permissions
* Remove unused code from LoginPerSite-ui branch
* Ensure modal closes on Enter press for new-account-modal.component.js
* Lint fix
* fixup! Login Per Site UI (#7368)
* Some code cleanup for LoginPerSite
* Adds UX for connecting to dapps via the connected sites screen (#7593)
* Adds UX for connecting to dapps via the connected sites screen
* Use openMetaMaskTabIds from background.js to determine if current active tab is MetaMask
* Delete unused permissions controller methods
* Fixes two small bugs in the LoginPerSite ui (#7595)
* Restore `providerRequest` message translations (#7600)
This message was removed, but it was replaced with a very similar
message called `likeToConnect`. The only difference is that the new
message has "MetaMask" in it. Preserving these messages without
"MetaMask" is probably better than deleting them, so these messages
have all been restored and renamed to `likeToConnect`.
* Login per site no sitemetadata fix (#7610)
* Support connected sites for which we have no site metadata.
* Change property containing subtitle info often populated by origin to a more accurate of purpose name
* Lint fix
* Improve disconnection modal messages (#7612)
* Improve disconnectAccountModalDescription and disconnectAllModalDescription messages
* Update disconnectAccountModalDescription app/_locales/en/messages.json
Co-Authored-By: Mark Stacey <markjstacey@gmail.com>
* Improve disconnectAccount modal message clarity
* Adds cancel button to the account selection screen of the permissions request flow (#7613)
* Fix eth_accounts permission language & selectability (#7614)
* fix eth_accounts language & selectability
* fix MetaMask capitalization in all messages
* Close sidebar when opening connected sites (#7611)
The 'Connected Sites' button in the accounts details now closes the
sidebar, if it is open. This was accomplished by pulling the click
handler for that button up to the wallet view component, where another
button already followed a similar pattern of closing the sidebar.
It seemed confusing to me that one handler was in the `AccountsDetails`
container component, and one was handed down from above, so I added
PropTypes to the container component.
I'm not sure that the WalletView component is the best place for this
logic, but I've put it there for now to be consistent with the add
token button.
* Reject permissions request upon tab close (#7618)
Permissions requests are now rejected when the page is closed. This
only applies to the full-screen view, as that is the view permission
requests should be handled in. The case where the user deals with the
request through a different view is handled in #7617
* Handle tab update failure (#7619)
`extension.tabs.update` can sometimes fail if the user interacts with
the tabs directly around the same time. The redirect flow has been
updated to ensure that the permissions tab is still closed in that
case. The user is on their own to find the dapp tab again in that case.
* Login per site tab popup fixes (#7617)
* Handle redirect in response to state update in permissions-connect
* Ensure origin is available to permissions-connect subcomponents during redirect
* Hide app bar whenever on redirect route
* Improvements to handling of redirects in permissions-connect
* Ensure permission request id change handling only happens when page is not null
* Lint fix
* Decouple confirm transaction screen from the selected address (#7622)
* Avoid race condtion that could prevent contextual account switching (#7623)
There was a race condition in the logic responsible for switching the
selected account based upon the active tab. It was asynchronously
querying the active tab, then assuming it had been retrieved later.
The active tab info itself was already in the redux store in another
spot, one that is guaranteed to be set before the UI renders. The
race condition was avoided by deleting the duplicate state, and using
the other active tab state.
* Only redirect back to dapp if current tab is active (#7621)
The "redirect back to dapp" behaviour can be disruptive when the
permissions connect tab is not active. The purpose of the redirect was
to maintain context between the dapp and the permissions request, but
if the user has already moved to another tab, that no longer applies.
* Fix JSX style lint errors
* Remove unused state
2019-12-03 18:35:56 +01:00
|
|
|
}
|
|
|
|
|
2022-02-15 01:02:51 +01:00
|
|
|
///: BEGIN:ONLY_INCLUDE_IN(flask)
|
|
|
|
/**
|
|
|
|
* @param {string} svgString - The raw SVG string to make embeddable.
|
|
|
|
* @returns {string} The embeddable SVG string.
|
|
|
|
*/
|
|
|
|
const getEmbeddableSvg = memoize(
|
|
|
|
(svgString) => `data:image/svg+xml;utf8,${encodeURIComponent(svgString)}`,
|
|
|
|
);
|
|
|
|
///: END:ONLY_INCLUDE_IN
|
|
|
|
|
|
|
|
export function getTargetSubjectMetadata(state, origin) {
|
|
|
|
const metadata = getSubjectMetadata(state)[origin];
|
|
|
|
|
|
|
|
///: BEGIN:ONLY_INCLUDE_IN(flask)
|
|
|
|
if (metadata?.subjectType === SUBJECT_TYPES.SNAP) {
|
|
|
|
const { svgIcon, ...remainingMetadata } = metadata;
|
|
|
|
return {
|
|
|
|
...remainingMetadata,
|
|
|
|
iconUrl: svgIcon ? getEmbeddableSvg(svgIcon) : null,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
///: END:ONLY_INCLUDE_IN
|
|
|
|
return metadata;
|
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export function getRpcPrefsForCurrentProvider(state) {
|
2021-02-04 19:15:23 +01:00
|
|
|
const { frequentRpcListDetail, provider } = state.metamask;
|
2020-11-03 00:41:28 +01:00
|
|
|
const selectRpcInfo = frequentRpcListDetail.find(
|
|
|
|
(rpcInfo) => rpcInfo.rpcUrl === provider.rpcUrl,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
const { rpcPrefs = {} } = selectRpcInfo || {};
|
|
|
|
return rpcPrefs;
|
2019-05-09 19:27:14 +02:00
|
|
|
}
|
2019-06-18 14:17:14 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export function getKnownMethodData(state, data) {
|
2019-06-18 14:17:14 +02:00
|
|
|
if (!data) {
|
2021-02-04 19:15:23 +01:00
|
|
|
return null;
|
2019-06-18 14:17:14 +02:00
|
|
|
}
|
2021-02-04 19:15:23 +01:00
|
|
|
const prefixedData = addHexPrefix(data);
|
|
|
|
const fourBytePrefix = prefixedData.slice(0, 10);
|
|
|
|
const { knownMethodData } = state.metamask;
|
2019-06-18 14:17:14 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
return knownMethodData && knownMethodData[fourBytePrefix];
|
2019-06-18 14:17:14 +02:00
|
|
|
}
|
2019-09-16 19:11:01 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export function getFeatureFlags(state) {
|
2021-02-04 19:15:23 +01:00
|
|
|
return state.metamask.featureFlags;
|
2019-09-16 19:11:01 +02:00
|
|
|
}
|
Connect distinct accounts per site (#7004)
* add PermissionsController
remove provider approval controller
integrate rpc-cap
create PermissionsController
move provider approval functionality to permissions controller
add permissions approval ui, settings page
add permissions activity and history
move some functionality to metamask-inpage-provider
rename siteMetadata -> domainMetadata
add accountsChange notification to inpage provider
move functionality to inpage provider
update inpage provider
Remove 'Connections' settings page (#7369)
add hooks for exposing accounts in settings
rename unused messages in non-English locales
Add external extension id to metadata (#7396)
update inpage provider, rpc-cap
add eth_requestAccounts handling to background
prevent notifying connections if extension is locked
update inpage provider
Fix lint errors
add migration
review fixes
transaction controller review updates
removed unused messages
* Login Per Site UI (#7368)
* LoginPerSite original UI changes to keep
* First commit
* Get necessary connected tab info for redirect and icon display for permissioned sites
* Fix up designs and add missing features
* Some lint fixes
* More lint fixes
* Ensures the tx controller + tx-state-manager orders transactions in the order they are received
* Code cleanup for LoginPerSite-ui
* Update e2e tests to use new connection flow
* Fix display of connect screen and app header after login when connect request present
* Update metamask-responsive-ui.spec for new item in accounts dropdown
* Fix approve container by replacing approvedOrigins with domainMetaData
* Adds test/e2e/permissions.spec.js
* Correctly handle cancellation of a permissions request
* Redirect to home after disconnecting all sites / cancelling all permissions
* Fix display of site icons in menu
* Fix height of permissions page container
* Remove unused locale messages
* Set default values for openExternalTabs and tabIdOrigins in account-menu.container
* More code cleanup for LoginPerSite-ui
* Use extensions api to close tab in permissions-connect
* Remove unnecessary change in domIsReady() in contentscript
* Remove unnecessary private function markers and class methods (for background tab info) in metamask-controller.
* Adds getOriginOfCurrentTab selector
* Adds IconWithFallback component and substitutes for appropriate cases
* Add and utilize font mixins
* Remove unused method in disconnect-all.container.js
* Simplify buttonSizeLarge code in page-container-footer.component.js
* Add and utilize getAccountsWithLabels selector
* Remove console.log in ui/app/store/actions.js
* Change last connected time format to yyyy-M-d
* Fix css associated with IconWithFallback change
* Ensure tracked openNonMetamaskTabsIDs are correctly set to inactive on tab changes
* Code cleanup for LoginPerSite-ui
* Use reusable function for modifying openNonMetamaskTabsIDs in background.js
* Enables automatic switching to connected account when connected domain is open
* Prevent exploit of tabIdOriginMap in background.js
* Remove unneeded code from contentscript.js
* Simplify current tab origin and window opener logic using remotePort listener tabs.queryTabs
* Design and styling fixes for LoginPerSite-ui
* Fix permissionHistory and permission logging for eth_requestAccounts and eth_accounts
* Front end changes to support display of lastConnected time in connected and permissions screens
* Fix lint errors
* Refactor structure of permissionsHistory
* Fix default values and object modifications for domain and permissionsHistory related data
* Fix connecting to new accounts from modal
* Replace retweet.svg with connect-white.svg
* Fix signature-request.spec
* Update metamask-inpage-provider version
* Fix permissions e2e tests
* Remove unneeded delay from test/e2e/signature-request.spec.js
* Add delay before attempting to retrieve network id in dapp in ethereum-on=.spec
* Use requestAccountTabIds strategy for determining tab id that opened a given window
* Improve default values for permissions requests
* Add some message descriptions to app/_locales/en/messages.json
* Code clean up in permission controller
* Stopped deep cloning object in mapObjectValues
* Bump metamask-inpage-provider version
* Add missing description in app/_locales/en/messages.json
* Return promises from queryTabs and switchToTab of extension.js
* Remove unused getAllPermissions function
* Use default props in icon-with-fallback.component.js
* Stop passing to permissions controller
* Delete no longer used clear-approved-origins modal code
* Remove duplicate imports in ui/app/components/app/index.scss
* Use URL instead of regex in getOriginFromUrl()
* Add runtime error checking to platform, promise based extension.tab methods
* Support permission requests from external extensions
* Improve font size and colour of the domain origin on the permission confirmation screen
* Add support for toggling permissions
* Ensure getRenderablePermissionsDomains only returns domains with exposedAccount caveat permissions
* Remove unused code from LoginPerSite-ui branch
* Ensure modal closes on Enter press for new-account-modal.component.js
* Lint fix
* fixup! Login Per Site UI (#7368)
* Some code cleanup for LoginPerSite
* Adds UX for connecting to dapps via the connected sites screen (#7593)
* Adds UX for connecting to dapps via the connected sites screen
* Use openMetaMaskTabIds from background.js to determine if current active tab is MetaMask
* Delete unused permissions controller methods
* Fixes two small bugs in the LoginPerSite ui (#7595)
* Restore `providerRequest` message translations (#7600)
This message was removed, but it was replaced with a very similar
message called `likeToConnect`. The only difference is that the new
message has "MetaMask" in it. Preserving these messages without
"MetaMask" is probably better than deleting them, so these messages
have all been restored and renamed to `likeToConnect`.
* Login per site no sitemetadata fix (#7610)
* Support connected sites for which we have no site metadata.
* Change property containing subtitle info often populated by origin to a more accurate of purpose name
* Lint fix
* Improve disconnection modal messages (#7612)
* Improve disconnectAccountModalDescription and disconnectAllModalDescription messages
* Update disconnectAccountModalDescription app/_locales/en/messages.json
Co-Authored-By: Mark Stacey <markjstacey@gmail.com>
* Improve disconnectAccount modal message clarity
* Adds cancel button to the account selection screen of the permissions request flow (#7613)
* Fix eth_accounts permission language & selectability (#7614)
* fix eth_accounts language & selectability
* fix MetaMask capitalization in all messages
* Close sidebar when opening connected sites (#7611)
The 'Connected Sites' button in the accounts details now closes the
sidebar, if it is open. This was accomplished by pulling the click
handler for that button up to the wallet view component, where another
button already followed a similar pattern of closing the sidebar.
It seemed confusing to me that one handler was in the `AccountsDetails`
container component, and one was handed down from above, so I added
PropTypes to the container component.
I'm not sure that the WalletView component is the best place for this
logic, but I've put it there for now to be consistent with the add
token button.
* Reject permissions request upon tab close (#7618)
Permissions requests are now rejected when the page is closed. This
only applies to the full-screen view, as that is the view permission
requests should be handled in. The case where the user deals with the
request through a different view is handled in #7617
* Handle tab update failure (#7619)
`extension.tabs.update` can sometimes fail if the user interacts with
the tabs directly around the same time. The redirect flow has been
updated to ensure that the permissions tab is still closed in that
case. The user is on their own to find the dapp tab again in that case.
* Login per site tab popup fixes (#7617)
* Handle redirect in response to state update in permissions-connect
* Ensure origin is available to permissions-connect subcomponents during redirect
* Hide app bar whenever on redirect route
* Improvements to handling of redirects in permissions-connect
* Ensure permission request id change handling only happens when page is not null
* Lint fix
* Decouple confirm transaction screen from the selected address (#7622)
* Avoid race condtion that could prevent contextual account switching (#7623)
There was a race condition in the logic responsible for switching the
selected account based upon the active tab. It was asynchronously
querying the active tab, then assuming it had been retrieved later.
The active tab info itself was already in the redux store in another
spot, one that is guaranteed to be set before the UI renders. The
race condition was avoided by deleting the duplicate state, and using
the other active tab state.
* Only redirect back to dapp if current tab is active (#7621)
The "redirect back to dapp" behaviour can be disruptive when the
permissions connect tab is not active. The purpose of the redirect was
to maintain context between the dapp and the permissions request, but
if the user has already moved to another tab, that no longer applies.
* Fix JSX style lint errors
* Remove unused state
2019-12-03 18:35:56 +01:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export function getOriginOfCurrentTab(state) {
|
2021-02-04 19:15:23 +01:00
|
|
|
return state.activeTab.origin;
|
Connect distinct accounts per site (#7004)
* add PermissionsController
remove provider approval controller
integrate rpc-cap
create PermissionsController
move provider approval functionality to permissions controller
add permissions approval ui, settings page
add permissions activity and history
move some functionality to metamask-inpage-provider
rename siteMetadata -> domainMetadata
add accountsChange notification to inpage provider
move functionality to inpage provider
update inpage provider
Remove 'Connections' settings page (#7369)
add hooks for exposing accounts in settings
rename unused messages in non-English locales
Add external extension id to metadata (#7396)
update inpage provider, rpc-cap
add eth_requestAccounts handling to background
prevent notifying connections if extension is locked
update inpage provider
Fix lint errors
add migration
review fixes
transaction controller review updates
removed unused messages
* Login Per Site UI (#7368)
* LoginPerSite original UI changes to keep
* First commit
* Get necessary connected tab info for redirect and icon display for permissioned sites
* Fix up designs and add missing features
* Some lint fixes
* More lint fixes
* Ensures the tx controller + tx-state-manager orders transactions in the order they are received
* Code cleanup for LoginPerSite-ui
* Update e2e tests to use new connection flow
* Fix display of connect screen and app header after login when connect request present
* Update metamask-responsive-ui.spec for new item in accounts dropdown
* Fix approve container by replacing approvedOrigins with domainMetaData
* Adds test/e2e/permissions.spec.js
* Correctly handle cancellation of a permissions request
* Redirect to home after disconnecting all sites / cancelling all permissions
* Fix display of site icons in menu
* Fix height of permissions page container
* Remove unused locale messages
* Set default values for openExternalTabs and tabIdOrigins in account-menu.container
* More code cleanup for LoginPerSite-ui
* Use extensions api to close tab in permissions-connect
* Remove unnecessary change in domIsReady() in contentscript
* Remove unnecessary private function markers and class methods (for background tab info) in metamask-controller.
* Adds getOriginOfCurrentTab selector
* Adds IconWithFallback component and substitutes for appropriate cases
* Add and utilize font mixins
* Remove unused method in disconnect-all.container.js
* Simplify buttonSizeLarge code in page-container-footer.component.js
* Add and utilize getAccountsWithLabels selector
* Remove console.log in ui/app/store/actions.js
* Change last connected time format to yyyy-M-d
* Fix css associated with IconWithFallback change
* Ensure tracked openNonMetamaskTabsIDs are correctly set to inactive on tab changes
* Code cleanup for LoginPerSite-ui
* Use reusable function for modifying openNonMetamaskTabsIDs in background.js
* Enables automatic switching to connected account when connected domain is open
* Prevent exploit of tabIdOriginMap in background.js
* Remove unneeded code from contentscript.js
* Simplify current tab origin and window opener logic using remotePort listener tabs.queryTabs
* Design and styling fixes for LoginPerSite-ui
* Fix permissionHistory and permission logging for eth_requestAccounts and eth_accounts
* Front end changes to support display of lastConnected time in connected and permissions screens
* Fix lint errors
* Refactor structure of permissionsHistory
* Fix default values and object modifications for domain and permissionsHistory related data
* Fix connecting to new accounts from modal
* Replace retweet.svg with connect-white.svg
* Fix signature-request.spec
* Update metamask-inpage-provider version
* Fix permissions e2e tests
* Remove unneeded delay from test/e2e/signature-request.spec.js
* Add delay before attempting to retrieve network id in dapp in ethereum-on=.spec
* Use requestAccountTabIds strategy for determining tab id that opened a given window
* Improve default values for permissions requests
* Add some message descriptions to app/_locales/en/messages.json
* Code clean up in permission controller
* Stopped deep cloning object in mapObjectValues
* Bump metamask-inpage-provider version
* Add missing description in app/_locales/en/messages.json
* Return promises from queryTabs and switchToTab of extension.js
* Remove unused getAllPermissions function
* Use default props in icon-with-fallback.component.js
* Stop passing to permissions controller
* Delete no longer used clear-approved-origins modal code
* Remove duplicate imports in ui/app/components/app/index.scss
* Use URL instead of regex in getOriginFromUrl()
* Add runtime error checking to platform, promise based extension.tab methods
* Support permission requests from external extensions
* Improve font size and colour of the domain origin on the permission confirmation screen
* Add support for toggling permissions
* Ensure getRenderablePermissionsDomains only returns domains with exposedAccount caveat permissions
* Remove unused code from LoginPerSite-ui branch
* Ensure modal closes on Enter press for new-account-modal.component.js
* Lint fix
* fixup! Login Per Site UI (#7368)
* Some code cleanup for LoginPerSite
* Adds UX for connecting to dapps via the connected sites screen (#7593)
* Adds UX for connecting to dapps via the connected sites screen
* Use openMetaMaskTabIds from background.js to determine if current active tab is MetaMask
* Delete unused permissions controller methods
* Fixes two small bugs in the LoginPerSite ui (#7595)
* Restore `providerRequest` message translations (#7600)
This message was removed, but it was replaced with a very similar
message called `likeToConnect`. The only difference is that the new
message has "MetaMask" in it. Preserving these messages without
"MetaMask" is probably better than deleting them, so these messages
have all been restored and renamed to `likeToConnect`.
* Login per site no sitemetadata fix (#7610)
* Support connected sites for which we have no site metadata.
* Change property containing subtitle info often populated by origin to a more accurate of purpose name
* Lint fix
* Improve disconnection modal messages (#7612)
* Improve disconnectAccountModalDescription and disconnectAllModalDescription messages
* Update disconnectAccountModalDescription app/_locales/en/messages.json
Co-Authored-By: Mark Stacey <markjstacey@gmail.com>
* Improve disconnectAccount modal message clarity
* Adds cancel button to the account selection screen of the permissions request flow (#7613)
* Fix eth_accounts permission language & selectability (#7614)
* fix eth_accounts language & selectability
* fix MetaMask capitalization in all messages
* Close sidebar when opening connected sites (#7611)
The 'Connected Sites' button in the accounts details now closes the
sidebar, if it is open. This was accomplished by pulling the click
handler for that button up to the wallet view component, where another
button already followed a similar pattern of closing the sidebar.
It seemed confusing to me that one handler was in the `AccountsDetails`
container component, and one was handed down from above, so I added
PropTypes to the container component.
I'm not sure that the WalletView component is the best place for this
logic, but I've put it there for now to be consistent with the add
token button.
* Reject permissions request upon tab close (#7618)
Permissions requests are now rejected when the page is closed. This
only applies to the full-screen view, as that is the view permission
requests should be handled in. The case where the user deals with the
request through a different view is handled in #7617
* Handle tab update failure (#7619)
`extension.tabs.update` can sometimes fail if the user interacts with
the tabs directly around the same time. The redirect flow has been
updated to ensure that the permissions tab is still closed in that
case. The user is on their own to find the dapp tab again in that case.
* Login per site tab popup fixes (#7617)
* Handle redirect in response to state update in permissions-connect
* Ensure origin is available to permissions-connect subcomponents during redirect
* Hide app bar whenever on redirect route
* Improvements to handling of redirects in permissions-connect
* Ensure permission request id change handling only happens when page is not null
* Lint fix
* Decouple confirm transaction screen from the selected address (#7622)
* Avoid race condtion that could prevent contextual account switching (#7623)
There was a race condition in the logic responsible for switching the
selected account based upon the active tab. It was asynchronously
querying the active tab, then assuming it had been retrieved later.
The active tab info itself was already in the redux store in another
spot, one that is guaranteed to be set before the UI renders. The
race condition was avoided by deleting the duplicate state, and using
the other active tab state.
* Only redirect back to dapp if current tab is active (#7621)
The "redirect back to dapp" behaviour can be disruptive when the
permissions connect tab is not active. The purpose of the redirect was
to maintain context between the dapp and the permissions request, but
if the user has already moved to another tab, that no longer applies.
* Fix JSX style lint errors
* Remove unused state
2019-12-03 18:35:56 +01:00
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export function getIpfsGateway(state) {
|
2021-02-04 19:15:23 +01:00
|
|
|
return state.metamask.ipfsGateway;
|
2019-12-12 20:28:07 +01:00
|
|
|
}
|
2020-11-10 18:39:45 +01:00
|
|
|
|
2021-04-15 19:41:40 +02:00
|
|
|
export function getInfuraBlocked(state) {
|
|
|
|
return Boolean(state.metamask.infuraBlocked);
|
|
|
|
}
|
|
|
|
|
2020-11-10 18:39:45 +01:00
|
|
|
export function getUSDConversionRate(state) {
|
2021-02-04 19:15:23 +01:00
|
|
|
return state.metamask.usdConversionRate;
|
2020-11-10 18:39:45 +01:00
|
|
|
}
|
2020-12-11 00:40:29 +01:00
|
|
|
|
|
|
|
export function getWeb3ShimUsageStateForOrigin(state, origin) {
|
2021-02-04 19:15:23 +01:00
|
|
|
return state.metamask.web3ShimUsageOrigins[origin];
|
2020-12-11 00:40:29 +01:00
|
|
|
}
|
2021-03-04 18:16:01 +01:00
|
|
|
|
|
|
|
/**
|
2022-07-27 15:28:05 +02:00
|
|
|
* @typedef {object} SwapsEthToken
|
2021-03-04 18:16:01 +01:00
|
|
|
* @property {string} symbol - The symbol for ETH, namely "ETH"
|
|
|
|
* @property {string} name - The name of the ETH currency, "Ether"
|
|
|
|
* @property {string} address - A substitute address for the metaswap-api to
|
|
|
|
* recognize the ETH token
|
|
|
|
* @property {string} decimals - The number of ETH decimals, i.e. 18
|
|
|
|
* @property {string} balance - The user's ETH balance in decimal wei, with a
|
|
|
|
* precision of 4 decimal places
|
|
|
|
* @property {string} string - The user's ETH balance in decimal ETH
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Swaps related code uses token objects for various purposes. These objects
|
|
|
|
* always have the following properties: `symbol`, `name`, `address`, and
|
|
|
|
* `decimals`.
|
|
|
|
*
|
|
|
|
* When available for the current account, the objects can have `balance` and
|
|
|
|
* `string` properties.
|
|
|
|
* `balance` is the users token balance in decimal values, denominated in the
|
|
|
|
* minimal token units (according to its decimals).
|
|
|
|
* `string` is the token balance in a readable format, ready for rendering.
|
|
|
|
*
|
2021-03-18 11:20:06 +01:00
|
|
|
* Swaps treats the selected chain's currency as a token, and we use the token constants
|
|
|
|
* in the SWAPS_CHAINID_DEFAULT_TOKEN_MAP to set the standard properties for
|
|
|
|
* the token. The getSwapsDefaultToken selector extends that object with
|
|
|
|
* `balance` and `string` values of the same type as in regular ERC-20 token
|
|
|
|
* objects, per the above description.
|
2021-03-04 18:16:01 +01:00
|
|
|
*
|
|
|
|
* @param {object} state - the redux state object
|
|
|
|
* @returns {SwapsEthToken} The token object representation of the currently
|
|
|
|
* selected account's ETH balance, as expected by the Swaps API.
|
|
|
|
*/
|
|
|
|
|
2021-03-18 11:20:06 +01:00
|
|
|
export function getSwapsDefaultToken(state) {
|
2021-03-04 18:16:01 +01:00
|
|
|
const selectedAccount = getSelectedAccount(state);
|
|
|
|
const { balance } = selectedAccount;
|
2021-03-18 11:20:06 +01:00
|
|
|
const chainId = getCurrentChainId(state);
|
|
|
|
|
|
|
|
const defaultTokenObject = SWAPS_CHAINID_DEFAULT_TOKEN_MAP[chainId];
|
2021-03-04 18:16:01 +01:00
|
|
|
|
|
|
|
return {
|
2021-03-18 11:20:06 +01:00
|
|
|
...defaultTokenObject,
|
2021-03-04 18:16:01 +01:00
|
|
|
balance: hexToDecimal(balance),
|
|
|
|
string: getValueFromWeiHex({
|
|
|
|
value: balance,
|
|
|
|
numberOfDecimals: 4,
|
|
|
|
toDenomination: 'ETH',
|
|
|
|
}),
|
|
|
|
};
|
|
|
|
}
|
2021-03-18 11:20:06 +01:00
|
|
|
|
|
|
|
export function getIsSwapsChain(state) {
|
|
|
|
const chainId = getCurrentChainId(state);
|
2022-04-21 18:19:34 +02:00
|
|
|
const isNotDevelopment =
|
2022-05-09 18:48:14 +02:00
|
|
|
process.env.METAMASK_ENVIRONMENT !== 'development' &&
|
2022-04-21 18:19:34 +02:00
|
|
|
process.env.METAMASK_ENVIRONMENT !== 'testing';
|
|
|
|
return isNotDevelopment
|
2022-04-14 17:02:38 +02:00
|
|
|
? ALLOWED_PROD_SWAPS_CHAIN_IDS.includes(chainId)
|
|
|
|
: ALLOWED_DEV_SWAPS_CHAIN_IDS.includes(chainId);
|
2021-03-18 11:20:06 +01:00
|
|
|
}
|
2021-04-02 00:57:00 +02:00
|
|
|
|
2022-01-28 14:46:26 +01:00
|
|
|
export function getIsBuyableChain(state) {
|
|
|
|
const chainId = getCurrentChainId(state);
|
|
|
|
return Object.keys(BUYABLE_CHAINS_MAP).includes(chainId);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function getIsBuyableTransakChain(state) {
|
|
|
|
const chainId = getCurrentChainId(state);
|
|
|
|
return Boolean(BUYABLE_CHAINS_MAP?.[chainId]?.transakCurrencies);
|
|
|
|
}
|
|
|
|
|
2022-09-19 17:00:57 +02:00
|
|
|
export function getIsBuyableTransakToken(state, symbol) {
|
|
|
|
const chainId = getCurrentChainId(state);
|
|
|
|
return Boolean(
|
|
|
|
BUYABLE_CHAINS_MAP?.[chainId]?.transakCurrencies?.includes(symbol),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-09-23 18:38:40 +02:00
|
|
|
export function getIsBuyableMoonpayToken(state, symbol) {
|
|
|
|
const chainId = getCurrentChainId(state);
|
|
|
|
const _symbol = formatMoonpaySymbol(symbol, chainId);
|
|
|
|
return Boolean(
|
2022-09-29 16:47:41 +02:00
|
|
|
BUYABLE_CHAINS_MAP?.[chainId]?.moonPay?.showOnlyCurrencies?.includes(
|
2022-09-23 18:38:40 +02:00
|
|
|
_symbol,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-09-28 16:41:56 +02:00
|
|
|
export function getIsBuyableWyreToken(state, symbol) {
|
|
|
|
const chainId = getCurrentChainId(state);
|
|
|
|
return Boolean(
|
|
|
|
BUYABLE_CHAINS_MAP?.[chainId]?.wyre?.currencies.includes(symbol),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-03-21 10:26:52 +01:00
|
|
|
export function getIsBuyableMoonPayChain(state) {
|
|
|
|
const chainId = getCurrentChainId(state);
|
|
|
|
return Boolean(BUYABLE_CHAINS_MAP?.[chainId]?.moonPay);
|
|
|
|
}
|
|
|
|
|
2022-05-27 18:04:26 +02:00
|
|
|
export function getIsBuyableWyreChain(state) {
|
|
|
|
const chainId = getCurrentChainId(state);
|
|
|
|
return Boolean(BUYABLE_CHAINS_MAP?.[chainId]?.wyre);
|
|
|
|
}
|
2022-05-13 01:27:49 +02:00
|
|
|
export function getIsBuyableCoinbasePayChain(state) {
|
|
|
|
const chainId = getCurrentChainId(state);
|
|
|
|
return Boolean(BUYABLE_CHAINS_MAP?.[chainId]?.coinbasePayCurrencies);
|
|
|
|
}
|
|
|
|
|
2022-09-19 17:00:57 +02:00
|
|
|
export function getIsBuyableCoinbasePayToken(state, symbol) {
|
|
|
|
const chainId = getCurrentChainId(state);
|
|
|
|
return Boolean(
|
|
|
|
BUYABLE_CHAINS_MAP?.[chainId]?.coinbasePayCurrencies?.includes(symbol),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-04-02 00:57:00 +02:00
|
|
|
export function getNativeCurrencyImage(state) {
|
2022-08-03 03:06:11 +02:00
|
|
|
const nativeCurrency = getNativeCurrency(state)?.toUpperCase();
|
2021-04-02 00:57:00 +02:00
|
|
|
return NATIVE_CURRENCY_TOKEN_IMAGE_MAP[nativeCurrency];
|
|
|
|
}
|
2021-04-17 00:00:18 +02:00
|
|
|
|
|
|
|
export function getNextSuggestedNonce(state) {
|
|
|
|
return Number(state.metamask.nextNonce);
|
|
|
|
}
|
2021-04-28 18:51:41 +02:00
|
|
|
|
|
|
|
export function getShowWhatsNewPopup(state) {
|
|
|
|
return state.appState.showWhatsNewPopup;
|
|
|
|
}
|
|
|
|
|
2022-10-28 10:37:33 +02:00
|
|
|
const createDeepEqualSelector = createSelectorCreator(defaultMemoize, isEqual);
|
|
|
|
|
2022-12-22 21:07:51 +01:00
|
|
|
export const getMemoizedMetaMaskIdentities = createDeepEqualSelector(
|
|
|
|
getMetaMaskIdentities,
|
|
|
|
(identities) => identities,
|
|
|
|
);
|
|
|
|
|
|
|
|
export const getMemoizedAddressBook = createDeepEqualSelector(
|
|
|
|
getAddressBook,
|
|
|
|
(addressBook) => addressBook,
|
|
|
|
);
|
|
|
|
|
|
|
|
export const getMemoizedMetadataContractName = createDeepEqualSelector(
|
|
|
|
getTokenList,
|
|
|
|
(_tokenList, address) => address,
|
|
|
|
(tokenList, address) => {
|
|
|
|
const entry = Object.values(tokenList).find((identity) =>
|
|
|
|
isEqualCaseInsensitive(identity.address, toChecksumHexAddress(address)),
|
|
|
|
);
|
|
|
|
return entry && entry.name !== '' ? entry.name : '';
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
2022-10-28 10:37:33 +02:00
|
|
|
export const getUnapprovedTransactions = (state) =>
|
|
|
|
state.metamask.unapprovedTxs;
|
|
|
|
|
2022-11-04 17:14:43 +01:00
|
|
|
const getCurrentNetworkTransactionList = (state) =>
|
|
|
|
state.metamask.currentNetworkTxList;
|
|
|
|
|
2022-10-28 10:37:33 +02:00
|
|
|
export const getTxData = (state) => state.confirmTransaction.txData;
|
|
|
|
|
|
|
|
export const getUnapprovedTransaction = createDeepEqualSelector(
|
|
|
|
getUnapprovedTransactions,
|
|
|
|
(_, transactionId) => transactionId,
|
|
|
|
(unapprovedTxs, transactionId) => {
|
|
|
|
return (
|
|
|
|
Object.values(unapprovedTxs).find(({ id }) => id === transactionId) || {}
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
2022-11-04 17:14:43 +01:00
|
|
|
export const getTransaction = createDeepEqualSelector(
|
|
|
|
getCurrentNetworkTransactionList,
|
|
|
|
(_, transactionId) => transactionId,
|
|
|
|
(unapprovedTxs, transactionId) => {
|
|
|
|
return (
|
|
|
|
Object.values(unapprovedTxs).find(({ id }) => id === transactionId) || {}
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
2022-10-28 10:37:33 +02:00
|
|
|
export const getFullTxData = createDeepEqualSelector(
|
|
|
|
getTxData,
|
2022-11-04 17:14:43 +01:00
|
|
|
(state, transactionId, status) => {
|
|
|
|
if (status === TRANSACTION_STATUSES.UNAPPROVED) {
|
|
|
|
return getUnapprovedTransaction(state, transactionId);
|
|
|
|
}
|
|
|
|
return getTransaction(state, transactionId);
|
|
|
|
},
|
|
|
|
(_state, _transactionId, _status, customTxParamsData) => customTxParamsData,
|
2022-12-05 20:34:06 +01:00
|
|
|
(txData, transaction, customTxParamsData) => {
|
2022-10-28 10:37:33 +02:00
|
|
|
let fullTxData = { ...txData, ...transaction };
|
|
|
|
if (transaction && transaction.simulationFails) {
|
|
|
|
txData.simulationFails = transaction.simulationFails;
|
|
|
|
}
|
|
|
|
if (customTxParamsData) {
|
|
|
|
fullTxData = {
|
|
|
|
...fullTxData,
|
|
|
|
txParams: {
|
|
|
|
...fullTxData.txParams,
|
|
|
|
data: customTxParamsData,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|
|
|
|
return fullTxData;
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
2022-02-15 01:02:51 +01:00
|
|
|
///: BEGIN:ONLY_INCLUDE_IN(flask)
|
|
|
|
export function getSnaps(state) {
|
|
|
|
return state.metamask.snaps;
|
|
|
|
}
|
2022-04-19 17:08:09 +02:00
|
|
|
|
2022-12-20 11:44:49 +01:00
|
|
|
export const getSnap = createDeepEqualSelector(
|
2022-12-01 16:46:06 +01:00
|
|
|
getSnaps,
|
|
|
|
(_, snapId) => snapId,
|
|
|
|
(snaps, snapId) => {
|
|
|
|
return snaps[snapId];
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
2022-12-20 11:44:49 +01:00
|
|
|
export const getInsightSnaps = createDeepEqualSelector(
|
|
|
|
getSnaps,
|
|
|
|
getPermissionSubjects,
|
|
|
|
(snaps, subjects) => {
|
|
|
|
return Object.values(snaps).filter(
|
|
|
|
({ id }) => subjects[id]?.permissions['endowment:transaction-insight'],
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
2022-09-20 19:00:07 +02:00
|
|
|
|
2022-04-19 17:08:09 +02:00
|
|
|
export const getSnapsRouteObjects = createSelector(getSnaps, (snaps) => {
|
|
|
|
return Object.values(snaps).map((snap) => {
|
|
|
|
return {
|
2022-06-01 19:09:13 +02:00
|
|
|
id: snap.id,
|
2022-04-19 17:08:09 +02:00
|
|
|
tabMessage: () => snap.manifest.proposedName,
|
|
|
|
descriptionMessage: () => snap.manifest.description,
|
|
|
|
sectionMessage: () => snap.manifest.description,
|
2022-05-11 22:14:53 +02:00
|
|
|
route: `${SNAPS_VIEW_ROUTE}/${encodeURIComponent(snap.id)}`,
|
2022-04-19 17:08:09 +02:00
|
|
|
icon: 'fa fa-flask',
|
|
|
|
};
|
|
|
|
});
|
|
|
|
});
|
2022-06-01 19:09:13 +02:00
|
|
|
|
|
|
|
/**
|
2022-07-27 15:28:05 +02:00
|
|
|
* @typedef {object} Notification
|
2022-06-01 19:09:13 +02:00
|
|
|
* @property {string} id - A unique identifier for the notification
|
|
|
|
* @property {string} origin - A string identifing the snap origin
|
|
|
|
* @property {EpochTimeStamp} createdDate - A date in epochTimeStramps, identifying when the notification was first committed
|
|
|
|
* @property {EpochTimeStamp} readDate - A date in epochTimeStramps, identifying when the notification was read by the user
|
|
|
|
* @property {string} message - A string containing the notification message
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Notifications are managed by the notification controller and referenced by
|
|
|
|
* `state.metamask.notifications`. This function returns a list of notifications
|
|
|
|
* the can be shown to the user.
|
|
|
|
*
|
|
|
|
* The returned notifications are sorted by date.
|
|
|
|
*
|
2022-07-27 15:28:05 +02:00
|
|
|
* @param {object} state - the redux state object
|
2022-06-01 19:09:13 +02:00
|
|
|
* @returns {Notification[]} An array of notifications that can be shown to the user
|
|
|
|
*/
|
|
|
|
|
|
|
|
export function getNotifications(state) {
|
|
|
|
const notifications = Object.values(state.metamask.notifications);
|
|
|
|
|
|
|
|
const notificationsSortedByDate = notifications.sort(
|
|
|
|
(a, b) => new Date(b.createdDate) - new Date(a.createdDate),
|
|
|
|
);
|
|
|
|
return notificationsSortedByDate;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function getUnreadNotifications(state) {
|
|
|
|
const notifications = getNotifications(state);
|
|
|
|
|
|
|
|
const unreadNotificationCount = notifications.filter(
|
|
|
|
(notification) => notification.readDate === null,
|
|
|
|
);
|
|
|
|
|
|
|
|
return unreadNotificationCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
export const getUnreadNotificationsCount = createSelector(
|
|
|
|
getUnreadNotifications,
|
|
|
|
(notifications) => notifications.length,
|
|
|
|
);
|
2022-02-15 01:02:51 +01:00
|
|
|
///: END:ONLY_INCLUDE_IN
|
|
|
|
|
2021-05-14 19:17:56 +02:00
|
|
|
/**
|
2022-04-27 10:36:32 +02:00
|
|
|
* Get an object of announcement IDs and if they are allowed or not.
|
2022-01-07 16:57:33 +01:00
|
|
|
*
|
2022-07-27 15:28:05 +02:00
|
|
|
* @param {object} state
|
|
|
|
* @returns {object}
|
2021-05-14 19:17:56 +02:00
|
|
|
*/
|
2022-04-27 10:36:32 +02:00
|
|
|
function getAllowedAnnouncementIds(state) {
|
2021-11-03 23:35:39 +01:00
|
|
|
const currentKeyring = getCurrentKeyring(state);
|
|
|
|
const currentKeyringIsLedger = currentKeyring?.type === KEYRING_TYPES.LEDGER;
|
|
|
|
const supportsWebHid = window.navigator.hid !== undefined;
|
|
|
|
const currentlyUsingLedgerLive =
|
|
|
|
getLedgerTransportType(state) === LEDGER_TRANSPORT_TYPES.LIVE;
|
|
|
|
|
2021-05-14 19:17:56 +02:00
|
|
|
return {
|
2021-11-01 11:46:05 +01:00
|
|
|
1: false,
|
|
|
|
2: false,
|
|
|
|
3: false,
|
|
|
|
4: false,
|
|
|
|
5: false,
|
|
|
|
6: false,
|
|
|
|
7: false,
|
2021-11-03 23:35:39 +01:00
|
|
|
8: supportsWebHid && currentKeyringIsLedger && currentlyUsingLedgerLive,
|
2022-07-19 01:41:10 +02:00
|
|
|
9: false,
|
2022-11-15 20:17:28 +01:00
|
|
|
10: false,
|
|
|
|
11: false,
|
2022-07-19 01:41:10 +02:00
|
|
|
12: false,
|
2022-10-27 12:25:30 +02:00
|
|
|
13: false,
|
2022-10-31 17:20:50 +01:00
|
|
|
14: false,
|
2022-11-15 20:17:28 +01:00
|
|
|
15: false,
|
|
|
|
16: true,
|
2022-12-03 00:59:41 +01:00
|
|
|
17: true,
|
2021-05-14 19:17:56 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-04-28 18:51:41 +02:00
|
|
|
/**
|
2022-07-27 15:28:05 +02:00
|
|
|
* @typedef {object} Announcement
|
2022-06-01 19:09:13 +02:00
|
|
|
* @property {number} id - A unique identifier for the announcement
|
2021-04-28 18:51:41 +02:00
|
|
|
* @property {string} date - A date in YYYY-MM-DD format, identifying when the notification was first committed
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2022-04-27 10:36:32 +02:00
|
|
|
* Announcements are managed by the announcement controller and referenced by
|
|
|
|
* `state.metamask.announcements`. This function returns a list of announcements
|
|
|
|
* the can be shown to the user. This list includes all announcements that do not
|
2021-04-28 18:51:41 +02:00
|
|
|
* have a truthy `isShown` property.
|
|
|
|
*
|
2022-04-27 10:36:32 +02:00
|
|
|
* The returned announcements are sorted by date.
|
2021-04-28 18:51:41 +02:00
|
|
|
*
|
2022-07-27 15:28:05 +02:00
|
|
|
* @param {object} state - the redux state object
|
2022-04-27 10:36:32 +02:00
|
|
|
* @returns {Announcement[]} An array of announcements that can be shown to the user
|
2021-04-28 18:51:41 +02:00
|
|
|
*/
|
|
|
|
|
2022-04-27 10:36:32 +02:00
|
|
|
export function getSortedAnnouncementsToShow(state) {
|
|
|
|
const announcements = Object.values(state.metamask.announcements);
|
|
|
|
const allowedAnnouncementIds = getAllowedAnnouncementIds(state);
|
|
|
|
const announcementsToShow = announcements.filter(
|
|
|
|
(announcement) =>
|
|
|
|
!announcement.isShown && allowedAnnouncementIds[announcement.id],
|
2021-04-28 18:51:41 +02:00
|
|
|
);
|
2022-04-27 10:36:32 +02:00
|
|
|
const announcementsSortedByDate = announcementsToShow.sort(
|
2021-04-28 18:51:41 +02:00
|
|
|
(a, b) => new Date(b.date) - new Date(a.date),
|
|
|
|
);
|
2022-04-27 10:36:32 +02:00
|
|
|
return announcementsSortedByDate;
|
2021-04-28 18:51:41 +02:00
|
|
|
}
|
2021-06-05 08:33:58 +02:00
|
|
|
|
|
|
|
export function getShowRecoveryPhraseReminder(state) {
|
|
|
|
const {
|
|
|
|
recoveryPhraseReminderLastShown,
|
|
|
|
recoveryPhraseReminderHasBeenShown,
|
|
|
|
} = state.metamask;
|
|
|
|
|
|
|
|
const currentTime = new Date().getTime();
|
|
|
|
const frequency = recoveryPhraseReminderHasBeenShown ? DAY * 90 : DAY * 2;
|
|
|
|
|
|
|
|
return currentTime - recoveryPhraseReminderLastShown >= frequency;
|
|
|
|
}
|
2021-09-09 22:56:27 +02:00
|
|
|
|
2022-09-13 15:41:58 +02:00
|
|
|
export function getShowPortfolioTooltip(state) {
|
|
|
|
return state.metamask.showPortfolioTooltip;
|
|
|
|
}
|
|
|
|
|
2022-11-16 18:41:15 +01:00
|
|
|
export function getShowBetaHeader(state) {
|
|
|
|
return state.metamask.showBetaHeader;
|
|
|
|
}
|
|
|
|
|
2021-09-09 22:56:27 +02:00
|
|
|
/**
|
|
|
|
* To get the useTokenDetection flag which determines whether a static or dynamic token list is used
|
2022-01-07 16:57:33 +01:00
|
|
|
*
|
2021-09-09 22:56:27 +02:00
|
|
|
* @param {*} state
|
|
|
|
* @returns Boolean
|
|
|
|
*/
|
|
|
|
export function getUseTokenDetection(state) {
|
|
|
|
return Boolean(state.metamask.useTokenDetection);
|
|
|
|
}
|
|
|
|
|
2021-11-26 19:54:57 +01:00
|
|
|
/**
|
2022-11-15 19:49:42 +01:00
|
|
|
* To get the useNftDetection flag which determines whether we autodetect NFTs
|
2022-01-07 16:57:33 +01:00
|
|
|
*
|
2021-11-26 19:54:57 +01:00
|
|
|
* @param {*} state
|
|
|
|
* @returns Boolean
|
|
|
|
*/
|
2022-11-15 19:49:42 +01:00
|
|
|
export function getUseNftDetection(state) {
|
|
|
|
return Boolean(state.metamask.useNftDetection);
|
2021-11-26 19:54:57 +01:00
|
|
|
}
|
|
|
|
|
2021-12-01 05:12:27 +01:00
|
|
|
/**
|
|
|
|
* To get the openSeaEnabled flag which determines whether we use OpenSea's API
|
2022-01-07 16:57:33 +01:00
|
|
|
*
|
2021-12-01 05:12:27 +01:00
|
|
|
* @param {*} state
|
|
|
|
* @returns Boolean
|
|
|
|
*/
|
|
|
|
export function getOpenSeaEnabled(state) {
|
|
|
|
return Boolean(state.metamask.openSeaEnabled);
|
|
|
|
}
|
|
|
|
|
2022-03-07 19:53:19 +01:00
|
|
|
/**
|
|
|
|
* To get the `theme` value which determines which theme is selected
|
|
|
|
*
|
|
|
|
* @param {*} state
|
|
|
|
* @returns Boolean
|
|
|
|
*/
|
|
|
|
export function getTheme(state) {
|
|
|
|
return state.metamask.theme;
|
|
|
|
}
|
|
|
|
|
2021-09-09 22:56:27 +02:00
|
|
|
/**
|
2022-08-10 03:26:25 +02:00
|
|
|
* To retrieve the token list for use throughout the UI. Will return the remotely fetched list
|
|
|
|
* from the tokens controller if token detection is enabled, or the static list if not.
|
2022-01-07 16:57:33 +01:00
|
|
|
*
|
2021-09-09 22:56:27 +02:00
|
|
|
* @param {*} state
|
2022-07-27 15:28:05 +02:00
|
|
|
* @returns {object}
|
2021-09-09 22:56:27 +02:00
|
|
|
*/
|
|
|
|
export function getTokenList(state) {
|
2022-08-10 03:26:25 +02:00
|
|
|
const isTokenDetectionInactiveOnMainnet =
|
|
|
|
getIsTokenDetectionInactiveOnMainnet(state);
|
|
|
|
const caseInSensitiveTokenList = isTokenDetectionInactiveOnMainnet
|
|
|
|
? STATIC_MAINNET_TOKEN_LIST
|
|
|
|
: state.metamask.tokenList;
|
|
|
|
return caseInSensitiveTokenList;
|
2021-09-09 22:56:27 +02:00
|
|
|
}
|
2021-10-21 21:17:03 +02:00
|
|
|
|
|
|
|
export function doesAddressRequireLedgerHidConnection(state, address) {
|
|
|
|
const addressIsLedger = isAddressLedger(state, address);
|
|
|
|
const transportTypePreferenceIsWebHID =
|
|
|
|
getLedgerTransportType(state) === LEDGER_TRANSPORT_TYPES.WEBHID;
|
|
|
|
const webHidIsNotConnected =
|
|
|
|
getLedgerWebHidConnectedStatus(state) !==
|
|
|
|
WEBHID_CONNECTED_STATUSES.CONNECTED;
|
2021-11-04 19:19:53 +01:00
|
|
|
const ledgerTransportStatus = getLedgerTransportStatus(state);
|
|
|
|
const transportIsNotSuccessfullyCreated =
|
|
|
|
ledgerTransportStatus !== TRANSPORT_STATES.VERIFIED;
|
2021-10-21 21:17:03 +02:00
|
|
|
|
|
|
|
return (
|
2021-11-04 19:19:53 +01:00
|
|
|
addressIsLedger &&
|
|
|
|
transportTypePreferenceIsWebHID &&
|
|
|
|
(webHidIsNotConnected || transportIsNotSuccessfullyCreated)
|
2021-10-21 21:17:03 +02:00
|
|
|
);
|
|
|
|
}
|
2021-10-25 22:38:43 +02:00
|
|
|
|
2021-11-26 21:03:35 +01:00
|
|
|
export function getNewCollectibleAddedMessage(state) {
|
|
|
|
return state.appState.newCollectibleAddedMessage;
|
|
|
|
}
|
|
|
|
|
2021-10-25 22:38:43 +02:00
|
|
|
/**
|
|
|
|
* To retrieve the name of the new Network added using add network form
|
2022-01-07 16:57:33 +01:00
|
|
|
*
|
2021-10-25 22:38:43 +02:00
|
|
|
* @param {*} state
|
|
|
|
* @returns string
|
|
|
|
*/
|
|
|
|
export function getNewNetworkAdded(state) {
|
|
|
|
return state.appState.newNetworkAdded;
|
|
|
|
}
|
2021-11-04 22:48:21 +01:00
|
|
|
|
|
|
|
export function getNetworksTabSelectedRpcUrl(state) {
|
|
|
|
return state.appState.networksTabSelectedRpcUrl;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function getProvider(state) {
|
|
|
|
return state.metamask.provider;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function getFrequentRpcListDetail(state) {
|
|
|
|
return state.metamask.frequentRpcListDetail;
|
|
|
|
}
|
2021-11-11 17:46:45 +01:00
|
|
|
|
|
|
|
export function getIsOptimism(state) {
|
|
|
|
return (
|
2022-09-14 16:55:31 +02:00
|
|
|
getCurrentChainId(state) === CHAIN_IDS.OPTIMISM ||
|
|
|
|
getCurrentChainId(state) === CHAIN_IDS.OPTIMISM_TESTNET
|
2021-11-11 17:46:45 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-03-29 21:21:45 +02:00
|
|
|
export function getNetworkSupportsSettingGasFees(state) {
|
2021-11-11 17:46:45 +01:00
|
|
|
return !getIsOptimism(state);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function getIsMultiLayerFeeNetwork(state) {
|
|
|
|
return getIsOptimism(state);
|
|
|
|
}
|
2021-11-11 20:18:50 +01:00
|
|
|
/**
|
|
|
|
* To retrieve the maxBaseFee and priotitFee teh user has set as default
|
2022-01-07 16:57:33 +01:00
|
|
|
*
|
|
|
|
* @param {*} state
|
|
|
|
* @returns Boolean
|
2021-11-11 20:18:50 +01:00
|
|
|
*/
|
|
|
|
export function getAdvancedGasFeeValues(state) {
|
|
|
|
return state.metamask.advancedGasFee;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* To check if the user has set advanced gas fee settings as default with a non empty maxBaseFee and priotityFee.
|
2022-01-07 16:57:33 +01:00
|
|
|
*
|
|
|
|
* @param {*} state
|
|
|
|
* @returns Boolean
|
2021-11-11 20:18:50 +01:00
|
|
|
*/
|
|
|
|
export function getIsAdvancedGasFeeDefault(state) {
|
|
|
|
const { advancedGasFee } = state.metamask;
|
|
|
|
return (
|
|
|
|
Boolean(advancedGasFee?.maxBaseFee) && Boolean(advancedGasFee?.priorityFee)
|
|
|
|
);
|
|
|
|
}
|
2022-03-31 15:48:05 +02:00
|
|
|
|
|
|
|
/**
|
2022-08-10 03:26:25 +02:00
|
|
|
* To get the name of the network that support token detection based in chainId.
|
|
|
|
*
|
2022-03-31 15:48:05 +02:00
|
|
|
* @param state
|
|
|
|
* @returns string e.g. ethereum, bsc or polygon
|
|
|
|
*/
|
|
|
|
export const getTokenDetectionSupportNetworkByChainId = (state) => {
|
|
|
|
const chainId = getCurrentChainId(state);
|
|
|
|
switch (chainId) {
|
2022-09-14 16:55:31 +02:00
|
|
|
case CHAIN_IDS.MAINNET:
|
2022-03-31 15:48:05 +02:00
|
|
|
return MAINNET_DISPLAY_NAME;
|
2022-09-14 16:55:31 +02:00
|
|
|
case CHAIN_IDS.BSC:
|
2022-03-31 15:48:05 +02:00
|
|
|
return BSC_DISPLAY_NAME;
|
2022-09-14 16:55:31 +02:00
|
|
|
case CHAIN_IDS.POLYGON:
|
2022-03-31 15:48:05 +02:00
|
|
|
return POLYGON_DISPLAY_NAME;
|
2022-09-14 16:55:31 +02:00
|
|
|
case CHAIN_IDS.AVALANCHE:
|
2022-03-31 15:48:05 +02:00
|
|
|
return AVALANCHE_DISPLAY_NAME;
|
|
|
|
default:
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
};
|
|
|
|
/**
|
2022-08-10 03:26:25 +02:00
|
|
|
* To check if teh chainId supports token detection ,
|
2022-03-31 15:48:05 +02:00
|
|
|
* currently it returns true for Ethereum Mainnet, Polygon, BSC and Avalanche
|
|
|
|
*
|
|
|
|
* @param {*} state
|
|
|
|
* @returns Boolean
|
|
|
|
*/
|
2022-08-10 03:26:25 +02:00
|
|
|
export function getIsDynamicTokenListAvailable(state) {
|
2022-03-31 15:48:05 +02:00
|
|
|
const chainId = getCurrentChainId(state);
|
|
|
|
return [
|
2022-09-14 16:55:31 +02:00
|
|
|
CHAIN_IDS.MAINNET,
|
|
|
|
CHAIN_IDS.BSC,
|
|
|
|
CHAIN_IDS.POLYGON,
|
|
|
|
CHAIN_IDS.AVALANCHE,
|
2022-03-31 15:48:05 +02:00
|
|
|
].includes(chainId);
|
|
|
|
}
|
|
|
|
|
2022-05-09 19:47:06 +02:00
|
|
|
/**
|
|
|
|
* To retrieve the list of tokens detected and saved on the state to detectedToken object.
|
|
|
|
*
|
|
|
|
* @param {*} state
|
|
|
|
* @returns list of token objects
|
|
|
|
*/
|
2022-04-13 18:23:41 +02:00
|
|
|
export function getDetectedTokensInCurrentNetwork(state) {
|
2022-12-14 07:56:08 +01:00
|
|
|
const currentChainId = getCurrentChainId(state);
|
|
|
|
const selectedAddress = getSelectedAddress(state);
|
|
|
|
return state.metamask.allDetectedTokens?.[currentChainId]?.[selectedAddress];
|
2022-03-31 15:48:05 +02:00
|
|
|
}
|
2022-05-09 19:47:06 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* To fetch the name of the tokens that are imported from tokens found page
|
|
|
|
*
|
|
|
|
* @param {*} state
|
|
|
|
* @returns
|
|
|
|
*/
|
|
|
|
export function getNewTokensImported(state) {
|
|
|
|
return state.appState.newTokensImported;
|
|
|
|
}
|
2022-06-30 18:19:07 +02:00
|
|
|
|
2022-08-10 03:26:25 +02:00
|
|
|
/**
|
|
|
|
* To check if the token detection is OFF and the network is Mainnet
|
|
|
|
* so that the user can skip third party token api fetch
|
|
|
|
* and use the static tokenlist from contract-metadata
|
|
|
|
*
|
|
|
|
* @param {*} state
|
|
|
|
* @returns Boolean
|
|
|
|
*/
|
|
|
|
export function getIsTokenDetectionInactiveOnMainnet(state) {
|
|
|
|
const isMainnet = getIsMainnet(state);
|
|
|
|
const useTokenDetection = getUseTokenDetection(state);
|
|
|
|
|
|
|
|
return !useTokenDetection && isMainnet;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* To check for the chainId that supports token detection ,
|
|
|
|
* currently it returns true for Ethereum Mainnet, Polygon, BSC and Avalanche
|
|
|
|
*
|
|
|
|
* @param {*} state
|
|
|
|
* @returns Boolean
|
|
|
|
*/
|
|
|
|
export function getIsTokenDetectionSupported(state) {
|
|
|
|
const useTokenDetection = getUseTokenDetection(state);
|
|
|
|
const isDynamicTokenListAvailable = getIsDynamicTokenListAvailable(state);
|
|
|
|
|
|
|
|
return useTokenDetection && isDynamicTokenListAvailable;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* To check if the token detection is OFF for the token detection supported networks
|
|
|
|
* and the network is not Mainnet
|
|
|
|
*
|
|
|
|
* @param {*} state
|
|
|
|
* @returns Boolean
|
|
|
|
*/
|
|
|
|
export function getIstokenDetectionInactiveOnNonMainnetSupportedNetwork(state) {
|
|
|
|
const useTokenDetection = getUseTokenDetection(state);
|
|
|
|
const isMainnet = getIsMainnet(state);
|
|
|
|
const isDynamicTokenListAvailable = getIsDynamicTokenListAvailable(state);
|
|
|
|
|
|
|
|
return isDynamicTokenListAvailable && !useTokenDetection && !isMainnet;
|
|
|
|
}
|
|
|
|
|
2022-11-08 18:21:38 +01:00
|
|
|
/**
|
|
|
|
* To get the `improvedTokenAllowanceEnabled` value which determines whether we use the improved token allowance
|
|
|
|
*
|
|
|
|
* @param {*} state
|
|
|
|
* @returns Boolean
|
|
|
|
*/
|
|
|
|
export function getIsImprovedTokenAllowanceEnabled(state) {
|
|
|
|
return state.metamask.improvedTokenAllowanceEnabled;
|
|
|
|
}
|
|
|
|
|
2022-11-17 15:13:02 +01:00
|
|
|
/**
|
|
|
|
* To get the `transactionSecurityCheckEnabled` value which determines whether we use the transaction security check
|
|
|
|
*
|
|
|
|
* @param {*} state
|
|
|
|
* @returns Boolean
|
|
|
|
*/
|
|
|
|
export function getIsTransactionSecurityCheckEnabled(state) {
|
|
|
|
return state.metamask.transactionSecurityCheckEnabled;
|
|
|
|
}
|
|
|
|
|
2022-08-02 23:56:02 +02:00
|
|
|
export function getIsCustomNetwork(state) {
|
|
|
|
const chainId = getCurrentChainId(state);
|
|
|
|
|
|
|
|
return !CHAIN_ID_TO_RPC_URL_MAP[chainId];
|
|
|
|
}
|
|
|
|
|
|
|
|
export function getBlockExplorerLinkText(
|
|
|
|
state,
|
|
|
|
accountDetailsModalComponent = false,
|
|
|
|
) {
|
|
|
|
const isCustomNetwork = getIsCustomNetwork(state);
|
|
|
|
const rpcPrefs = getRpcPrefsForCurrentProvider(state);
|
|
|
|
|
|
|
|
let blockExplorerLinkText = {
|
|
|
|
firstPart: 'addBlockExplorer',
|
|
|
|
secondPart: '',
|
|
|
|
};
|
|
|
|
|
|
|
|
if (rpcPrefs.blockExplorerUrl) {
|
|
|
|
blockExplorerLinkText = accountDetailsModalComponent
|
|
|
|
? {
|
|
|
|
firstPart: 'blockExplorerView',
|
|
|
|
secondPart: getURLHostName(rpcPrefs.blockExplorerUrl),
|
|
|
|
}
|
|
|
|
: {
|
|
|
|
firstPart: 'viewinExplorer',
|
|
|
|
secondPart: 'blockExplorerAccountAction',
|
|
|
|
};
|
|
|
|
} else if (isCustomNetwork === false) {
|
|
|
|
blockExplorerLinkText = accountDetailsModalComponent
|
|
|
|
? { firstPart: 'etherscanViewOn', secondPart: '' }
|
|
|
|
: {
|
|
|
|
firstPart: 'viewOnEtherscan',
|
|
|
|
secondPart: 'blockExplorerAccountAction',
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
return blockExplorerLinkText;
|
|
|
|
}
|
2022-08-23 17:04:07 +02:00
|
|
|
|
|
|
|
export function getIsNetworkUsed(state) {
|
|
|
|
const chainId = getCurrentChainId(state);
|
|
|
|
const { usedNetworks } = state.metamask;
|
|
|
|
|
|
|
|
return Boolean(usedNetworks[chainId]);
|
|
|
|
}
|
|
|
|
|
2022-09-14 17:35:59 +02:00
|
|
|
export function getAllAccountsOnNetworkAreEmpty(state) {
|
2022-08-23 17:04:07 +02:00
|
|
|
const balances = getMetaMaskCachedBalances(state) ?? {};
|
2022-09-14 17:35:59 +02:00
|
|
|
const hasNoNativeFundsOnAnyAccounts = Object.values(balances).every(
|
|
|
|
(balance) => balance === '0x0' || balance === '0x00',
|
|
|
|
);
|
|
|
|
const hasNoTokens = getNumberOfTokens(state) === 0;
|
2022-08-23 17:04:07 +02:00
|
|
|
|
2022-09-14 17:35:59 +02:00
|
|
|
return hasNoNativeFundsOnAnyAccounts && hasNoTokens;
|
2022-08-23 17:04:07 +02:00
|
|
|
}
|
2022-09-19 19:40:30 +02:00
|
|
|
|
|
|
|
export function getShouldShowSeedPhraseReminder(state) {
|
|
|
|
const { tokens, seedPhraseBackedUp, dismissSeedBackUpReminder } =
|
|
|
|
state.metamask;
|
|
|
|
const accountBalance = getCurrentEthBalance(state) ?? 0;
|
|
|
|
return (
|
|
|
|
seedPhraseBackedUp === false &&
|
|
|
|
(parseInt(accountBalance, 16) > 0 || tokens.length > 0) &&
|
|
|
|
dismissSeedBackUpReminder === false
|
|
|
|
);
|
|
|
|
}
|
2022-11-07 19:21:38 +01:00
|
|
|
|
|
|
|
export function getCustomTokenAmount(state) {
|
|
|
|
return state.appState.customTokenAmount;
|
|
|
|
}
|