Enhanced Streams

Enhanced Streams Overview

Consume selected Solana events from the NoLimitNodes gRPC stream service.

Enhanced Streams publish selected swaps, Pumpfun events, transfers, and confirmed blocks.

Endpoint

stream-1.nln.clr3.org:443

Use TLS. Send x-api-key as gRPC metadata.

Service methods

MethodRequestResponse
ListTopicsEmpty requestTopic names, descriptions, and message types
SubscribeTopic and output formatServer stream of event envelopes

Pick Enhanced Streams or Program Streams

Use Enhanced Streams for the 18 curated topics listed in the catalog.

Use Program Streams for program-specific instructions and events across the 1,074-topic catalog.

NeedProduct
Combined DEX swap feedEnhanced Streams
Transfers and confirmed blocksEnhanced Streams
Instruction for one programProgram Streams
IDL-derived event schemaProgram Streams

Response envelope

message SubscribeResponse {  string topic = 1;  int64 partition = 2;  int64 offset = 3;  int64 timestamp_ms = 4;  bytes payload = 5;}

partition and offset identify the source position. timestamp_ms records source time in Unix milliseconds.

For JSON output, parse payload as UTF-8 JSON.