There is a way to get the result of a token transfer operation in Parity https://ethereum.stackexchange.com/a/9009
Is there a way to do it in geth by RPC?
There is a way to get the result of a token transfer operation in Parity https://ethereum.stackexchange.com/a/9009
Is there a way to do it in geth by RPC?
i'm guessing you want to check if the transaction was successful?
rpc: eth_getTransactionReceipt
https://wiki.parity.io/JSONRPC-eth-module#eth_gettransactionreceipt
web3: web3.eth.getTransactionReceipt('tx-hash-here')
https://web3js.readthedocs.io/en/v1.2.0/web3-eth.html#gettransactionreceipt
statusfield will be0x1(true) if they had enough to send or0x0(false) if it failed for some reason, like not having enough tokens. – j4ys0n Sep 05 '19 at 15:28