I'm writing a Web3j app and I'd like to perform a transfer of funds and put a short text string in the hex-encoded data field of the transaction. I'm successfully transferring the funds, but there doesn't seem to be a parameter to put this extra data. How do I do this?
Once this works, I believe that I can see my string by looking at
txObject.getInput();
(of course, this has to be properly decoded) Is this correct?