Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/salmandabbakuti/nft-boilerplate

Minimal nft boilerplate with ethersjs, hardhat, react, polygon, web3modal
https://github.com/salmandabbakuti/nft-boilerplate

blockchain contracts ethereum ethereum-dapp nft nft-marketplace solidity

Last synced: 8 days ago
JSON representation

Minimal nft boilerplate with ethersjs, hardhat, react, polygon, web3modal

Awesome Lists containing this project

README

        

# ethereum-nft-marketplace
ethereum nft marketplace

#### Steps:
1. Compile and deploy contract

```shell
npm install
npx hardhat node
npx hardhat compile
npx hardhat deploy (or) npx hardhat run scripts/deployContract.js --network local
npx hardhat test
```
2. Copy deployed contract address and replace contract address in ```client/src/blockchain.js``` with newly deployed address and then run react app in ```client``` directory

```shell
cd client
npm install
npm start
```