An open API service indexing awesome lists of open source software.

https://github.com/jitendragangwar123/mint-the-nft

Mint your first NFT by using ERC721 token.
https://github.com/jitendragangwar123/mint-the-nft

erc721 hardhat javascript nft-marketplace solidity

Last synced: about 2 months ago
JSON representation

Mint your first NFT by using ERC721 token.

Awesome Lists containing this project

README

        

# Mint The NFT Using Hardhat

This project demonstrates a basic Hardhat use case like Mint the NFT. It comes with a sample ERC721 contract, a test for that contract, and a script that deploys that contract.

Try running some of the following tasks:

```shell
npx hardhat help
npx hardhat test
GAS_REPORT=true npx hardhat test
npx hardhat node
npx hardhat run scripts/deploy.js
```
Export from VSCode to github Repository:
```shell
git config --global user.name "jitendragangwar123"
git config --global user.email "[email protected]"
git init
git add .
git commit -m "initial commit"
git branch -M main
git remote add origin https://github.com/jitendragangwar123/Mint_The_NFT.git
git push -u origin main
git push -f origin main //forcefully push on github repository

```

Depoying this project by using these commands:

```shell
npm init -y //Create the .json file.
npm install --save-dev hardhat // Install the Hardhat setup
npm install nft.storage // Store the NFT Image and Metadata on IPFS
npm install mime // Store the NFT Image and Metadata on IPFS
npx hardhat //Start the Hardhat
npx hardhat compile //Compile the Smart Contract
npx hardhat run scripts/deploy.js --network rinkeby //Deploy the Smart Contract
```