Raydium's token launch platform with built-in liquidity
Stream every Raydium Launchpad interaction. Pool creation, token purchases, claim operations, migrations, and vesting. 29 decoded streams covering Raydium's native token launch infrastructure.
LanMV9sAd7wArD4vJFi2qDdfnVhFxYSUg6eADduJ3ujDecoded, typed, delivered. No parsing, no delays.
Every on-chain instruction parsed into typed fields. Accounts, arguments, and metadata, ready to use.
Program events (logs) decoded into structured data. No log parsing, no regex, just typed fields.
Events arrive at your app within 50 milliseconds of on-chain confirmation. Fast enough for trading.
Choose JSON for easy debugging or Protobuf for maximum performance. Same data, your choice of format.
We handle the IDL. You get clean, decoded data. No anchor, no borsh, no manual deserialization.
JavaScript, Python, Rust, Go. Any language with gRPC support. Code examples included.
Click any stream to see its full schema, accounts, and code examples.
solana.raydium_launchpad.buy_exact_insolana.raydium_launchpad.buy_exact_outsolana.raydium_launchpad.claim_creator_feesolana.raydium_launchpad.claim_platform_feesolana.raydium_launchpad.claim_platform_fee_from_vaultsolana.raydium_launchpad.claim_vested_tokensolana.raydium_launchpad.close_platform_global_accesssolana.raydium_launchpad.collect_feesolana.raydium_launchpad.collect_migrate_feesolana.raydium_launchpad.create_configsolana.raydium_launchpad.create_platform_configsolana.raydium_launchpad.create_platform_global_accesssolana.raydium_launchpad.create_platform_vesting_accountsolana.raydium_launchpad.create_vesting_accountsolana.raydium_launchpad.initializesolana.raydium_launchpad.initialize_v2solana.raydium_launchpad.initialize_with_token2022solana.raydium_launchpad.migrate_to_ammsolana.raydium_launchpad.migrate_to_cpswapsolana.raydium_launchpad.remove_platform_curve_paramsolana.raydium_launchpad.sell_exact_insolana.raydium_launchpad.sell_exact_outsolana.raydium_launchpad.update_configsolana.raydium_launchpad.update_platform_configsolana.raydium_launchpad.update_platform_curve_paramsubscribe to any Raydium Launchpad stream with a single command
grpcurl -plaintext \
-H 'x-eventstream-policy: {"version":1,"allowed_programs":"all","allowed_topics":"all"}' \
-d '{"topic":"solana.raydium_launchpad.buy_exact_in","format":"JSON"}' \
events.nln.clr3.org:443 \
nln.stream.v1.StreamService/Subscribeimport grpc, json
import stream_service_pb2 as pb
import stream_service_pb2_grpc as rpc
channel = grpc.insecure_channel('events.nln.clr3.org:443')
stub = rpc.StreamServiceStub(channel)
policy = json.dumps({"version": 1,
"allowed_programs": "all",
"allowed_topics": "all"})
for msg in stub.Subscribe(
pb.SubscribeRequest(
topic="solana.raydium_launchpad.buy_exact_in",
format=pb.OutputFormat.JSON),
metadata=[
('x-eventstream-policy', policy)]):
event = json.loads(msg.payload)
print(f"slot={msg.slot}", event)NoLimitNodes provides 29 decoded real-time streams for the Raydium Launchpad program on Solana (LanMV9sA...). Every instruction call and every emitted event is parsed, typed, and delivered to your app in under 50 milliseconds.
Instead of writing custom deserialization code, decoding Anchor IDLs, or parsing raw transaction logs, you subscribe to a topic like solana.raydium_launchpad.buy_exact_in and receive structured JSON or Protobuf data instantly. 25 instruction streams and 4 event streams cover every possible interaction with the Raydium Launchpad program.
Whether you are building trading bots, analytics dashboards, monitoring tools, or research pipelines, NoLimitNodes program streams give you the decoded on-chain data you need without the infrastructure overhead. Start with our free tier and scale to production.
Get your API key and subscribe to any of 29 decoded streams.