scheme.md 19 KB

Scheme

Let $\t{PoseidonHash}$ be defined as in the section PoseidonHash Function.

Let $๐”ฝโ‚š, โ„™โ‚š, \t{DerivePubKey}, \t{Lift}_q, G_N, \mathcal{X}, \mathcal{Y}$ be defined as in the section Pallas and Vesta.

Let $\t{PedersenCommit}$ be defined as in the section Homomorphic Pedersen Commitments.

Let $\t{MerklePos}, \t{MerklePath}, \t{MerkleRoot}$ be defined as in the section Incremental Merkle Tree.

Let $\t{Params}\t{DAO}, \t{Bulla}\t{DAO}, \t{Params}\t{Proposal}, \t{Bulla}\t{Proposal}$ be defined as in DAO Model.

Let $\t{AeadEncNote}$ be defined as in In-band Secret Distribution.

Let $\t{ElGamal.Encrypt}, \t{ElGamalEncNote}โ‚–$ be defined as in the section Verifiable In-Band Secret Distribution.

Mint

This function creates a DAO bulla $๐’Ÿ $. It's comparatively simple- we commit to the DAO params and then add the bulla to the set.

  • Wallet builder: src/contract/dao/src/client/mint.rs
  • WASM VM code: src/contract/dao/src/entrypoint/mint.rs
  • ZK proof: src/contract/dao/proof/dao-mint.zk

Function Params

Define the DAO mint function params $$ \begin{aligned} ๐’Ÿ &โˆˆ \t{im}(\t{Bulla}_\t{DAO}) \ \t{PK} &โˆˆ โ„™โ‚š \end{aligned} $$

