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
It will be common to have apps needing to listen to many different contracts, or to many different events. So the engine could allow both:
Retrieve events from a list of contracts, up to some limit
Retrieve events from a list of event names, up to some limit
It is better to allow these external apps to subscribe to many different sources on the same connection than to have them create many different separate connections. The later would use more resources.
Currently it is only possible to subscribe to events informing a single contract address for filter
But in some cases we are interested in many contracts, or not any specifically, but in some type of event
For these cases we could allow the subscription to events using only the event name as the filter
This allows the subscription to a type of event, regardless of which contract will emit it
This can be applied to
ListEvents
andListEventStream
The text was updated successfully, but these errors were encountered: