Let's say we have 1000 contracts with the same type of event 'Event'. I can subscribe to each one of them individually using contract.listen('Event'), but I cannot use this if I want to create a single handshake that sends me every 'Event' happening in each of them. For that I would need to create 1000 contracts and then call .listen('Event') a 1000 times.
Is there a way to do something like w3.listen([contracts],'Event')? Or some feasible way to subscribe to so many contracts at the same time?
Thanks