← All skills
Tencent SkillHub Β· AI

Nadfun Skill

Launch, trade, and monitor Monad blockchain tokens using bonding curves, permit signatures, and on-chain event queries with viem integration.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Launch, trade, and monitor Monad blockchain tokens using bonding curves, permit signatures, and on-chain event queries with viem integration.

⬇ 0 downloads β˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
skill.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.1.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 12 sections Open source page

NadFun Integration Guide

Monad blockchain token launchpad with bonding curves. Trade tokens, launch your own, monitor eventsβ€”all with pure viem.

Skills

ModulePurposeURLskill.mdArchitecture, constants, setupnad.fun/skill.mdABI.mdSmart contract ABIsnad.fun/abi.mdQUOTE.mdPrice quotes, curve statenad.fun/quote.mdTRADING.mdBuy, sell, permit signaturesnad.fun/trading.mdTOKEN.mdBalances, metadata, transfersnad.fun/token.mdCREATE.mdToken creation, image uploadnad.fun/create.mdINDEXER.mdHistorical event queryingnad.fun/indexer.mdAGENT-API.mdREST API, API key managementnad.fun/agent-api.mdWALLET.mdWallet generationnad.fun/wallet.mdAUSD.mdLiFi swap (MON β†’ aUSD) + Upshift vaultnad.fun/ausd.md

Network Constants

const NETWORK = "testnet" // 'testnet' | 'mainnet' const CONFIG = { testnet: { chainId: 10143, rpcUrl: "https://monad-testnet.drpc.org", apiUrl: "https://dev-api.nad.fun", DEX_ROUTER: "0x5D4a4f430cA3B1b2dB86B9cFE48a5316800F5fb2", BONDING_CURVE_ROUTER: "0x865054F0F6A288adaAc30261731361EA7E908003", LENS: "0xB056d79CA5257589692699a46623F901a3BB76f1", CURVE: "0x1228b0dc9481C11D3071E7A924B794CfB038994e", WMON: "0x5a4E0bFDeF88C9032CB4d24338C5EB3d3870BfDd", V3_FACTORY: "0xd0a37cf728CE2902eB8d4F6f2afc76854048253b", CREATOR_TREASURY: "0x24dFf9B68fA36f8400302e2babC3e049eA19459E", }, mainnet: { chainId: 143, rpcUrl: "https://monad-mainnet.drpc.org", apiUrl: "https://api.nadapp.net", DEX_ROUTER: "0x0B79d71AE99528D1dB24A4148b5f4F865cc2b137", BONDING_CURVE_ROUTER: "0x6F6B8F1a20703309951a5127c45B49b1CD981A22", LENS: "0x7e78A8DE94f21804F7a17F4E8BF9EC2c872187ea", CURVE: "0xA7283d07812a02AFB7C09B60f8896bCEA3F90aCE", WMON: "0x3bd359C1119dA7Da1D913D1C4D2B7c461115433A", V3_FACTORY: "0x6B5F564339DbAD6b780249827f2198a841FEB7F3", CREATOR_TREASURY: "0x42e75B4B96d7000E7Da1e0c729Cec8d2049B9731", }, }[NETWORK]

Basic Setup

import { createPublicClient, createWalletClient, http } from "viem" import { privateKeyToAccount } from "viem/accounts" const chain = { id: CONFIG.chainId, name: "Monad", nativeCurrency: { name: "MON", symbol: "MON", decimals: 18 }, rpcUrls: { default: { http: [CONFIG.rpcUrl] } }, } const account = privateKeyToAccount(process.env.PRIVATE_KEY as `0x${string}`) const publicClient = createPublicClient({ chain, transport: http(CONFIG.rpcUrl), }) const walletClient = createWalletClient({ account, chain, transport: http(CONFIG.rpcUrl), })

Bonding Curve

Tokens start on a bonding curve. Price increases as more buy. Check state with getCurveState(token).

Graduation

When target reserves reached: curve β†’ Uniswap V3 DEX. Check isGraduated(token) or getProgress(token) (0-10000 = 0-100%).

Permit Signatures (EIP-2612)

Sign approval off-chain for gasless approve: generatePermitSignature() β†’ use in sellPermit().

Action IDs

Always use actionId: 1 for token creation.

Authentication (Login Flow)

Login is NOT required for any functionality. All trading, token creation, and queries work without login. Login is ONLY needed to manage API keys (create/list/delete). See AGENT-API.md for: Rate limits (10 req/min without key, 100 req/min with key) API key CRUD operations Cookie name: nadfun-v3-api // 1. Request nonce const { nonce } = await fetch(`${CONFIG.apiUrl}/auth/nonce`, { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ address: account.address }), }).then((r) => r.json()) // 2. Sign nonce const signature = await walletClient.signMessage({ message: nonce }) // 3. Create session const sessionRes = await fetch(`${CONFIG.apiUrl}/auth/session`, { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ signature, nonce, chain_id: CONFIG.chainId }), }) // Cookie: nadfun-v3-api=<token> const cookies = sessionRes.headers.get("set-cookie") // 4. Use session for API key management await fetch(`${CONFIG.apiUrl}/api-key`, { headers: { Cookie: cookies }, })

Common Pitfalls

Gas estimation: Always estimateContractGas() before sending. Never hardcode gas limits. Deadline: Must be future timestamp. Use BigInt(Math.floor(Date.now() / 1000) + 300) (5 min). Slippage: Calculate amountOutMin with buffer. (amountOut * 99n) / 100n = 1% slippage. Permit nonce: Fetch immediately before signing. Stale nonce = tx revert.

Common ABI Errors

ErrorMeaningInsufficientAmountOutput < amountOutMinDeadlineExpiredDeadline passedAlreadyGraduatedToken on DEXBondingCurveLockedCurve locked during graduationInvalidProofBad merkle proof (claims)

Installation

npm install viem

Category context

Agent frameworks, memory systems, reasoning layers, and model-native orchestration.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • skill.md Docs