meme-launcher

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Meme Launcher - Solana Memecoin Launch System

迷因币启动工具 - Solana迷因币发行系统

End-to-end memecoin launch planning and execution for Solana. From concept to deployment to moon.
为Solana提供端到端的迷因币发行规划与执行服务,从概念构思到部署上线,再到市值暴涨。

Activation Triggers

触发条件

<triggers> - "Launch a memecoin" - "Create token for [concept]" - "Pump.fun launch strategy" - "Tokenomics for [project]" - "Pre-launch checklist" - "How to launch on [platform]" - "Bonding curve setup" - "Build hype for [token]" - Keywords: launch, deploy, tokenomics, pump.fun launch, create token, mint token, bonding curve, pre-launch, liquidity add </triggers>
<triggers> - "发行迷因币" - "为[概念]创建代币" - "Pump.fun发行策略" - "[项目]的代币经济模型" - "上线前检查清单" - "如何在[平台]发行代币" - "绑定曲线设置" - "为[代币]打造热度" - 关键词:发行、部署、代币经济模型、Pump.fun发行、创建代币、铸造代币、绑定曲线、上线前、添加流动性 </triggers>

Core Capabilities

核心功能

1. Token Concept Development

1. 代币概念开发

  • Name/ticker optimization (memorability, searchability)
  • Narrative construction (why this token, why now)
  • Visual identity guidelines (logo, banner, meme templates)
  • Community angle (target demographic, culture fit)
  • 名称/代码优化(易记性、易搜索性)
  • 叙事构建(代币价值、发行时机)
  • 视觉标识规范(Logo、横幅、迷因模板)
  • 社区定位(目标受众、文化契合度)

2. Tokenomics Design

2. 代币经济模型设计

  • Supply architecture (total supply, decimals)
  • Distribution strategy (fair launch vs. presale)
  • Tax structure (if any) - buy/sell fees
  • Burn mechanics and deflationary options
  • LP allocation and lock parameters
  • 供应架构(总供应量、小数位数)
  • 分配策略(公平发行 vs 预售)
  • 手续费结构(若设置)- 买卖手续费
  • 销毁机制与通缩选项
  • 流动性池分配与锁定参数

3. Platform Selection

3. 平台选择

  • Pump.fun: Bonding curve launches, low barrier, viral potential
  • Raydium: AMM pools, deeper liquidity, established traders
  • Jupiter: Launch pad features, routing optimization
  • Custom SPL: Full control, requires more setup
  • Pump.fun:基于绑定曲线的发行,门槛低,具备病毒式传播潜力
  • Raydium:AMM池,流动性更深,面向成熟交易者
  • Jupiter:launchpad功能,路由优化
  • 自定义SPL:完全可控,需更多配置

4. Launch Execution

4. 发行执行

  • Contract deployment checklist
  • Liquidity provisioning strategy
  • Initial price setting
  • Sniper protection tactics
  • First-hour playbook
  • 合约部署检查清单
  • 流动性提供策略
  • 初始价格设定
  • 防狙击策略
  • 首小时操作手册

5. Anti-Rug Implementation

5. 防跑路机制实现

  • Mint authority renouncement
  • Freeze authority removal
  • LP lock procedures
  • Transparent team allocation
  • Trust signals for buyers
  • 铸造权限放弃
  • 冻结权限移除
  • 流动性池锁定流程
  • 透明的团队分配
  • 给买家的信任信号

Launch Platforms Deep Dive

发行平台深度解析

<platforms>
<platforms>

Pump.fun

Pump.fun

  • Best for: Viral memes, low-effort launches, quick validation
  • Bonding curve: Auto-AMM, graduates to Raydium at threshold
  • Cost: ~0.02 SOL creation fee
  • Time to launch: < 5 minutes
  • Graduation: 69 SOL collected triggers Raydium migration
  • 适用场景:病毒式迷因、低门槛发行、快速验证
  • 绑定曲线:自动AMM,达到阈值后迁移至Raydium
  • 成本:约0.02 SOL的创建费用
  • 发行耗时:< 5分钟
  • 升级条件:筹集到69 SOL触发Raydium迁移

Raydium

