Using NFT.storage
This tutorial will teach you how to use NFT.Storage to store NFTs on IPFS and Filecoin for the Harmony blockchain.
NFT.Storage is a long-term storage service designed for off-chain NFT data (like metadata, images, and other assets). Data is content addressed using IPFS, meaning the URL pointing to a piece of data (“ipfs://…”) is completely unique to that data. IPFS URLs can be used in NFTs and metadata to ensure the NFT forever actually refers to the intended data (eliminating things like rug pulls). IPFS URLs are storage layer agnostic - meaning you can store your data on many storage layers at once (whether it be on local storage, cloud storage, or multiple decentralized storage networks.
NFT.Storage stores many copies of uploaded data on the public IPFS network and Filecoin network in two primary ways: in dedicated IPFS servers managed by NFT.Storage, and decentralized on Filecoin. Since IPFS is a standard used by many different storage services, it's easy to redundantly store data uploaded to NFT.Storage on any other IPFS-compatible storage solutions.
This tutorial will walk you through the process of creating a simple NFT on Harmony, using NFT.Storage to store off-chain NFT data on IPFS and Filecoin to achieve a fully decentralized, verifiable NFT.
Overview
This tutorial will walk you through the process of creating a simple NFT on Harmony, using NFT.Storage to store off-chain NFT data on IPFS and Filecoin to achieve a fully decentralized, verifiable NFT. It is organized in 4 steps:
Write an NFT smart contract using Truffle
Connect to Harmony blockchain via Metamask
Upload your NFT assets via NFT.Storage
Invoking NFT smart contract to mint NFT via MetaMask
Prerequisites
This tutorial requires basic knowledge about Harmony blockchain, HRC721/ERC721, Truffle and Metamask.
Before you start this tutorial, make sure you have installed these necessary tools:
Part 1: Write the NFT smart contract
In this step, we will create a React application and use the Truffle framework to developer, compile, and deploy our NFT smart contract.
Create the React project and initialize Truffle
Once the project is created and initialized successfully, you will have a basic React project structure and Truffle project structure which will include:
contracts
for our smart contractsmigrations
for the deployment scriptstruffle.js
for all Truffle-related configurations
Create the Solidity contract
Next, let's create the smart contract. We will use the ERC721URIStorage contract from the Openzepplin contracts library so that our NFT contract inherits standard ERC721 functions as well as storage based token URI management.
First, install
openzepplin
via npm:Then create a
HarmonyNFT.sol
file under thecontracts
folder, and copy the ERC721URIStorage smart contract code into that file.Build smart contract
Now the NFT smart contract is ready, let's compile it.
If the contract compiles successfully, related manifest files will be generated in
build/contracts
, which we will use later in this tutorial. (Tip: If you get a solidity compiler version incompatibility error, we can configure it intruffle.js
to use the right compiler version.)Create deployment script
Next, we need to to deploy the Solidity contract to the Harmony blockchain. Create a file named
2_deploy_contracts.js
undermigrations
folder with the following code:Deploy NFT contract to Harmony Testnet
In order to deploy the NFT smart contract to Harmony Testnet, you need to let Truffle which network configuration and which Harmony wallet to use. You can do this by configuring truffle in
truffle-config.js
.First, install
@truffle/hdwallet-provider
via npm.Add harmony testnet configuration to
truffle-config.js
file. Also make sure requesting some TestNet token (ONE) from Harmony TestNet Faucet to the wallet so we can pay for transaction fees for smart contract deployment.Now the truffle configuration is all set, we can run the following command to deploy the NFT contract to Harmony Testnet.
Once the smart contract is deployed success, remember to record your smart contract address which we will also use later. You can also find your NFT contract on Harmony Testnet blockchain explorer, also test it on Remix.
Part 2: Connect to Metamask
In this step, we will write some front-end code to connect to a MetaMask wallet so that you can use it to mint the NFT and pay transaction fees.
Before we move forward, make sure we have installed MetaMask browser extension and add Harmony Network RPC Endpoint (we will use Harmony Testnet in this tutorial). Check more instructions here.
Now, let's start coding.
Create a WalletConnect component
This component will detect the wallet provider and connect to MetaMask. Go to the
harmony-nft/src
folder which was created as part of your React app in Part 1.Within
harmony-nft/src
, create a new foldercomponents
. Insidecomponents
, create aWalletConnect.js
file and paste in the following code:Also make sure requesting some TestNet token (ONE) from Harmony TestNet Faucet to the wallet so we can pay for transaction fees for minting NFT on Harmony Blockchain.
Add the WalletConnect component to
App.js
Now, let's test the wallet connection function. Run the following command to start the React application.
Once the application is up, you can click the
Connect Wallet
button to invoke the MetaMask and authorize the connection.
Part 3: MintNFT process
In this step, we will write the code that mints the NFT. Have the following items ready:
NFT Smart Contract deployed to Harmony Testnet.
NFT contract address
NFT contract manifest JSON file
Metamask browser extension installed and filled your wallet with some TestNet token - ONE.
In this step, we will write code to mint a NFT on Harmony blockchain and also upload your NFT asset and metadata to IPFS & Filecoin so that your NFT is truly decentralized other than storing on centralized cloud. Here, we will use a tool called NFT.Storage which offers free and long-term storage on IPFS and Filecoin.
Create a NFT.Storage account.
In order to use NFT.Storage to upload NFT assets, we will need to sign up an account and create a new API Key which will be used in our code to access NFT.Storage services.
Also we will use ethers to interact with MetaMask to invoke NFT smart contract which is deployed on Harmony blockchain.
Create mintNFT component
Now we will create a
MintNFT.js
component insrc/components
folder. Let's first create a form to upload NFT Images inMintNFT.js
.Once the NFT image is captured via form upload, we will upload the NFT asset and metadata to IPFS/Filecoin via NFT.storage, then invoke the NFT smart contract on Harmony to mint a new item. The basic logic will be like following:
Upload NFT asset via NFT.Storage
Now let's set up NFT.Storage so you can upload NFT assets.
Install NFT.Storage dependency in your React app.
We are all set to start coding your logic. Add the following code blocks to
MintNFT.js
. (You can also copy the entire sample file from Github.)
First, import NFTstorage and get the API Key that we created in the first step.
Then, initialize the NFTStorage connection using your API KEY.
We can simply call
nftStorage.store()
to upload NFT content, which will upload your NFT as well as its related metadata to IPFS & Filecoin. You can customize your NFT metadata by updating properties like name and description.If NFT asset is uploaded successfully, NFT.Storage will do the following two things:
Store NFT image on IPFS & Filecoin.
Update NFT metadata with the IPFS link to your NFT image, then also store the NFT metadata on IPFS & Filecoin.
Mint a new NFT on Harmony
After getting the metadata on IPFS, we can invoke the NFT smart contract on Harmony to mint a new NFT using that metadata as tokenURI.
In this step, we will need to use
ethers
to interact with Metamask, so we first install this dependency.In order to invoke the NFT contract we have deployed to Harmony Testnet, we need to grab the contract ABI from the manifest JSON file which was generated via smart contract compilation.
Then we are ready to write code to send MintNFT transaction in
MintNFT.js
. This will import ethers and the smart contract manifest file, and also create anftContractAddress
for the deployed NFT contract.Then we can load the deployed NFT contract and invoke mintItem method.
Preview the new minted NFT
By now, we have all the codes to upload NFT data, send mint item transaction to Harmony. If everything works as expected, we will be able to mint a fresh NFT with its images and metadata stored on IPFS & Filecoin, minting transaction recorded on Harmony Blockchain. Let's add some code to preview our fresh minted NFT, including the NFT image, NFT metadata on IPFS and mintNFT transaction on Harmony.
You can find the full MintNFT.js file on Github.
Let's run it
Now that we've finished writing all the code, we can run npm start
to start our React application. If everything is working, you should see a page like this:
Once we connect to MetaMask and upload a image to mint NFT, we will need to sign the transaction via MetaMask. Then a new NFT on Harmony is minted. We can also check the NFT metadata on IPFS and the minting transaction on Harmony Testnet.
Congratulations! You have written a simple React app for minting NFTs on Harmony with storage on IPFS and Filecoin. Feel free to explore more possibilities.
Looking for the sample code from this tutorial? You can find it in the harmony-nft-demo Github repo.
Last updated