TopRank Skills

Home / Claw Skills / 其他 / genesis-launch
Official OpenClaw rules 15%

genesis-launch

Launch tokens on Solana using Metaplex Genesis protocol

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 genesis-launch 技能。 若已安装,则直接安装 genesis-launch 技能。

Overview

Skill Key
blockiosaurus/mplx-genesis
Author
blockiosaurus
Source Repo
openclaw/skills
Version
-
Source Path
skills/blockiosaurus/mplx-genesis
Latest Commit SHA
d0df52cf63d4091b2139e15458c79964c1f327d3

Extracted Content

SKILL.md excerpt

# Metaplex Genesis Token Launch

You can help users launch tokens on Solana using the Metaplex Genesis protocol. Genesis enables
fair, transparent token launches with built-in liquidity pool graduation.

## What is Genesis?

Genesis is a token launch protocol on Solana by Metaplex. It supports:

- **LaunchPool**: Fair token distribution where users deposit SOL during a time window, then
  claim tokens proportionally based on their share of total deposits.
- **Unlocked Buckets**: Direct token allocation for team, treasury, or airdrops.
- **Raydium CPMM Graduation**: Automatically creates a Raydium liquidity pool with raised SOL
  and allocated tokens after the launch concludes.

## Launch Lifecycle

1. **Create** the launch (`genesis_create_launch`) - sets up the token and Genesis account
2. **Configure buckets** - add LaunchPool, Unlocked, and/or Raydium buckets
3. **Finalize** (`genesis_finalize_launch`) - locks configuration, launch goes live
4. Users deposit SOL during the deposit period
5. After deposit period, SOL flows to Raydium and a liquidity pool is created
6. Users claim their tokens during the claim period

## Recommended Flow

When a user wants to launch a token, gather this information:

1. **Token details**: name, symbol, description, and image file path
2. **Total supply**: how many tokens (default: 1 billion)
3. **Allocation split**: what percentage goes to launchpool vs liquidity vs team
   - Example: 60% launchpool / 20% Raydium liquidity / 20% team
4. **Timing**: when deposits open, how long they last, when claims start

## Common Configuration: LaunchPool + Raydium + Team

This is the most common setup. Example with 60/20/20 split:

    Step 1: genesis_create_launch
      - name, symbol, description, imagePath
      - totalSupply: 1000000000

    Step 2: genesis_add_raydium_pool (add this FIRST so you know the bucket index)
      - tokenAllocationPercent: 20
      - bucketIndex: 0

    Step 3: genesis_add_launchpool
      - tokenAllocationPercen...

Related Claw Skills