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,
|
|
|
|
} = require('../../send.constants')
|
|
|
|
const { isValidAddress } = require('../../../../util')
|
|
|
|
|
|
|
|
function getToErrorObject (to) {
|
|
|
|
let toError = null
|
|
|
|
|
|
|
|
if (!to) {
|
|
|
|
toError = REQUIRED_ERROR
|
|
|
|
} else if (!isValidAddress(to)) {
|
|
|
|
toError = INVALID_RECIPIENT_ADDRESS_ERROR
|
|
|
|
}
|
|
|
|
|
|
|
|
return { to: toError }
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
getToErrorObject,
|
|
|
|
}
|