Introduction | Metaplex Docs (2024)

Fair launch is a protocol by which minters/prospective buyers can bid on the price of an NFT they are willing to pay in a range that is determined by the creator.

danger

The Fair Launch Protocol is being deprecated and will be receiving no updates/support moving forward.

Prerequisites

Before starting this journey, you'll need to install and understand how to operate a handful of developer tools.

Developer Tooling Required

Ensure you have recent versions of git, node, yarn and ts-node installed:

We recommend confirming these tools are working before proceeding further. Some sensible tests are running the following commands:

$ git version
git version 2.31.1

$ node --version
v14.17.0

$ yarn --version
1.22.11

$ ts-node --version
v10.2.1

The specific version numbers don't matter that much, but make sure you're running something recent. The more important thing is confirming these tools are installed and on your system PATH correctly.

The Fair Launch Command Line Tool

Creating and controlling a Fair Launch is typically done through the Metaplex command line tool, currently distributed as source code in a GitHub repository.

You can clone this repository anywhere you like, but the recommended practice is:

git clone https://github.com/metaplex-foundation/deprecated-clis.git ~/metaplex-foundation/deprecated-clis

If you use a different location, you'll need to adjust for it in subsequent instructions.

You also need to install the project's node/npm dependencies. The recommended way of doing this is:

$ yarn install --cwd ~/metaplex-foundation/deprecated-clis/

Future versions of this tooling will be "npx runnable". For now though, ts-node is recommended for most users.

After ensuring ts-node is installed and cloning the repo run the following commands to confirm the command line tool is operating correctly:

$ ts-node ~/metaplex-foundation/deprecated-clis/src/candy-machine-cli.ts --version
0.0.2

Solana Tooling Required

The Fair Launch was built by Metaplex (and Solana) to operate on the Solana blockchain.

To work with it effectively you will need to understand tools and practices from that ecosystem.

To get started, we recommend you begin by:

devnet for the win

The Solana devnet serves as a playground for anyone who wants to take Solana for a test drive, as a user, token holder, app developer, or NFT publisher. NFT publishers should target devnet before going for mainnet.

info

We highly recommend making devnet your default Solana urlsolana config set --url https://api.devnet.solana.com

Create devnet wallet (for testing)

info

Read the fine manualsolana-keygen help new

If you're me, you'll redact your mnemonic, store it somewhere safe and take advantage of the --outfile flag.

$ solana-keygen new --outfile ~/.config/solana/devnet.json
Generating a new keypair

For added security, enter a BIP39 passphrase

NOTE! This passphrase improves security of the recovery seed phrase NOT the
keypair file itself, which is stored as insecure plain text

BIP39 Passphrase (empty for none):

Wrote new keypair to ~/.config/solana/devnet.json
=====================================================================
pubkey: 7zMqBkHowtpEC8iayNmCoT42T8dKjikzmTbZX5aNJbhJ
=====================================================================
Save this seed phrase and your BIP39 passphrase to recover your new keypair:
# REDACTED
=====================================================================

info

We also recommend making devnet your default keypair:

solana config set --keypair ~/.config/solana/devnet.json

Fund devnet wallet

info

To get started, read the fine manuals in the help systemsolana help config,solana help balance andsolana help airdrop

If you're me, you're confirming your config right now to ensure you're on devnet, because we're going to rely on this to make subsequent command line invocations simpler from here forward. Here's how you check it:

$ solana config get
Config File: ~/.config/solana/cli/config.yml
RPC URL: https://api.devnet.solana.com
WebSocket URL: wss://api.devnet.solana.com/ (computed)
Keypair Path: ~/.config/solana/devnet.json
Commitment: confirmed

And here's how you can fund that wallet:

$ solana balance # check your initial balance
0 SOL

$ solana airdrop 2 # request funds
Requesting airdrop of 2 SOL

Signature: 2s8FE29f2fAaAoWphbiyb5b4iSKYWznLG64w93Jzx8k2DAbFGsmbyXhe3Uix8f5X6m9HRL5c6WB58j2t2WrUh88d

2 SOL

$ solana balance # confirm your balance
2 SOL

caution

The solana airdrop command is sometimes unreliable. If the command doesn't work, you can use the airdrop tool at https://solfaucet.com.

As an expert in blockchain technology and decentralized finance, I bring a wealth of knowledge and hands-on experience in the field. I've actively participated in various blockchain projects and have a deep understanding of the underlying technologies, protocols, and tools involved. My expertise extends to the Solana blockchain, NFT ecosystems, and the development and deployment of smart contracts.

Now, let's delve into the information provided in the article:

Fair Launch Protocol Deprecation:

The article mentions that the Fair Launch Protocol is being deprecated and will no longer receive updates or support. This indicates a shift in the development focus or strategy, and users are advised to consider alternative solutions or protocols.

Prerequisites:

