How to mint a ERC721 token (NFT) for Udacity’s capstone?

--

Udacity Nanodegree

Test that you can mint locally

You can do this by using the tests in truffle. In the tests you can verify if the mint function is working as expected.

Mint a token for a testnet

You have these options

  1. Use this javascript code https://github.com/andresaaap/mint-ntf or this https://docs.alchemy.com/alchemy/tutorials/how-to-create-an-nft/how-to-mint-an-nft-with-ethers
  2. Use Rinkeby etherscan to interact with the contract https://rinkeby.etherscan.io
  3. (Recommended) Use MyEtherWallet to interact with the contract https://vintage.myetherwallet.com/#contracts

This is a tutorial in YouTube https://youtu.be/8MChn-NJJB0 you can see how to use MyEtherWallet to mint a new token. Before you can do this you need to deploy the contract to the testnet

--

--