create-token
Generate a new token on the Pump.fun platform by specifying name, symbol, description, initial buy amount in SOL, and optional image URL. Ideal for deploying Solana-based assets efficiently.
Instructions
Create a new Pump.fun token
Input Schema
Name | Required | Description | Default |
---|---|---|---|
accountName | No | Name of the account to use (will be created if it doesn't exist) | default |
description | Yes | Token description | |
imageUrl | No | URL to token image (optional) | |
initialBuyAmount | Yes | Initial buy amount in SOL | |
name | Yes | Token name | |
symbol | Yes | Token symbol |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"accountName": {
"default": "default",
"description": "Name of the account to use (will be created if it doesn't exist)",
"type": "string"
},
"description": {
"description": "Token description",
"type": "string"
},
"imageUrl": {
"description": "URL to token image (optional)",
"type": "string"
},
"initialBuyAmount": {
"description": "Initial buy amount in SOL",
"minimum": 0.0001,
"type": "number"
},
"name": {
"description": "Token name",
"type": "string"
},
"symbol": {
"description": "Token symbol",
"type": "string"
}
},
"required": [
"name",
"symbol",
"description",
"initialBuyAmount"
],
"type": "object"
}