mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
22 lines
463 B
JavaScript
22 lines
463 B
JavaScript
const {
|
|
REQUIRED_ERROR,
|
|
INVALID_RECIPIENT_ADDRESS_ERROR,
|
|
} = require('../../send.constants')
|
|
const { isValidAddress } = require('../../../../util')
|
|
|
|
function getToErrorObject (to, toError = null, hasHexData = false) {
|
|
if (!to) {
|
|
if (!hasHexData) {
|
|
toError = REQUIRED_ERROR
|
|
}
|
|
} else if (!isValidAddress(to) && !toError) {
|
|
toError = INVALID_RECIPIENT_ADDRESS_ERROR
|
|
}
|
|
|
|
return { to: toError }
|
|
}
|
|
|
|
module.exports = {
|
|
getToErrorObject,
|
|
}
|