animation-reverse-engi…
Reverse-engineer any motion reference (a video from X/Twitter, Dribbble, a screen recording, a GIF) into production animation code through frame-level…
Complete Metaplex Protocol guide for Solana NFTs and digital assets. Covers Core (next-gen NFTs), Token Metadata, Bubblegum (compressed NFTs), Candy Machine, Genesis (token launches), MPL-Hybrid, Inscriptions, DAS API, and the Umi framework. The single source of truth for all
$ npx -y skills add sendaifun/skills --skill metaplex --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/metaplexContext preview
The summary Claude sees to decide when to auto-load this skill.
Complete Metaplex Protocol guide for Solana NFTs and digital assets. Covers Core (next-gen NFTs), Token Metadata, Bubblegum (compressed NFTs), Candy Machine, Genesis (token launches), MPL-Hybrid, Inscriptions, DAS API, and the Umi framework. The single source of truth for all
name: metaplex description: Complete Metaplex Protocol guide for Solana NFTs and digital assets. Covers Core (next-gen NFTs), Token Metadata, Bubblegum (compressed NFTs), Candy Machine, Genesis (token launches), MPL-Hybrid, Inscriptions, DAS API, and the Umi framework. The single source of truth for all Metaplex integrations.
A comprehensive guide for building NFTs, digital assets, and token launches on Solana using the Metaplex Protocol - the industry standard powering 99% of Solana NFTs and tokens.
Metaplex is the leading tokenization protocol on Solana, providing smart contracts and tools for creating, selling, and managing digital assets. From simple NFTs to compressed collections of billions, from fair token launches to hybrid token/NFT systems, Metaplex provides the infrastructure.
Metaplex provides multiple products for different use cases:
| Product | Description | Cost per Mint | |---------|-------------|---------------| | **Core** | Next-gen single-account NFT standard | ~0.0029 SOL | | **Token Metadata** | Original NFT standard with PDAs | ~0.022 SOL | | **Bubblegum v2** | Compressed NFTs (cNFTs) | ~0.00009 SOL |
| Product | Description | |---------|-------------| | **Candy Machine** | NFT collection minting with guards | | **Core Candy Machine** | Candy Machine for Core assets | | **Genesis** | Token Generation Event (TGE) platform |
| Product | Description | |---------|-------------| | **MPL-Hybrid** | Swap between fungible and non-fungible | | **Inscriptions** | On-chain data storage (up to 10MB) | | **DAS API** | Unified API for fetching digital assets | | **Umi** | JavaScript framework for Solana clients |
---
| Program | Address | |---------|---------| | **MPL Core** | `CoREENxT6tW1HoK8ypY1SxRMZTcVPm7R94rH4PZNhX7d` | | **Token Metadata** | `metaqbxxUerdq28cj1RbAWkYQm3ybzjb6a8bt518x1s` | | **Bubblegum** | `BGUMAp9Gq7iTEuizy4pqaxsTyUCBK68MDfK752saRPUY` | | **Candy Machine V3** | `CndyV3LdqHUfDLmE5naZjVN8rBZz4tqhdefbAnjHG3JR` | | **Candy Guard** | `Guard1JwRhJkVH6XZhzoYxeBVQe872VH6QggF4BWmS9g` | | **Core Candy Machine** | `CMACYFENjoBMHzapRXyo1JZkVS6EtaDDzkjMrmQLvr4J` | | **Core Candy Guard** | `CMAGAKJ67e9hRZgfC5SFTbZH8MgEmtqazKXjmkaJjWTJ` | | **MPL Hybrid** | `MPL4o4wMzndgh8T1NVDxELQCj5UQfYTYEkabX3wNKtb` | | **Inscription** | `1NSCRfGeyo7wPUazGbaPBUsTM49e1k2aXewHGARfzSo` |
| Program | Address | |---------|---------| | **SPL Token** | `TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA` | | **Token 2022** | `TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb` | | **Associated Token** | `ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL` | | **Account Compression** | `cmtDvXumGCrqC1Age74AVPhSRVXJMd8PJS91L8KbNCK` |
---
# Core NFTs (Recommended for new projects) npm install @metaplex-foundation/mpl-core \ @metaplex-foundation/umi \ @metaplex-foundation/umi-bundle-defaults # Token Metadata NFTs npm install @metaplex-foundation/mpl-token-metadata \ @metaplex-foundation/umi \ @metaplex-foundation/umi-bundle-defaults # Compressed NFTs (Bubblegum) npm install @metaplex-foundation/mpl-bubblegum \ @metaplex-foundation/umi \ @metaplex-foundation/umi-bundle-defaults # Candy Machine npm install @metaplex-foundation/mpl-candy-machine \ @metaplex-foundation/umi \ @metaplex-foundation/umi-bundle-defaults # Core Candy Machine npm install @metaplex-foundation/mpl-core-candy-machine \ @metaplex-foundation/umi \ @metaplex-foundation/umi-bundle-defaults # Genesis (Token Launches) npm install @metaplex-foundation/mpl-genesis \ @metaplex-foundation/umi \ @metaplex-foundation/umi-bundle-defaults # File uploads (Arweave via Irys) npm install @metaplex-foundation/umi-uploader-irys
All Metaplex SDKs use Umi, a modular Solana framework:
import { createUmi } from '@metaplex-foundation/umi-bundle-defaults';
import { mplCore } from '@metaplex-foundation/mpl-core';
import {
keypairIdentity,
generateSigner
} from '@metaplex-foundation/umi';
// Create Umi instance
const umi = createUmi('https://api.mainnet-beta.solana.com')
.use(mplCore());
// Option 1: Use generated keypair
const signer = generateSigner(umi);
umi.use(keypairIdentity(signer));
// Option 2: Use existing keypair
import { createSignerFromKeypair } from '@metaplex-foundation/umi';
const keypair = umi.eddsa.createKeypairFromSecretKey(secretKeyBytes);
const signer = createSignerFromKeypair(umi, keypair);
umi.use(keypairIdentity(signer));
// Option 3: Use wallet adapter (browser)
import { walletAdapterIdentity } from '@metaplex-foundation/umi-signer-wallet-adapters';
umi.use(walletAdapterIdentity(wallet));---
The next-generation NFT standard with single-account design, lower costs, and built-in plugins.
| Feature | Core | Token Metadata | |---------|------|----------------| | Accounts per NFT | 1 | 4+ | | Mint Cost | ~0.0029 SOL | ~0.022 SOL | | Compute Units | ~17,000 | ~205,000 | | Enforced Royalties | Yes | No | | Plugin System | Yes | No |
import { createUmi } from '@metaplex-foundation/umi-bundle-defaults';
import {
mplCore,
create,
fetchAsset
} from '@metaplex-foundation/mpl-core';
import {
generateSigner,
keypairIdentity
} from '@metaplex-foundation/umi';
import { irysUploader } from '@metaplex-foundation/umi-uploader-irys';
// Setup
const umi = createUmi('https://api.mainnet-beta.solana.com')
.use(mplCore())
.use(irysUploader());
// Upload metadata
const metadata = {
name: 'AI agent skills for Solana development — DeFi protocols, infrastructure, security, and more.
Repo: sendaifun/skills
Reverse-engineer any motion reference (a video from X/Twitter, Dribbble, a screen recording, a GIF) into production animation code through frame-level…
Build and debug encrypted Solana applications with Arcium — data stays private during computation, no single party sees it. Use when writing Arcis circuits…
Complete Birdeye API integration for real-time DeFi data across Solana and 15 other chains. Use for token prices, OHLCV charts, market discovery, on-chain…
Build on Solana with Carbium infrastructure — bare-metal RPC, Standard WebSocket pubsub, gRPC Full Block streaming (~22ms), DEX aggregation via CQ1 engine…
Complete CoinGecko Solana API integration for token prices, DEX pool data, OHLCV charts, trades, and market analytics. Use for building trading bots, portfolio…
Crypto Twitter intelligence and alpha research. Search X/Twitter for real-time crypto narratives, trending tokens, yield strategies, smart money signals, and…