mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-26 12:29:06 +01:00
11 lines
386 B
JavaScript
11 lines
386 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())
|