https://github.com/danieldacosta/erc721-code-template
Code template for a ERC721 Dapp
https://github.com/danieldacosta/erc721-code-template
Last synced: 5 days ago
JSON representation
Code template for a ERC721 Dapp
- Host: GitHub
- URL: https://github.com/danieldacosta/erc721-code-template
- Owner: DanielDaCosta
- License: mit
- Created: 2022-03-27T17:33:41.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-27T17:42:57.000Z (about 4 years ago)
- Last Synced: 2025-01-11T01:10:39.452Z (over 1 year ago)
- Language: JavaScript
- Size: 410 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ERC721-code-template
Code template for a ERC721 Dapp.
Project: Build CryptoStar Dapp on Ethereum
# Requirements
```json
"@openzeppelin/contracts": "^4.5.0",
"@truffle/hdwallet-provider": "^2.0.4",
"web3": "^1.7.1",
"webpack-dev-server": "^4.7.4"
```
```
Truffle v5.5.3
Solidity Compiler: 0.8.12+commit.f00d7308
```
# Install packages
```bash
cd app
npm install
```
# Truffle contracts
```bash
truffle develop
compile
migrate --reset
test
```
# Run Dapp
```bash
cd app
npm run dev
```