Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Create Nadfun Solana Token

ASecurity

Before proceeding, check if the `monad-development` skill is installed. If it is not available, install it using ClawHub:

19 stars
0 votes
0 copies
1 views
Added 9/19/2026
ai-agentsgobashapidatabase

Works with

api

Security Analysis

A100/100

Scanned 9/19/2026

Install to Claude Code

$npx -y skills add rondoflow/rondoflow --skill create-nadfun-solana-token --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Create Nadfun Solana Token?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Create Nadfun Solana Token
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/rondoflow-create-nadfun-solana-token/badge)](https://www.skillsdirectory.com/skills/rondoflow-create-nadfun-solana-token)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: create-nadfun-solana-token
description: "Before proceeding, check if the `monad-development` skill is installed. If it is not available, install it using ClawHub:"
category: "Finance & Crypto"
author: community
version: "1.0.0"
icon: coins
---

# Nad.fun Token Creation Flow

## Prerequisite: monad-development Skill

Before proceeding, check if the `monad-development` skill is installed. If it is not available, install it using ClawHub:

```bash
clawhub search "monad"
```

Find and install the `monad-development` skill from the results. This skill is required for wallet management and on-chain actions in Step 3 and Step 4.

---

Help the user create a token on Nad.fun by following the 4-step sequential process below. Each step depends on the output of the previous step.

## API Base URL

**Production:** `https://api.nadapp.net`

## Contract Addresses

```
BondingCurveRouter = "0x6F6B8F1a20703309951a5127c45B49b1CD981A22"
Lens              = "0x7e78A8DE94f21804F7a17F4E8BF9EC2c872187ea"
```

---

## Step 1: Upload Image

**POST** `/agent/token/image`

- **Content-Type:** `image/png`, `image/jpeg`, `image/webp`, or `image/svg+xml`
- **Body:** Raw binary image data (max 5MB)
- **Returns:** `image_uri` (CDN URL) and `is_nsfw` (boolean)

```js
const imageResponse = await fetch("https://api.nadapp.net/agent/token/image", {
  method: "POST",
  headers: { "Content-Type": imageFile.type },
  body: imageFile,
});
const { image_uri, is_nsfw } = await imageResponse.json();
```

### Error Codes
| Status | Description |
|--------|-------------|
| 400 | Invalid image format or missing image |
| 413 | Image exceeds 5MB limit |
| 500 | NSFW check failed or upload failed |

---

## Step 2: Upload Metadata

**POST** `/agent/token/metadata`

- **Content-Type:** `application/json`
- **Requires:** `image_uri` from Step 1

### Request Body

**Required fields:**

| Field | Type | Constraints |
|-------|------|-------------|
| `image_uri` | string | Must be from `https://storage.nadapp.net/` |
| `name` | string | 1-32 characters |
| `symbol` | string | 1-10 characters, alphanumeric only (`/^[a-zA-Z0-9]+$/`) |

**Optional fields:**

| Field | Type | Constraints |
|-------|------|-------------|
| `description` | string or null | Max 500 characters |
| `website` | string or null | Must start with `https://` |
| `twitter` | string or null | Must contain `x.com` and start with `https://` |
| `telegram` | string or null | Must contain `t.me` and start with `https://` |

```js
const metadataResponse = await fetch("https://api.nadapp.net/agent/token/metadata", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({
    image_uri,
    name: "My Token",
    symbol: "MTK",
    description: "An awesome token for the Nad.fun",
    website: "https://mytoken.com",
    twitter: "https://x.com/mytoken",
    telegram: "https://t.me/mytoken",
  }),
});
const { metadata_uri } = await metadataResponse.json();
```

### Error Codes
| Status | Description |
|--------|-------------|
| 400 | NSFW status unknown, invalid data, or validation failed |
| 500 | Upload to storage or database failed |

---

## Step 3: Mine Salt

**POST** `/agent/salt`

- **Content-Type:** `application/json`
- **Requires:** `metadata_uri` from Step 2
- Produces a vanity token address ending in `7777`

### Request Body

| Field | Type | Description |
|-------|------|-------------|
| `creator` | string | Creator's wallet address (EVM format) |
| `name` | string | Token name (must match metadata) |
| `symbol` | string | Token symbol (must match metadata) |
| `metadata_uri` | string | Metadata URI from Step 2 |

```js
const saltResponse = await fetch("https://api.nadapp.net/agent/salt", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({
    creator: walletAddress,
    name: "My Token",
    symbol: "MTK",
    metadata_uri: metadataUri,
  }),
});
const { salt, address } = await saltResponse.json();
```

- **Returns:** `salt` (bytes32 hex) and `address` (token address with `7777` suffix)

### Error Codes
| Status | Description |
|--------|-------------|
| 400 | Invalid parameters |
| 408 | Timeout - max iterations reached |
| 500 | Internal server error |

---

## Step 4: Create Token On-Chain

Call `BondingCurveRouter.create()` with the data from previous steps.

### TokenCreationParams

```solidity
struct TokenCreationParams {
    string name;
    string symbol;
    string tokenURI;      // metadata_uri from Step 2
    uint256 amountOut;    // 0 for no initial buy, or use Lens.getInitialBuyAmountOut(amountIn)
    bytes32 salt;         // salt from Step 3
    uint8 actionId;       // always 1 (graduate to Capricorn V3)
}
```

```solidity
function create(TokenCreationParams calldata params) external payable returns (address token, address pool);
```

### Option A: Create Without Initial Buy

Send only the deploy fee as `msg.value`.

```js
const curve = new ethers.Contract(BONDING_CURVE_ADDRESS, BONDING_CURVE_ABI, signer);
const [deployFee,,] = await curve.feeConfig();

const params = {
  name, symbol,
  tokenURI: metadata_uri,
  amountOut: 0,
  salt,
  actionId: 1,
};

const tx = await router.create(params, { value: deployFee });
await tx.wait();
```

### Option B: Create With Initial Buy

Send `deployFee + amountIn` as `msg.value`. Use `Lens.getInitialBuyAmountOut(amountIn)` for `amountOut`.

```js
const lens = new ethers.Contract(LENS_ADDRESS, LENS_ABI, signer);
const expectedAmountOut = await lens.getInitialBuyAmountOut(amountIn);

const [deployFee,,] = await curve.feeConfig();

const params = {
  name, symbol,
  tokenURI: metadata_uri,
  amountOut: expectedAmountOut,
  salt,
  actionId: 1,
};

const tx = await router.create(params, { value: deployFee + amountIn });
await tx.wait();
```

---

## Wallet for On-Chain Actions

For Step 3 (salt mining) and Step 4 (on-chain deployment), use the wallet from the `monad-development` skill. That skill handles all wallet configuration, private key management, and RPC setup. Use the signer and wallet address it provides when calling the salt API (`creator` field) and when sending the `BondingCurveRouter.create()` transaction.

---

## Important Rules

1. **Sequential process** - Each step depends on the previous step's output.
2. **NSFW validation** - Images are auto-checked in Step 1; the flag carries into metadata.
3. **URL validation** - All URLs must use HTTPS. Twitter must use `x.com`, Telegram must use `t.me`.
4. **Image domain restriction** - Only `https://storage.nadapp.net/` image URIs are accepted in metadata.
5. **Salt mining** - May timeout if the vanity address pattern can't be found within iteration limits.
6. **actionId** - Always use `1` (graduate to Capricorn V3).

## When Generating Code

- Use `ethers` v6 syntax by default unless the user specifies otherwise.
- Always handle errors for each API call before proceeding to the next step.
- The `salt` from Step 3 and `metadata_uri` from Step 2 are both needed for Step 4.
- For initial buy, always query `Lens.getInitialBuyAmountOut()` to get the correct `amountOut`.

Attribution

rondoflowrondoflow
View sourceMore from rondoflow →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Caveman

Ultra-compressed communication mode that cuts output tokens while keeping technical accuracy. Levels: lite, full, ultra and the wenyan variants. Use for /caveman, "caveman mode", "talk like caveman", "be brief" or "less tokens".

1074701 votes

Hyperplan

Adversarial multi-agent planning skill. Self-orchestrates 5 hostile category members (unspecified-low, unspecified-high, deep, ultrabrain, artistry) via team-mode for ruthless cross-critique debate, distills only the defensible insights, then MANDATORILY hands the distilled insight bundle to the `plan` agent for executable plan formalization. Use when planning needs maximum rigor and surfacing of weak assumptions, blind spots, and over-engineering. Triggers: 'hyperplan', 'hpp', '/hyperplan', ...

693621 votes

Mcp Code Execution

Routes multi-tool workflows through MCP servers for large datasets and pipelines. Use when Bash tool overhead is limiting throughput on data-heavy tasks.

3351 votes

catchup

Recovers the conversation and failed tool calls of a previous Codex, Claude Code, Antigravity, Cline, Copilot CLI, Cursor, DeepSeek Harness, Kimi, OpenCode, Pi Agent, or ZCode session. Use when the user says "catch up", "what did the last session do", "get me up to speed", "I switched agents", asks to recover/summarize a previous session before continuing, or asks to diagnose or report a catchup failure. Do NOT use for the current conversation, git history, or any non-agent log.

691 votes

math-skill

A comprehensive mathematical reasoning skill for AI assistants — handles arithmetic to research-level problems with rigorous step-by-step reasoning, systematic verification, and transparent uncertainty handling

381 votes
View all in ai-agents →