NOTE: This guide is based off of the V1 of Candy Machine. V1 has been deprecated. You can catch an up-to-date guide on V2 here
Overview
Hello reader! We have had a lot of requests for another Solana NFT guide where we show you how to Mint a 1-of-1 token, or NFT on Solana. In the previous guide we did not quite get to where the juicy stuff is. That is the actual linking of the picture/metadata to the token. In order to do this we will use a program called Candy Machine. Candy Machine is a tool that allows you set up your own Solana NFT shop in your own little corner of the internet. In this guide we will walkthrough how to setup this one-stop-shop for Solana NFT minting.
NOTE: this guide is meant to show you the workflow and process for how to create and mint your own NFTs on Solana. Not teach you the underlying technologies.
There is much to learn about in the Solana ecosystem, and if you intend to do more than this happy path that we provide, you will need to dig in and learn these individual pieces! Cheers :)
These prerequisites will need to be installed before going forward, and we will be linking to the installation docs/guides for each one, as they will do a better job explaining how to install it than we would.
Candy Machine is a tool that utilizes the Metaplex CLI to generate an NFT, link a picture and relevant metadata to the NFT token, and setup a "fair auction." A "fair auction" really consists of two separate pieces. The first of which is that it starts at the same time for everyone. No pre-sales! The second component is that it will not send the transaction if there are no more NFTs to be minted.
No more throwing your SOL into the void, unsure if there are any more editions to be minted. While there is a LOT that you can dig into here as far as the internals go, the best way to learn is by building!
Forking the Repository
There are two different repositories that you can use. One of which is built by the candy-machine maintainers and another one that a community member built on top of to abstract a few things and create easier workflows. We will be using the latter in this tutorial. If you need to deviate from the happy path however, you will need the underlying knowledge of how Metaplex works.
To fork the repo you want to go to the community member's repo and fork it by clicking the fork button at the top
after you have it forked you will want to clone the repository:
After installing your dependencies, you will want to start the postgres database in docker that will hold your nfts before they are deployed on the network.
This will spin up your database and allow Strapi, which is a headless CMS that will hold all of our NFT information, to connect to the docker container.
NFT Manager
This is the real beauty of this repository. You are able to use a headless CMS to upload and manage all of your NFTs before blasting them online to be minted. To get this setup you will run the following command:
You can then navigate yourself to http://localhost:1337/admin. You first need to create a free Strapi account and log in. Then, you need to create a "user"; to do so, click on the appropriate tab as shown below.
All that is left is to save your newly created User. Having done that, we can now move on to creating a collection.
A collection has a one-to-many relationship with NFTs. One collection will have many NFTs pointing to it. The process is very similar to creating a User. Go to the "Collections" tab to create a new collection. There are only two fields here. "Name" and "Family" are the only fields that relate to "collections", because the fields we are filling out in Strappi need to match the json attributes defined in the Solana NFT Metadata Standard.
"Name" should be the name of the specific project you are launching, whereas "Family" can be part of a larger theme.
I will be naming the fields by their name for the sake of transparency.
Name will be "Collection_Name", and Family will be "Collection_Family." You can now save the collection, and move to the "NFTs" tab to create your individual NFTs.
I will show you what mine looks like, and explain what each field means:
Format for the following information --> FieldName: Value --- Explanation.
Name: CoolNFTName --- The Name of your NFT
Symbol: CNN --- This is the "Ticker" for your NFT, like DAPE for the Degenerate Ape Academy.
Description: This is the description of my Super Cool NFT --- The description for the individual NFT.
Seller_fee_basis_points: 500 --- This is the % of royalties the creator of the NFT will receive on each purchase. (500 equates to 5%). You don't need to worry about this too much with this framework as we will set this using the CLI, but its always good to verify your data and ensure that this is set to what you would want it to be, regardless of the CLI implementation.
Image: Image.png --- Name of the image file. Leave this as Image.png (Regardless of the uploaded photo's name) as this will be dynamically changed. It MUST match the Properties -> Files -> Uri json field below.
Animation URL: n/a --- URL to a multi-media attachment of the asset. The supported file formats are MP4 and MOV for video, MP3, FLAC and WAV for audio and GLB for AR/3D assets. You may use the ?ext={file_extension} query to provide information on the file type.
External URL: https://Quicknode.com/ --- This is typically another link to view the asset on a centralized website such as imgur. You can however, leave it blank. (blank == "")
This will be the "attributes" of your NFT. You do not have to have these, and they are completely arbitrary. However, if you do set an attribute, it must have both a value, and a trait_type field. Value can be a string or a number.
Properties contains much of the information around what exactly is being shown. It will link to the type (see supported types here), point to the uri (uploaded on arweave), and then a link to the creators of the NFT. There can be multiple creators so long as the "share" totals up to 100.
Content: This is where you can upload your image. This is the one I chose!
Note: Your image must be in .png format!
After filling out all of this information with the values that suit you personally, you are all ready to mint an NFT!
Deploying the Candy Machine
With everything in place there are just a few commands to run. Due to the framework we are building on top of this is only a few commands.
First we will want to ensure that all of the funds the NFTs generate are going to go to you! Use the following command:
It will ask if you want to shuffle. This will randomize the order in which people mint nfts. If you are doing a large drop of 5-10k NFTs, you probably don't want them going in order! This will randomize it for you. For the purposes of this tutorial it does not matter since there is only one.
After running the previous command you should see two files in the nft-manager/nfts-sources folder, 0.json, and 0.png.
If those are there, you are ready to deploy!
Since we are using devnet things will be slightly different than if you were to deploy on mainnet, however the repository's README covers the differences quite nicely. You can run the following command, and accept all of the default values by pressing the "Enter" key without any other input.
If you would like to learn about the internals of what this command is doing, it is available in the readme for you! Just know that this is setting up the program that is responsible for minting the NFTs you just generated previously.
That is everything for the deployment process!
Minting your NFT
With the program up, all we need to do is interact with it! To set up the website, run the following command.
This will spinup a webpage at http://localhost:3000. You can connect your wallet, and click on the "Mint" button as shown below.
You can see on the one in the picture there are no more available as we have already minted the only one. If you try to mint while there are none available, it will ask you to confirm the transaction; then the program denies it as there are none left to give you. This goes back to the "fair auction" that we spoke of earlier.
If everything went accordingly you should now have an NFT in your Phantom wallet. This is what mine looks like!
Conclusion
Congratulations! You just minted your first NFT on Solana! There is a lot going on under the hood that we didn't go over. If you are trying to do a larger NFT launch on the mainnet I would recommend doing a deep dive on Metaplex to see how each different command works, as things do not always go smoothly, and you want to be able to fix your problem should something go awry. That being said, you still learned a bunch!
Subscribe to our newsletter for more articles and guides on Ethereum. If you have any feedback, feel free to reach out to us via Twitter. You can always chat with us on our Discord community server, featuring some of the coolest developers you'll ever meet :)
Hello reader! Today is an exhilarating day because we are going on an expedition to the Solana Blockchain. Solana is an up-and-coming blockchain seeking to improve upon the current ecosystem's solutions to the complex problem of providing a secure, scalable, decentralized...
PHP is very popular in developing the backend of websites or web applications. PHP has a huge crowd of developers trusting it as their go-to language. In this guide, we will see how we can generate a new Ethereum address in...
Private keys are one of the most sensitive pieces of data when it comes to cryptography and the blockchain. However, there has always been debate/confusion about choosing between custodial wallets (where the wallet provider has custody of the user’s private key) and...
The success story of blockchain started with Bitcoin and was given wings by Ethereum. Ethereum was the first blockchain to introduce programmable software to the immutable ledger; these programs that live on the blockchain are called smart contracts. Solidity is the...
Dotnet or .NET is very popular for the development of desktop applications, most Windows desktop applications are built using .NET, and it also contributes largely to web application’s tech stack. In this guide, let’s see how we can connect to Ethereum using .NET and
With high usage in web applications and straightforward syntax, Ruby is used by a vast number of people. This guide will cover creating an Ethereum address in Ruby using ruby-eth...
In this tutorial we will look at how we can setup a basic NEAR project from scratch, installing and configuring dependencies and customizing the project to work well with AssemblyScript.We will first start by initializing our project with a package.json file using...
To send a transaction on the Ethereum network, you need to pay fees for including the transaction in a block as well as the computation necessary in the transaction; this fee is called gas. The transactions are accepted into the block based on the amount of gas they are...
Coleccionables digitales que son compatibles con ERC-721 se han vuelto muy populares desde el lanzamiento de Cryptokitties y han ganado adopción masiva en los últimos meses. Esta guía cubrirá la parte de creación y lanzamiento...
When building a smart contract on the Ethereum blockchain, new developers tend to reach out to tools like truffle and web3.js in building their smart contracts. This tutorial will look at how to use Hardhat and Ether.js, which are now becoming the standard in building...
We can say that Java is one of the most versatile languages out there, and it continues to be relevant in today's time. Java is so popular because of its massive user base and use cases. In this guide/tutorial, we'll learn how to connect to the Ethereum Blockchain network...
It can be costly to store massive files on a blockchain mainnet, and this is where decentralized file storing systems like IPFS can come in handy. Sometimes, NFTs use IPFS as well. In this guide, we’ll cover how we can integrate IPFS with...
The Ruby programming language has a huge fanbase. Ruby was developed by its creator with an intention to invent a language developers can enjoy learning and using. Ruby has been largely accepted by developers all around the world since its launch, in fact, the biggest...
This guide demonstrates how to mint an NFT on the Polygon blockchain using the Ethers.js library and our Factory ERC-1155 contract we built in an earlier
When someone thinks of developing a dApp the first tool that comes to their mind is web3.js which is pretty common because of its popularity in the community and wide use cases, dApp development has been consistently growing and there are a lot of developers who want to...
Updated at: April 10, 2022Welcome to another QuickNode guide on Solana - the up-and-coming blockchain that seeks to solve the scalability issues of Ethereum. We will be walking through step-by-step how to create an NFT on Solana. NFT, short for Non Fungible Token,...
A developer stack is a bag of technologies a developer possesses. For example, MEAN (MongoDB, Express.js, AngularJS/Angular, and Node.js) and MERN (MongoDB, Express.js, React, and Node.js) are common web developer stacks. Similarly, today we will learn more about the web3...
Hello readers! We know Solana network congestion can sometimes throw a wrench in your transactions. Occasionally, when Solana is congested, transactions get dropped, meaning your sendTransaction request may return a valid Transaction ID, but the response...
Python is one of the most versatile programming languages; from researchers running their test models to developers using it in heavy production environments, it has use cases in every possible technical field. In today's guide, we will learn about Brownie, a Python-based...
Hello readers! To kick off Solana Summer and the current whitelist meta, we thought it would be helpful to dig into all of the token accounts you and your users have using the getParsedProgramAccounts method. This tool is convenient for querying different...
Developing applications involves juggling several moving pieces like front-ends, back-ends, and databases. But developing a decentralized application on a blockchain adds a few more elements like smart contracts and nodes that allow you to connect to the...
To do any type of transaction on the Bitcoin blockchain, you’ll need a public key or a Bitcoin address. In this guide, we’ll cover how to generate a new Bitcoin address in JavaScript using CyrptoCoinJS.
¡Hola querido lector! Bienvenidos a una nueva guía de Solana.Solana es una blockchain que promete mucho a la hora de intentar resolver los problemas de escalabilidad que podemos apreciar en otras blockchains, como Ethereum por...
Terra is the stablecoins framework with a pool of tokens to work with. Today in this guide, we will learn how to create our own token on the Terra blockchain network.PrerequisitesA Terra Bombay testnet...
Ever need to pull all the transactions associated with a Wallet? Want to see all of the mint transactions associated with a Candy Machine? Or maybe see transaction history of an NFT? Solana's getSignaturesForAddress method is a versatile tool that makes...
When a new token is made on the Ethereum network, it usually follows a specification. The most popular of which is the ERC20 specification. To meet this ERC20 standard, one's token must have a multitude of...
While Ethereum has been trying to scale, it has encountered some gas price issues. Many layer 2 solutions and sidechains sprang into existence to solve this problem, but Ethereum is the main chain, and at some point, it has to be improved. EIP-1559 was introduced to...
Avalanche is an open-source, proof-of-stake blockchain with smart contract functionality that uses the Snow family of consensus protocols. The Avalanche Primary Network consists of
Hello reader! Welcome to QuickNode's first Solana guide. Solana is an up-and-coming blockchain that seeks to solve the scalability issues that Ethereum has been handling. You will walk through step-by-step how to create a Solana address using the @solana/web3.js...
Blockchain provides us with the power of decentralization. Decentralization means the transfer of power to users/members rather than having a single centralized authority governing everything; it enables various use cases in finance, governance, voting, fundraising, etc....
Ethereum development environments like Truffle and Hardhat make it easier to work with smart contracts and Ethereum nodes. They provide a set of tools to seamlessly write, test, and deploy...
Stablecoins have been bridging the gap between traditional currencies and blockchains. Stablecoins offer stable price tokens pegged by a reserve asset which is often a fiat current like USD, EUR, GBP. The Terra protocol provides a framework to work with stablecoins. This...
Go helps you make faster scalable backends and this guide will show you how to connect your backend to Ethereum (and make it even faster, more reliable, and globally accessible, all thanks to QuickNode’s global infrastructure). What is...
Sometimes, you submit a transaction on Ethereum without enough gas due to network congestion or too many pending transactions offering a higher gas price than you have offered on your transaction. If you have a high priority transaction but low gas, you could end up...
Forking the chain at an older block of the blockchain is helpful if you want to simulate the blockchain’s state at that block; Hardhat has this functionality built in. In this guide, let’s go through the process of forking the Ethereum Mainnet at an older...
PHP is a very popular choice among developers and has a vast community due to its long presence in web development. In this guide, we’ll cover how to connect to Ethereum with PHP using the web3.php...
You can build Ethereum applications in different programming languages. In this article, we will connect to the Ethereum network using Python.PrerequisiteEthereum Node (We will use QuickNode’s free...
In this guide, we'll understand a bit about reactive development and how to use Subspace with QuickNode.JavaScript is the programming language behind most of the internet apps and websites. JavaScript today has become one of the most used programming languages,...
Forking and running a local simulated Ethereum environment is essential if you want to work with DeFi or do Ethereum development in general. In this guide, we’ll cover how to fork Ethereum Blockchain with
Libraries and frameworks make the development process a lot easier and faster. When it comes to Ethereum development, Web3.js is the go to library. That's because Web3.js is the official library, from the
In this practical guide you will build a basic Wallet application with React and Web3 that will interact with Solana Network.This application will do the following operations:Connect to the...
If you are building on Ethereum, you may run into scenarios where you need to fetch transaction history for a given address. Unfortunately, the current design for Ethereum lacks an easy way to retrieve this data. For this reason, we are dedicating this guide to explaining...
Today we will be building a sample app in Svelte, and connecting it to a smart contract that we deploy on the Ropsten Network.Our frontend will be able to do the following:Allow the user to send a greeting message along with a wave to the...
Been building on Solana and ready to bring your dApp to the web? You're going to need a way to connect your tools to your users' wallets. Though there are a few ways to connect your dApp to your users' wallets, Solana has created a couple of handy tools that make getting...
In our dApp, we will have a simple react user interface that has a material button asking the user to connect to MetaMask. And if they do not have an account, they can create one or log in to their account. They will then view their wallet balance and address displayed on...
Social logins: we have all seen them, we have all used them. "Login with Facebook". "Login with Github".If you have been around the Web3 community you may have come across a more recent player in the game: "Login with MetaMask". For instance, this is...
Golang is very popular among backend developers for building infrastructures and microservices. Go is a procedural programming language. Developed in 2007 by Robert Griesemer, Rob Pike, and Ken Thompson at Google, then launched in 2009 as...
Python is one of the most versatile programming languages out there with an abundance of use cases; We can build many applications with Python from client-side to back end. In this guide, we will cover creating an Ethereum address in Python using the
When it comes to programming, there’s hardly anyone who has not used or heard about JavaScript. JavaScript was initially created for client-side scripting but has become a full-featured Object-Oriented...
¡Hola querido lector! Hemos recibido un montón de pedidos por otra guía de NFT en Solana. En la guia anterior no llegamos hasta la parte mas jugosa, que es la parte donde enlazamos una...
Ethereum log records are very useful to understand and keep track of smart contract events. In this guide, we are going to learn how to fetch Ethereum event logs in Ruby using eth.rb Ruby...
Hello readers, in this guide we are going to walk through how to set up an NFT mint on Solana using Candy Machine v2. Candy Machine v2 has some similarities to v1 but quite a lot of differences. The main catalyst that drove v2 was to curb the botting that the NFT...
Terra has emerged as the choice of blockchain for developing a stablecoin based dApp. Terra provides a cutting-edge stablecoin framework for modern dApp development. In this guide, we will learn how to send a transaction on Terra using their javascript library...
NFTs are great for creators to monetize their artwork and for people to get ownership of an item. But since gas prices are usually high given the highly in-demand space on Ethereum, minting an NFT or an NFT collection can become costly for a creator. Lazy minting solves...