Raydium

  • Best for: Serious projects, larger liquidity, established presence
  • Pool type: Concentrated liquidity or standard AMM
  • Cost: ~2-3 SOL for pool creation
  • Time to launch: 15-30 minutes
  • Requirements: Pre-minted token, initial liquidity
  • 适用场景:正规项目、大额流动性、已建立市场存在感
  • 池类型:集中流动性池或标准AMM
  • 成本:约2-3 SOL的池创建费用
  • 发行耗时:15-30分钟
  • 要求:预铸造代币、初始流动性

Jupiter LFG

Jupiter LFG

  • Best for: Curated launches, built-in audience
  • Features: Voting mechanism, established credibility
  • Cost: Application-based
  • Time to launch: Days (approval required)
</platforms>
  • 适用场景:精选发行、自带受众
  • 功能:投票机制、已建立的可信度
  • 成本:基于申请
  • 发行耗时:数天(需审核)
</platforms>

Implementation Workflow

实施流程

Step 1: Parse Launch Intent

步骤1:解析发行意图

typescript
interface LaunchConfig {
  concept: string;
  name?: string;
  ticker?: string;
  platform: 'pump.fun' | 'raydium' | 'jupiter' | 'custom';
  supply: number;
  initialLiquidity: number; // in SOL
  launchType: 'fair' | 'presale' | 'stealth';
  antiRugFeatures: string[];
}
typescript
interface LaunchConfig {
  concept: string;
  name?: string;
  ticker?: string;
  platform: 'pump.fun' | 'raydium' | 'jupiter' | 'custom';
  supply: number;
  initialLiquidity: number; // in SOL
  launchType: 'fair' | 'presale' | 'stealth';
  antiRugFeatures: string[];
}

Step 2: Concept Validation

步骤2:概念验证

  1. Name Check: Search existing tokens for conflicts
  2. Trend Analysis: Validate narrative timing
  3. Competition Scan: Similar tokens, market saturation
  4. Virality Score: Meme potential assessment
  1. 名称检查:搜索现有代币避免冲突
  2. 趋势分析:验证叙事时机
  3. 竞品扫描:同类代币、市场饱和度
  4. 传播潜力评分:迷因潜力评估

Step 3: Tokenomics Builder

步骤3:代币经济模型构建器

RECOMMENDED TOKENOMICS:

Fair Launch (Pump.fun):
- Supply: 1,000,000,000 (1B)
- Decimals: 6
- Dev allocation: 0% (buy from curve like everyone)
- Tax: 0% (standard for pump.fun)
- LP: Auto-managed by bonding curve

Raydium Launch:
- Supply: 1,000,000,000 (1B)
- Decimals: 9
- Dev/Team: 5-10% (vested/locked)
- Marketing: 5%
- LP: 80-90% of supply
- Initial LP: 10-50 SOL recommended
推荐代币经济模型:

公平发行(Pump.fun):
- 供应量:1,000,000,000(10亿)
- 小数位数:6
- 团队分配:0%(与普通用户一样从曲线购买)
- 手续费:0%(Pump.fun标准设置)
- 流动性池:由绑定曲线自动管理

Raydium发行:
- 供应量:1,000,000,000(10亿)
- 小数位数:9
- 团队/开发:5-10%(锁仓/ vesting)
- 营销:5%
- 流动性池:供应量的80-90%
- 初始流动性池:推荐10-50 SOL

Step 4: Pre-Launch Checklist

步骤4:上线前检查清单

Execute validation before any deployment:
bash
npx tsx .claude/skills/meme-launcher/scripts/pre-launch-check.ts \
  --name "MOONCAT" \
  --ticker "$MCAT" \
  --platform pump.fun \
  --supply 1000000000
部署前执行验证:
bash
npx tsx .claude/skills/meme-launcher/scripts/pre-launch-check.ts \
  --name "MOONCAT" \
  --ticker "$MCAT" \
  --platform pump.fun \
  --supply 1000000000

Step 5: Launch Execution

步骤5:发行执行

Platform-specific deployment guides in
references/
平台专属部署指南位于
references/
目录

Output Formats

输出格式

Launch Plan (Default)

发行计划(默认)

TOKEN: $MCAT (MoonCat)
PLATFORM: Pump.fun
STATUS: Ready to Deploy

TOKENOMICS:
- Supply: 1,000,000,000
- Decimals: 6
- Tax: 0%
- LP Lock: Auto (pump.fun)

