home/program-streams/meteora_amm
PROGRAM STREAMSLIVEDEX

Meteora AMM Streams

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.

cpamdpZCGKUy5JxQXB4dcpGPiikHawvSWAd6mEn1sGG
View Pricing
61
Total Streams
decoded and live
38
Instructions
every program call
23
Events
program log events
<50ms
Latency
on-chain to your app

Why Stream Meteora AMM from NoLimitNodes

Decoded, typed, delivered. No parsing, no delays.

Every Instruction Decoded

Every on-chain instruction parsed into typed fields. Accounts, arguments, and metadata, ready to use.

Every Event Captured

Program events (logs) decoded into structured data. No log parsing, no regex, just typed fields.

Sub-50ms Latency

Events arrive at your app within 50 milliseconds of on-chain confirmation. Fast enough for trading.

JSON or Protobuf

Choose JSON for easy debugging or Protobuf for maximum performance. Same data, your choice of format.

No IDL Decoding Needed

We handle the IDL. You get clean, decoded data. No anchor, no borsh, no manual deserialization.

Works With Your Stack

JavaScript, Python, Rust, Go. Any language with gRPC support. Code examples included.

What You Can Build

Swap monitoring and volume analytics
Pool creation detection
LP position management
Fee optimization
Arbitrage across Meteora pool types

Available Streams

Click any stream to see its full schema, accounts, and code examples.

AddLiquidityinstruction
solana.meteora_amm.add_liquidity
ClaimPositionFeeinstruction
solana.meteora_amm.claim_position_fee
ClaimProtocolFeeinstruction
solana.meteora_amm.claim_protocol_fee
ClaimRewardinstruction
solana.meteora_amm.claim_reward
CloseConfiginstruction
solana.meteora_amm.close_config
CloseOperatorAccountinstruction
solana.meteora_amm.close_operator_account
ClosePositioninstruction
solana.meteora_amm.close_position
CloseTokenBadgeinstruction
solana.meteora_amm.close_token_badge
CreateConfiginstruction
solana.meteora_amm.create_config
CreateDynamicConfiginstruction
solana.meteora_amm.create_dynamic_config
CreateOperatorAccountinstruction
solana.meteora_amm.create_operator_account
CreatePositioninstruction
solana.meteora_amm.create_position
CreateTokenBadgeinstruction
solana.meteora_amm.create_token_badge
DummyIxinstruction
solana.meteora_amm.dummy_ix
FixConfigFeeParamsinstruction
solana.meteora_amm.fix_config_fee_params
FixPoolFeeParamsinstruction
solana.meteora_amm.fix_pool_fee_params
FixPoolLayoutVersioninstruction
solana.meteora_amm.fix_pool_layout_version
FundRewardinstruction
solana.meteora_amm.fund_reward
InitializeCustomizablePoolinstruction
solana.meteora_amm.initialize_customizable_pool
InitializePoolinstruction
solana.meteora_amm.initialize_pool
InitializePoolWithDynamicConfiginstruction
solana.meteora_amm.initialize_pool_with_dynamic_config
InitializeRewardinstruction
solana.meteora_amm.initialize_reward
LockInnerPositioninstruction
solana.meteora_amm.lock_inner_position
LockPositioninstruction
solana.meteora_amm.lock_position
PermanentLockPositioninstruction
solana.meteora_amm.permanent_lock_position
RefreshVestinginstruction
solana.meteora_amm.refresh_vesting
RemoveAllLiquidityinstruction
solana.meteora_amm.remove_all_liquidity
RemoveLiquidityinstruction
solana.meteora_amm.remove_liquidity
SetPoolStatusinstruction
solana.meteora_amm.set_pool_status
SplitPositioninstruction
solana.meteora_amm.split_position
SplitPosition2instruction
solana.meteora_amm.split_position2
Swapinstruction
solana.meteora_amm.swap
Swap2instruction
solana.meteora_amm.swap2
UpdatePoolFeesinstruction
solana.meteora_amm.update_pool_fees
UpdateRewardDurationinstruction
solana.meteora_amm.update_reward_duration
UpdateRewardFunderinstruction
solana.meteora_amm.update_reward_funder
WithdrawIneligibleRewardinstruction
solana.meteora_amm.withdraw_ineligible_reward
ZapProtocolFeeinstruction
solana.meteora_amm.zap_protocol_fee

Start in 30 Seconds

subscribe to any Meteora AMM stream with a single command

grpcurl
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/Subscribe
Python
import 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)

Real-Time Meteora AMM Data for Solana Developers

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.

Start streaming Meteora AMM data

Get your API key and subscribe to any of 61 decoded streams.

All Programs