Shardeum NFT Minter Dapp

This is an overview of a NFT minting dapp on Shardeum.

result

Here's the Tutorial Video --> Video Link

Tech Stack Used

  • React
  • Ethers
  • Hardhat
  • Solidity
  • Pinata
  • Material UI
  • Webpack

Features

  • Connect Wallet & See Wallet address & balance
  • Upload Images/Jpeg/Videos directly to IPFS before minting
  • Mint on Shardeum Testnet
  • Intuitive UI statuses for minting

How to run

  1. Clone the repo
git clone https://github.com/SamarthSaxena10/NFT-Minting-Dapp.git
  1. Install dependencies
npm install
  1. In .env and add the values
PRIVATE_KEY=
  1. Compile and Deploy the Contract
npx hardhat compile

npx hardhat run scripts/deploy.js --network sphinx
  1. Add the contract address in connectWallet.js
const contractAddress = "";
  1. Generate API keys from Pinata and add them in ipfsUploader.js
const pinataApiKey = "";
const pinataSecretApiKey = "";
  1. Run the app
npm start