Meteora's automated market maker with multi-pool architecture
Stream every Meteora AMM interaction. Swaps, pool operations, liquidity management, fee collection, and admin controls. 61 decoded streams for Meteora's core AMM infrastructure.
cpamdpZCGKUy5JxQXB4dcpGPiikHawvSWAd6mEn1sGGDecoded, 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.meteora_amm.add_liquiditysolana.meteora_amm.claim_position_feesolana.meteora_amm.claim_protocol_feesolana.meteora_amm.claim_rewardsolana.meteora_amm.close_configsolana.meteora_amm.close_operator_accountsolana.meteora_amm.close_positionsolana.meteora_amm.close_token_badgesolana.meteora_amm.create_configsolana.meteora_amm.create_dynamic_configsolana.meteora_amm.create_operator_accountsolana.meteora_amm.create_positionsolana.meteora_amm.create_token_badgesolana.meteora_amm.dummy_ixsolana.meteora_amm.fix_config_fee_paramssolana.meteora_amm.fix_pool_fee_paramssolana.meteora_amm.fix_pool_layout_versionsolana.meteora_amm.fund_rewardsolana.meteora_amm.initialize_customizable_poolsolana.meteora_amm.initialize_poolsolana.meteora_amm.initialize_pool_with_dynamic_configsolana.meteora_amm.initialize_rewardsolana.meteora_amm.lock_inner_positionsolana.meteora_amm.lock_positionsolana.meteora_amm.permanent_lock_positionsolana.meteora_amm.refresh_vestingsolana.meteora_amm.remove_all_liquiditysolana.meteora_amm.remove_liquiditysolana.meteora_amm.set_pool_statussolana.meteora_amm.split_positionsolana.meteora_amm.split_position2solana.meteora_amm.swapsolana.meteora_amm.swap2solana.meteora_amm.update_pool_feessolana.meteora_amm.update_reward_durationsolana.meteora_amm.update_reward_fundersolana.meteora_amm.withdraw_ineligible_rewardsolana.meteora_amm.zap_protocol_feesubscribe to any Meteora AMM stream with a single command
grpcurl -plaintext \
-H 'x-eventstream-policy: {"version":1,"allowed_programs":"all","allowed_topics":"all"}' \
-d '{"topic":"solana.meteora_amm.add_liquidity","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.meteora_amm.add_liquidity",
format=pb.OutputFormat.JSON),
metadata=[
('x-eventstream-policy', policy)]):
event = json.loads(msg.payload)
print(f"slot={msg.slot}", event)NoLimitNodes provides 61 decoded real-time streams for the Meteora AMM program on Solana (cpamdpZC...). 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.meteora_amm.add_liquidity and receive structured JSON or Protobuf data instantly. 38 instruction streams and 23 event streams cover every possible interaction with the Meteora AMM 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 61 decoded streams.