aboutsummaryrefslogblamecommitdiffstats
path: root/ui/app/components/send_/send-content/send-to-row/send-to-row.utils.js
blob: 6b90a9f098415208e640fc24a566e91bb8c3f37b (plain) (tree)
1
2
3
4
5
6
7
8
9



                                   

                                                      
                                                
            
                            
                                               
                                             
   
 



                        
                   
 
const {
  REQUIRED_ERROR,
  INVALID_RECIPIENT_ADDRESS_ERROR,
} = require('../../send.constants')
const { isValidAddress } = require('../../../../util')

function getToErrorObject (to, toError = null) {
  if (!to) {
    toError = REQUIRED_ERROR
  } else if (!isValidAddress(to) && !toError) {
    toError = INVALID_RECIPIENT_ADDRESS_ERROR
  }

  return { to: toError }
}

module.exports = {
  getToErrorObject,
}