跳到主要内容
知仓学习社ZHICANG

metaplex

Metaplex development on Solana — NFTs, tokens, compressed NFTs, candy machines, token launches, autonomous agents. Use when working with Token Metad…

不碰外部(只输出文字)无严重或高危命中internet-court/internet-court-skill

它会碰到什么

扫了多少23 个文本文件,230 KB
它会碰到什么不碰外部(只输出文字)
命中总数5 处
命中统计严重 0 · 高 0 · 中 0 · 低 0

这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。

技能内容

Metaplex Development Skill

Overview

Metaplex provides the standard infrastructure for NFTs and tokens on Solana:

  • Agent Registry: On-chain agent identity, wallets, and execution delegation for MPL Core assets
  • Genesis: Token launch protocol with fair distribution + liquidity graduation
  • Core: Next-gen NFT standard (recommended for new NFT projects)
  • Token Metadata: Fungible tokens + legacy NFTs/pNFTs
  • Bubblegum: Compressed NFTs (cNFTs) using Merkle trees — massive scale at minimal cost
  • Candy Machine: NFT drops with configurable minting rules

Tool Selection

> Prefer CLI over SDK for direct execution. Use SDK only when user specifically needs code.

| Approach | When to Use |

|----------|-------------|

| CLI (mplx) | Default choice - direct execution, no code needed |

| Umi SDK | User needs code — default SDK choice. Covers all programs (TM, Core, Bubblegum, Genesis) |

| Kit SDK | User specifically uses @solana/kit, or asks for minimal dependencies. Token Metadata only — no Core/Bubblegum/Genesis support |

Task Router

> IMPORTANT: You MUST read the detail file for your task BEFORE executing any command or writing any code. The command syntax, required flags, setup steps, and batching rules are ONLY in the detail files. Do NOT guess commands from memory.

| Task Type | Read This File |

|-----------|----------------|

| Any CLI operation (agent guidelines, batching, explorer links) | ./references/cli.md |

| CLI: Agent Registry (identity, delegation, revocation, token linking) | ./references/cli.md + ./references/cli-agent.md |

| CLI: Core NFTs/Collections | ./references/cli.md + ./references/cli-core.md + ./references/metadata-json.md |

| CLI: Token Metadata NFTs | ./references/cli.md + ./references/cli-token-metadata.md + ./references/metadata-json.md |

| CLI: Compressed NFTs (Bubblegum) | ./references/cli.md + ./references/cli-bubblegum.md + ./references/metadata-json.md |

| CLI: Candy Machine (NFT drops) | ./references/cli.md + ./references/cli-candy-machine.md + ./references/metadata-json.md |

| CLI: Token launch / bonding curve (Genesis) | ./references/cli.md + ./references/cli-genesis.md |

| CLI: Execute / asset-signer wallets / agent vault | ./references/cli.md + ./references/cli-core.md (execute section) |

| SDK: Execute / asset-signer PDA / agent vault | ./references/sdk-umi.md + ./references/sdk-core.md (execute section) |

| CLI: Fungible tokens | ./references/cli.md + ./references/cli-toolbox.md |

| SDK setup (Umi) | ./references/sdk-umi.md |

| SDK: Core NFTs | ./references/sdk-umi.md + ./references/sdk-core.md + ./references/metadata-json.md |

| SDK: Token Metadata | ./references/sdk-umi.md + ./references/sdk-token-metadata.md + ./references/metadata-json.md |

| SDK: Compressed NFTs (Bubblegum) | ./references/sdk-umi.md + ./references/sdk-bubblegum.md + ./references/metadata-json.md |

| SDK: Token Metadata with Kit | ./references/sdk-token-metadata-kit.md + ./references/metadata-json.md |

| SDK: Agent Registry (identity, wallets, delegation) | ./references/sdk-umi.md + ./references/sdk-agent.md |

| SDK: Token launch + bonding curve swaps (Genesis) | ./references/sdk-umi.md + ./references/sdk-genesis.md |

| SDK: Low-level Genesis (custom buckets, presale, vesting) | ./references/sdk-umi.md + ./references/sdk-genesis-low-level.md |

| Off-chain metadata JSON format/schema (NFT or token) | ./references/metadata-json.md |

| Account structures, PDAs, concepts | ./references/concepts.md |

| CLI errors, localnet issues | ./references/cli-troubleshooting.md |

CLI Capabilities

The mplx CLI can handle most Metaplex operations directly. Read ./references/cli.md for agent guidelines (batching, JSON output, explorer links), then the program-specific file.

> CLI v0.1.0 breaking changes (for agents/scripts migrating from older versions):

> - --json <file> (used to pass an offchain metadata file path) is now --offchain <file>. --json is now the standard OCLIF flag for machine-readable output.

> - All commands now return structured JSON when --json is passed — use this for programmatic/agent use.

| Task | CLI Support |

|------|-------------|

| Register agent identity | ✅ |

| Fetch agent data | ✅ |

| Revoke execution delegation | ✅ |

| Set agent token (Genesis link) | ✅ (requires asset-signer mode) |

| Create fungible token | ✅ |

| Create Core NFT/Collection | ✅ |

| Create TM NFT/pNFT | ✅ |

| Transfer TM NFTs | ✅ |

| Transfer fungible tokens | ✅ |

| Transfer Core NFTs | ✅ |

| Upload to Irys | ✅ |

