Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mehtaansh/blockchainvoting
A blockchain based E-voting system
https://github.com/mehtaansh/blockchainvoting
blockchain blockchain-technology blockchain-voting e-voting election solidity
Last synced: about 7 hours ago
JSON representation
A blockchain based E-voting system
- Host: GitHub
- URL: https://github.com/mehtaansh/blockchainvoting
- Owner: mehtaAnsh
- License: mit
- Created: 2019-05-03T08:33:37.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T01:59:23.000Z (almost 2 years ago)
- Last Synced: 2023-11-07T18:13:19.679Z (about 1 year ago)
- Topics: blockchain, blockchain-technology, blockchain-voting, e-voting, election, solidity
- Language: JavaScript
- Homepage: https://mehtaansh.github.io/BlockChainVoting/
- Size: 72.1 MB
- Stars: 207
- Watchers: 3
- Forks: 87
- Open Issues: 30
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Citation: CITATION.cff
Awesome Lists containing this project
README
# BlockChainVoting
A blockchain-based E-voting system, created as the final year project of Shri Bhagubhai Mafatlal Polytechnic. Teammates include me, Sayyam Gada and Charmee Mehta.
> The application is MIT-Licensed.## Build Setup
```bash
# install dependencies
npm install# serve with hot reload at localhost:3000
npm start
```Create your own .env file and the file should contain:
```bash
EMAIL=YOUR_EMAIL_ID
PASSWORD=YOUR_PASSWORD_FOR_EMAIL_ID
```
Install MetaMask extension (https://metamask.io/download.html) and make sure to have some Ether to test the application locally. Ether can be fetched from Rinkeby Faucet (https://faucet.rinkeby.io)#### Note:
- Make sure to install Node.js v11.14.0 to make sure the app runs fine. Testing for other node versions is yet to be done.
- MongoDB must be working in background on localhost:27017###### Please star the repo if it helped you in any way!
## Tech Stack:
- Solidity/Web3 (for writing/connecting the Blockchain contract)
- Next.js & Semantic UI React (front-end)
- MongoDB/ExpressJS/Node.js (back-end)
- IPFS (file storage for images)## Screenshots of the app:
Homepage of the application:
![](screenshots/homepage.PNG)
Company registers/logs in:
![](screenshots/company_login.PNG)
Company creates an election if not created:
![](screenshots/create_election.PNG)
Dashboard on successful election creation:
![](screenshots/dashboard.PNG)
List of candidates for the election (here, you can add candidates):
![](screenshots/candidate_list.PNG)
Candidate has been notified on the mail:
![](screenshots/candidate_registeration_mail.PNG)
List of voters for the election (here, you can add voters):
![](screenshots/voterlist.PNG)
Voters have been sent their secure usernames and passwords on the mail:
![](screenshots/voter_registeration_mail.PNG)
Voter login page:
![](screenshots/voter_login.PNG)
Successful voting scenario:
![](screenshots/successful_voting.PNG)
Unsuccessful voting scenario:
![](screenshots/unsuccessful_voting.PNG)
Notification to each candidate and voter for the winner of candidates:
![](screenshots/winner_candidate_mail.PNG)