Skip to content

kaganbuzcu/okr-nft-dapp

Repository files navigation

NFT Minting dApp for OKR

This a complete example of fullstack NFT minting dApp.

Demo

https://okr-nft-dapp.vercel.app

Contract

Opensea

Installation

  git clone https://github.com/kaganbuzcu/okr-nft-dapp.git
  cd okr-nft-dapp
  npm install
  npm run dev

Use Your Own Smart Contract:

  • Change .env with your own environment variables.
  • Remove /artifacts folder if it exists.
  • Put your own smart contract inside /contracts/.
  • Compile your smart contract with npx hardhat compile.
  • Update /scripts/deploy.jsaccording to your needs.
  • Deploy your smart contract with npx hardhat run scripts/deploy.js --network goerli.
  • Copy the deployed contract address and put it inside /utils/interact.js contractAddress section.

Tech Stack

React, TailwindCSS, web3, Alchemy, NextJS, Hardhat

References