We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57a515a commit e099270Copy full SHA for e099270
1 file changed
docs/base-chain/flashblocks/apps.mdx
@@ -214,7 +214,8 @@ Subscribe to real-time streams of Flashblocks data via WebSocket. Three subscrip
214
import WebSocket from 'ws';
215
import { createHash } from 'crypto';
216
217
-const ws = new WebSocket('wss://sepolia.flashblocks.base.org/ws');
+// `ws` should be a WebSocket RPC URL, not from the Flashblock WebSocket Stream
218
+const ws = new WebSocket('wss://my-node.node-provider.com/ws');
219
220
ws.on('open', () => {
221
console.log('Connected to Flashblocks WebSocket');
0 commit comments