Welcome to the Scaffold ETH 2 + MACI Voting Template! This template is a powerful starting point for developers aiming to build decentralized voting applications that prioritize privacy and resist collusion. Combining the rapid development environment of Scaffold ETH with the innovative Minimal Anti-Collusion Infrastructure (MACI), this template offers a robust foundation for creating secure and transparent voting systems on the Ethereum blockchain.
Ensure you have the following tools installed before you proceed:
Jumpstart your development with these simple steps:
git clone https://github.com/yashgo0018/maci-wrapper.git
cd maci-wrapper
yarn install
In your first terminal window, run:
yarn download-zkeys
Copy the env example files to env files
cp packages/hardhat/.env.example packages/hardhat/.env
cp packages/nextjs/.env.example packages/nextjs/.env.local
Update the values of the env variables in these new .env files
In your first terminal window, run:
yarn chain
This initiates a local Ethereum network via Hardhat for development and testing purposes. Adjust the network settings in hardhat.config.ts
as needed.
In a second terminal, deploy your test contract with:
yarn deploy
Find the contract in packages/hardhat/contracts
. This script deploys your contract to the local network, with customization available in packages/hardhat/deploy
.
In a third terminal, start the NextJS frontend:
yarn start
packages/hardhat/deploy-config.json
file, select the network, and in the Poll
object, update coordinatorPubkey
to the coordinator public key in the packages/hardhat/coordinatorKeyPair.json
, and update useQuadraticVoting
if you want to compute results for a non quadratic vote.yarn hardhat merge --poll {poll id}
yarn hardhat prove --poll {poll id} --output-dir {proof ouput dir} --coordinator-private-key {coordinator private key} --tally-file {tally output file}
Navigate to http://localhost:3000
to interact with your dApp. Modify your app configuration in packages/nextjs/scaffold.config.ts
and packages/hardhat/constants.ts
as necessary.
The deployed contracts will be saved to the file packages/hardhat/contractAddresses.json
, this file is compatible with maci cli.
The coordinator keys will be stored in the file packages/hardhat/coordinatorKeyPair.json
.
After setting up the project, you can:
Your contributions are welcome! Feel free to report issues, submit fixes, or suggest new features to enhance the project.
This project is licensed under the MIT License.