Whenever I am trying to enter an address in my input Field , it automatically changes to one particular address only
My input field code <input type="text" placeholder="Enter address" onChange={(e)=>oppaddrchange(e)}/> And my handler function const oppaddrchange = (e)=>{ console.log(e.target.value); } The handler function will print whatever I type until I hit a valid address in the field. As soon as I enter a valid address it will automatically change to this address 0xf4b10f8D6F2659C0Eb2c2F559F62Fd90f0E853d6. No matter what…
Read more