You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a way to obtain generated events on sendTransaction call (in the same way I get it from contract.methods.method_name.send())?
This could be useful to observe events on deferred transactions (since I can't use regular send() on contract in this case) or when transfer goes through a fallback payable function (for example token minting generates events)?
That's what I'm getting now as a result from sendTransaction:
Sorry I didn't see that you were meaning the eth.sendTransaction. Sadly, this isn't possible. Just use the contract methods if you would like to have these events decoded.
Is there a way to obtain generated events on sendTransaction call (in the same way I get it from contract.methods.method_name.send())?
This could be useful to observe events on deferred transactions (since I can't use regular send() on contract in this case) or when transfer goes through a fallback payable function (for example token minting generates events)?
That's what I'm getting now as a result from sendTransaction:
The text was updated successfully, but these errors were encountered: