mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
25 lines
520 B
JavaScript
25 lines
520 B
JavaScript
const Config = require('./recipient-blacklist-config.json')
|
|
|
|
/** @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')
|
|
}
|
|
}
|