PRE-LAUNCH CHECKLIST:
[x] Name available (no conflicts)
[x] Ticker unique
[x] Logo prepared (400x400 PNG)
[x] Description written
[x] Social links ready
[ ] Community seeded (min 50 members)
[ ] KOL outreach complete

ANTI-RUG SIGNALS:
[x] Fair launch (no presale)
[x] Dev buys from curve
[x] Mint renounced at creation
[x] No freeze authority

LAUNCH STRATEGY:
1. Deploy at low-activity hour (2-4 AM UTC)
2. Seed initial buys (0.5-1 SOL each x 5 wallets)
3. Post to CT immediately after
4. Telegram announcement at 10 holders
5. Push for graduation at momentum peak

ESTIMATED COSTS:
- Creation: 0.02 SOL
- Initial seed buys: 2.5-5 SOL
- Total: ~3-5 SOL
代币:$MCAT (MoonCat)
平台:Pump.fun
状态:可部署

代币经济模型:
- 供应量:1,000,000,000
- 小数位数:6
- 手续费:0%
- 流动性池锁定:自动(Pump.fun)

上线前检查清单:
[x] 名称可用(无冲突)
[x] 代码唯一
[x] Logo已准备(400x400 PNG)
[x] 描述已撰写
[x] 社交链接已准备
[ ] 社区已初步建立(至少50名成员)
[ ] KOL对接完成

防跑路信号:
[x] 公平发行(无预售)
[x] 团队从市场购买代币
[x] 创建时放弃铸造权限
[x] 无冻结权限

发行策略:
1. 在低活跃度时段部署(UTC时间2-4点)
2. 初始种子购买(5个钱包各0.5-1 SOL)
3. 部署后立即发布至CT
4. 持有量达10人时在Telegram公告
5. 热度峰值时推动升级

预估成本:
- 创建费用:0.02 SOL
- 初始种子购买:2.5-5 SOL
- 总计:约3-5 SOL

Quick Deploy (--format quick)

快速部署(--format quick)

$MCAT | Pump.fun | 1B supply | Fair launch
Deploy: pump.fun/create → paste details → confirm
Post-deploy: Announce → Seed → Shill
$MCAT | Pump.fun | 10亿供应量 | 公平发行
部署:pump.fun/create → 粘贴详情 → 确认
部署后:公告 → 种子购买 → 推广

Full Strategy (--format full)

完整策略(--format full)

Complete go-to-market plan including:
  • 7-day pre-launch timeline
  • Community building playbook
  • Influencer outreach templates
  • Post-launch maintenance guide
完整的上市计划包括:
  • 7天上线前时间表
  • 社区建设手册
  • 网红对接模板
  • 上线后维护指南

Tokenomics Templates

代币经济模型模板

<tokenomics_templates>
<tokenomics_templates>

Fair Launch (Maximum Trust)

公平发行(最大信任度)

Supply: 1B | Tax: 0% | Dev: 0%
Everyone buys equally, dev buys from market
Best for: Viral memes, community-driven
供应量:10亿 | 手续费:0% | 团队:0%
所有人平等购买,团队从市场购买
适用场景:病毒式迷因、社区驱动项目

Team Allocation (Project-Focused)

团队分配(项目导向)

Supply: 1B | Tax: 0-1% | Team: 5-10% (locked 3mo)
Team tokens vested, transparent allocation
Best for: Utility roadmap, long-term projects
供应量:10亿 | 手续费:0-1% | 团队:5-10%(锁仓3个月)
团队代币vesting,分配透明
适用场景:实用型路线图、长期项目

Marketing-Heavy

营销导向

Supply: 1B | Tax: 2% (1% burn, 1% marketing) | Marketing wallet: 5%
Built-in marketing fund from trading
Best for: KOL campaigns, aggressive growth
供应量:10亿 | 手续费:2%(1%销毁,1%营销) | 营销钱包:5%
交易中自动积累营销资金
适用场景:KOL推广、激进增长

Deflationary

通缩模型

Supply: 1B | Burn: 1% per tx | LP burn: 50% at launch
Decreasing supply over time
Best for: "Number go up" narrative
</tokenomics_templates>
供应量:10亿 | 每笔交易销毁1% | 上线时销毁50%流动性池
供应量随时间减少
适用场景:“价格上涨”叙事
</tokenomics_templates>

Platform Deployment Guides

平台部署指南

Pump.fun Launch Steps

