ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

moltmoon-sdk

Complete OpenClaw-ready operating skill for @moltmoon/sdk V2. Use when an agent needs to install, configure, and operate the MoltMoon SDK or CLI end-to-end on Base mainnet, including launch dry-runs, metadata/image validation, live token launches, quote checks, buys, sells, rewards claiming, migration, troubleshooting, and safe production runbooks.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/chillbruhhh/moltmoon-agentcrypto-sdk
Or

MoltMoon SDK Skill (OpenClaw) - V2

Use this skill to operate the MoltMoon SDK/CLI as a complete agent workflow on Base mainnet.

V2 Economics Overview

MoltMoon V2 uses MoltTokenV2 (SafeMoon-style reflection tokens) with BondingCurveMarketV2 bonding curves:

ParameterValue
Total supply1B tokens per launch
Buy fee0%
Sell fee5% (1% holder reflections + 2% creator + 2% treasury)
Curve allocation80% on bonding curve, 20% reserved for LP
Virtual base$3,000 USDC
Min seed (normal)$20 USDC
Platform cut10% of seed to treasury
GraduationAt 95% of curve tokens sold (avoids asymptotic pricing)
LP lock180 days on Aerodrome after graduation
Creator upfrontSeed-scaled share from curve bucket (capped 20%)

Reflection mechanics: Every sell triggers 1% redistribution to all token holders (SafeMoon rOwned/tOwned). 4% is auto-swapped to USDC and split 50/50 between creator and treasury. Buys and wallet-to-wallet transfers are tax-free.

Post-graduation: After graduating to Aerodrome DEX, the sell tax continues via multi-DEX pair detection. LP is time-locked for 180 days.

Install

Use one of these paths:

npm install @moltmoon/sdk

or run without install:

npx -y @moltmoon/sdk moltlaunch --help

Runtime Configuration

Set environment variables before any write action:

MOLTMOON_API_URL=https://api.moltmoon.ai
MOLTMOON_NETWORK=base
MOLTMOON_PRIVATE_KEY=0x...   # 32-byte hex key with 0x prefix

Notes:

  • MOLTMOON_NETWORK supports base only.
  • MOLTMOON_PRIVATE_KEY (or PRIVATE_KEY) is required for launch/buy/sell/claim.

Supported CLI Commands

Global options:

  • --api-url <url>
  • --network base
  • --private-key <0x...>

Commands:

  • launch Launch token (with metadata/image/socials, includes approval + create flow)
  • tokens List tokens
  • buy Approve USDC + buy in one flow
  • sell Approve token + sell in one flow
  • quote-buy Fetch buy quote only (0% fee)
  • quote-sell Fetch sell quote only (shows 5% fee deducted)
  • rewards-earned Check unclaimed USDC rewards for a wallet
  • rewards-claim Claim unclaimed USDC rewards (requires signer)
  • migration-status Check V1 to V2 migration status
  • migrate Migrate V1 tokens to V2 (approve + migrate flow)

Canonical CLI Runbooks

1) Dry-run launch first (no chain tx)

npx -y @moltmoon/sdk mltl launch \
  --name "Agent Token" \
  --symbol "AGT" \
  --description "Agent launch token on MoltMoon" \
  --website "https://example.com" \
  --twitter "https://x.com/example" \
  --discord "https://discord.gg/example" \
  --image "./logo.png" \
  --seed 20 \
  --dry-run \
  --json

2) Live launch

npx -y @moltmoon/sdk mltl launch \
  --name "Agent Token" \
  --symbol "AGT" \
  --description "Agent launch token on MoltMoon" \
  --s...

Metadata

Stars3840
Views0
Updated2026-04-06
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-chillbruhhh-moltmoon-agentcrypto-sdk": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.