A Metamask fork with Infura removed and default networks editable
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.
|
|
|
const {
|
|
|
|
REQUIRED_ERROR,
|
|
|
|
INVALID_RECIPIENT_ADDRESS_ERROR,
|
|
|
|
KNOWN_RECIPIENT_ADDRESS_ERROR,
|
|
|
|
} = require('../../send.constants')
|
|
|
|
const { isValidAddress } = require('../../../../util')
|
|
|
|
import { checkExistingAddresses } from '../../../pages/add-token/util'
|
|
|
|
|
|
|
|
const ethUtil = require('ethereumjs-util')
|
|
|
|
const contractMap = require('eth-contract-metadata')
|
|
|
|
|
|
|
|
function getToErrorObject (to, toError = null, hasHexData = false, tokens = [], selectedToken = null) {
|
|
|
|
if (!to) {
|
|
|
|
if (!hasHexData) {
|
|
|
|
toError = REQUIRED_ERROR
|
|
|
|
}
|
|
|
|
} else if (!isValidAddress(to) && !toError) {
|
|
|
|
toError = INVALID_RECIPIENT_ADDRESS_ERROR
|
|
|
|
} else if (selectedToken && (ethUtil.toChecksumAddress(to) in contractMap || checkExistingAddresses(to, tokens))) {
|
|
|
|
toError = KNOWN_RECIPIENT_ADDRESS_ERROR
|
|
|
|
}
|
|
|
|
|
|
|
|
return { to: toError }
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
getToErrorObject,
|
|
|
|
}
|