Pump.fun发行步骤

1. Go to pump.fun/create
2. Upload logo (400x400 recommended)
3. Enter name and ticker
4. Write description (max 500 chars, include narrative)
5. Add social links (Twitter, Telegram, Website)
6. Pay creation fee (~0.02 SOL)
7. IMMEDIATELY after creation:
   - Copy contract address
   - Make first buy (establishes you're in)
   - Post to Twitter with CA
   - Share in Telegram
1. 访问pump.fun/create
2. 上传Logo(推荐400x400尺寸)
3. 输入名称和代码
4. 撰写描述(最多500字符,包含叙事)
5. 添加社交链接(Twitter、Telegram、官网)
6. 支付创建费用(约0.02 SOL)
7. 创建完成后立即:
   - 复制合约地址
   - 完成第一笔购买(表明参与)
   - 在Twitter发布合约地址
   - 在Telegram分享

Raydium Launch Steps

Raydium发行步骤

1. Create SPL token via spl-token CLI or Solana Tools
2. Renounce mint authority
3. Go to raydium.io/liquidity
4. Create new pool (select token + SOL pair)
5. Set initial price (supply in pool / SOL in pool)
6. Add liquidity (recommend 80%+ of supply)
7. Lock LP tokens (raydium.io/burn or third-party)
8. Announce with LP lock proof
1. 通过spl-token CLI或Solana工具创建SPL代币
2. 放弃铸造权限
3. 访问raydium.io/liquidity
4. 创建新池(选择代币+SOL交易对)
5. 设置初始价格(池内供应量 / 池内SOL量)
6. 添加流动性(推荐供应量的80%+)
7. 锁定流动性池代币(raydium.io/burn或第三方工具)
8. 附带流动性池锁定证明发布公告

Pre-Launch Validation

上线前验证

<validation_checklist> REQUIRED:
  • Token name doesn't conflict with established projects
  • Ticker is available and memorable (3-5 chars)
  • Logo is original or properly licensed
  • Description is clear and compelling
  • At least one social channel exists
RECOMMENDED:
  • Community of 50+ members pre-launch
  • 2-3 KOLs aware/interested
  • Meme templates prepared
  • Website or landing page
  • Launch timing analyzed (avoid major events)
ANTI-RUG (Non-negotiable for credibility):
  • Mint authority will be renounced
  • No freeze authority
  • LP will be locked or burned
  • Team allocation (if any) is transparent and locked
  • No hidden functions in contract </validation_checklist>
<validation_checklist> 必填项:
  • 代币名称与已建立项目无冲突
  • 代码可用且易记(3-5字符)
  • Logo为原创或已获得授权
  • 描述清晰有吸引力
  • 至少拥有一个社交渠道
推荐项:
  • 上线前拥有50+成员的社区
  • 2-3名网红已了解/感兴趣
  • 迷因模板已准备
  • 官网或落地页
  • 已分析发行时机(避开重大事件)
防跑路(可信度必备):
  • 将放弃铸造权限
  • 无冻结权限
  • 流动性池将被锁定或销毁
  • 团队分配(若有)透明且已锁定
  • 合约无隐藏功能 </validation_checklist>

Launch Timing Strategy

发行时机策略

<timing>
<timing>

Best Times (UTC)

最佳时间(UTC)

  • Monday-Wednesday 14:00-18:00: US afternoon, peak CT activity
  • Friday 12:00-16:00: Weekend anticipation, FOMO builds
  • Sunday 20:00-24:00: Fresh week positioning
  • 周一至周三14:00-18:00:美国下午,CT平台活跃度峰值
  • 周五12:00-16:00:周末预期,FOMO情绪积累
  • 周日20:00-24:00:新一周布局

Avoid

需避开的时间

  • Saturday night: Low attention
  • Major crypto events: Competition for attention
  • Market dumps: Fear overrides degen impulses
  • US holidays: Reduced volume
  • 周六夜间:关注度低
  • 重大加密事件:注意力被分流
  • 市场暴跌:恐惧情绪盖过投机冲动
  • 美国节假日:交易量减少

Coordination

协调流程

  1. Soft announce 24h before (build anticipation)
  2. Final countdown 1h before (urgency)
  3. Deploy and immediately post CA
  4. First 10 minutes critical (seed momentum)
</timing>
  1. 上线前24小时软公告(积累预期)
  2. 上线前1小时最终倒计时(制造紧迫感)
  3. 部署后立即发布合约地址
  4. 首10分钟至关重要(积累动量)
</timing>

Post-Launch Checklist

上线后检查清单

<post_launch> First Hour:
  • Verify contract on Solscan
  • Post CA to all channels
  • Monitor for snipers/bots
  • Engage with early buyers
  • Update Dexscreener info (if Raydium)
First Day:
  • Track holder growth
  • Respond to community questions
  • Share milestone updates (holders, MCAP)
  • KOL follow-ups
First Week:
  • Daily community engagement
  • Meme contests/airdrops
  • Partnership outreach
  • Roadmap updates (if applicable) </post_launch>
<post_launch> 首小时:
  • 在Solscan上验证合约
  • 在所有渠道发布合约地址
  • 监控狙击者/机器人
  • 与早期买家互动
  • 更新Dexscreener信息(若为Raydium发行)
首日:
  • 追踪持有者增长
  • 回复社区问题
  • 分享里程碑更新(持有者数量、市值)
  • 跟进网红对接
首周:
  • 每日社区互动
  • 迷因竞赛/空投
  • 合作方对接
  • 路线图更新(若适用) </post_launch>

Risk Framework

风险评估框架

Launch Risk Assessment

发行风险评估

LOW RISK (Green light):
- Unique concept, good timing
- Community pre-built
- Clean contract, all anti-rug features
- Multiple social channels active

MEDIUM RISK (Proceed carefully):
- Similar tokens exist
- Small initial community
- Launch timing suboptimal
- Limited marketing budget

HIGH RISK (Reconsider):
- Saturated narrative
- No community traction
- Poor timing (bear market)
- No differentiator
低风险(绿灯):
- 独特概念,时机合适
- 已提前建立社区
- 合约干净,具备所有防跑路功能
- 多个活跃社交渠道

中风险(谨慎推进):
- 存在同类代币
- 初始社区规模小
- 发行时机不理想
- 营销预算有限

高风险(重新考虑):
- 叙事饱和
- 无社区吸引力
- 时机不佳(熊市)
- 无差异化优势

Error Handling

错误处理

<error_recovery>
  • Name taken: Generate alternatives, check availability
  • Low initial traction: Increase seed buys, delay major push
  • Sniper attack: Document, communicate to community
  • Pump.fun graduation stall: Rally community for final push
  • FUD spreading: Address transparently, show proof of anti-rug </error_recovery>
<error_recovery>
  • 名称已被占用:生成替代名称,检查可用性
  • 初始热度低:增加种子购买,推迟大规模推广
  • 狙击攻击:记录并告知社区
  • Pump.fun升级停滞:号召社区完成最后冲刺
  • FUD传播:透明回应,展示防跑路证明 </error_recovery>

Security Considerations

安全注意事项

<security> - Never share deployer wallet private keys - Use fresh wallet for launches (operational security) - Verify all contract interactions before signing - Document everything for transparency - Prepare proof of LP lock/burn before launch </security>
<security> - 切勿分享部署钱包私钥 - 使用新钱包进行发行(操作安全) - 签名前验证所有合约交互 - 所有操作文档化以保证透明 - 上线前准备好流动性池锁定/销毁证明 </security>

Quality Gates

质量标准

<validation_rules>
  • Never recommend launch without anti-rug features
  • Always include LP strategy
  • Verify name/ticker availability before finalizing
  • Include cost estimates
  • Provide post-launch support checklist </validation_rules>
<see_also>
  • references/pump-fun-guide.md - Detailed pump.fun walkthrough
  • references/tokenomics-templates.md - Supply/distribution models
  • references/launch-marketing-playbook.md - Go-to-market strategies
  • scripts/pre-launch-check.ts - Validation CLI </see_also>
<validation_rules>
  • 绝不推荐无防跑路功能的发行
  • 始终包含流动性池策略
  • 最终确认前验证名称/代码可用性
  • 包含成本预估
  • 提供上线后支持检查清单 </validation_rules>
<see_also>
  • references/pump-fun-guide.md - 详细Pump.fun操作指南
  • references/tokenomics-templates.md - 供应/分配模型
  • references/launch-marketing-playbook.md - 上市策略
  • scripts/pre-launch-check.ts - 验证CLI工具 </see_also>