NFT Minter Tutorial
One of the greatest challenges for developers coming from a Web2 background is figuring out how to connect your smart contract to a frontend project and interact with it.
By building an NFT minter — a simple UI where you can input a link to your digital asset, a title, and a description — you'll learn how to:
- Connect to MetaMask via your frontend project
- Call smart contract methods from your frontend
- Sign transactions using MetaMask
In this tutorial, we will be using React(opens in a new tab) as our frontend framework. Because this tutorial is primarily focused on Web3 development, we won't be spending much time breaking down React fundamentals. Instead, we'll be focusing on bringing functionality to our project.
As a prerequisite, you should have a beginner-level understanding of React—know how components, props, useState/useEffect, and basic function calling works. If you've never heard of any of those terms before, you may want to check out this Intro to React tutorial(opens in a new tab). For the more visual learners, we highly recommend this excellent Full Modern React Tutorial(opens in a new tab) video series by Net Ninja.
And if you haven't already, you'll definitely need an Alchemy account to complete this tutorial as well as build anything on the blockchain. Sign up for a free account here(opens in a new tab).
Without further ado, let's get started!
Making NFTs 101
Before we even start looking at any code, it's important to understand how making an NFT works. It involves two steps:
Publish an NFT smart contract on the Ethereum blockchain
The biggest difference between the two NFT smart contract standards is that ERC-1155 is a multi-token standard and includes batch functionality, whereas with the ERC-721 is a single-token standard and therefore only supports transferring one token at a time.
Call the minting function
Usually, this minting function requires you to pass in two variables as parameters, first the recipient
, which specifies the address that will receive your freshly minted NFT, and second the NFT's tokenURI
, a string that resolves to a JSON document describing the NFT's metadata.
An NFT's metadata is really what brings it to life, allowing it to have properties, such as a name, description, image (or different digital asset), and other attributes. Here's an example of a tokenURI(opens in a new tab), which contains an NFT's metadata.
In this tutorial, we're going to focus on part 2, calling an existing NFT's smart contract minting function using our React UI.
Here's a link(opens in a new tab) to the ERC-721 NFT smart contract we will be calling in this tutorial. If you'd like to learn how we made it, we highly recommend that you check out our other tutorial, "How to Create an NFT"(opens in a new tab).
Cool, now that we understand how making an NFT works, let's clone our starter files!
Clone the starter files
First, go to the nft-minter-tutorial GitHub repository(opens in a new tab) to get the starter files for this project. Clone this repository into your local environment.
When you open this cloned nft-minter-tutorial
repository, you'll notice that it contains two folders: minter-starter-files
and nft-minter
.
minter-starter-files
contains the starter files (essentially the React UI) for this project. In this tutorial, we will be working in this directory, as you learn how to bring this UI to life by connecting it to your Ethereum wallet and an NFT smart contract.nft-minter
contains the entire completed tutorial and is there for you as a reference if you get stuck.
Next, open your copy of minter-starter-files
in your code editor, and then navigate into your src
folder.
All of the code we'll write will live under the src
folder. We'll be editing the Minter.js
component and writing additional javascript files to give our project Web3 functionality.
Step 2: Check out our starter files
Before we start coding, it's important to check out what's already provided for us in the starter files.
Get your react project running
Let's start by running the React project in our browser. The beauty of React is that once we have our project running in our browser, any changes we save will be updated live in our browser.
To get the project running, navigate to the root directory of the minter-starter-files
folder, and the run npm install
in your terminal to install the dependencies of the project:
cd minter-starter-filesnpm install
Once those have finished installing, run npm start
in your terminal:
npm start
Doing so should open http://localhost:3000/ in your browser, where you'll see the frontend for our project. It should consist of 3 fields: a place to input a link to your NFT's asset, enter the name of your NFT, and provide a description.
If you try clicking "Connect Wallet" or "Mint NFT" buttons, you'll notice they don't work—that's because we still need to program their functionality! :)
The Minter.js component
NOTE: Make sure you're in the minter-starter-files
folder and not the nft-minter
folder!
Let's go back into the src
folder in our editor and open the Minter.js
file. It's super important that we understand everything in this file, as it is the primary React component we will be working on.
At the top of our this file, we have our state variables that we will update after specific events.
1//State variables2const [walletAddress, setWallet] = useState("")3const [status, setStatus] = useState("")4const [name, setName] = useState("")5const [description, setDescription] = useState("")6const [url, setURL] = useState("")
Never heard of React state variables or state hooks? Check out these(opens in a new tab) docs.
Here's what each of the variables represent:
walletAddress
- a string that stores the user's wallet addressstatus
- a string that contains a message to display at the bottom of the UIname
- a string that stores the NFT's namedescription
- a string that stores the NFT's descriptionurl
- a string that is a link to the NFT's digital asset
After the state variables, you'll see three un-implemented functions: useEffect
, connectWalletPressed
, and onMintPressed
. You'll notice that all of these functions are async
, that's because we will be making asynchronous API calls in them! Their names are eponymous with their functionalities:
1useEffect(async () => {2 //TODO: implement3}, [])45const connectWalletPressed = async () => {6 //TODO: implement7}89const onMintPressed = async () => {10 //TODO: implement11}Ratidza zvese
useEffect
(opens in a new tab) - this is a React hook that is called after your component is rendered. Because it has an empty array[]
prop passed into it (see line 3), it will only be called on the component's first render. Here we'll call our wallet listener and another wallet function to update our UI to reflect whether a wallet is already connected.connectWalletPressed
- this function will be called to connect the user's MetaMask wallet to our dapp.onMintPressed
- this function will be called to mint the user's NFT.
Near the end of this file, we have the UI of our component. If you scan this code carefully, you'll notice that we update our url
, name
, and description
state variables when the input in their corresponding text fields change.
You'll also see that connectWalletPressed
and onMintPressed
are called when the buttons with IDs mintButton
and walletButton
are clicked respectively.
1//the UI of our component2return (3 <div className="Minter">4 <button id="walletButton" onClick={connectWalletPressed}>5 {walletAddress.length > 0 ? (6 "Connected: " +7 String(walletAddress).substring(0, 6) +8 "..." +9 String(walletAddress).substring(38)10 ) : (11 <span>Connect Wallet</span>12 )}13 </button>1415 <br></br>16 <h1 id="title">🧙♂️ Alchemy NFT Minter</h1>17 <p>18 Simply add your asset's link, name, and description, then press "Mint."19 </p>20 <form>21 <h2>🖼 Link to asset: </h2>22 <input23 type="text"24 placeholder="e.g. https://gateway.pinata.cloud/ipfs/<hash>"25 onChange={(event) => setURL(event.target.value)}26 />27 <h2>🤔 Name: </h2>28 <input29 type="text"30 placeholder="e.g. My first NFT!"31 onChange={(event) => setName(event.target.value)}32 />33 <h2>✍️ Description: </h2>34 <input35 type="text"36 placeholder="e.g. Even cooler than cryptokitties ;)"37 onChange={(event) => setDescription(event.target.value)}38 />39 </form>40 <button id="mintButton" onClick={onMintPressed}>41 Mint NFT42 </button>43 <p id="status">{status}</p>44 </div>45)Ratidza zvese
Finally, let's address where is this Minter component added.
If you go to the App.js
file, which is the main component in React that acts as a container for all other components, you'll see that our Minter component is injected on line 7.
In this tutorial, we'll only be editing the Minter.js file
and adding files in our src
folder.
Now that we understand what we're working with, let's set up our Ethereum wallet!
Set up your Ethereum wallet
For users to be able to interact with your smart contract they will need to connect their Ethereum wallet to your dapp.
Download MetaMask
For this tutorial, we’ll use MetaMask, a virtual wallet in the browser used to manage your Ethereum account address. If you want to understand more about how transactions on Ethereum work, check out this page.
You can download and create a MetaMask account for free here(opens in a new tab). When you are creating an account, or if you already have an account, make sure to switch over to the “Ropsten Test Network” in the upper right (so that we’re not dealing with real money).
Add ether from a Faucet
In order to mint our NFTs (or sign any transactions on the Ethereum blockchain), we’ll need some fake Eth. To get Eth you can go to the Ropsten faucet(opens in a new tab) and enter your Ropsten account address, then click “Send Ropsten Eth.” You should see Eth in your MetaMask account soon after!
Check your balance
To double check our balance is there, let’s make an eth_getBalance(opens in a new tab) request using Alchemy’s composer tool(opens in a new tab). This will return the amount of Eth in our wallet. After you input your MetaMask account address and click “Send Request”, you should see a response like this:
1{"jsonrpc": "2.0", "id": 0, "result": "0xde0b6b3a7640000"}
NOTE: This result is in wei not eth. Wei is used as the smallest denomination of ether. The conversion from wei to eth is: 1 eth = 10¹⁸ wei. So if we convert 0xde0b6b3a7640000 to decimal we get 1*10¹⁸ which equals 1 eth.
Phew! Our fake money is all there!
Connect MetaMask to your UI
Now that our MetaMask wallet is set up, let's connect our dapp to it!
Because we want to prescribe to the MVC(opens in a new tab) paradigm, we're going to create a separate file that contains our functions to manage the logic, data, and rules of our dapp, and then pass those functions to our frontend (our Minter.js component).
The connectWallet
function
To do so, let's create a new folder called utils
in your src
directory and add a file called interact.js
inside it, which will contain all of our wallet and smart contract interaction functions.
In our interact.js
file, we will write a connectWallet
function, which we will then import and call in our Minter.js
component.
In your interact.js
file, add the following
1export const connectWallet = async () => {2 if (window.ethereum) {3 try {4 const addressArray = await window.ethereum.request({5 method: "eth_requestAccounts",6 })7 const obj = {8 status: "👆🏽 Write a message in the text-field above.",9 address: addressArray[0],10 }11 return obj12 } catch (err) {13 return {14 address: "",15 status: "😥 " + err.message,16 }17 }18 } else {19 return {20 address: "",21 status: (22 <span>23 <p>24 {" "}25 🦊 <a target="_blank" href={`https://metamask.io/download.html`}>26 You must install MetaMask, a virtual Ethereum wallet, in your27 browser.28 </a>29 </p>30 </span>31 ),32 }33 }34}Ratidza zvese
Let's breakdown what this code does:
First, our function checks if it window.ethereum
is enabled in your browser.
window.ethereum
is a global API injected by MetaMask and other wallet providers that allows websites to request users' Ethereum accounts. If approved, it can read data from the blockchains the user is connected to, and suggest that the user sign messages and transactions. Check out the MetaMask docs(opens in a new tab) for more info!
If window.ethereum
is not present, then that means MetaMask is not installed. This results in a JSON object being returned, where address
returned is an empty string, and the status
JSX object relays that the user must install MetaMask.
Most of the functions we write will be returning JSON objects that we can use to update our state variables and UI.
Now if window.ethereum
is present, then that's when things get interesting.
Using a try/catch loop, we'll try to connect to MetaMask by calling window.ethereum.request({ method: "eth_requestAccounts" });
(opens in a new tab). Calling this function will open up MetaMask in the browser, whereby the user will be prompted to connect their wallet to your dapp.
- If the user chooses to connect,
method: "eth_requestAccounts"
will return an array that contains all of the user's account addresses that are connected to the dapp. Altogether, ourconnectWallet
function will return a JSON object that contains the firstaddress
in this array (see line 9) and astatus
message that prompts the user to write a message to the smart contract. - If the user rejects the connection, then the JSON object will contain an empty string for the
address
returned and astatus
message that reflects that the user rejected the connection.
Add connectWallet function to your Minter.js UI Component
Now that we've written this connectWallet
function, let's connect it to our Minter.js.
component.
First, we'll have to import our function into our Minter.js
file by adding import { connectWallet } from "./utils/interact.js";
to the top of the Minter.js
file. Your first 11 lines of Minter.js
should now look like this:
1import { useEffect, useState } from "react";2import { connectWallet } from "./utils/interact.js";34const Minter = (props) => {56 //State variables7 const [walletAddress, setWallet] = useState("");8 const [status, setStatus] = useState("");9 const [name, setName] = useState("");10 const [description, setDescription] = useState("");11 const [url, setURL] = useState("");Ratidza zvese
Then, inside our connectWalletPressed
function, we'll call our imported connectWallet
function, like so:
1const connectWalletPressed = async () => {2 const walletResponse = await connectWallet()3 setStatus(walletResponse.status)4 setWallet(walletResponse.address)5}
Notice how most of our functionality is abstracted away from our Minter.js
component from the interact.js
file? This is so we comply with the M-V-C paradigm!
In connectWalletPressed
, we simply make an await call to our imported connectWallet
function, and using its response, we update our status
and walletAddress
variables via their state hooks.
Now, let's save both files Minter.js
and interact.js
and test out our UI so far.
Open your browser on localhost:3000, and press the "Connect Wallet" button on the top right of the page.
If you have MetaMask installed, you should be prompted to connect your wallet to your dapp. Accept the invitation to connect.
You should see that the wallet button now reflects that your address is connected.
Next, try refreshing the page... this is strange. Our wallet button is prompting us to connect MetaMask, even though it is already connected...
Don't worry though! We easily can fix that by implementing a function called getCurrentWalletConnected
, which will check if an address is already connected to our dapp and update our UI accordingly!
The getCurrentWalletConnected function
In your interact.js
file, add the following getCurrentWalletConnected
function:
1export const getCurrentWalletConnected = async () => {2 if (window.ethereum) {3 try {4 const addressArray = await window.ethereum.request({5 method: "eth_accounts",6 })7 if (addressArray.length > 0) {8 return {9 address: addressArray[0],10 status: "👆🏽 Write a message in the text-field above.",11 }12 } else {13 return {14 address: "",15 status: "🦊 Connect to MetaMask using the top right button.",16 }17 }18 } catch (err) {19 return {20 address: "",21 status: "😥 " + err.message,22 }23 }24 } else {25 return {26 address: "",27 status: (28 <span>29 <p>30 {" "}31 🦊 <a target="_blank" href={`https://metamask.io/download.html`}>32 You must install MetaMask, a virtual Ethereum wallet, in your33 browser.34 </a>35 </p>36 </span>37 ),38 }39 }40}Ratidza zvese
This code is very similar to the connectWallet
function we just wrote earlier.
The main difference is that instead of calling the method eth_requestAccounts
, which opens MetaMask for the user to connect their wallet, here we call the method eth_accounts
, which simply returns an array containing the MetaMask addresses currently connected to our dapp.
To see this function in action, let's call it in the useEffect
function of our Minter.js
component.
Like we did for connectWallet
, we must import this function from our interact.js
file into our Minter.js
file like so:
1import { useEffect, useState } from "react"2import {3 connectWallet,4 getCurrentWalletConnected, //import here5} from "./utils/interact.js"
Now, we simply call it in our useEffect
function:
1useEffect(async () => {2 const { address, status } = await getCurrentWalletConnected()3 setWallet(address)4 setStatus(status)5}, [])
Notice, we use the response of our call to getCurrentWalletConnected
to update our walletAddress
and status
state variables.
Once you've added this code, try refreshing our browser window. The button should say that you're connected, and show a preview of your connected wallet's address - even after you refresh!
Implement addWalletListener
The final step in our dapp wallet setup is implementing the wallet listener so our UI updates when our wallet's state changes, such as when the user disconnects or switches accounts.
In your Minter.js
file, add a function addWalletListener
that looks like the following:
1function addWalletListener() {2 if (window.ethereum) {3 window.ethereum.on("accountsChanged", (accounts) => {4 if (accounts.length > 0) {5 setWallet(accounts[0])6 setStatus("👆🏽 Write a message in the text-field above.")7 } else {8 setWallet("")9 setStatus("🦊 Connect to MetaMask using the top right button.")10 }11 })12 } else {13 setStatus(14 <p>15 {" "}16 🦊 <a target="_blank" href={`https://metamask.io/download.html`}>17 You must install MetaMask, a virtual Ethereum wallet, in your browser.18 </a>19 </p>20 )21 }22}Ratidza zvese
Let's quickly break down what's happening here:
- First, our function checks if
window.ethereum
is enabled (i.e. MetaMask is installed).- If it's not, we simply set our
status
state variable to a JSX string that prompts the user to install MetaMask. - If it is enabled, we set up the listener
window.ethereum.on("accountsChanged")
on line 3 that listens for state changes in the MetaMask wallet, which include when the user connects an additional account to the dapp, switches accounts, or disconnects an account. If there is at least one account connected, thewalletAddress
state variable is updated as the first account in theaccounts
array returned by the listener. Otherwise,walletAddress
is set as an empty string.
- If it's not, we simply set our
Finally, we must call it in our useEffect
function:
1useEffect(async () => {2 const { address, status } = await getCurrentWalletConnected()3 setWallet(address)4 setStatus(status)56 addWalletListener()7}, [])
And voila! We've completed programming all of our wallet functionality! Now that our wallet is set up, let's figure out how to mint our NFT!
NFT Metadata 101
So remember the NFT metadata we just talked about in Step 0 of this tutorial—it brings an NFT to life, allowing it to have properties, such as a digital asset, name, description, and other attributes.
We're going to need to configure this metadata as a JSON object and store it, so we can pass it in as the tokenURI
parameter when calling our smart contract's mintNFT
function.
The text in the "Link to Asset", "Name", "Description" fields will comprise the different properties of our NFT's metadata. We'll format this metadata as a JSON object, but there are a couple options for where we can store this JSON object:
- We could store it on the Ethereum blockchain; however, doing so would be very expensive.
- We could store it on a centralized server, like AWS or Firebase. But that would defeat our decentralization ethos.
- We could use IPFS, a decentralized protocol and peer-to-peer network for storing and sharing data in a distributed file system. As this protocol is decentralized and free, it is our best option!
To store our metadata on IPFS, we will use Pinata(opens in a new tab), a convenient IPFS API and toolkit. In the next step, we'll explain exactly how to do this!
Use Pinata to pin your metadata to IPFS
If you don't have a Pinata(opens in a new tab) account, sign up for a free account here(opens in a new tab) and complete the steps to verify your email and account.
Create your Pinata API key
Navigate to the https://pinata.cloud/keys(opens in a new tab) page, then select the "New Key" button at the top, set the Admin widget as enabled, and name your key.
You'll then be shown a popup with your API info. Make sure to put this somewhere safe.
Now that our key is set up, let's add it to our project so we can use it.
Create a .env file
We can safely store our Pinata key and secret in an environment file. Let's install the dotenv package(opens in a new tab) in your project directory.
Open up a new tab in your terminal (separate from the one running local host) and make sure you are in the minter-starter-files
folder, then run the following command in your terminal:
1npm install dotenv --save
Next, create a .env
file in the root directory of your minter-starter-files
by entering the following on your command line:
1vim.env
This will pop open your .env
file in vim (a text editor). To save it hit "esc" + ":" + "q" on your keyboard in that order.
Next, in VSCode, navigate to your .env
file and add your Pinata API key and API secret to it, like so:
1REACT_APP_PINATA_KEY = <pinata-api-key>2REACT_APP_PINATA_SECRET = <pinata-api-secret>
Save the file, and then you're ready to start writing the function to upload your JSON metadata to IPFS!
Implement pinJSONToIPFS
Fortunately for us, Pinata has an API specifically for uploading JSON data to IPFS(opens in a new tab) and a convenient JavaScript with axios example that we can use, with some slight modifications.
In your utils
folder, let's create another file called pinata.js
and then import our Pinata secret and key from the .env file like so:
1require("dotenv").config()2const key = process.env.REACT_APP_PINATA_KEY3const secret = process.env.REACT_APP_PINATA_SECRET
Next, paste the additional code from below into your pinata.js
file. Don't worry, we'll break down what everything means!
1require("dotenv").config()2const key = process.env.REACT_APP_PINATA_KEY3const secret = process.env.REACT_APP_PINATA_SECRET45const axios = require("axios")67export const pinJSONToIPFS = async (JSONBody) => {8 const url = `https://api.pinata.cloud/pinning/pinJSONToIPFS`9 //making axios POST request to Pinata ⬇️10 return axios11 .post(url, JSONBody, {12 headers: {13 pinata_api_key: key,14 pinata_secret_api_key: secret,15 },16 })17 .then(function (response) {18 return {19 success: true,20 pinataUrl:21 "https://gateway.pinata.cloud/ipfs/" + response.data.IpfsHash,22 }23 })24 .catch(function (error) {25 console.log(error)26 return {27 success: false,28 message: error.message,29 }30 })31}Ratidza zvese
So what does this code do exactly?
First, it imports axios(opens in a new tab), a promise based HTTP client for the browser and node.js, which we will use to make a request to Pinata.
Then we have our asynchronous function pinJSONToIPFS
, which takes a JSONBody
as its input and the Pinata api key and secret in its header, all to make a POST request to their pinJSONToIPFS
API.
- If this POST request is successful, then our function returns a JSON object with the
success
boolean as true and thepinataUrl
where our metadata was pinned. We will use thispinataUrl
returned as thetokenURI
input to our smart contract's mint function. - If this post request fails, then our function returns a JSON object with the
success
boolean as false and amessage
string that relays our error.
As with our connectWallet
function return types, we're returning JSON objects so we can use their parameters to update our state variables and UI.
Load your smart contract
Now that we have a way to upload our NFT metadata to IPFS via our pinJSONToIPFS
function, we're going to need a way to load an instance of our smart contract so we can call its mintNFT
function.
As we mentioned earlier, in this tutorial we will be using this existing NFT smart contract(opens in a new tab); however, if you'd like to learn how we made it, or make one yourself, we highly recommend you check out our other tutorial, "How to Create an NFT."(opens in a new tab).
The contract ABI
If you examined our files closely, you'll have noticed that in our src
directory, there's a contract-abi.json
file. An ABI is necessary for specifying which function a contract will invoke as well ensuring that the function will return data in the format you're expecting.
We're also going to need an Alchemy API key and the Alchemy Web3 API to connect to the Ethereum blockchain and load our smart contract.
Create your Alchemy API key
If you don't already have an Alchemy account, sign up for free here.(opens in a new tab)
Once you’ve created an Alchemy account, you can generate an API key by creating an app. This will allow us to make requests to the Ropsten test network.
Navigate to the “Create App” page in your Alchemy Dashboard by hovering over “Apps” in the nav bar and clicking “Create App”.
Name your app we chose "My First NFT!", offer a short description, select “Staging” for the Environment used for your app bookkeeping, and choose “Ropsten” for your network.
Click “Create app” and that’s it! Your app should appear in the table below.
Awesome so now that we've created our HTTP Alchemy API URL, copy it to your clipboard...
…and then let's add it to our .env
file. Altogether, your .env file should look like this:
1REACT_APP_PINATA_KEY = <pinata-key>2REACT_APP_PINATA_SECRET = <pinata-secret>3REACT_APP_ALCHEMY_KEY = https://eth-ropsten.alchemyapi.io/v2/<alchemy-key>
Now that we have our contract ABI and our Alchemy API key, we're ready to load our smart contract using Alchemy Web3(opens in a new tab).
Set up your Alchemy Web3 endpoint and contract
First, if you don't have it already, you'll need to install Alchemy Web3(opens in a new tab) by navigating to the home directory: nft-minter-tutorial
in the terminal:
1cd ..2npm install @alch/alchemy-web3
Next let's go back to our interact.js
file. At the top of the file, add the following code to import your Alchemy key from your .env file and set up your Alchemy Web3 endpoint:
1require("dotenv").config()2const alchemyKey = process.env.REACT_APP_ALCHEMY_KEY3const { createAlchemyWeb3 } = require("@alch/alchemy-web3")4const web3 = createAlchemyWeb3(alchemyKey)
Alchemy Web3(opens in a new tab) is a wrapper around Web3.js(opens in a new tab), providing enhanced API methods and other crucial benefits to make your life as a web3 developer easier. It is designed to require minimal configuration so you can start using it in your app right away!
Next, let's add our contract ABI and contract address to our file.
1require("dotenv").config()2const alchemyKey = process.env.REACT_APP_ALCHEMY_KEY3const { createAlchemyWeb3 } = require("@alch/alchemy-web3")4const web3 = createAlchemyWeb3(alchemyKey)56const contractABI = require("../contract-abi.json")7const contractAddress = "0x4C4a07F737Bf57F6632B6CAB089B78f62385aCaE"
Once we have both of those, we're ready to start coding our mint function!
Implement the mintNFT function
Inside your interact.js
file, let's define our function, mintNFT
, which eponymously will mint our NFT.
Because we will be making numerous asynchronous calls (to Pinata to pin our metadata to IPFS, Alchemy Web3 to load our smart contract, and MetaMask to sign our transactions), our function will also be asynchronous.
The three inputs to our function will be the url
of our digital asset, name
, and description
. Add the following function signature below the connectWallet
function:
1export const mintNFT = async (url, name, description) => {}
Input error handling
Naturally, it makes sense to have some sort of input error handling at the start of the function, so we exit this function if our input parameters aren't correct. Inside our function, let's add the following code:
1export const mintNFT = async (url, name, description) => {2 //error handling3 if (url.trim() == "" || name.trim() == "" || description.trim() == "") {4 return {5 success: false,6 status: "❗Please make sure all fields are completed before minting.",7 }8 }9}Ratidza zvese
Essentially, if any of the input parameters are an empty string, then we return a JSON object where the success
boolean is false, and the status
string relays that all fields in our UI must be complete.
Upload the metadata to IPFS
Once we know our metadata is formatted properly, the next step is to wrap it into a JSON object and upload it to IPFS via the pinJSONToIPFS
we wrote!
To do so, we first we need to import the pinJSONToIPFS
function into our interact.js
file. At the very top of the interact.js
, let's add:
1import { pinJSONToIPFS } from "./pinata.js"
Recall that pinJSONToIPFS
takes in a JSON body. So before we make a call to it, we're going to need to format our url
, name
, and description
parameters into a JSON object.
Let's update our code to create a JSON object called metadata
and then make a call to pinJSONToIPFS
with this metadata
parameter:
1export const mintNFT = async (url, name, description) => {2 //error handling3 if (url.trim() == "" || name.trim() == "" || description.trim() == "") {4 return {5 success: false,6 status: "❗Please make sure all fields are completed before minting.",7 }8 }910 //make metadata11 const metadata = new Object()12 metadata.name = name13 metadata.image = url14 metadata.description = description1516 //make pinata call17 const pinataResponse = await pinJSONToIPFS(metadata)18 if (!pinataResponse.success) {19 return {20 success: false,21 status: "😢 Something went wrong while uploading your tokenURI.",22 }23 }24 const tokenURI = pinataResponse.pinataUrl25}Ratidza zvese
Notice, we store the response of our call to pinJSONToIPFS(metadata)
in the pinataResponse
object. Then, we parse this object for any errors.
If there's an error, we return a JSON object where the success
boolean is false and our status
string relays that our call failed. Otherwise, we extract the pinataURL
from the pinataResponse
and store it as our tokenURI
variable.
Now it's time to load our smart contract using the Alchemy Web3 API that we initialized at the top of our file. Add the following line of code to the bottom of the mintNFT
function to set the contract at the window.contract
global variable:
1window.contract = await new web3.eth.Contract(contractABI, contractAddress)
The last thing to add in our mintNFT
function is our Ethereum transaction:
1//set up your Ethereum transaction2const transactionParameters = {3 to: contractAddress, // Required except during contract publications.4 from: window.ethereum.selectedAddress, // must match user's active address.5 data: window.contract.methods6 .mintNFT(window.ethereum.selectedAddress, tokenURI)7 .encodeABI(), //make call to NFT smart contract8}910//sign the transaction via MetaMask11try {12 const txHash = await window.ethereum.request({13 method: "eth_sendTransaction",14 params: [transactionParameters],15 })16 return {17 success: true,18 status:19 "✅ Check out your transaction on Etherscan: https://ropsten.etherscan.io/tx/" +20 txHash,21 }22} catch (error) {23 return {24 success: false,25 status: "😥 Something went wrong: " + error.message,26 }27}Ratidza zvese
If you're already familiar with Ethereum transactions, you'll notice that the structure is pretty similar to what you've seen.
- First, we set up our transactions parameters.
to
specifies the recipient address (our smart contract)from
specifies the signer of the transaction (the user's connected address to MetaMask:window.ethereum.selectedAddress
)data
contains the call to our smart contractmintNFT
method, which receives ourtokenURI
and the user's wallet address,window.ethereum.selectedAddress
, as inputs
- Then, we make an await call,
window.ethereum.request,
where we ask MetaMask to sign the transaction. Notice, in this request, we're specifying our eth method (eth_SentTransaction) and passing in ourtransactionParameters
. At this point, MetaMask will open up in the browser, and prompt the user to sign or reject the transaction.- If the transaction is successful, the function will return a JSON object where the boolean
success
is set to true and thestatus
string prompts the user to check out Etherscan for more information about their transaction. - If the transaction fails, the function will return a JSON object where the
success
boolean is set to false, and thestatus
string relays the error message.
- If the transaction is successful, the function will return a JSON object where the boolean
Altogether, our mintNFT
function should look like this:
1export const mintNFT = async (url, name, description) => {2 //error handling3 if (url.trim() == "" || name.trim() == "" || description.trim() == "") {4 return {5 success: false,6 status: "❗Please make sure all fields are completed before minting.",7 }8 }910 //make metadata11 const metadata = new Object()12 metadata.name = name13 metadata.image = url14 metadata.description = description1516 //pinata pin request17 const pinataResponse = await pinJSONToIPFS(metadata)18 if (!pinataResponse.success) {19 return {20 success: false,21 status: "😢 Something went wrong while uploading your tokenURI.",22 }23 }24 const tokenURI = pinataResponse.pinataUrl2526 //load smart contract27 window.contract = await new web3.eth.Contract(contractABI, contractAddress) //loadContract();2829 //set up your Ethereum transaction30 const transactionParameters = {31 to: contractAddress, // Required except during contract publications.32 from: window.ethereum.selectedAddress, // must match user's active address.33 data: window.contract.methods34 .mintNFT(window.ethereum.selectedAddress, tokenURI)35 .encodeABI(), //make call to NFT smart contract36 }3738 //sign transaction via MetaMask39 try {40 const txHash = await window.ethereum.request({41 method: "eth_sendTransaction",42 params: [transactionParameters],43 })44 return {45 success: true,46 status:47 "✅ Check out your transaction on Etherscan: https://ropsten.etherscan.io/tx/" +48 txHash,49 }50 } catch (error) {51 return {52 success: false,53 status: "😥 Something went wrong: " + error.message,54 }55 }56}Ratidza zvese
That's one giant function! Now, we just need to connect our mintNFT
function to our Minter.js
component...
Connect mintNFT to our Minter.js frontend
Open up your Minter.js
file and update the import { connectWallet, getCurrentWalletConnected } from "./utils/interact.js";
line at the top to be:
1import {2 connectWallet,3 getCurrentWalletConnected,4 mintNFT,5} from "./utils/interact.js"
Finally, implement the onMintPressed
function to make await call to your imported mintNFT
function and update the status
state variable to reflect whether our transaction succeeded or failed:
1const onMintPressed = async () => {2 const { status } = await mintNFT(url, name, description)3 setStatus(status)4}
Deploy your NFT to a live website
Ready to take your project live for users to interact with? Check out this tutorial(opens in a new tab) for deploying your Minter to a live website.
One last step...
Take the blockchain world by storm
Just kidding, you made it to the end of the tutorial!
To recap, by building an NFT minter, you successfully learned how to:
- Connect to MetaMask via your frontend project
- Call smart contract methods from your frontend
- Sign transactions using MetaMask
Presumably, you'd like to be able to show off the NFTs minted via your dapp in your wallet — so be sure to check out our quick tutorial How to View Your NFT in Your Wallet(opens in a new tab)!
And, as always, if you have any questions, we're here to help in the Alchemy Discord(opens in a new tab). We can't wait to see how you apply the concepts from this tutorial to your future projects!
Zvapedzisira kugadziriswa: @wackerow(opens in a new tab), 2024 Chivabvu 7