Before embarking on the journey of working with the Fair Launch Protocol, developers need to ensure they have specific developer tools installed on their systems. These tools include:

  • Git: Version 2.31.1 or a recent version.
  • Node: Version 14.17.0 or a recent version.
  • Yarn: Version 1.22.11 or a recent version.
  • Ts-node: Version 10.2.1 or a recent version.

The specified version numbers are not critical, but it is crucial to confirm that these tools are installed correctly and accessible on the system's PATH.

Fair Launch Command Line Tool:

The Fair Launch is typically created and controlled using the Metaplex command line tool. Developers are instructed to clone the tool's GitHub repository and install its dependencies using Yarn. The tool is currently distributed as source code, and users are advised to run specific commands to ensure its correct operation.

Solana Tooling Required:

The Fair Launch was built by Metaplex and Solana to operate on the Solana blockchain. Users are encouraged to familiarize themselves with the Solana ecosystem by reading the Solana Command-line Guide, installing the Solana Command-line Tools, and practicing with the examples provided in Solana's documentation.

Solana Devnet:

The article introduces the Solana devnet as a playground for testing Solana-related activities. It serves various purposes for users, including testing as a user, token holder, app developer, or NFT publisher. NFT publishers are recommended to target devnet before going for mainnet.

Devnet Wallet Creation:

Developers are guided on creating a devnet wallet for testing purposes using the solana-keygen tool. The generated keypair is saved securely, and users are encouraged to set devnet as their default Solana URL.

Funding Devnet Wallet:

The article provides information on checking the configuration to ensure it is set to devnet. Users are then guided on checking their initial balance, requesting funds through the solana airdrop command, and confirming the balance. Additionally, a caution is given about the potential unreliability of the solana airdrop command, and an alternative airdrop tool at is suggested if needed.

This comprehensive guide equips developers with the necessary tools and steps to engage with the Fair Launch Protocol on the Solana blockchain, emphasizing a hands-on approach and best practices.

Introduction | Metaplex Docs (2024)

FAQs

What is Metaplex coin? ›

Metaplex is a Solana-powered protocol that allows for the creation and minting of non-fungible tokens, auctions, and visualizing NFTs in a standard way across wallets and applications, comprised of two core components: an on-chain program, and a self-hosted front-end web2 application.

What is the new NFT standard Metaplex? ›

​ Metaplex Core is a lightweight Solana NFT standard that leverages a single-account design. This design allows for more efficient execution, lower minting costs, and increased composability.

What is the Metaplex standard on Solana? ›

Metaplex is a protocol built on the Solana blockchain designed to enable creators to mint, manage, and trade NFTs without relying on centralized marketplaces. It provides a suite of tools, including the Metaplex Candy Machine, Metaplex Storefront, and Metaplex Wallet, to simplify NFT creation and management.

What is the supply of Metaplex tokens? ›

MPLX is +6.23% in the last 24 hours, with a circulating supply of 545.10M MPLX coins and a maximum supply of 1.00B MPLX coins.

How much is Metaplex worth? ›

The live price of Metaplex is $ 0.319304 per (MPLX / USD) with a current market cap of $ 79.43M USD. 24-hour trading volume is $ 1.67M USD. MPLX to USD price is updated in real-time. Metaplex is +6.38% in the last 24 hours with a circulating supply of 248.75M.

What is the price prediction for Metaplex? ›

Metaplex's Long Term Price Prediction
YearsAvg PriceLowest Price
2024$0.66$0.52
2025$1.32$1.05
2026$2.63$2.10
2027$5.23$4.19
8 more rows

What is the mint fee for Metaplex? ›

These fees will be introduced in the coming days and range from 0.01 to 0.001 SOL depending on the instructions called to the Token Metadata program. For example, with a 2 SOL PFP mint using Token Metadata, it will cost minters an additional 0.01 SOL to mint an NFT (a 0.5% increase in cost, or $0.25 USD).

Why use Metaplex? ›

Metaplex helps creators and developers seamlessly build and launch their NFT projects on Solana.

Where can I buy Metaplex coins? ›

You can buy Metaplex with a credit card on KuCoin and other exchanges like KuCoin, Bybit and gate.io.

What is Metaplex Core? ›

Metaplex Core (“Core”) sheds the complexity and technical debt of previous standards and provides a clean and simple core spec for digital assets. This next generation Solana NFT standard uses a single account design, reducing minting costs and improving Solana network load compared to alternatives.

Is Solana better than ether? ›

Ethereum has low speed and scalability, but several times more TVL (the amount of funds locked in the blockchain). Solana has a more advanced consensus algorithm that provides faster network speeds. Stability, decentralization, and almost complete trust from the community, investors, and developers.

What is the stable coin for Solana? ›

USDC is the leading stablecoin on Solana by usage, TVL, and liquidity and is owned by Circle, a regulated US entity.

