Replies: 1 comment 3 replies
-
Oh yes! That is a mistake in the example. It is listening to transaction from "ethers.eth". I'll update that. Your code example looks fine. Can you console.log the |
Beta Was this translation helpful? Give feedback.
3 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.
-
documentation issue
In Ethers v6 / Getting started / Contracts / Listening to Events you define:
isn't that filter actually listening for transfers from
"ethers.eth"
? Also, other areas of the documentation and discussion here suggest thatfilter = contract.filters.Transfer(null, "ethers.eth")
is the proper way to create this filter. What are the semantics of the various shape of arguments accepted by the filter?my issue
I can't seem to get the listener arguments working for the following event:
Is there something special about bytes32 in that these can't be decoded into the arguments of the listener?
Beta Was this translation helpful? Give feedback.
All reactions