anonymousvoting
anonymousvoting copied to clipboard
Anonymous voting on Ethereum without a tally authority. Protocol from this paper http://homepages.cs.ncl.ac.uk/feng.hao/files/OpenVote_IET.pdf
I can see that the vote is submitted like this (sample from `vote.html`): ```javascript result = anonymousvotingAddr.submitVote.sendTransaction(params, y, a1, b1, a2, b2, { from: web3.eth.accounts[accounts_index], gas: 4200000 }); ``` Even...
Can you make the following more clear? - What happens if a voter does not register? - What happens if a voter does not cast her vote? - Is abstention...
Hi~! I came up with the idea of a blockchain voting system using zero knowledge. Then your project caught my eye and I worked on it. The project used cosmos-sdk...
Hi, I'm not a cryptographer so I must be missing something, please go easy on me. Anyway, if anyone can do the tally as votes are coming in, then it...
I was trying to deploy this contract to ropsten using remix and meta mask, but I ran into the error `callback contain no result Gas required exceeds limit: 3000000`.
Hi.Can I encrypt a message using localCrypto.sol on chain? I know on chain encryption may seems dummy but I need it in a special usage to prove something.
Hi, how are you? I'm using the Open Vote Network as the basis for my final research project as an undergraduate at university. I'm trying to follow the video in...
Replace jump and jumpi instructions in both AnonymousVoting.sol and LocalCrypto.sol with for and switch assembly instructions due to warnings. Switch instructions was used, because, for whatever reason, if instructions caused...
Due to warnings, replacing jump and jumpi instructions with for and switch assembly commands. Because of if, for whatever reason, caused errors during compilation, use switch as an alternative with...
There are two changes in the commit 1. Use `require()` and `assert()` instead of `throw` for condition checking - Since the solidity version from 0.4.10 onwards supports `require()` and `assert()`....