{{#include ../../../../../src/contract/dao/src/model.rs:dao-mint-params}}

Contract Statement

DAO bulla uniqueness โ€ƒ whether $โ„ฌ $ already exists. If yes then fail.

Let there be a prover auxiliary witness inputs: $$ \begin{aligned} L &โˆˆ โ„•โ‚†โ‚„ \ Q &โˆˆ โ„•โ‚†โ‚„ \ A^\% &โˆˆ โ„•โ‚†โ‚„ ร— โ„•โ‚†โ‚„ \ ฯ„ &โˆˆ ๐”ฝโ‚š \ x &โˆˆ ๐”ฝโ‚š \ b_\t{DAO} &โˆˆ ๐”ฝโ‚š \end{aligned} $$

Attach a proof $ฯ€$ such that the following relations hold:

Proof of public key ownership โ€ƒ $\t{PK} = \t{DerivePubKey}(x)$.

DAO bulla integrity โ€ƒ $โ„ฌ = \t{Bulla}\t{DAO}((L, Q, A^\%, ฯ„, \t{PK}), b\t{DAO})$

Signatures

There should be a single signature attached, which uses $\t{PK}$ as the signature public key.

Propose

This contract function creates a DAO proposal. It takes a merkle root $R_\t{DAO}$ which contains the DAO bulla created in the Mint phase.

Several inputs are attached containing proof of ownership for the governance token. This is to satisfy the proposer limit value set in the DAO. We construct the nullifier $\cN$ which can leak anonymity when those same coins are spent. To workaround this, wallet implementers can attach an additional Money::transfer() call to the transaction.

The nullifier $\cN$ proves the coin isn't already spent in the set determined by $R_\t{coin}$. Each value commit $V$ exported by the input is summed and used in the main proof to determine the total value attached in the inputs crosses the proposer limit threshold.

This is merely a proof of ownership of holding a certain amount of value. Coins are not locked and continue to be spendable.

Additionally the encrypted note $\t{note}$ is used to send the proposal values to the DAO members using the public key set inside the DAO.

A proposal contains a list of auth calls as specified in Auth Calls. This specifies the contract call executed by the DAO on passing.

  • Wallet builder: src/contract/dao/src/client/propose.rs
  • WASM VM code: src/contract/dao/src/entrypoint/propose.rs
  • ZK proofs:
    • src/contract/dao/proof/dao-propose-main.zk
    • src/contract/dao/proof/dao-propose-input.zk

Function Params

Define the DAO propose function params $$ \begin{aligned} R\t{DAO} &โˆˆ ๐”ฝโ‚š \ T &โˆˆ ๐”ฝโ‚š \ ๐’ซ &โˆˆ \t{im}(\t{Bulla}\t{Proposal}) \ \t{note} &โˆˆ \t{AeadEncNote} \ ๐ข &โˆˆ \t{ProposeInput}^* \end{aligned} $$

Define the DAO propose-input function params $$ \begin{aligned} \t{ProposeInput}.\cN &โˆˆ ๐”ฝโ‚š \ \t{ProposeInput}.V &โˆˆ โ„™โ‚š \ \t{ProposeInput}.R_\t{coin} &โˆˆ ๐”ฝโ‚š \ \t{ProposeInput}.\t{PK}_ฯƒ &โˆˆ โ„™โ‚š \end{aligned} $$

{{#include ../../../../../src/contract/dao/src/model.rs:dao-propose-params}}
{{#include ../../../../../src/contract/dao/src/model.rs:dao-propose-params-input}}

Contract Statement

Let $tโ‚€ = \t{BlockWindow} โˆˆ ๐”ฝโ‚š$ be the current blockwindow as defined in Blockwindow.

Let $\t{Attrs}_\t{Coin}$ be defined as in Coin.

Valid DAO bulla merkle root โ€ƒ check that $R_\t{DAO}$ is a previously seen merkle root in the DAO contract merkle roots DB.

Proposal bulla uniqueness โ€ƒ whether $๐’ซ $ already exists. If yes then fail.

Let there be prover auxiliary witness inputs: $$ \begin{aligned} v &โˆˆ ๐”ฝโ‚š \ bแตฅ &โˆˆ ๐”ฝแตฅ \ bฯ„ &โˆˆ ๐”ฝโ‚š \ p &โˆˆ \t{Params}\t{Proposal} \ bp &โˆˆ ๐”ฝโ‚š \ d &โˆˆ \t{Params}\t{DAO} \ b_d &โˆˆ ๐”ฝโ‚š \ (ฯˆ, ฮ ) &โˆˆ \t{MerklePos} ร— \t{MerklePath} \ \end{aligned} $$ Attach a proof $ฯ€_๐’ซ $ such that the following relations hold:

Governance token commit โ€ƒ export the DAO token ID as an encrypted pedersen commit $T = \t{PedersenCommit}(d.ฯ„, bฯ„)$ where $T = โˆ‘{i โˆˆ ๐ข} Tแตข$.

DAO bulla integrity โ€ƒ $๐’Ÿ = \t{Bulla}_\t{DAO}(d, b_d)$

DAO existence โ€ƒ $R_\t{DAO} = \t{MerkleRoot}(ฯˆ, ฮ , ๐’Ÿ )$

Proposal bulla integrity โ€ƒ $๐’ซ = \t{Bulla}_\t{Proposal}(p, b_p)$ where $p.tโ‚€ = tโ‚€$.

Proposer limit threshold met โ€ƒ check the proposer has supplied enough inputs that the required funds for the proposer limit set in the DAO is met. Let the total funds $v = โˆ‘_{i โˆˆ ๐ข} i.v$, then check $d.L โ‰ค v$.

Total funds value commit โ€ƒ $V = \t{PedersenCommit}(v, bแตฅ)$ where $V = โˆ‘{i โˆˆ ๐ข} i.V$. We use this to check that $v = โˆ‘{i โˆˆ ๐ข} i.v$ as claimed in the proposer limit threshold met check.

For each input $i โˆˆ ๐ข$, perform the following checks:

โ€ƒ Unused nullifier โ€ƒ check that $\cN$ does not exist in the money contract nullifiers DB.

โ€ƒ Valid input coins merkle root โ€ƒ check that $i.R_\t{coin}$ is a previously seen merkle root in the money contract merkle roots DB.

โ€ƒ Let there be a prover auxiliary witness inputs: $$ \begin{aligned} xc &โˆˆ ๐”ฝโ‚š \ c &โˆˆ \t{Attrs}\t{Coin} \ bแตฅ &โˆˆ ๐”ฝแตฅ \ b_ฯ„ &โˆˆ ๐”ฝโ‚š \ (ฯˆแตข, ฮ แตข) &โˆˆ \t{MerklePos} ร— \t{MerklePath} \ x_ฯƒ &โˆˆ ๐”ฝโ‚š \ \end{aligned} $$ โ€ƒ Attach a proof $ฯ€_i$ such that the following relations hold:

โ€ƒ Nullifier integrity โ€ƒ $\cN = \t{PoseidonHash}(x_c, C)$

โ€ƒ Coin value commit โ€ƒ $i.V = \t{PedersenCommit}(c.v, bแตฅ)$.

โ€ƒ Token commit โ€ƒ $T = \t{PoseidonHash}(c.ฯ„, b_ฯ„)$.

โ€ƒ Valid coin โ€ƒ Check $c.P = \t{DerivePubKey}(xc)$. Let $C = \t{Coin}(c)$. Check $i.R\t{coin} = \t{MerkleRoot}(ฯˆแตข, ฮ แตข, C)$.

โ€ƒ Proof of signature public key ownership โ€ƒ $i.\t{PK}_ฯƒ = \t{DerivePubKey}(x_ฯƒ)$.

Signatures

For each $i โˆˆ ๐ข$, attach a signature corresponding to the public key $i.\t{PK}_ฯƒ$.

Vote

After DAO::propose() is called, DAO members can then call this contract function. Using a similar method as before, they attach inputs proving ownership of a certain value of governance tokens. This is how we achieve token weighted voting. The result of the vote is communicated to other DAO members through the encrypted note $\t{note}$.

Each nullifier $๐’ฉ $ is stored uniquely per proposal. Additionally as before, there is a leakage here connecting the coins when spent. However prodigious usage of Money::transfer() to wash the coins after calling DAO::vote() should mitigate against this attack. In the future this can be fixed using set nonmembership primitives.

Another leakage is that the proposal bulla $๐’ซ $ is public. To ensure every vote is discoverable by verifiers (who cannot decrypt values) and protect against 'nothing up my sleeve', we link them all together. This is so the final tally used for executing proposals is accurate.

The total sum of votes is represented by the commit $V\t{all} = โˆ‘{i โˆˆ ๐ข} i.V$ and the yes votes by $V_\t{yes}$.

  • Wallet builder: src/contract/dao/src/client/vote.rs
  • WASM VM code: src/contract/dao/src/entrypoint/vote.rs
  • ZK proofs:
    • src/contract/dao/proof/dao-vote-main.zk
    • src/contract/dao/proof/dao-vote-input.zk

Function Params

Define the DAO vote function params $$ \begin{aligned} ฯ„ &โˆˆ ๐”ฝโ‚š \ ๐’ซ &โˆˆ \t{im}(\t{Bulla}\t{Proposal}) \ V\t{yes} &โˆˆ โ„™โ‚š \ \t{enc_vote} &โˆˆ \t{ElGamalEncNote}โ‚„ \ ๐ข &โˆˆ \t{VoteInput}^* \end{aligned} $$

Define the DAO vote-input function params $$ \begin{aligned} \t{VoteInput}.๐’ฉ &โˆˆ ๐”ฝโ‚š \ \t{VoteInput}.V &โˆˆ โ„™โ‚š \ \t{VoteInput}.R_\t{coin} &โˆˆ ๐”ฝโ‚š \ \t{VoteInput}.\t{PK}_ฯƒ &โˆˆ โ„™โ‚š \end{aligned} $$

Note: $\t{VoteInput}.V$ is a pedersen commitment, where the blinds are selected such that their sum is a valid field element in $๐”ฝโ‚š$ so the blind for $โˆ‘ V$ can be verifiably encrypted. Likewise we do the same for the blind used to calculate $V_\t{yes}$.

This allows DAO members to securely receive all secrets for votes on a proposal. This is then used in the Exec phase when we work on the sum of DAO votes.

{{#include ../../../../../src/contract/dao/src/model.rs:dao-vote-params}}
{{#include ../../../../../src/contract/dao/src/model.rs:dao-vote-params-input}}

Contract Statement

Let $tโ‚€ = \t{BlockWindow} โˆˆ ๐”ฝโ‚š$ be the current blockwindow as defined in Blockwindow.

Proposal bulla exists โ€ƒ check $๐’ซ $ exists in the DAO contract proposal bullas DB.

Let there be prover auxiliary witness inputs: $$ \begin{aligned} p &โˆˆ \t{Params}_\t{Proposal} \ bp &โˆˆ ๐”ฝโ‚š \ d &โˆˆ \t{Params}\t{DAO} \ b_d &โˆˆ ๐”ฝโ‚š \ o &โˆˆ ๐”ฝโ‚š \ b_y &โˆˆ ๐”ฝโ‚š \ v &โˆˆ ๐”ฝโ‚š \ bแตฅ &โˆˆ ๐”ฝโ‚š \ bฯ„ &โˆˆ ๐”ฝโ‚š \ t\t{now} &โˆˆ ๐”ฝโ‚š \ \t{esk} &โˆˆ ๐”ฝโ‚š \ \end{aligned} $$ Attach a proof $ฯ€_\mathcal{V}$ such that the following relations hold:

Governance token commit โ€ƒ export the DAO token ID as an encrypted pedersen commit $T = \t{PedersenCommit}(d.ฯ„, bฯ„)$ where $T = โˆ‘{i โˆˆ ๐ข} Tแตข$.

DAO bulla integrity โ€ƒ $๐’Ÿ = \t{Bulla}_\t{DAO}(d, b_d)$

Proposal bulla integrity โ€ƒ $๐’ซ = \t{Bulla}_\t{Proposal}(p, b_p)$

Yes vote commit โ€ƒ $V_\t{yes} = \t{PedersenCommit}(ov, \t{Lift}_q(b_y))$

Total vote value commit โ€ƒ $V_\t{all} = \t{PedersenCommit}(v, \t{Lift}q(bแตฅ))$ where $V\t{all} = โˆ‘_{i โˆˆ ๐ข} i.V$ should also hold.

Vote option boolean โ€ƒ enforce $o โˆˆ { 0, 1 }$.

Proposal not expired โ€ƒ let $t\t{end} = โ„•โ‚†โ‚„2๐”ฝโ‚š(p.tโ‚€) + โ„•โ‚†โ‚„2๐”ฝโ‚š(p.D)$, and then check $t\t{now} < t_\t{end}$.

Verifiable encryption of vote commit secrets โ€ƒ let $๐ง = (o, b_y, v, bแตฅ)$, and verify $\t{enc_vote} = \t{ElGamal}.\t{Encrypt}(๐ง, \t{esk}, d.\t{PK})$.

For each input $i โˆˆ ๐ข$, perform the following checks:

โ€ƒ Valid input merkle root โ€ƒ check that $i.R_\t{coin}$ is the previously seen merkle root in the proposal snapshot merkle root.

โ€ƒ Unused nullifier (money) โ€ƒ check that $\cN$ does not exist in the money contract nullifiers DB.

โ€ƒ Unused nullifier (proposal) โ€ƒ check that $\cN$ does not exist in the DAO contract nullifiers DB for this specific proposal.

Let there be prover auxiliary witness inputs: $$ \begin{aligned} xc &โˆˆ ๐”ฝโ‚š \ c &โˆˆ \t{Attrs}\t{Coin} \ bแตฅ &โˆˆ ๐”ฝแตฅ \ b_ฯ„ &โˆˆ ๐”ฝโ‚š \ (ฯˆแตข, ฮ แตข) &โˆˆ \t{MerklePos} ร— \t{MerklePath} \ x_ฯƒ &โˆˆ ๐”ฝโ‚š \ \end{aligned} $$ Attach a proof $ฯ€แตข$ such that the following relations hold:

โ€ƒ Nullifier integrity โ€ƒ $\cN = \t{PoseidonHash}(x_c, C)$

โ€ƒ Coin value commit โ€ƒ $i.V = \t{PedersenCommit}(c.v, bแตฅ)$.

โ€ƒ Token commit โ€ƒ $T = \t{PoseidonHash}(c.ฯ„, b_ฯ„)$.

โ€ƒ Valid coin โ€ƒ Check $c.P = \t{DerivePubKey}(xc)$. Let $C = \t{Coin}(c)$. Check $i.R\t{coin} = \t{MerkleRoot}(ฯˆแตข, ฮ แตข, C)$.

โ€ƒ Proof of signature public key ownership โ€ƒ $i.\t{PK}_ฯƒ = \t{DerivePubKey}(x_ฯƒ)$.

Signatures

For each $i โˆˆ ๐ข$, attach a signature corresponding to the public key $i.\t{PK}_ฯƒ$.

Exec

Exec is the final stage after voting is Accepted.

It checks the correct voting conditions have been met in accordance with the DAO params such as quorum and approval ratio. $V\t{yes}$ and $V\t{all}$ are pedersen commits to $v\t{yes}$ and $v\t{all}$ respectively.

It also checks that child calls have been attached in accordance with the auth calls set inside the proposal. One of these will usually be an auth module function. Currently the DAO provides a single preset for executing Money::transfer() calls so DAOs can manage anonymous treasuries.

  • Wallet builder: src/contract/dao/src/client/exec.rs
  • WASM VM code: src/contract/dao/src/entrypoint/exec.rs
  • ZK proof: src/contract/dao/proof/dao-exec.zk

Function Params

Let $\t{AuthCall}, \t{Commit}_{\t{Auth}^*}$ be defined as in the section Auth Calls.

Define the DAO exec function params $$ \begin{aligned} ๐’ซ &โˆˆ \t{im}(\t{Bulla}\t{Proposal}) \ ๐’œ &โˆˆ \t{AuthCall}^* \ V\t{yes} &โˆˆ โ„™โ‚š \ V_\t{all} &โˆˆ โ„™โ‚š \ \end{aligned} $$

{{#include ../../../../../src/contract/dao/src/model.rs:dao-exec-params}}
{{#include ../../../../../src/contract/dao/src/model.rs:dao-blind-aggregate-vote}}

Contract Statement

There are two phases to Exec. In the first we check the calling format of this transaction matches what is specified in the proposal. Then in the second phase, we verify the correct voting rules.

Auth call spec match โ€ƒ denote the child calls of Exec by $C$. If $#C โ‰  #๐’œ $ then exit. Otherwise, for each $c โˆˆ C$ and $a โˆˆ ๐’œ $, check the function ID of $c$ is $a$.

Aggregate votes lookup โ€ƒ using the proposal bulla, fetch the aggregated votes from the DB and verify $V\t{yes}$ and $V\t{all}$ are set correctly.

Let there be prover auxiliary witness inputs: $$ \begin{aligned} p &โˆˆ \t{Params}_\t{Proposal} \ bp &โˆˆ ๐”ฝโ‚š \ d &โˆˆ \t{Params}\t{DAO} \ b_d &โˆˆ ๐”ฝโ‚š \ v_y &โˆˆ ๐”ฝโ‚š \ v_a &โˆˆ ๐”ฝโ‚š \ b_y &โˆˆ ๐”ฝแตฅ \ b_a &โˆˆ ๐”ฝแตฅ \ \end{aligned} $$ Attach a proof $ฯ€$ such that the following relations hold:

DAO bulla integrity โ€ƒ $๐’Ÿ = \t{Bulla}_\t{DAO}(d, b_d)$

Proposal bulla integrity โ€ƒ $๐’ซ = \t{Bulla}_\t{Proposal}(p, b_p)$ where $p.๐’œ = ๐’œ $.

Yes vote commit โ€ƒ $V_\t{yes} = \t{PedersenCommit}(v_y, b_y)$

All vote commit โ€ƒ $V_\t{all} = \t{PedersenCommit}(v_a, b_a)$

All votes pass quorum โ€ƒ $Q โ‰ค v_a$

Approval ratio satisfied โ€ƒ we wish to check that $\frac{A^\%_q}{A^\%_b} โ‰ค \frac{v_y}{v_a}$. Instead we perform the equivalent check that $v_a A^\%_q โ‰ค v_y A^\%_b$.

Signatures

No signatures are attached.

AuthMoneyTransfer

This is a child call for Exec which can be used for DAO treasuries. It checks the next sibling call is Money::transfer() and accordingly verifies the first $n - 1$ output coins match the data set in this call's auth data.

Additionally we provide a note with the coin params that are verifiably encrypted to mitigate the attack where Exec is called, but the supplied Money::transfer() call contains an invalid note which cannot be decrypted by the receiver. In this case, the money would still leave the DAO treasury but be unspendable.

  • Wallet builder: src/contract/dao/src/client/auth_xfer.rs
  • WASM VM code: src/contract/dao/src/entrypoint/auth_xfer.rs
  • ZK proofs:
    • src/contract/dao/proof/dao-auth-money-transfer.zk
    • src/contract/dao/proof/dao-auth-money-transfer-enc-coin.zk

Function Params

Define the DAO AuthMoneyTransfer function params $$ \begin{aligned} ๐’ž\t{enc} &โˆˆ \t{ElGamalEncNote}โ‚…^* \ ๐’Ÿ\t{enc} &โˆˆ \t{ElGamalEncNote}โ‚ƒ \end{aligned} $$

This provides verifiable note encryption for all output coins in the sibling Money::transfer() call as well as the DAO change coin.

{{#include ../../../../../src/contract/dao/src/model.rs:dao-auth_xfer-params}}

Contract Statement

Denote the DAO contract ID by $\t{CID}_\t{DAO} โˆˆ ๐”ฝโ‚š$.

Sibling call is Money::transfer() โ€ƒ load the sibling call and check the contract ID and function code match Money::transfer().

Money originates from the same DAO โ€ƒ check all the input's user_data for the sibling Money::transfer() encode the same DAO. We do this by using the same blind for all user_data. Denote this value by $\t{UD}_\t{enc}$.

Output coins match proposal โ€ƒ check there are $n + 1$ output coins, with the first $n$ coins exactly matching those set in the auth data in the parent DAO::exec() call. Denote these proposal auth calls by $๐’œ $.

Let there be a prover auxiliary witness inputs: $$ \begin{aligned} p &โˆˆ \t{Params}_\t{Proposal} \ bp &โˆˆ ๐”ฝโ‚š \ d &โˆˆ \t{Params}\t{DAO} \ bd &โˆˆ ๐”ฝโ‚š \ b\t{UD} &โˆˆ ๐”ฝโ‚š \ v\t{DAO} &โˆˆ ๐”ฝโ‚š \ ฯ„\t{DAO} &โˆˆ ๐”ฝโ‚š \ b_\t{DAO} &โˆˆ ๐”ฝโ‚š \ \t{esk} &โˆˆ ๐”ฝโ‚š \ \end{aligned} $$

Attach a proof $ฯ€_\t{auth}$ such that the following relations hold:

DAO bulla integrity โ€ƒ $๐’Ÿ = \t{Bulla}_\t{DAO}(d, b_d)$

Proposal bulla integrity โ€ƒ $๐’ซ = \t{Bulla}_\t{Proposal}(p, b_p)$ where $๐’ซ $ matches the value in DAO::exec(), and $p.๐’œ = ๐’œ $.

Input user data commits to DAO bulla โ€ƒ $\t{UD}\t{enc} = \t{PoseidonHash}(๐’Ÿ , b\t{UD})$

DAO change coin integrity โ€ƒ denote the last coin in the Money::transfer() outputs by $C\t{DAO}$. Then check $$ C\t{DAO} = \t{Coin}(d.\t{PK}, v\t{DAO}, ฯ„\t{DAO},

                    \t{CID}_\t{DAO}, ๐’Ÿ , b_\t{DAO}) $$

Verifiable DAO change coin note encryption โ€ƒ let $๐ง = (v\t{DAO}, ฯ„\t{DAO}, b\t{DAO})$, and verify $๐’Ÿ\t{enc} = \t{ElGamal}.\t{Encrypt}(๐ง, \t{esk}, d.\t{PK})$.

Then we do the same for each output coin of Money::transfer(). For $k โˆˆ [n]$, let $a = (๐’ž\t{enc})โ‚–$ and $C$ be the $k$th output coin from Money::transfer(). Let there be prover auxiliary witness inputs: $$ \begin{aligned} c &โˆˆ \t{Attrs}\t{Coin} \ e &โˆˆ ๐”ฝโ‚š \end{aligned} $$ Attach a proof $ฯ€โ‚–$ such that the following relations hold:

โ€ƒ Coin integrity โ€ƒ $C = \t{Coin}(c)$

โ€ƒ Verifiable output coin note encryption โ€ƒ let $๐ง = (c.v, c.ฯ„, c.\t{SH}, c.\t{UD}, c.n)$, and verify $a = \t{ElGamal}.\t{Encrypt}(๐ง, \t{esk}, d.\t{PK})$.

Signatures

No signatures are attached.