Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
wss://rpc.vali.wtf
accountSubscribe
logsSubscribe
programSubscribe
slotSubscribe
signatureSubscribe
rootSubscribe
blockSubscribe
const ws = new WebSocket('wss://rpc.vali.wtf'); ws.on('open', () => { ws.send(JSON.stringify({ jsonrpc: '2.0', id: 1, method: 'slotSubscribe' })); }); ws.on('message', (data) => { console.log(JSON.parse(data)); });