Skip to content

anuragts/NFT-Marketplace

Repository files navigation

NFT-Marketplace

This Project is a fork of Ethereum and demostrates how you can build your own NFT Marketplace. This project of course work on any EVM-compatible blockchain such as Polygon, Avalanche, Binance Smart Chain and other such chains.

Preview

View on Gitpod

# 🚀 Quick Start

📄 Clone or fork nft-marketplace:

git clone 

💿 Install all dependencies:

cd ethereum-nft-marketplace-boilerplate
yarn install 

✏ Rename .env.example to .env in the main folder and provide your appId and serverUrl from Moralis (How to start Moralis Server) Example:

REACT_APP_MORALIS_APPLICATION_ID = xxxxxxxxxxxx
REACT_APP_MORALIS_SERVER_URL = https://xxxxxx.grandmoralis.com:2053/server

🔎 Locate the MoralisDappProvider in src/providers/MoralisDappProvider/MoralisDappProvider.js and paste the deployed marketplace smart contract address and ABI

const [contractABI, setContractABI] = useState();
const [marketAddress, setMarketAddress] = useState();


🚴‍♂️ Run your App:
```sh
yarn start