Closed izqui closed 5 years ago
For future readers interested in blockchain voting systems or otherwise any voting system using electronics: Any high stake voting system such as a nation election MUST be accompanied by a software independent audit trail to have any value. Specially if that voting system involves having devices connected to the internet.
I have been researching trustless voting systems as well and had a proposal that uses similar techniques to provide anonymity to this but is focused on large scale voting systems.
Please read this and tell me if it you think I should create a new issue. Suggestions are also welcome.
Many of the current on-chain voting systems provide elegant solutions with features that traditional (client-server) e-voting couldn't deliver. However, most of them are either too expensive or too slow to implement on public chains when high throughput is required. Consortium chains can provide such scalability but require users to trust that authorities won't fork the chain. This restricts trustless voting systems to be used on the main chain by small groups and prevents usage in large scale voting systems such as the ones used to elect presidents and state representatives.
By leveraging security of the Ethereum mainnet and performance of a tindermint child chain it is possible to offload high throughput requirements from the main chain while retaining guarantee that tokens can be withdrawn to the main chain even if the child chain completely halts. By submitting merkle roots of every 2^n blocks we can trade finality to further decrease the cost of maintaining the child chain.
Note: PoC will be UTXO based to simplify proof verification on the parent chain.
**Note: The tokens stay on the candidates' wallets forever, are considered spent and cannot be withdrawn to the parent chain again. The tokens received by block producers are newly minted tokens from coinbase transactions.
Block producers, validators and stakers will receive tokens proportional to the number of tokens processed in a block such that blocks with 0 transactions provide no reward. In short, the system is a transfer of funds from users/election authorities to the stakers/validators/block producers that maintain the blockchain.
Example: An election where 30.165.500 votes* will be cast in an 8 hour period requires ~1050tx/s Using a 5 second blocktime rewards 5235 tokens to be distributed among stakers per block.
For these plans we must keep in mind that a voting system has requirements that most plasma chains don't need to deal with:
A voting system is an all-or-nothing game: In a currency related plasma chain, interaction is mostly centered around 2 parties where one side wants to be sure that the other didn't trick him. However in a voting system, your voice being included in the results is not enough: It is important that everyone else is heard correctly.
Authorization and account handling: The voting system must be protected against sybil attacks and only allow one vote per participant. Furthermore, there must be a mechanism to do account recovery that doesn't require (or allow) a central authority. Luckily, we have uPort being developed. Integrating uPort into visus creates a bridge between traditional institutions and the blockchain to allow for KYC authorization. Authorization is done by sending an authorization message signed with a government authority private key.
If voters loose their private keys they can recover them using uPort's social recovery.
There is an interesting related discussion started by @evainfeld at https://github.com/ZcashFoundation/GrantProposals-2018Q2/issues/22#issue-323735275
Hi @burdges I'll check it out. Thanks for the info :)
I think most threshold classic signature schemes do not do what you want here:
It's true they provide a measure of anonymity, but the anonymity set is tiny due to the communications cost to set them up. Also, threshold signatures do not provide anonymity from everyone, since someone must actually do the Lagrange interpolation.
You want a threshold signatures when (1) your participant set is tiny, and either (2a) you need to hide that a signature is threshold from non-participants or else (2b) you have higher bureaucratic cost for adding a new signature scheme than developer or protocol costs for managing the setup, i.e. you are bitcoin.
There should be deterministic ring signatures with which you can use simpler vote counting schemes, but actually there is a rich field around voting counting and better schemes exist.
Hi @mattdf what's you take on the above?
Hi @mtsalenc you didn't submit the request for funding and I don't know why I didn't receive the notification regarding your comment. Are you still interested in applying for this proposal?
@mariapao There is a problem with that proposal: child chains used for high stake voting systems MUST have high liveliness guarantees or would otherwise require significant coordination mid-voting session in case of an attack, so a plasma chain might not be the best solution for this kind of application.
Right now I am looking into swarm's mutable resource updates as a solution, so I won't apply for this proposal.
Thanks for the response :+1: :cookie:
Hey y'all! It's been a dream of mine to get a workable version of Civitas (a coercion resistant remote voting system) up and running and integrated with Ethereum.
From my (non-expert, limited) research it seems to be the best-in-class method for running secure electronic elections for small-size groups (paper reports 39 seconds per voter is required to tabulate results).
Is this something that other people would be excited to see and work on?
As this issue hasn't received any love since more than 6 months, I will close it. Feel free to open a new issue/ping me if you have any questions.
Aragon Nest Proposal: Secret voting infrastructure using Ring/Threshold signatures
Abstract
The first Metropolis release, Byzantium, introduced a series of precompiled contracts that made some elliptic curve arithmetic operations available to be used in smart contracts within reasonable gas costs.
These operations allow for great things such as verifying zkSNARKs proofs, as well a way to implementing ring signatures on chain.
Ring signatures are a cryptographic construct that allow a number of keyholders of a particular ring, to sign a message authenticating themselves as part of the group, in a way that it is impossible to determine who in the group signed a particular message, but also detecting if one particular member tries to submit more than one signed messages.
This technology could be used to implement secret voting on-chain with a flow similar to this:
A sign up period, in which all token holders of a particular token can get a key that they can use to vote. This is specially useful for settings in which voting is not stake based and every holder has the same voting rights or small multiples.
A voting period, in which key holders can sign their vote and submit it to the blockchain in a way that it is almost impossible to identify the voter. A Ring Voting smart contract will validate the signature and count the vote if valid.
Deliverables
A smart contract implementation (plus off-chain tooling) to achieve:
Bonus:
As this project will require a significant research effort which will probably result in not yet know facts, these deliverables can be modified for reasonable causes.
Prior art
Grant size
TBD
Application requirements
Development timeline
We intend to make an Aragon app for secret voting using this tech in the first half of 2018.