EF zkp
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Owners
        • Signed-in users
        • Everyone
        Owners Signed-in users Everyone
      • Write
        • Owners
        • Signed-in users
        • Everyone
        Owners Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
      • Invitee
    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Sharing URL Help
Menu
Options
Versions and GitHub Sync Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Owners
  • Owners
  • Signed-in users
  • Everyone
Owners Signed-in users Everyone
Write
Owners
  • Owners
  • Signed-in users
  • Everyone
Owners Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
Invitee
Publish Note

Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

Your note will be visible on your profile and discoverable by anyone.
Your note is now live.
This note is visible on your profile and discoverable online.
Everyone on the web can find and read all notes of this public team.
See published notes
Unpublish note
Please check the box to agree to the Community Guidelines.
View profile
Engagement control
Commenting
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
  • Everyone
Suggest edit
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
Emoji Reply
Enable
Import from Dropbox Google Drive Gist Clipboard
   owned this note    owned this note      
Published Linked with GitHub
Subscribed
  • Any changes
    Be notified of any changes
  • Mention me
    Be notified of mention me
  • Unsubscribe
Subscribe
# MACI voice credit issue ## Background The following quotes are from the Telegram chat and provide some context for this issue: > The goal is for our contracts to know how many voice credits were used to vote for each each project in the round. > The problem is that it is not easy to determine the number of voice credits used to vote for each project from the final vote tally. > the problem is that MACI currently gives the matching amount but forgets about the users actual funds that were donated and just gives the matching ? > In QF, there are two pools of funding, the matching pool and the direct funding pool. > The contributions to the direct funding pool are what we use to determine voice credits. This pool of funding should be allocated 1:1 compared to how voice credits are allocated. > The matching pool, should be allocated according to the quadratic vote weight that each recipient receives. > So basically, we would need MACI to give each project the ability to prove two things. > 1. The total voice credits that were allocated to it for the round. > 2. The total quadratic vote weight allocated to it for the round. > ## Problem statement Alice has 81 voice credits and spends them all on Project A. Now Project A has 9 votes. Bob has 36 voice credits and spends them all on Project A. Now, Project A has 9 + 6 = 15 votes. Charlie has 25 voice credits and spends none of them. At the end of the vote tallying process, Project A has 15 votes. But nobody knows that Alice had spent 81 voice credits, Bob had spent 36 voice credits, and Charlie spent 0 voice credits. After all, the following scenario is also possible: Alice, Bob and Charlie could have each spent 25 voice credits on Project A, so it would have received `sqrt(25) * 3 = 15` votes. But in this thought experiment, only one scenario could have occurred. Nor is it possible to determine the number of voice credits spent from the number of votes received. For instance, in the former scenario, Alice and Bob spent 117 voice credits, but in the latter scenario, Alice, Bob, and Charlie spent 75 voice credits. 81 + 36 + 0 = 117 25 * 3 = 75 Only the coordinator knows how many voice credit each users had spent. **fix if incorrect please:** clrfund needs a way for a smart contract to know how many voice credits each vote option received, *in addition* to the vote tally (which is the sum of the square roots of the voice credits spent per vote). ## Solution https://github.com/appliedzkp/maci/pull/119 ## How to determine unspent voice credits ### Problem statement Here is a second scenario: during the signup period, the InitialVoiceCreditProxy assigns 81 voice credits to Alice and 36 to Bob (and the total is 117 voice credits). During the voting period, Alice spends 25 voice credits and Bob spends 25 voice credits. Now, the total unspent voice credits is 117 - 50 = 67. The voice credit tree solution above can only tell us that the number of voice credits spent per vote option. Here is a naive manual solution: look at the `signUp()`s and the InitialVoiceCreditProxy logic and determine the total voice credits allocated. Then deduct the number of voice credits spent at the end of the tally process. But this is not ideal if you want a trustless/on-chain calculation. ### Solution 1. Modify the MACI contract to keep a running tally of the number of voice credits assigned by the InitialVoiceCreditProxy during the signup period. This value should be stored in the contract. Let this value be `totalVoiceCreditsAssigned`. 2. Modify `QuadVoteTally` to also tally the cumulative total of spent voice credits during the vote tallying process, and store the cumulative total on-chain as an output from the snark. This value should be salted and hashed to prevent data leakage and prevent Eve from gaining information about whether the voice credits spent by voters in a particular batch. Let this value be `spentVoiceCreditsCommitment`. ``` signal public input totalSpentVoiceCreditsCommitment signal private input totalSpentVoiceCreditsSalt signal public input totalSpentVoiceCredits signal private input newTotalSpentVoiceCreditsSalt signal h = hashLeftRight(totalSpentVoiceCredits, totalSpentVoiceCreditsSalt) totalSpentVoiceCreditsCommitment == h var cumulativeTotal = totalSpentVoiceCredits for each state leaf: for each vote option leaf: cumulativeTotal += ..... newCommitment = hash(cumulativeTotal, newTotalSpentVoiceCreditsSalt) signal output newTotalSpentVoiceCreditsCommitment newTotalSpentVoiceCreditsCommitment <== newCommitment ``` 3. Once the vote tally is complete, any contract can do the following: ``` function computeUnspentVoiceCredits(uint256 totalSpent, uint256 salt) public returns (uint256) { uint256 h = hashLeftRight(totalSpent, salt); require(h == spentVoiceCreditsCommitment); return totalVoiceCreditsAssigned - totalSpent; } ``` ## Impact of revealing spent & unspent voice credits on collusion resistance It's still an open question as to exactly how to describe the impact of making the number of voice credits spent per vote option public as it depends on how many voters there are and the distribution of votes. But here are some scenarios where a briber/attacker could learn things that they otherwise would not. The question is: how much damage could they do with this information? ### Vulnerability 1: Eve can tell if not enough voice credits were allocated From Tommy in the TG chat: > I think the bigger and more likely vulnerability is the fact that a briber can tell that the voice credit amount received is less than what they bribed for, or fits into any vote scenario, especially if no one else votes for it because it's a scam - they'll likely receive nothing at the end of the round which will be an immediate red flag. Scenario: Eve (CEO of ECorp) bribes Alice to spend 100 voice credits towards ECorp, which ends up being one of the few (albeit invalidated) votes towards the vote option due to the voters' lack of faith in ECorp. Not only is it easy for Eve to determine voice credit distribution based on Vulnerability 2, **it's very likely that ECorp is going to receive less voice credits than initially bribed for**; even if ECorp receives over 100 voice credits from a small handful of sources - there's a good chance it wouldn't create the necessary vote scenario to provide plausible deniability (see Vulnerability 2). ### Vulnerability 2: Eve can make better guesses about the number of voters per vote option Let's say that Eve is a briber. There is a MACI system which shows how many voice credits were spent per vote option after the tallying process is overss is overss is overss is overss is over. In this system, Eve can learn more information about how users had voted. The more voters to each vote option receives, the more unlikely that this attack will succeed. But in the real world, there may be a long tail of vote options which receive very few voters. For instance: 1. Option A receives 5 votes and 25 voice credits were spent on it. Eve now knows that exactly 1 person voted for Option A (rather than 5 people each spending 1 voice credit each, or 2 people spending 4 + 9 voice credits, etc). In other words, if we know that `voiceCredits(option) == sqrt(votes(option))` then we know that `numVoters(option) == 1` 2. Option A receives 8 votes and 34 voice credits were spent on it. Eve knows that `sqrt(34)` is not a whole number. So it must be the sum of more than 1 square root. She makes the following guesses: 34 = 1 + 33 34 = 4 + 30 34 = 9 + 25 *and* sqrt(9) + sqrt(25) = 8. **jackpot!** 34 = 16 + 18 Eve thinks: maybe there are more than 2 voters. 34 = 1 + 1 + 32 34 = 1 + 4 + 29 34 = 1 + 9 + 24 34 = 1 + 16 + 17 34 = 9 + 9 + 16 *but* sqrt(9) + sqrt(9) + sqrt(16) = 10 **so (9, 9, 16) is incorrect** and so on.... Maybe there are possible combinations in addition to 9 + 25. But Eve has at least ruled out a bunch of possibilities. To automate the above, Eve can use WolframAlpha as such and find results which sum to 8. https://www.wolframalpha.com/input/?i=PowersRepresentations%5B34%2C+34%2C+2%5D ![](https://hackmd.io/_uploads/BJv0UXo6I.png)

