PROGRAM STREAMSLIVELaunchpad

PumpSwap Streams

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.

pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA
View Pricing
47
Total Streams
decoded and live
25
Instructions
every program call
22
Events
program log events
<50ms
Latency
on-chain to your app

Why Stream PumpSwap 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

Arbitrage bots comparing PumpSwap vs Raydium/Orca pricing
Post-graduation trading monitors
Liquidity depth analytics for graduated tokens
Volume tracking across PumpSwap pools
Fee analysis and LP performance tools
Automated market making on graduated tokens

Available Streams

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

AdminSetCoinCreatorinstruction
solana.pump_swaps.admin_set_coin_creator
AdminUpdateTokenIncentivesinstruction
solana.pump_swaps.admin_update_token_incentives
Buyinstruction
solana.pump_swaps.buy
BuyExactQuoteIninstruction
solana.pump_swaps.buy_exact_quote_in
ClaimCashbackinstruction
solana.pump_swaps.claim_cashback
ClaimTokenIncentivesinstruction
solana.pump_swaps.claim_token_incentives
CloseUserVolumeAccumulatorinstruction
solana.pump_swaps.close_user_volume_accumulator
CollectCoinCreatorFeeinstruction
solana.pump_swaps.collect_coin_creator_fee
CreateConfiginstruction
solana.pump_swaps.create_config
CreatePoolinstruction
solana.pump_swaps.create_pool
Depositinstruction
solana.pump_swaps.deposit
Disableinstruction
solana.pump_swaps.disable
ExtendAccountinstruction
solana.pump_swaps.extend_account
InitUserVolumeAccumulatorinstruction
solana.pump_swaps.init_user_volume_accumulator
MigratePoolCoinCreatorinstruction
solana.pump_swaps.migrate_pool_coin_creator
Sellinstruction
solana.pump_swaps.sell
SetCoinCreatorinstruction
solana.pump_swaps.set_coin_creator
SetReservedFeeRecipientsinstruction
solana.pump_swaps.set_reserved_fee_recipients
SyncUserVolumeAccumulatorinstruction
solana.pump_swaps.sync_user_volume_accumulator
ToggleCashbackEnabledinstruction
solana.pump_swaps.toggle_cashback_enabled
ToggleMayhemModeinstruction
solana.pump_swaps.toggle_mayhem_mode
TransferCreatorFeesToPumpinstruction
solana.pump_swaps.transfer_creator_fees_to_pump
UpdateAdmininstruction
solana.pump_swaps.update_admin
UpdateFeeConfiginstruction
solana.pump_swaps.update_fee_config
Withdrawinstruction
solana.pump_swaps.withdraw

Start in 30 Seconds

subscribe to any PumpSwap stream with a single command

grpcurl
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/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.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)

Real-Time PumpSwap Data for Solana Developers

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.

Start streaming PumpSwap data

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

All Programs