Replies: 1 comment 4 replies
-
Check out the |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Using the contract.on event listener I want to return the long input data string so that I can decode it on my end and get the amountIn and amountOutMin (unless this can be decoded in the call instead of having to do it manually)
Simple sample funtion of what I am trying
contract.on("Transfer", (from, to, data) => { console.log(from, to, data) })
I am not sure if its possible tor return input data like this or what param would be used in order to retrieve it.
Beta Was this translation helpful? Give feedback.
All reactions