mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
76a2a9bb8b
* @metamask/eslint-config@5.0.0 * Update eslintrc and prettierrc * yarn lint:fix
11 lines
388 B
JavaScript
11 lines
388 B
JavaScript
import contractMap from '@metamask/contract-metadata';
|
|
|
|
/**
|
|
* A normalized list of addresses exported as part of the contractMap in
|
|
* @metamask/contract-metadata. Used primarily to validate if manually entered
|
|
* contract addresses do not match one of our listed tokens
|
|
*/
|
|
export const LISTED_CONTRACT_ADDRESSES = Object.keys(
|
|
contractMap,
|
|
).map((address) => address.toLowerCase());
|