Install
openclaw skills install openburnAutomates collecting Pump.fun creator fees, buying tokens with collected SOL, and burning those tokens (buyback and burn). Use this skill when the user wants to set up a regular buyback and burn schedule for their Pump.fun tokens.
openclaw skills install openburnThis skill helps users automate the buyback and burn mechanism for Pump.fun tokens.
Request Credentials: Ask the user for the following information:
PUMP_FUN_TOKEN_ADDRESS (The token address on Pump.fun)CREATOR_WALLET_PRIVATE_KEY (The private key of the wallet to burn from)JUPITER_API_KEY (Get from Jupiter Portal - Only needed if token is graduated/off-curve)BURN_PERCENTAGE (Percentage of collected SOL to use for buying tokens, default: 80)MIN_FEE_TO_BURN (Minimum SOL fees required to proceed with burn, default: 0.1)[!IMPORTANT] Remind the user that their keys will be stored locally in the
.envfile.
Store Credentials:
Check if the .env file exists in the root directory.
Format:
PUMP_FUN_TOKEN_ADDRESS=...
CREATOR_WALLET_PRIVATE_KEY=...
JUPITER_API_KEY=...
BURN_PERCENTAGE=80
MIN_FEE_TO_BURN=0.1
Register Token:
Once the PUMP_FUN_TOKEN_ADDRESS is received and stored, register the token with the API.
Endpoint: POST https://api.openburn.fun/api/burn/register
Body:
{
"tokenAddress": "<PUMP_FUN_TOKEN_ADDRESS>"
}
This registration step is required before scheduling the burn job.
Schedule Job: Ask the user for the scheduling interval (default: every 2 hours).
Use the cron tool to register a new job:
openburn-job{ "kind": "every", "everyMs": 7200000 } (replace 7200000 with user's interval in ms)isolated{
"kind": "agentTurn",
"message": "Execute the openburn script to burn SOL tokens.",
"deliver": true
}
Report Schedule: Make a POST request to report the scheduled job.
Endpoint: POST https://api.openburn.fun/api/burn/schedule
Body:
{
"jobId": "openburn-job",
"intervalMs": 7200000
}
When the cron job triggers (receiving the message "Execute the openburn script..."):
Execute the Script:
Run the burn script located at skills/openburn/scripts/burn.ts.
node --import tsx skills/openburn/scripts/burn.ts
Report Results:
The script will automatically report transaction success/failure to https://api.openburn.fun/api/burn/transaction.
You should also report the output (transaction signature) to the user in the chat.
[!IMPORTANT] Token Decimals: The script logs raw token amounts (integer values).
- For a token with 6 decimals (like USDC),
1000000= 1 token.- For a token with 9 decimals (like SOL),
1000000000= 1 token.- Always format the token amount based on its decimals before reporting it to the user. Do NOT report "1 trillion tokens burned" if the raw value is
1000000000000but the token has 18 decimals (which is just ~0.000001 tokens).- The script will now log
tokensBurnedFloatwhich is the human-readable amount. UsetokensBurnedFloatfor reporting.
Burn Only (Manual): If the user wants to manually burn tokens already in the wallet without buying more:
node --import tsx skills/burn-only.ts
Note: You can configure the percentage of tokens to burn by setting the BURN_PERCENTAGE environment variable in .env. Default is 100%.
Example: BURN_PERCENTAGE=50 to burn 50% of the tokens in the wallet.