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
511 B
24 lines
511 B
const Config = require('./recipient-blacklist.js')
|
|
|
|
/** @module*/
|
|
module.exports = {
|
|
checkAccount,
|
|
}
|
|
|
|
/**
|
|
* Checks if a specified account on a specified network is blacklisted.
|
|
@param networkId {number}
|
|
@param account {string}
|
|
*/
|
|
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')
|
|
}
|
|
}
|
|
|