- Research (< 1 week)
- Blockchain protocols ETH or Polygon or Binance (10-12 hours)
- Tokenomics (8-12 hours)
- UI development (2 week)
- UI development figma (10-16 hours)
- Prototyping with flow (5-10 hours)
- Slicing to react/nextjs (10-16 hours)
- Simple Testing UI (not functional) (10-16 hours)
- Authentication (1 week)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import '@nomiclabs/hardhat-ethers'; | |
import {ethers} from "hardhat"; | |
async function deploy(){ | |
//1. Get the contract factory | |
const MyContract = await ethers.getContractFactory("HelloContract"); | |
//2. It will create a json request, json-rpc request over to eth network, and the network will call a process to begin a transaction | |
const hello = await MyContract.deploy(); | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import "@nomiclabs/hardhat-waffle"; | |
/** | |
* @type import('hardhat/config').HardhatUserConfig | |
*/ | |
module.exports = { | |
//Change the code below | |
solidity: 0.8.10; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Code 1 | |
pragma solidity ^0.8.0; |
Create a movie review apps, just like imdb. Server-Side and Client-Side is fully integrated.
Don't forget to clone repository from Gitlab for each platform (link repo below).
P.s: Please make a develop branch for each platform. Don't code in the master branch, and clean code plz, ok! All the best!
- Basic authentication using JWT
- User able to create review