Tribute a Token

Launch a token where trading fees are directed to a Twitter creator.

1. Get the Creator Address

curl "https://claimr.app/api/wallet/lookup?handle=elonmusk"

Save address (for token launch) and twitterId (for collection).

2. Launch on Pump.fun

Use the Claimr address as the creator field when launching your token. This works with any launch method (web UI, SDK, etc.).

3. Monitor Fees

As the token trades, fees accumulate in the Pump.fun vault:

curl "https://claimr.app/api/wallet/lookup?handle=elonmusk"

Check balance.vault for uncollected fees.

4. Collect (Optional)

Move fees to the PDA so they're ready for withdrawal:

curl -X POST https://claimr.app/api/collect \
  -H "Content-Type: application/json" \
  -d '{"twitterId": "44196397"}'

5. Creator Withdraws

The creator visits claimr.apparrow-up-right, authenticates with Twitter, and withdraws to their wallet. A 2% protocol fee applies.

Notes

  • Store the twitterId from your initial lookup for subsequent collection calls

  • Consider notifying the creator that funds are available

Last updated