mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
92971d3c87
* Update eslint-plugin-import version * Convert JS files to use ESM * Update ESLint rules to check imports * Fix test:unit:global command env * Cleanup mock-dev script
25 lines
504 B
JavaScript
25 lines
504 B
JavaScript
import Config from './recipient-blacklist.js'
|
|
|
|
/** @module*/
|
|
export default {
|
|
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')
|
|
}
|
|
}
|