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.
- Host: GitHub
- URL: https://github.com/jitendragangwar123/mint-the-nft
- Owner: jitendragangwar123
- Created: 2022-08-08T10:23:12.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-10-19T09:54:59.000Z (over 2 years ago)
- Last Synced: 2025-01-14T05:42:45.005Z (3 months ago)
- Topics: erc721, hardhat, javascript, nft-marketplace, solidity
- Language: JavaScript
- Homepage:
- Size: 409 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```