Skip to content

johnmgrimm/workspace

 
 

Repository files navigation

Popcorn

Technology Used

Directory structure

packages
├── app            [@popcorn/app]          [next.js]
├── contracts      [@popcorn/contracts]    [solidity contracts]
├── scripts        [@popcorn/scripts]      [deploy scripts, etc]
├── utils          [@popcorn/utils]        [generic utils]
├── ui             [@popcorn/ui]           [ui components + storybook]
└── ... etc

Prerequisites

  1. Install packages:
    • yarn install

Getting started with development

  1. To start the nextjs app and a local hardhat node run:
yarn lerna run dev  --parallel
  1. Then in another terminal you can deploy the contracts with some fixtures.
yarn hardhat dev:deploy --network localhost

This will deploy all contracts and create 3 elections with pre-registered beneficiaries with the following attributes:

  1. Monthly (Accelerated Voting Enabled)
  2. Quarterly (Accelerated Voting Enabled)
  3. Yearly (Default Configuration)

To update the election state (for instance, to change from registration period to voting period for the elections with accelerated voting enabled), you can run this command:

yarn hardhat elections:refreshElectionState --term 1 --network localhost
  1. copy .env.example to .env and update it with the contract addresses output in the previous command.

Getting started with Frontend

  1. Install packages

    • yarn install
  2. Run dev (watch files and start up frontend)

    • yarn lerna run dev --parallel
  3. Start storybook (optional):

    • yarn lerna run story --parallel

Getting started with Contracts

To run tests: go to packages/contracts yarn hardhat test

Deploy from packages/contracts:

  1. compile: yarn hardhat compile
  2. in one terminal: yarn hardhat node
  3. in another terminal: yarn hardhat run --network localhost scripts/deploy.js

Default Service Locations

Service Location
Next.js Frontend http://localhost:3000
Storybook run: yarn lerna run story

Useful Commands

Command Description
yarn install equivalent to npm install
yarn add @org/packagename equivalent to npm install - will add to dependencies
yarn add @org/packagename -D equivalent to npm install --save-dev - will add to devDependencies
lerna dev --parallel run package.json "dev" script on all projects
lerna run dev --scope=@popcorn/app run package.json "dev" script only on frontend package
lerna run story start storybook
lerna run test --parallel run tests

Useful Hardhat Commands

Command Description
yarn hardhat dev:deploy --network localhost deploy contracts for development
yarn hardhat elections:refreshElectionState --term 1 --network localhost refresh election state
yarn hardhat elections:getElectionMetadata --term 1 --network localhost get metadata for election term

Contributing

Contributions are welcome! Please raise a pull request with your contributions.

Popcorn follows the Contributor Covenant Code of Conduct.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 60.3%
  • JavaScript 24.3%
  • Solidity 13.7%
  • Other 1.7%