sell-token
Execute token sales on the Pump.fun platform by specifying token address and amount. Manage slippage tolerance and select accounts for secure transaction processing.
Instructions
Sell a Pump.fun token
Input Schema
Name | Required | Description | Default |
---|---|---|---|
accountName | No | Name of the account to use | default |
sellAmount | Yes | Amount of tokens to sell (0 for all) | |
slippageBasisPoints | No | Slippage tolerance in basis points (1% = 100) | |
tokenAddress | Yes | The token's mint address |
Input Schema (JSON Schema)
{
"properties": {
"accountName": {
"default": "default",
"description": "Name of the account to use",
"type": "string"
},
"sellAmount": {
"description": "Amount of tokens to sell (0 for all)",
"minimum": 0,
"type": "number"
},
"slippageBasisPoints": {
"default": 100,
"description": "Slippage tolerance in basis points (1% = 100)",
"type": "number"
},
"tokenAddress": {
"description": "The token's mint address",
"type": "string"
}
},
"required": [
"tokenAddress",
"sellAmount"
],
"type": "object"
}