Import from clipboard

Paste your markdown or webpage here...

Advanced permission required

Your current role can only read. Ask the system administrator to acquire write and comment permission.

This team is disabled

Sorry, this team is disabled. You can't edit this note.

This note is locked

Sorry, only owner can edit this note.

Reach the limit

Sorry, you've reached the max length this note can be.
Please reduce the content or divide it to more notes, thank you!

Import from Gist

Import from Snippet

or

Export to Snippet

Are you sure?

Do you really want to delete this note?
All users will lose their connection.

Create a note from template

Create a note from template

Oops...
This template has been removed or transferred.
Upgrade
All
  • All
  • Team
No template.

Create a template

Upgrade

Delete template

Do you really want to delete this template?
Turn this template into a regular note and keep its content, versions, and comments.

This page need refresh

You have an incompatible client version.
Refresh to update.
New version available!
See releases notes here
Refresh to enjoy new features.
Your user state has changed.
Refresh to load new user state.

Sign in

Forgot password

or

By clicking below, you agree to our terms of service.

Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
Wallet ( )
Connect another wallet

New to HackMD? Sign up

Help

  • English
  • 中文
  • Français
  • Deutsch
  • 日本語
  • Español
  • Català
  • Ελληνικά
  • Português
  • italiano
  • Türkçe
  • Русский
  • Nederlands
  • hrvatski jezik
  • język polski
  • Українська
  • हिन्दी
  • svenska
  • Esperanto
  • dansk

