Skip to content

Here you can find a smart contract example and instructions on how to manually mint ERC721 tokens, including metadata using Filebase and IPFS.

License

Notifications You must be signed in to change notification settings

x4fingers/mint-erc721-tokens

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Manually mint ERC721 tokens

This simple project shows how to use Remix IDE, Filebase, and IPFS to mint an ERC721 token.

TL;DR

In this repo, you will find an ERC721 smart contract and instructions to manually mint an NFT on the Polygon Mumbai network and see it on testnet Rarible or testnet Opensea using a Chainstack endpoint.

ERC721 smart contract

The smart contract in this repo is already good to be deployed out of the box. You can use the OpenZeppelin contracts wizard to create your custom smart contract easily.

The OpenZeppelin contracts wizard base for this smart contract was:

  • ERC721

    • Mintable.
      • Auto Increment Ids.
    • Enumerable.
    • URI Storage.

    Note: Check the OpenZeppelin docs to see more details about the features.

    screely-1662586876527

Modifications to the base ERC721 contract

The OpenZeppelin tool creates a primary smart contract based on the features that we have selected. But we want to make a few small changes to make it more usable.

We'll make two changes:

  1. Allow any address to use the safeMint() function so that not only the owner of the contract can mint.
    • Note that this is for learning purposes, so in this case any address can mint for free.
  2. Put a limited number of mints avalable.

safeMint() function

This is the function that mints the NFT to the address selected. It takes two parameters:

  • The address to mint the NFT to.
  • The URI containing the Metadata of the NFT.

We first need to modify the top of the contract to:

  • Remove the Ownable.sol contract to allow anyone to mint.
  • Add a variable to limit the number of NFTs that can be minted
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/[email protected]/token/ERC721/ERC721.sol";
import "@openzeppelin/[email protected]/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/[email protected]/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/[email protected]/utils/Counters.sol";

contract LearnWeb3 is ERC721, ERC721Enumerable, ERC721URIStorage {
    using Counters for Counters.Counter;    // Initialize the counter library

    // Initialize a counter variable, private means that only this smart contract can access it. 
    Counters.Counter private _tokenIdCounter;

    uint256 MAX_SUPPLY = 100;   // Limits the number of mints to 100.

Then we modify the safeMint() function like this:

function safeMint(address to, string memory uri) public {
        uint256 tokenId = _tokenIdCounter.current();
        require(tokenId <= MAX_SUPPLY, "LearnWeb3 is sold out!");
        _tokenIdCounter.increment();
        _safeMint(to, tokenId);
        _setTokenURI(tokenId, uri);
    }

Now our contract is ready to be deployed.

Deploy the smart contract on Polygon Mumbai

To deploy on Polygon Mumbai, you will need a Mumbai endpoint. For this, I use Chainstack.

Set up the endpoint URL

  1. Sign up with Chainstack.
  2. Deploy a node.
  3. View node access and credentials.

We can deploy directly from Remix by:

  • Compiling the smart contract with Ctrl + S (Make sure to select at least the 0.8.0 version of the compiler).
  • Deploying the smart contract from the Deploy $ run transactions section.
    • Select Injected Provider - Metamask.
    • Click deploy and confirm the transaction on MetaMask.

screely-1662588123818

Congratulations! You just deployed an NFT contract!

Use Filebase to host the NFT image on IPFS

In this tutorial we use Filebase to host the image on IPFS.

Once you have an account and you are on dashboard:

  • Select Buckets and create a new bucket.

screely-1662594653071

  • Name the bucket (low caps only) and select IPFS as the Storage Network.

screely-1662595023198

Now you can click Upload and upload the image file.

Once it is uploaded, you can click on it and see the details. We are interested in the IPFS Gateway URL, which we need to use in the next section.

screely-1662595401003

Set up the Metadata

The metadata describes the details of our NFT; it can be used to provide attributes, names, descriptions, etc.

We use a JSON file to set up the Metadata, which will provide the URI.

In this tutorial, we mint and set it up manually so you can see how it works, but there are ways to set it up programmatically, which is used to handle many NFTs.

Check the Rarible docs to see the standard and examples for the metadata.

Copy the IPFS Gateway URL from Filebase and paste into the "image" parameter of the metadata JSON file.

The JSON file looks like this and we can name it metadata.json:

{
    "name": "LearnWeb3",
    "description": "NFTs to practice and learn web3 development.",
    "image": "IPFS Gateway URL from filesafe",
    "external_url": "Website URL if you have it",
    "attributes": [
       {
          "trait_type": "Learning",
          "value": "Web3 development"
       },
       {
        "trait_type": "Environment",
        "value": "The Matrix"
     },
     {
        "trait_type": "Charachter",
        "value": "Ape"
     }
    ]
 }

As you can see, we can set up the details and attributes, which will be picked up by the different NFT marketplaces and displayed to the user.

Now upload the metatada.json file in the same bucket we just uploaded the image in Filebase.

In this case we want to take the IPFS CID

screely-1662595401003

Mint an NFT

Now we have everything set up to mint our first NFT!

As a recap:

  • We deployed an ERC721 on the Mumbai testnet.
  • We uploaded the image into IPFS using Filebase.
  • We created a metadata.json for the attributes and the URI.

Minting the NFT now is simple, and we can do it from Remix.

From the deployed contract section expand the safemint function. You will have two parameters:

  • to: Instert your wallet address (or the address the NFT will be minted to).
  • uri: type ipfs:// + IPFS CID from the metadata.json file uploaed on Filebase.
    • like this example: ipfs://QmcWx9y6yfLY1v9NZxxxxxxxx

screely-1662596101916

Then just press transact! Once you confirm the transaction you can verity it on the Mumbai explorer like my example.

See your NFT on a marketplace

At this point, you minted your NFT, and you can see it on a marketplace!

Note that it might take time for the marketplace to fetch the metadata.

See how Opensea displays the metadata.

screely-1662596829141

Congratulations on completing this tutorial and learning how to manually mint NFTs!

See the NFT I minted on testnet Opensea and testnet Rarible.

About

Here you can find a smart contract example and instructions on how to manually mint ERC721 tokens, including metadata using Filebase and IPFS.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Solidity 100.0%