Skip to content

Latest commit

 

History

History
66 lines (33 loc) · 1.79 KB

README.md

File metadata and controls

66 lines (33 loc) · 1.79 KB

Nft Market Place


Hardhat NextJS Marketplace


This is a repo showing NftMarketPlace backend using solidity, ethers, and hardhat!

Nfts or non-fungible tokens are a huge thing in the crypto domain. Be it in metaverse or play-to-earn games, NFTs would play a huge role. But where do we buy Nfts and how do we sell them?

This is where NFT market place comes into the picture.

The famous NFT market places such as opensea and foundation are a great place to start buying NFTs.

However, as a web3 developer, you must to know how to develop such a market place.

I made this project while learning how to develop NFT market place and with the help of PatrickAlphaC's course.

Do check his repo and youtube channel for more development instructions.

PatrickAlphaC's solidity course


Getting Started

Requirements

  • git

    • You'll know you did it right if you can run git --version and you see a response like git version x.x.x
  • Nodejs

    • You'll know you've installed nodejs right if you can run:

      • node --version and get an ouput like: vx.x.x
  • npm

    • You'll know you've installed npm right if you can run:

      • npm --version and get an output like: x.x.x

Quickstart

mkdir nftMarketPlace && cd nftMarketPlace
npm init -y
git clone https://github.com/Ad-h0c/nftMarketPlace.git
npm install