mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
25 lines
497 B
JavaScript
25 lines
497 B
JavaScript
import blacklist from './recipient-blacklist'
|
|
|
|
/** @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 (blacklist.includes(accountToCheck)) {
|
|
throw new Error('Recipient is a public account')
|
|
}
|
|
}
|