Replies: 1 comment
-
An event is not necessarily emitted on event transactions, for example, normal ether transfers do not emit events. If your contract emits an event on every function it has then you can have a wildcard filter const eventFilter = {
address: '0x123',
topics: []
} |
Beta Was this translation helpful? Give feedback.
0 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.
-
i want to use https://docs.ethers.io/v5/api/contract/contract/#Contract-on and listen to any event for any new incoming transactions on a given contract by subscribing over wss.
does it detect both eip-1559 & non eip-1559 transactions?
does it detect internal transactions ?
is there any timeout or is it bound by rpc provider regarding for how i can keep wss connection open ?
is it client agnostic ?
thanks, i am not able to find answers to these anywhere
Beta Was this translation helpful? Give feedback.
All reactions