Introduction
NFTs
Create and manage NFTs (non-fungible tokens) on Solana using Metaplex Core.
Overview
Non-fungible tokens (NFTs) are unique digital assets that represent ownership of items like art, collectibles, and in-game items. Metaplex Core provides a modern, efficient way to create and manage NFTs on Solana with a single account design that reduces costs and improves performance.
What You Can Do
This section provides beginner-friendly guides for common NFT operations:
- Create an NFT - Create a new NFT with custom metadata
- Fetch an NFT - Retrieve NFT data from the blockchain
- Update an NFT - Update NFT name or metadata
- Transfer an NFT - Transfer NFT ownership between wallets
- Burn an NFT - Permanently destroy an NFT
Prerequisites
Before getting started, make sure you have:
- Node.js 16+ installed
- A Solana wallet with some SOL for transaction fees
- Basic JavaScript/TypeScript knowledge
Quick Start
Install the required packages:
npm install @metaplex-foundation/mpl-core @metaplex-foundation/umi @metaplex-foundation/umi-bundle-defaults
Then follow the Create an NFT guide to create your first NFT with Metaplex Core.
Learn More
For more advanced NFT functionality, check out:
- Core Documentation - Full documentation for Metaplex Core
- Core Plugins - Extend NFT functionality with plugins
- Core Collections - Organize NFTs into collections