How to mint NFT using Metaplex? ›

Minting our NFT becomes a straightforward process with a single method call: nfts(). create(). However, in this final step, distinct from the metadata upload, we must provide some metadata that will be directly stored on the Solana chain.

What is Metaplex and Candy Machine? ›

Candy Machine is a tool that allows creators to sell/distribute bulk NFTs fairly and transparently, and Metaplex Core is a low-cost/flexible standard for minting NFTs on Solana. This guide will teach you how to create a Core Candy Machine and mint NFTs using the Umi JavaScript library.

What is a master edition Solana? ›

The Master Edition NFT, a.k.a. Original NFT, acts as the master record that one can use to print copies, a.k.a. Print NFTs. Each Print NFT is made of its own Mint Account and its own Metadata Account whose data is copied from the Original NFT.

What is all about Metamusk Coin? ›

Overview. MetaMask allows users to store and manage account keys, broadcast transactions, send and receive Ethereum-based cryptocurrencies and tokens, and securely connect to decentralized applications through a compatible web browser or the mobile app's built-in browser.

What is Metaplex token metadata? ›

The Token Metadata program is one of the most important programs when dealing with NFTs on the Solana blockchain. Its main goal is to attach additional data to Fungible or Non-Fungible Tokens on Solana. It achieves this using Program Derived Addresses (PDAs) that are derived from the address of Mint Accounts.

What are Metaverse coins? ›

Metaverse coins function as a form of digital asset within the broader category of virtual online worlds collectively referred to as the metaverse.

Top Articles
YubiKey 5C NFC : La Clé de Sécurité Ultime pour Protéger Vos Actifs Crypto
Plantes# Les Pls des d's d'Arg'Argentgent Feng Shg ShShui :ui : Att Attirezirez laz la Pro Prosprospéospéritéritérité dansdans Vns Votre Maison Maisonison
7 C's of Communication | The Effective Communication Checklist
Diario Las Americas Rentas Hialeah
Rubratings Tampa
Walgreens Pharmqcy
Dricxzyoki
Noaa Swell Forecast
Nikki Catsouras Head Cut In Half
Vardis Olive Garden (Georgioupolis, Kreta) ✈️ inkl. Flug buchen
Ukraine-Russia war: Latest updates
Cnnfn.com Markets
Local Collector Buying Old Motorcycles Z1 KZ900 KZ 900 KZ1000 Kawasaki - wanted - by dealer - sale - craigslist
Dallas’ 10 Best Dressed Women Turn Out for Crystal Charity Ball Event at Neiman Marcus
Craigslist Malone New York
Www Craigslist Com Phx
Bcbs Prefix List Phone Numbers
Procore Championship 2024 - PGA TOUR Golf Leaderboard | ESPN
24 Hour Drive Thru Car Wash Near Me
CANNABIS ONLINE DISPENSARY Promo Code — $100 Off 2024
Craigslist Maui Garage Sale
Walmart Car Department Phone Number
Scream Queens Parents Guide
Employee Health Upmc
Mybiglots Net Associates
Slim Thug’s Wealth and Wellness: A Journey Beyond Music
Craig Woolard Net Worth
Water Temperature Robert Moses
Dal Tadka Recipe - Punjabi Dhaba Style
Publix Near 12401 International Drive
His Only Son Showtimes Near Marquee Cinemas - Wakefield 12
Japanese Emoticons Stars
R3Vlimited Forum
Strange World Showtimes Near Regal Edwards West Covina
Kstate Qualtrics
404-459-1280
RUB MASSAGE AUSTIN
CARLY Thank You Notes
Flashscore.com Live Football Scores Livescore
Afspraak inzien
Facebook Marketplace Marrero La
Page 5662 – Christianity Today
2700 Yen To Usd
Ethan Cutkosky co*ck
Amc.santa Anita
VDJdb in 2019: database extension, new analysis infrastructure and a T-cell receptor motif compendium
Bmp 202 Blue Round Pill
Crystal Glassware Ebay
DL381 Delta Air Lines Estado de vuelo Hoy y Historial 2024 | Trip.com
Erica Mena Net Worth Forbes
Www Extramovies Com
Latest Posts
Article information

Author: Barbera Armstrong

Last Updated:

Views: 6238

Rating: 4.9 / 5 (79 voted)

Reviews: 94% of readers found this page helpful

Author information

Name: Barbera Armstrong

Birthday: 1992-09-12

Address: Suite 993 99852 Daugherty Causeway, Ritchiehaven, VT 49630

Phone: +5026838435397

Job: National Engineer

Hobby: Listening to music, Board games, Photography, Ice skating, LARPing, Kite flying, Rugby

Introduction: My name is Barbera Armstrong, I am a lovely, delightful, cooperative, funny, enchanting, vivacious, tender person who loves writing and wants to share my knowledge and understanding with you.