mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-27 12:56:01 +01:00
20 lines
522 B
JavaScript
20 lines
522 B
JavaScript
import blocklist from './recipient-blocklist'
|
|
|
|
/**
|
|
* Checks if a specified account on a specified network is blocked
|
|
* @param {number} networkId
|
|
* @param {string} account
|
|
* @throws {Error} if the account is blocked on mainnet
|
|
*/
|
|
export function throwIfAccountIsBlockListed (networkId, account) {
|
|
const mainnetId = 1
|
|
if (networkId !== mainnetId) {
|
|
return
|
|
}
|
|
|
|
const accountToCheck = account.toLowerCase()
|
|
if (blocklist.includes(accountToCheck)) {
|
|
throw new Error('Recipient is a public account')
|
|
}
|
|
}
|