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

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

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
```