validate addresses in qr codes (#9916)

feature/default_network_editable
Brad Decker 4 years ago committed by GitHub
parent 35af9ea301
commit 3ebba0d411
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      ui/app/pages/send/send.component.js

@ -1,5 +1,6 @@
import React, { Component } from 'react'
import PropTypes from 'prop-types'
import ethUtil from 'ethereumjs-util'
import { debounce } from 'lodash'
import {
getAmountErrorObject,
@ -16,6 +17,7 @@ import AddRecipient from './send-content/add-recipient'
import SendContent from './send-content'
import SendFooter from './send-footer'
import EnsInput from './send-content/add-recipient/ens-input'
import { INVALID_RECIPIENT_ADDRESS_ERROR } from './send.constants'
export default class SendTransactionScreen extends Component {
static propTypes = {
@ -162,6 +164,7 @@ export default class SendTransactionScreen extends Component {
if (qrCodeData) {
if (qrCodeData.type === 'address') {
scannedAddress = qrCodeData.values.address.toLowerCase()
if (ethUtil.isValidAddress(scannedAddress)) {
const currentAddress = prevTo?.toLowerCase()
if (currentAddress !== scannedAddress) {
updateSendTo(scannedAddress)
@ -169,6 +172,11 @@ export default class SendTransactionScreen extends Component {
// Clean up QR code data after handling
qrCodeDetected(null)
}
} else {
scannedAddress = null
qrCodeDetected(null)
this.setState({ toError: INVALID_RECIPIENT_ADDRESS_ERROR })
}
}
}

Loading…
Cancel
Save