mulfdev / JokeDaoV2Dev

πŸƒ jokedao contest smart contracts and an app for using them

Home Page:https://jokedao.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

jokedao

Check out the live site at jokedao.io!

You can also find v1 at jokedao.jokedao.io.

Pre-requisites

  • yarn installed
  • node version >= 17.0.0
  • Have an Ethereum wallet (like MetaMask for instance)

Before you start

  • Navigate to packages/react-app-revamp (the v2 site package)
  • Install dependencies with yarn install
  • Create a .env file and paste the following values:
NEXT_PUBLIC_INFURA_ID=
NEXT_PUBLIC_ALCHEMY_KEY=
NEXT_PUBLIC_SUPABASE_URL=
NEXT_PUBLIC_SUPABASE_ANON_KEY=
NEXT_PUBLIC_LENS_API_URL=
NEXT_PUBLIC_WEB3STORAGE_TOKEN=

Getting Started

First, navigate to the top directory of this repo and run the development server with

yarn dev

Open http://localhost:3000 with your browser to see the result.

Development Notes

Updating bytecode

In order to generate and/or update the bytecode of your project, you first need to run

yarn chain

to start a development chain locally.

Once you do that, run

yarn deploy

Upon a successful deploy to the local development chain, this will copy the generated bytecode and ABI into the react-app (v1) and react-app-revamp (v2) packages so that the app can access it.

You will also need to do two more things if the ABI is changed:

  • Make a copy of the bytecode and abi in the versioning folder packages/react-app-revamp/contracts/bytecodeAndAbi by copying the content in Contest.sol, which is the latest version of bytecode, into contracts/bytecodeAndAbi and renaming it following the convention.
  • Update ABI parser code in packages/react-app-revamp/helpers/getContestContractVersion.ts following the pattern of adding the last version of the bytecode and a code change that was distinctive to it (so that the front end can identify the version of bytecode it is looking at when trying to decipher a contract on a chain).

If you changed the ABI of a module or GenericVotesTimestampToken.sol you'll want to follow the same steps to maintain versioning of that code.

Here is an example commit that does all of these steps.

Make sure to do all of these steps before committing any changes to the contract code to make sure that the bytecode that the site is deploying is the same as what you have written in the hardhat package! And also so that the site is able to correctly version a given deployed contract's ABI when reading from it.

Built with

  • NextJS
  • Tailwind CSS & Headless-UI
  • ethers, wagmi, @wagmi/core, @rainbow-me/rainbowkit
  • zustand
  • Vercel.

JokeDAO V2 front-end is hosted on Vercel.

About

πŸƒ jokedao contest smart contracts and an app for using them

https://jokedao.io

License:MIT License


Languages

Language:CSS 47.6%Language:TypeScript 33.9%Language:JavaScript 10.5%Language:Solidity 7.4%Language:Shell 0.4%Language:Dockerfile 0.1%Language:HTML 0.1%Language:Less 0.0%