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.
24 lines
504 B
24 lines
504 B
import Config from './recipient-blacklist.js'
|
|
|
|
/** @module*/
|
|
export default {
|
|
checkAccount,
|
|
}
|
|
|
|
/**
|
|
* Checks if a specified account on a specified network is blacklisted.
|
|
@param {number} networkId
|
|
@param {string} account
|
|
*/
|
|
function checkAccount (networkId, account) {
|
|
|
|
const mainnetId = 1
|
|
if (networkId !== mainnetId) {
|
|
return
|
|
}
|
|
|
|
const accountToCheck = account.toLowerCase()
|
|
if (Config.blacklist.includes(accountToCheck)) {
|
|
throw new Error('Recipient is a public account')
|
|
}
|
|
}
|
|
|