Documents

Help & Tutorial

How to use Book mode

Slide Example

API Docs

Edit in VSCode

Install browser extension

Contacts

Feedback

Discord

Send us email

Resources

Releases

Pricing

Blog

Policy

Terms

Privacy

Cheatsheet

Syntax Example Reference
# Header Header 基本排版
- Unordered List
  • Unordered List
1. Ordered List
  1. Ordered List
- [ ] Todo List
  • Todo List
> Blockquote
Blockquote
**Bold font** Bold font
*Italics font* Italics font
~~Strikethrough~~ Strikethrough
19^th^ 19th
H~2~O H2O
++Inserted text++ Inserted text
==Marked text== Marked text
[link text](https:// "title") Link
![image alt](https:// "title") Image
`Code` Code 在筆記中貼入程式碼
```javascript
var i = 0;
```
var i = 0;
:smile: :smile: Emoji list
{%youtube youtube_id %} Externals
$L^aT_eX$ LaTeX
:::info
This is a alert area.
:::

This is a alert area.

Versions and GitHub Sync
Get Full History Access

  • Edit version name
  • Delete

revision author avatar     named on  

More Less

Note content is identical to the latest version.
Compare
    Choose a version
    No search result
    Version not found
Sign in to link this note to GitHub
Learn more
This note is not linked with GitHub
 

Feedback

Submission failed, please try again

Thanks for your support.

On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

Please give us some advice and help us improve HackMD.

 

Thanks for your feedback

Remove version name

Do you want to remove this version name and description?

Transfer ownership

Transfer to
    Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

      Link with GitHub

      Please authorize HackMD on GitHub
      • Please sign in to GitHub and install the HackMD app on your GitHub repo.
      • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
      Learn more  Sign in to GitHub

      Push the note to GitHub Push to GitHub Pull a file from GitHub

        Authorize again
       

      Choose which file to push to

      Select repo
      Refresh Authorize more repos
      Select branch
      Select file
      Select branch
      Choose version(s) to push
      • Save a new version and push
      • Choose from existing versions
      Include title and tags
      Available push count

      Pull from GitHub

       
      File from GitHub
      File from HackMD

      GitHub Link Settings

      File linked

      Linked by
      File path
      Last synced branch
      Available push count

      Danger Zone

      Unlink
      You will no longer receive notification when GitHub file changes after unlink.

      Syncing

      Push failed

      Push successfully