WebSocketProvider in FallbackProvider causes polling
Suggestion
When using a WebSocketProvider within a FallbackProvider, any event listeners attached to the FallbackProvider will use polling instead of WebSocket subscriptions. For real-time event subscriptions, create listeners directly on the WebSocketProvider instance instead.
"A WebSocket provider is fully capable as a stateless (making individual RPC calls) provider, so when passed to fallback provider, it simple uses its stateless API. But the value of the WebSocketProvider in general is its statefulness (maintaining an ongoing connection to receive realtime events/updates like eth_subscribe)."
See https://discord.com/channels/717003406484701255/717009571536699571/1332489217665929237 in the ethers discord for further context.
Can i solve this issue please