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.
41 lines
1.0 KiB
41 lines
1.0 KiB
import ethUtil from 'ethereumjs-util'
|
|
import contractMap from 'eth-contract-metadata'
|
|
import {
|
|
REQUIRED_ERROR,
|
|
INVALID_RECIPIENT_ADDRESS_ERROR,
|
|
KNOWN_RECIPIENT_ADDRESS_ERROR,
|
|
INVALID_RECIPIENT_ADDRESS_NOT_ETH_NETWORK_ERROR,
|
|
} from '../../send.constants'
|
|
|
|
import {
|
|
isValidAddress,
|
|
isEthNetwork,
|
|
checkExistingAddresses,
|
|
} from '../../../../helpers/utils/util'
|
|
|
|
export function getToErrorObject(to, hasHexData = false, network) {
|
|
let toError = null
|
|
if (!to) {
|
|
if (!hasHexData) {
|
|
toError = REQUIRED_ERROR
|
|
}
|
|
} else if (!isValidAddress(to) && !toError) {
|
|
toError = isEthNetwork(network)
|
|
? INVALID_RECIPIENT_ADDRESS_ERROR
|
|
: INVALID_RECIPIENT_ADDRESS_NOT_ETH_NETWORK_ERROR
|
|
}
|
|
|
|
return { to: toError }
|
|
}
|
|
|
|
export function getToWarningObject(to, tokens = [], sendToken = null) {
|
|
let toWarning = null
|
|
if (
|
|
sendToken &&
|
|
(ethUtil.toChecksumAddress(to) in contractMap ||
|
|
checkExistingAddresses(to, tokens))
|
|
) {
|
|
toWarning = KNOWN_RECIPIENT_ADDRESS_ERROR
|
|
}
|
|
return { to: toWarning }
|
|
}
|
|
|