| Candy Machine drop | ✅ (setup/config/insert — minting requires SDK) |

| Compressed NFTs (cNFTs) | ✅ (batch limit ~100, use SDK for larger) |

| Execute (asset-signer wallets) | ✅ |

| Check SOL balance / Airdrop | ✅ |

| Query assets by owner/collection | ❌ SDK only (DAS API) |

| Token launch (Genesis) | ✅ |

| Bonding curve swap (Genesis) | ✅ |

Program IDs

Agent Identity:  1DREGFgysWYxLnRnKQnwrxnJQeSMk2HmGaC6whw2B2p
Agent Tools:     TLREGni9ZEyGC3vnPZtqUh95xQ8oPqJSvNjvB7FGK8S
Genesis:         GNS1S5J5AspKXgpjz6SvKL66kPaKWAhaGRhCqPRxii2B
Core:            CoREENxT6tW1HoK8ypY1SxRMZTcVPm7R94rH4PZNhX7d
Token Metadata:  metaqbxxUerdq28cj1RbAWkYQm3ybzjb6a8bt518x1s
Bubblegum V1:    BGUMAp9SX3uS4efGcFjPjkAQZ4cUNZhtHaMq64nrGf9D
Bubblegum V2:    BGUMAp9Gq7iTEuizy4pqaxsTyUCBK68MDfK752saRPUY
Core Candy:      CMACYFENjoBMHzapRXyo1JZkVS6EtaDDzkjMrmQLvr4J

Quick Decision Guide

Autonomous Agents

Use Agent Registry to register on-chain identity and execution delegation for MPL Core assets. The Mint Agent API (mintAndSubmitAgent) is the recommended path — it creates the Core asset and registers identity in a single transaction. For existing assets, use registerIdentityV1 directly. Any Core asset already has a built-in wallet (Asset Signer PDA) via Core's Execute hook — the registry adds discoverable identity records and lets owners delegate an off-chain executive to operate the agent. Agents can optionally link a Genesis token via setAgentTokenV1. Read ./references/cli-agent.md (CLI) or ./references/sdk-umi.md + ./references/sdk-agent.md (SDK).

Token Launches (Token Generation Event / Fair Launch / Bonding Curve)

Use Genesis. The Launch API (genesis launch create / createAndRegisterLaunch) is recommended — it handles everything in one step. Two launch types:

  • launchpool (default): Configurable allocations, 48h deposit, team vesting support
  • bonding-curve: Instant bonding curve (constant product AMM) — no deposit window, trading starts immediately, auto-graduates to Raydium CPMM on sell-out. Supports creator fees, first buy, and agent mode.

Read ./references/cli.md + ./references/cli-genesis.md (CLI) or ./references/sdk-genesis.md (SDK launch flow). For custom buckets/presale/vesting, use ./references/sdk-genesis-low-level.md.

NFTs: Core vs Token Metadata

| Choose | When |

|--------|------|

| Core | New NFT projects, lower cost (87% cheaper), plugins, royalty enforcement |

| Token Metadata | Existing TM collections, need editions, pNFTs for legacy compatibility |

Compressed NFTs (Massive Scale)

Use Bubblegum when minting thousands+ of NFTs at minimal cost. See ./references/cli-bubblegum.md (CLI) or ./references/sdk-bubblegum.md (SDK).

Fungible Tokens

Always use Token Metadata. Read ./references/cli-toolbox.md for CLI commands.

NFT Drops

Use Core Candy Machine. Read ./references/cli.md + ./references/cli-candy-machine.md.

App Mints into a Core Collection WITHOUT Candy Machine

Creating an asset into a Core collection requires the collection's update authority (or an UpdateDelegate) to sign — a user's wallet can't, and the authority key must never be in a frontend. The app needs either a custom on-chain program (PDA granted UpdateDelegate, mint logic in the program) or a backend/API holding a delegate keypair that signs mints. Read the "Minting into a Collection from an App" section in ./references/sdk-core.md before designing the minting flow.

Asset as Agent / Vault / Wallet (Execute)

Use Core Execute when an asset (NFT, agent, vault) needs to hold SOL/tokens, transfer funds, sign transactions, or own other assets. Every Core asset has a signer PDA that can act as an autonomous wallet. Read ./references/cli-core.md (CLI) or ./references/sdk-core.md (SDK), execute section.

For more info

When a task needs deeper detail than the skill references provide (edge cases, full API surfaces, guides), consult the Metaplex docs:

  • Documentation home: https://metaplex.com/docs
  • Agent Registry: https://metaplex.com/docs/agents
  • Genesis: https://metaplex.com/docs/smart-contracts/genesis
  • Core: https://metaplex.com/docs/smart-contracts/core
  • Token Metadata: https://metaplex.com/docs/smart-contracts/token-metadata
  • Bubblegum: https://metaplex.com/docs/smart-contracts/bubblegum-v2
  • Candy Machine: https://metaplex.com/docs/smart-contracts/core-candy-machine
  • Tokens: https://metaplex.com/docs/tokens
  • NFTs: https://metaplex.com/docs/nfts
  • CLI: https://metaplex.com/docs/dev-tools/cli
  • Umi SDK: https://metaplex.com/docs/dev-tools/umi
  • DAS API: https://metaplex.com/docs/dev-tools/das-api
  • Protocol fees: https://metaplex.com/docs/protocol-fees

想直接用这个技能?

本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。