Launch →

Proof

Nothing here depends on trusting get biddy.

Every claim on this site maps to an account you can read on Solana. This page tells you which account, and what it should say.
01

The mechanism

pump.fun pays creator fees to a coin's creator. Its fee program lets that creator publish a fee-sharing config: a list of up to ten wallets and their basis points. Once shares are set, the program revokes the admin, so the split is immutable.

get biddy makes itself the creator of every coin launched here. Right after your create transaction lands, get biddy signs one more transaction: create the config, then set shares to 80% for the paired collection's sweep wallet and 20% for the protocol. No treasury holds the money in between.

02

The facts

Curve creator
biddy authority (fixed key), not the launcher
Fee-sharing program
pump.fun fee program: create_fee_sharing_config + update_fee_shares
Sweep wallet share
80% (8000 bps)
Protocol share
20% (2000 bps)
Who can change it
Nobody: the program revokes admin after update_fee_shares
Sweep wallet per collection
Derived once from the authority key; one address forever
What a sweep wallet may buy
Only NFTs whose verified collection is the listed collection mint
Metadata
Pinned through pump.fun’s own IPFS endpoint
03

The keys

biddy authority (curve creator)
AZCwz8yGKhsdfgiKm1ggtrWiDQGvpRy1pJP3guAXLPve
Famous Fox Federation sweep wallet
7P93hSrx58CqEESMdvbx7gLhbAjaqdmJMviExhqcdHbj
Degenerate Ape Academy sweep wallet
AsGNS9iLVL7Ym1JKvy8odAej6XfSiSWMca8zJRskeqgB
Cets on Creck sweep wallet
4HzvevN2hZUPY8zQLQ2yoxAc6mLSYuQZktBZi3wiv3jn
Lifinity Flares sweep wallet
J1fXfVdftPxKyYEZR3Qe1UpfVULHS2UDmZ1m6rG2UYes
Retardio Cousins sweep wallet
AxRK3iyTXQiZeD7yiNpc1du2hHyzgBgXrTaKUxZWkPi6
Taiyo Robotics sweep wallet
14CmCNX6q1gAcJuuzJW38Bptfy3m6EvHY87XfvzunVU3
Galactic Geckos sweep wallet
ExYLrnZnEqiJ5zib4VUU63Gdi8wBHiJs7pPCzAxBSaW4
Transdimensional Fox Federation sweep wallet
FTHqoYXmZEZhwFCw4eA7ZpwJMCXFk1a3sSifiNEmHbCs
Degen Fat Cats sweep wallet
2q1rAMsCM112fATWXzW2rNg1vUQ34N3mA8PY4nLigU9R
The Stoned Frogs sweep wallet
G6n1pLFiMQGAa6s3nNedJSJhWKw6SKsFNtfVJzb62dNV
Bozo Collective sweep wallet
AEpAVzAo3p7kjBtcB6CuhcjqxRbnXNXAkDswSV1GZa9b
04

Verify a coin yourself

  1. Open the coin on get biddy and copy its mint. The Launches page lists every one.
  2. Read the bonding curve: fetchBondingCurve(mint).creator must equal the biddy authority above. This is the account pump.fun pays.
  3. Derive feeSharingConfigPda(mint) with @pump-fun/pump-sdk and fetch it. Decode with PUMP_SDK.decodeSharingConfig: two shareholders, 8000 and 2000 bps, adminRevoked: true.
  4. The 8000-bps address must be the collection's sweep wallet listed above. Watch that wallet on Solscan: every outgoing transfer is an NFT purchase, and each one is linked from the collection page.
import { Connection, PublicKey } from '@solana/web3.js'
import { OnlinePumpSdk, PUMP_SDK, feeSharingConfigPda } from '@pump-fun/pump-sdk'

const conn = new Connection('https://api.mainnet-beta.solana.com')
const mint = new PublicKey('<coin mint>')

const curve = await new OnlinePumpSdk(conn).fetchBondingCurve(mint)
console.log('creator', curve.creator.toBase58())

const info = await conn.getAccountInfo(feeSharingConfigPda(mint))
const cfg = PUMP_SDK.decodeSharingConfig(info)
console.log(cfg.adminRevoked, cfg.shareholders.map(s => [s.address.toBase58(), s.shareBps]))
05

What the sweep wallet does

A sweep wallet receives its share whenever pump.fun distributes a coin's creator fees. It buys the cheapest verified listing of its collection whenever it can afford one, and the purchase transaction is recorded on the collection page. Holders of any paired coin vote, weighted by their on-chain balance, on whether the wallet keeps sweeping, holds, or relists.

Purchases require the wallet to sign, so they run from the operator's side; the wallet never holds anything but SOL and the NFTs it bought, and its full history is public.