pumperp

How it works

End-to-end flow from Clanker launch to buyback and burn.

pumperp collapses what was two steps on Solana Fission (Pump.fun launch, then register) into one Clanker deploy with fee routing configured at creation time.

Three phases

PhaseWhoWhat happens
LaunchCreatorDeploy Clanker token via pumperp; pick fee split; token enrolled in ProtocolRegistry
AccrueTradersVolume generates LP fees in USDC; protocol and creator shares accumulate in Clanker FeeLocker
EngineProtocol walletWorkers claim, split, open/manage Avantis desks, execute buybacks and burns

System flow

sequenceDiagram
  participant C as Creator
  participant P as pumperp API
  participant CL as Clanker v4
  participant R as ProtocolRegistry
  participant W as Workers
  participant A as Avantis

  C->>P: POST /tokens/launch
  P->>CL: Deploy token + USDC pool + fee config
  P->>R: enroll(token, underlying, …)
  Note over W: Autonomous loop
  W->>CL: collectRewards + claim USDC
  W->>W: split PUM / DIEM / perp / creator
  W->>A: open/increase desk (USDC collateral)
  W->>W: PUM buyback + burn
  A-->>W: desk profit
  W->>W: creator token buyback + burn

Solana Fission vs pumperp

Fission (original):

  1. Launch on Pump.fun with 100% fees → protocol wallet
  2. Register mint with Fission (onchain verification)
  3. Engine: 70% Jupiter perps, 30% FISSION burn

pumperp:

  1. Launch on Clanker via pumperp (fee recipients + registry enroll in one flow)
  2. Engine: configurable split with 5% PUM fixed; perp slice funds per-token desks; profits burn creator token and PUM

What creators configure at launch

  • Token metadata — name, symbol, image, socials
  • Reward split — how the non-PUM 95% divides across DIEM, perp-agent, and creator (must sum to 95%)
  • Optional creator buy — initial USDC purchase of your token (no vault)

Desk market and direction are not fixed at launch. The perp agent scans ETH/BTC momentum and opens the desk on the strongest signal (see Agents & signals).

Next

On this page