| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735 |
- /* This file is part of DarkFi (https://dark.fi)
- *
- * Copyright (C) 2020-2024 Dyne.org foundation
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- use darkfi::Result;
- use darkfi_contract_test_harness::{init_logger, Holder, TestHarness};
- use darkfi_dao_contract::{
- model::{Dao, DaoBlindAggregateVote},
- DaoFunction,
- };
- use darkfi_money_contract::{
- model::{CoinAttributes, TokenAttributes, DARK_TOKEN_ID},
- MoneyFunction,
- };
- use darkfi_sdk::{
- crypto::{
- pasta_prelude::*,
- pedersen_commitment_u64, poseidon_hash,
- util::{fp_mod_fv, fp_to_u64},
- BaseBlind, Blind, FuncId, FuncRef, DAO_CONTRACT_ID, MONEY_CONTRACT_ID,
- },
- pasta::pallas,
- };
- use log::info;
- use rand::rngs::OsRng;
- #[test]
- fn integration_test() -> Result<()> {
- smol::block_on(async {
- init_logger();
- // Holders this test will use:
- // * Alice, Bob, and Charlie are members of the DAO.
- // * Dao is the DAO wallet
- // * Rachel is the proposal recipient.
- const HOLDERS: [Holder; 5] =
- [Holder::Alice, Holder::Bob, Holder::Charlie, Holder::Dao, Holder::Rachel];
- // Initialize harness
- let mut th = TestHarness::new(&HOLDERS, false).await?;
- // We'll use the ALICE token as the DAO governance token
- let wallet = th.holders.get_mut(&Holder::Alice).unwrap();
- //wallet.bench_wasm = true;
- let mint_authority = wallet.token_mint_authority;
- let gov_token_blind = BaseBlind::random(&mut OsRng);
- let auth_func_id = FuncRef {
- contract_id: *MONEY_CONTRACT_ID,
- func_code: MoneyFunction::AuthTokenMintV1 as u8,
- }
- .to_func_id();
- let token_attrs = TokenAttributes {
- auth_parent: auth_func_id,
- user_data: poseidon_hash([mint_authority.public.x(), mint_authority.public.y()]),
- blind: gov_token_blind,
- };
- let gov_token_id = token_attrs.to_token_id();
- const ALICE_GOV_SUPPLY: u64 = 100_000_000;
- const BOB_GOV_SUPPLY: u64 = 100_000_000;
- const CHARLIE_GOV_SUPPLY: u64 = 100_000_000;
- // And the DRK token as the treasury token
- let drk_token_id = *DARK_TOKEN_ID;
- const DRK_TOKEN_SUPPLY: u64 = 1_000_000_000;
- // The tokens we want to send via the transfer proposal
- const TRANSFER_PROPOSAL_AMOUNT: u64 = 250_000_000;
- // Block height to verify against
- let mut current_block_height = 0;
- // DAO parameters
- let dao_keypair = th.holders.get(&Holder::Dao).unwrap().keypair;
- let dao = Dao {
- proposer_limit: 100_000_000,
- quorum: 200_000_000,
- approval_ratio_base: 2,
- approval_ratio_quot: 1,
- gov_token_id,
- public_key: dao_keypair.public,
- bulla_blind: Blind::random(&mut OsRng),
- };
- // =======================================
- // Airdrop some treasury tokens to the DAO
- // =======================================
- info!("[Dao] Building DAO airdrop tx");
- assert_eq!(current_block_height, 0);
- let spend_hook =
- FuncRef { contract_id: *DAO_CONTRACT_ID, func_code: DaoFunction::Exec as u8 }
- .to_func_id();
- let (genesis_mint_tx, genesis_mint_params) = th
- .genesis_mint(
- &Holder::Dao,
- DRK_TOKEN_SUPPLY,
- Some(spend_hook),
- Some(dao.to_bulla().inner()),
- )
- .await?;
- for holder in &HOLDERS {
- th.execute_genesis_mint_tx(
- holder,
- genesis_mint_tx.clone(),
- &genesis_mint_params,
- current_block_height,
- true,
- )
- .await?;
- }
- th.assert_trees(&HOLDERS);
- let _dao_tokens = &th.holders.get(&Holder::Dao).unwrap().unspent_money_coins;
- assert!(_dao_tokens.len() == 1);
- assert!(_dao_tokens[0].note.token_id == *DARK_TOKEN_ID);
- assert!(_dao_tokens[0].note.value == DRK_TOKEN_SUPPLY);
- current_block_height += 1;
- // ====================
- // Dao::Mint
- // Create the DAO bulla
- // ====================
- info!("Stage 1. Creating DAO bulla");
- info!("[Dao] Building DAO mint tx");
- let (dao_mint_tx, dao_mint_params, fee_params) =
- th.dao_mint(&Holder::Alice, &dao, &dao_keypair, current_block_height).await?;
- for holder in &HOLDERS {
- info!("[{holder:?}] Executing DAO Mint tx");
- th.execute_dao_mint_tx(
- holder,
- dao_mint_tx.clone(),
- &dao_mint_params,
- &fee_params,
- current_block_height,
- true,
- )
- .await?;
- }
- th.assert_trees(&HOLDERS);
- current_block_height += 1;
- // ======================================
- // Mint the governance token to 3 holders
- // ======================================
- info!("Stage 3. Minting governance token");
- info!("[Alice] Building governance token mint tx for Alice");
- let (a_token_mint_tx, a_token_mint_params, a_auth_token_mint_params, a_fee_params) = th
- .token_mint(
- ALICE_GOV_SUPPLY,
- &Holder::Alice,
- &Holder::Alice,
- gov_token_blind,
- None,
- None,
- current_block_height,
- )
- .await?;
- for holder in &HOLDERS {
- info!("[{holder:?}] Executing governance token mint tx for Alice");
- th.execute_token_mint_tx(
- holder,
- a_token_mint_tx.clone(),
- &a_token_mint_params,
- &a_auth_token_mint_params,
- &a_fee_params,
- current_block_height,
- true,
- )
- .await?;
- }
- th.assert_trees(&HOLDERS);
- let _alice_tokens = &th.holders.get(&Holder::Alice).unwrap().unspent_money_coins;
- assert!(_alice_tokens.len() == 1);
- assert!(_alice_tokens[0].note.token_id == gov_token_id);
- assert!(_alice_tokens[0].note.value == ALICE_GOV_SUPPLY);
- info!("[Alice] Building governance token mint tx for Bob");
- let (b_token_mint_tx, b_token_mint_params, b_auth_token_mint_params, b_fee_params) = th
- .token_mint(
- BOB_GOV_SUPPLY,
- &Holder::Alice,
- &Holder::Bob,
- gov_token_blind,
- None,
- None,
- current_block_height,
- )
- .await?;
- for holder in &HOLDERS {
- info!("[{holder:?}] Executing governance token mint tx for Bob");
- th.execute_token_mint_tx(
- holder,
- b_token_mint_tx.clone(),
- &b_token_mint_params,
- &b_auth_token_mint_params,
- &b_fee_params,
- current_block_height,
- true,
- )
- .await?;
- }
- th.assert_trees(&HOLDERS);
- let _bob_tokens = &th.holders.get(&Holder::Bob).unwrap().unspent_money_coins;
- assert!(_bob_tokens.len() == 1);
- assert!(_bob_tokens[0].note.token_id == gov_token_id);
- assert!(_bob_tokens[0].note.value == BOB_GOV_SUPPLY);
- info!("[Alice] Building governance token mint tx for Charlie");
- let (c_token_mint_tx, c_token_mint_params, c_auth_token_mint_params, c_fee_params) = th
- .token_mint(
- CHARLIE_GOV_SUPPLY,
- &Holder::Alice,
- &Holder::Charlie,
- gov_token_blind,
- None,
- None,
- current_block_height,
- )
- .await?;
- for holder in &HOLDERS {
- info!("[{holder:?}] Executing governance token mint tx for Charlie");
- th.execute_token_mint_tx(
- holder,
- c_token_mint_tx.clone(),
- &c_token_mint_params,
- &c_auth_token_mint_params,
- &c_fee_params,
- current_block_height,
- true,
- )
- .await?;
- }
- th.assert_trees(&HOLDERS);
- let _charlie_tokens = &th.holders.get(&Holder::Charlie).unwrap().unspent_money_coins;
- assert!(_charlie_tokens.len() == 1);
- assert!(_charlie_tokens[0].note.token_id == gov_token_id);
- assert!(_charlie_tokens[0].note.value == CHARLIE_GOV_SUPPLY);
- current_block_height += 1;
- // ================
- // Dao::Propose
- // Propose the votes
- // ================
- info!("Stage 4. Propose the votes");
- // We can add whatever we want in here, even arbitrary text
- // It's up to the auth module to decide what to do with it.
- let user_data = pallas::Base::ZERO;
- info!("[Alice] Building DAO generic proposal tx");
- let (
- propose_generic_tx,
- propose_generic_params,
- propose_generic_fee_params,
- propose_generic_info,
- ) = th.dao_propose_generic(&Holder::Alice, user_data, &dao, current_block_height).await?;
- // TODO: look into proposal expiry once time for voting has finished
- // TODO: Is it possible for an invalid transfer() to be constructed on exec()?
- // Need to look into this.
- info!("[Alice] Building DAO transfer proposal tx");
- // These coins are passed around to all DAO members who verify its validity
- // They also check hashing them equals the proposal_commit
- let transfer_proposal_coinattrs = vec![CoinAttributes {
- public_key: th.holders.get(&Holder::Rachel).unwrap().keypair.public,
- value: TRANSFER_PROPOSAL_AMOUNT,
- token_id: drk_token_id,
- spend_hook: FuncId::none(),
- user_data: pallas::Base::ZERO,
- blind: Blind::random(&mut OsRng),
- }];
- let (
- propose_transfer_tx,
- propose_transfer_params,
- propose_transfer_fee_params,
- propose_transfer_info,
- ) = th
- .dao_propose_transfer(
- &Holder::Alice,
- &transfer_proposal_coinattrs,
- user_data,
- &dao,
- current_block_height,
- )
- .await?;
- for holder in &HOLDERS {
- info!("[{holder:?}] Executing DAO generic proposal tx");
- th.execute_dao_propose_tx(
- holder,
- propose_generic_tx.clone(),
- &propose_generic_params,
- &propose_generic_fee_params,
- current_block_height,
- true,
- )
- .await?;
- info!("[{holder:?}] Executing DAO transfer proposal tx");
- th.execute_dao_propose_tx(
- holder,
- propose_transfer_tx.clone(),
- &propose_transfer_params,
- &propose_transfer_fee_params,
- current_block_height,
- true,
- )
- .await?;
- }
- th.assert_trees(&HOLDERS);
- current_block_height += 1;
- // =====================================
- // Dao::Vote
- // Proposals are accepted. Start the votes.
- // =====================================
- info!("Stage 5. Start voting");
- info!("[Alice] Building generic vote tx (yes)");
- let (alice_generic_vote_tx, alice_generic_vote_params, alice_generic_vote_fee_params) = th
- .dao_vote(
- &Holder::Alice,
- true,
- &dao,
- &dao_keypair,
- &propose_generic_info,
- current_block_height,
- )
- .await?;
- info!("[Alice] Building transfer vote tx (yes)");
- let (alice_transfer_vote_tx, alice_transfer_vote_params, alice_transfer_vote_fee_params) =
- th.dao_vote(
- &Holder::Alice,
- true,
- &dao,
- &dao_keypair,
- &propose_transfer_info,
- current_block_height,
- )
- .await?;
- info!("[Bob] Building generic vote tx (no)");
- let (bob_generic_vote_tx, bob_generic_vote_params, bob_generic_vote_fee_params) = th
- .dao_vote(
- &Holder::Bob,
- false,
- &dao,
- &dao_keypair,
- &propose_generic_info,
- current_block_height,
- )
- .await?;
- info!("[Bob] Building transfer vote tx (no)");
- let (bob_transfer_vote_tx, bob_transfer_vote_params, bob_transfer_vote_fee_params) = th
- .dao_vote(
- &Holder::Bob,
- false,
- &dao,
- &dao_keypair,
- &propose_transfer_info,
- current_block_height,
- )
- .await?;
- info!("[Charlie] Building generic vote tx (no)");
- let (charlie_generic_vote_tx, charlie_generic_vote_params, charlie_generic_vote_fee_params) =
- th.dao_vote(
- &Holder::Charlie,
- true,
- &dao,
- &dao_keypair,
- &propose_generic_info,
- current_block_height,
- )
- .await?;
- info!("[Charlie] Building transfer vote tx (yes)");
- let (
- charlie_transfer_vote_tx,
- charlie_transfer_vote_params,
- charlie_transfer_vote_fee_params,
- ) = th
- .dao_vote(
- &Holder::Charlie,
- true,
- &dao,
- &dao_keypair,
- &propose_transfer_info,
- current_block_height,
- )
- .await?;
- for holder in &HOLDERS {
- info!("[{holder:?}] Executing Alice generic vote tx");
- th.execute_dao_vote_tx(
- holder,
- alice_generic_vote_tx.clone(),
- &alice_generic_vote_fee_params,
- current_block_height,
- true,
- )
- .await?;
- info!("[{holder:?}] Executing Alice transfer vote tx");
- th.execute_dao_vote_tx(
- holder,
- alice_transfer_vote_tx.clone(),
- &alice_transfer_vote_fee_params,
- current_block_height,
- true,
- )
- .await?;
- info!("[{holder:?}] Executing Bob generic vote tx");
- th.execute_dao_vote_tx(
- holder,
- bob_generic_vote_tx.clone(),
- &bob_generic_vote_fee_params,
- current_block_height,
- true,
- )
- .await?;
- info!("[{holder:?}] Executing Bob transfer vote tx");
- th.execute_dao_vote_tx(
- holder,
- bob_transfer_vote_tx.clone(),
- &bob_transfer_vote_fee_params,
- current_block_height,
- true,
- )
- .await?;
- info!("[{holder:?}] Executing Charlie generic vote tx");
- th.execute_dao_vote_tx(
- holder,
- charlie_generic_vote_tx.clone(),
- &charlie_generic_vote_fee_params,
- current_block_height,
- true,
- )
- .await?;
- info!("[{holder:?}] Executing Charlie transfer vote tx");
- th.execute_dao_vote_tx(
- holder,
- charlie_transfer_vote_tx.clone(),
- &charlie_transfer_vote_fee_params,
- current_block_height,
- true,
- )
- .await?;
- }
- // Gather and decrypt all generic vote notes
- let vote_note_1 =
- alice_generic_vote_params.note.decrypt_unsafe(&dao_keypair.secret).unwrap();
- let vote_note_2 = bob_generic_vote_params.note.decrypt_unsafe(&dao_keypair.secret).unwrap();
- let vote_note_3 =
- charlie_generic_vote_params.note.decrypt_unsafe(&dao_keypair.secret).unwrap();
- // Count the votes
- let mut total_yes_generic_vote_value = 0;
- let mut total_all_generic_vote_value = 0;
- let mut blind_total_generic_vote = DaoBlindAggregateVote::default();
- let mut total_yes_generic_vote_blind = Blind::ZERO;
- let mut total_all_generic_vote_blind = Blind::ZERO;
- for (i, (note, params)) in [
- (vote_note_1, alice_generic_vote_params),
- (vote_note_2, bob_generic_vote_params),
- (vote_note_3, charlie_generic_vote_params),
- ]
- .iter()
- .enumerate()
- {
- // Note format: [
- // vote_option,
- // yes_vote_blind,
- // all_vote_value_fp,
- // all_vote_blind,
- // ]
- let vote_option = fp_to_u64(note[0]).unwrap();
- let yes_vote_blind = Blind(fp_mod_fv(note[1]));
- let all_vote_value = fp_to_u64(note[2]).unwrap();
- let all_vote_blind = Blind(fp_mod_fv(note[3]));
- assert!(vote_option == 0 || vote_option == 1);
- total_yes_generic_vote_blind += yes_vote_blind;
- total_all_generic_vote_blind += all_vote_blind;
- // Update private values
- // vote_option is either 0 or 1
- let yes_vote_value = vote_option * all_vote_value;
- total_yes_generic_vote_value += yes_vote_value;
- total_all_generic_vote_value += all_vote_value;
- // Update public values
- let yes_vote_commit = params.yes_vote_commit;
- let all_vote_commit = params.inputs.iter().map(|i| i.vote_commit).sum();
- let blind_vote = DaoBlindAggregateVote { yes_vote_commit, all_vote_commit };
- blind_total_generic_vote.aggregate(blind_vote);
- // Just for the debug
- let vote_result = match vote_option != 0 {
- true => "yes",
- false => "no",
- };
- info!(
- "Voter {} voted {} with {} tokens in generic vote",
- i, vote_result, all_vote_value
- );
- }
- info!(
- "Generic vote outcome = {} / {}",
- total_yes_generic_vote_value, total_all_generic_vote_value
- );
- assert!(
- blind_total_generic_vote.all_vote_commit ==
- pedersen_commitment_u64(
- total_all_generic_vote_value,
- total_all_generic_vote_blind
- )
- );
- assert!(
- blind_total_generic_vote.yes_vote_commit ==
- pedersen_commitment_u64(
- total_yes_generic_vote_value,
- total_yes_generic_vote_blind
- )
- );
- // Gather and decrypt all transfer vote notes
- let vote_note_1 =
- alice_transfer_vote_params.note.decrypt_unsafe(&dao_keypair.secret).unwrap();
- let vote_note_2 =
- bob_transfer_vote_params.note.decrypt_unsafe(&dao_keypair.secret).unwrap();
- let vote_note_3 =
- charlie_transfer_vote_params.note.decrypt_unsafe(&dao_keypair.secret).unwrap();
- // Count the votes
- let mut total_yes_transfer_vote_value = 0;
- let mut total_all_transfer_vote_value = 0;
- let mut blind_total_transfer_vote = DaoBlindAggregateVote::default();
- let mut total_yes_transfer_vote_blind = Blind::ZERO;
- let mut total_all_transfer_vote_blind = Blind::ZERO;
- for (i, (note, params)) in [
- (vote_note_1, alice_transfer_vote_params),
- (vote_note_2, bob_transfer_vote_params),
- (vote_note_3, charlie_transfer_vote_params),
- ]
- .iter()
- .enumerate()
- {
- // Note format: [
- // vote_option,
- // yes_vote_blind,
- // all_vote_value_fp,
- // all_vote_blind,
- // ]
- let vote_option = fp_to_u64(note[0]).unwrap();
- let yes_vote_blind = Blind(fp_mod_fv(note[1]));
- let all_vote_value = fp_to_u64(note[2]).unwrap();
- let all_vote_blind = Blind(fp_mod_fv(note[3]));
- assert!(vote_option == 0 || vote_option == 1);
- total_yes_transfer_vote_blind += yes_vote_blind;
- total_all_transfer_vote_blind += all_vote_blind;
- // Update private values
- // vote_option is either 0 or 1
- let yes_vote_value = vote_option * all_vote_value;
- total_yes_transfer_vote_value += yes_vote_value;
- total_all_transfer_vote_value += all_vote_value;
- // Update public values
- let yes_vote_commit = params.yes_vote_commit;
- let all_vote_commit = params.inputs.iter().map(|i| i.vote_commit).sum();
- let blind_vote = DaoBlindAggregateVote { yes_vote_commit, all_vote_commit };
- blind_total_transfer_vote.aggregate(blind_vote);
- // Just for the debug
- let vote_result = match vote_option != 0 {
- true => "yes",
- false => "no",
- };
- info!(
- "Voter {} voted {} with {} tokens in transfer vote",
- i, vote_result, all_vote_value
- );
- }
- info!(
- "Transfer vote outcome = {} / {}",
- total_yes_transfer_vote_value, total_all_transfer_vote_value
- );
- assert!(
- blind_total_transfer_vote.all_vote_commit ==
- pedersen_commitment_u64(
- total_all_transfer_vote_value,
- total_all_transfer_vote_blind
- )
- );
- assert!(
- blind_total_transfer_vote.yes_vote_commit ==
- pedersen_commitment_u64(
- total_yes_transfer_vote_value,
- total_yes_transfer_vote_blind
- )
- );
- th.assert_trees(&HOLDERS);
- current_block_height += 1;
- // ================
- // Dao::Exec
- // Execute the votes
- // ================
- info!("Stage 6. Execute the votes");
- info!("[Dao] Building generic Dao::Exec tx");
- let (exec_generic_tx, exec_generic_fee_params) = th
- .dao_exec_generic(
- &Holder::Alice,
- &dao,
- &propose_generic_info,
- total_yes_generic_vote_value,
- total_all_generic_vote_value,
- total_yes_generic_vote_blind,
- total_all_generic_vote_blind,
- current_block_height,
- )
- .await?;
- info!("[Dao] Building transfer Dao::Exec tx");
- let (exec_transfer_tx, xfer_params, exec_transfer_fee_params) = th
- .dao_exec_transfer(
- &Holder::Alice,
- &dao,
- &propose_transfer_info,
- transfer_proposal_coinattrs,
- total_yes_transfer_vote_value,
- total_all_transfer_vote_value,
- total_yes_transfer_vote_blind,
- total_all_transfer_vote_blind,
- current_block_height,
- )
- .await?;
- for holder in &HOLDERS {
- info!("[{holder:?}] Executing generic Dao::Exec tx");
- th.execute_dao_exec_tx(
- holder,
- exec_generic_tx.clone(),
- None,
- &exec_generic_fee_params,
- current_block_height,
- true,
- )
- .await?;
- info!("[{holder:?}] Executing transfer Dao::Exec tx");
- th.execute_dao_exec_tx(
- holder,
- exec_transfer_tx.clone(),
- Some(&xfer_params),
- &exec_transfer_fee_params,
- current_block_height,
- true,
- )
- .await?;
- }
- th.assert_trees(&HOLDERS);
- let rachel_wallet = th.holders.get(&Holder::Rachel).unwrap();
- assert!(rachel_wallet.unspent_money_coins[0].note.value == TRANSFER_PROPOSAL_AMOUNT);
- assert!(rachel_wallet.unspent_money_coins[0].note.token_id == drk_token_id);
- let dao_wallet = th.holders.get(&Holder::Dao).unwrap();
- assert!(
- dao_wallet.unspent_money_coins[0].note.value ==
- DRK_TOKEN_SUPPLY - TRANSFER_PROPOSAL_AMOUNT
- );
- assert!(dao_wallet.unspent_money_coins[0].note.token_id == drk_token_id);
- // Thanks for reading
- Ok(())
- })
- }
|