Skip to main content
Transfer authority of your PumpFun token with Launchpad Trade API
POST/pumpfun/transfer
Hand over all management rights for a PumpFun token to a different wallet. The previous admin permanently loses the ability to update, transfer, or revoke.
This action is irreversible. Once transferred, the previous admin permanently loses all management rights. There is no way to undo this.

Quick Start

curl -X POST https://api.launchpad.trade/pumpfun/transfer \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "tokenAddress": "7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr",
    "adminPrivateKey": "YOUR_ADMIN_PRIVATE_KEY",
    "newOwner": "9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM"
  }'

Parameters

ParameterTypeDescription
tokenAddressstringSolana address of the PumpFun token to transfer
adminPrivateKeystringPrivate key of the current admin wallet
newOwnerstringPublic address of the wallet that will become the new admin. Must be different from the current admin

What Is Authority Transfer?

The admin wallet (the wallet that created the token) has exclusive rights to manage fee shares, transfer authority, and revoke the token. This endpoint transfers those rights to a different wallet.
  • Full transfer — the new owner gets all admin rights (update, transfer, revoke)
  • Immediate — takes effect as soon as the transaction is confirmed
  • Claim unaffected — if the old admin is a fee recipient, they can still claim their fees

What Changes?

ActionPrevious adminNew owner
Update fee sharesNoYes
Transfer authorityNoYes
Revoke tokenNoYes
Claim fees (if recipient)YesYes

Response

{
  "success": true,
  "data": {
    "tokenAddress": "7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr",
    "signature": "5UfDuX7nPqR3kLm8vYz...",
    "slot": 234567890,
    "networkLatency": 38,
    "confirmLatency": 485,
    "previousOwner": "7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU",
    "newOwner": "9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM"
  }
}

Errors

{
  "success": false,
  "error": {
    "code": "NOT_ADMIN",
    "message": "Wallet is not the token admin"
  }
}
CodeMessageCause
INVALID_TOKENInvalid token addressToken address is not a valid Solana address
INVALID_WALLETInvalid admin private keyAdmin private key is invalid
INVALID_NEW_OWNERInvalid new owner addressNew owner address is not valid
NOT_ADMINWallet is not the token adminWallet does not have admin authority
SAME_OWNERNew owner is the same as currentCannot transfer to yourself
REVOKEDToken update authority has been revokedToken can no longer be modified
RATE_LIMITRate limit exceededToo many requests — see Rate Limits
INTERNAL_ERRORInternal server errorRetry or contact support

Notes

Double-check the newOwner address before sending. This action is irreversible — there is no way to reclaim admin rights once transferred.
  • The previous admin retains fee claiming rights if they are still a registered fee recipient
  • The admin wallet pays the standard Solana transaction fee

What’s Next?

Update Fee Shares

Configure fee recipients and percentages

Revoke Authority

Permanently lock your token configuration

Claim Fees

Claim your share of accumulated fees

Create Token

Deploy a new token on PumpFun