Posts tagged #websocket

3 posts.

June 12, 2026 · 6 min read

How to Handle WebSocket Reconnections Without Losing Events

A WebSocket subscription that silently drops is worse than no subscription at all — you keep running, but events vanish into the gap. Here's how to build reconnect logic that detects the drop, backs off, re-subscribes, and backfills the missed events so your indexer never loses a log.

Read →
June 8, 2026 · 5 min read

Arbitrum WebSocket Gotchas We Hit in Production

Connecting to Arbitrum over WebSocket the same way you connect to Ethereum mainnet will bite you. The sequencer has no public mempool, newHeads is a firehose, and reconnecting isn't enough. Here's what actually breaks and how to handle it.

Read →