You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
530 B
19 lines
530 B
import blacklist from './recipient-blacklist'
|
|
|
|
/**
|
|
* Checks if a specified account on a specified network is blacklisted
|
|
* @param {number} networkId
|
|
* @param {string} account
|
|
* @throws {Error} if the account is blacklisted on mainnet
|
|
*/
|
|
export function throwIfAccountIsBlacklisted (networkId, account) {
|
|
const mainnetId = 1
|
|
if (networkId !== mainnetId) {
|
|
return
|
|
}
|
|
|
|
const accountToCheck = account.toLowerCase()
|
|
if (blacklist.includes(accountToCheck)) {
|
|
throw new Error('Recipient is a public account')
|
|
}
|
|
}
|
|
|