How to listen in Log with addresses on websockets
7 months ago by Wdd
const filter = {
address: ["address1", "address2"]
}
alchemy.ws.on(filter, (log, event) => {...});
The document says it's OK. But my code can not work like that if the address array length > 1.