Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/salmandabbakuti/nft-boilerplate
- Owner: Salmandabbakuti
- License: mit
- Created: 2021-10-28T14:34:44.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-30T03:55:18.000Z (over 2 years ago)
- Last Synced: 2023-03-03T04:13:08.259Z (over 1 year ago)
- Topics: blockchain, contracts, ethereum, ethereum-dapp, nft, nft-marketplace, solidity
- Language: JavaScript
- Homepage: https://nft-boilerplate.netlify.app
- Size: 418 KB
- Stars: 11
- Watchers: 3
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```