The AMM where graduated PumpFun tokens trade
Stream every PumpSwap AMM interaction. Swaps, pool creation, liquidity additions and removals, fee collection, and protocol configuration. 47 decoded streams for the DEX that powers post-graduation PumpFun token trading.
pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEADecoded, 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.pump_swaps.admin_set_coin_creatorsolana.pump_swaps.admin_update_token_incentivessolana.pump_swaps.buysolana.pump_swaps.buy_exact_quote_insolana.pump_swaps.claim_cashbacksolana.pump_swaps.claim_token_incentivessolana.pump_swaps.close_user_volume_accumulatorsolana.pump_swaps.collect_coin_creator_feesolana.pump_swaps.create_configsolana.pump_swaps.create_poolsolana.pump_swaps.depositsolana.pump_swaps.disablesolana.pump_swaps.extend_accountsolana.pump_swaps.init_user_volume_accumulatorsolana.pump_swaps.migrate_pool_coin_creatorsolana.pump_swaps.sellsolana.pump_swaps.set_coin_creatorsolana.pump_swaps.set_reserved_fee_recipientssolana.pump_swaps.sync_user_volume_accumulatorsolana.pump_swaps.toggle_cashback_enabledsolana.pump_swaps.toggle_mayhem_modesolana.pump_swaps.transfer_creator_fees_to_pumpsolana.pump_swaps.update_adminsolana.pump_swaps.update_fee_configsolana.pump_swaps.withdrawsubscribe to any PumpSwap stream with a single command
grpcurl -plaintext \
-H 'x-eventstream-policy: {"version":1,"allowed_programs":"all","allowed_topics":"all"}' \
-d '{"topic":"solana.pump_swaps.admin_set_coin_creator","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.pump_swaps.admin_set_coin_creator",
format=pb.OutputFormat.JSON),
metadata=[
('x-eventstream-policy', policy)]):
event = json.loads(msg.payload)
print(f"slot={msg.slot}", event)NoLimitNodes provides 47 decoded real-time streams for the PumpSwap program on Solana (pAMMBay6...). 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.pump_swaps.admin_set_coin_creator and receive structured JSON or Protobuf data instantly. 25 instruction streams and 22 event streams cover every possible interaction with the PumpSwap 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 47 decoded streams.