2021-02-04 19:15:23 +01:00
|
|
|
import contractMap from '@metamask/contract-metadata';
|
2020-11-17 18:39:21 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A normalized list of addresses exported as part of the contractMap in
|
2022-01-07 16:57:33 +01:00
|
|
|
* `@metamask/contract-metadata`. Used primarily to validate if manually entered
|
2020-11-17 18:39:21 +01:00
|
|
|
* contract addresses do not match one of our listed tokens
|
|
|
|
*/
|
2022-07-31 20:26:40 +02:00
|
|
|
export const LISTED_CONTRACT_ADDRESSES = Object.keys(contractMap).map(
|
|
|
|
(address) => address.toLowerCase(),
|
|
|
|
);
|
2022-07-01 15:58:35 +02:00
|
|
|
|
|
|
|
/**
|
2022-07-27 15:28:05 +02:00
|
|
|
* @typedef {object} TokenDetails
|
2022-07-01 15:58:35 +02:00
|
|
|
* @property {string} address - The address of the selected 'TOKEN' or
|
|
|
|
* 'COLLECTIBLE' contract.
|
|
|
|
* @property {string} [symbol] - The symbol of the token.
|
|
|
|
* @property {number} [decimals] - The number of decimals of the selected
|
|
|
|
* 'ERC20' asset.
|
|
|
|
* @property {number} [tokenId] - The id of the selected 'COLLECTIBLE' asset.
|
|
|
|
* @property {TokenStandardStrings} [standard] - The standard of the selected
|
|
|
|
* asset.
|
|
|
|
* @property {boolean} [isERC721] - True when the asset is a ERC721 token.
|
|
|
|
*/
|
2022-08-10 03:26:25 +02:00
|
|
|
export const STATIC_MAINNET_TOKEN_LIST = Object.keys(contractMap).reduce(
|
|
|
|
(acc, base) => {
|
|
|
|
const { logo, ...tokenMetadata } = contractMap[base];
|
|
|
|
return {
|
|
|
|
...acc,
|
|
|
|
[base.toLowerCase()]: {
|
|
|
|
...tokenMetadata,
|
|
|
|
address: base.toLowerCase(),
|
|
|
|
iconUrl: `images/contract/${logo}`,
|
|
|
|
aggregators: [],
|
|
|
|
},
|
|
|
|
};
|
|
|
|
},
|
|
|
|
{},
|
|
|
|
);
|