darkfi_contract_test_harness/
dao_vote.rsuse darkfi::{
tx::{ContractCallLeaf, Transaction, TransactionBuilder},
Result,
};
use darkfi_dao_contract::{
blockwindow,
client::{DaoVoteCall, DaoVoteInput},
model::{Dao, DaoProposal, DaoVoteParams},
DaoFunction, DAO_CONTRACT_ZKAS_DAO_VOTE_INPUT_NS, DAO_CONTRACT_ZKAS_DAO_VOTE_MAIN_NS,
};
use darkfi_money_contract::{
client::{MoneyNote, OwnCoin},
model::MoneyFeeParamsV1,
};
use darkfi_sdk::{
crypto::{contract_id::DAO_CONTRACT_ID, MerkleNode, SecretKey},
ContractCall,
};
use darkfi_serial::AsyncEncodable;
use log::debug;
use rand::rngs::OsRng;
use super::{Holder, TestHarness};
impl TestHarness {
pub async fn dao_vote(
&mut self,
voter: &Holder,
vote_option: bool,
dao: &Dao,
proposal: &DaoProposal,
block_height: u32,
) -> Result<(Transaction, DaoVoteParams, Option<MoneyFeeParamsV1>)> {
let wallet = self.holders.get(voter).unwrap();
let (dao_vote_burn_pk, dao_vote_burn_zkbin) =
self.proving_keys.get(DAO_CONTRACT_ZKAS_DAO_VOTE_INPUT_NS).unwrap();
let (dao_vote_main_pk, dao_vote_main_zkbin) =
self.proving_keys.get(DAO_CONTRACT_ZKAS_DAO_VOTE_MAIN_NS).unwrap();
let (_, snapshot_money_merkle_tree) =
wallet.dao_prop_leafs.get(&proposal.to_bulla()).unwrap();
let vote_owncoin: OwnCoin = wallet
.unspent_money_coins
.iter()
.find(|x| x.note.token_id == dao.gov_token_id)
.unwrap()
.clone();
let signature_secret = SecretKey::random(&mut OsRng);
let input = DaoVoteInput {
secret: wallet.keypair.secret,
note: vote_owncoin.note.clone(),
leaf_position: vote_owncoin.leaf_position,
merkle_path: snapshot_money_merkle_tree.witness(vote_owncoin.leaf_position, 0).unwrap(),
signature_secret,
};
let block_target = wallet.validator.consensus.module.read().await.target;
let current_blockwindow = blockwindow(block_height, block_target);
let call = DaoVoteCall {
money_null_smt: wallet.money_null_smt_snapshot.as_ref().unwrap(),
inputs: vec![input],
vote_option,
proposal: proposal.clone(),
dao: dao.clone(),
current_blockwindow,
};
let (params, proofs) = call.make(
dao_vote_burn_zkbin,
dao_vote_burn_pk,
dao_vote_main_zkbin,
dao_vote_main_pk,
)?;
let mut data = vec![DaoFunction::Vote as u8];
params.encode_async(&mut data).await?;
let call = ContractCall { contract_id: *DAO_CONTRACT_ID, data };
let mut tx_builder = TransactionBuilder::new(ContractCallLeaf { call, proofs }, vec![])?;
let mut fee_params = None;
let mut fee_signature_secrets = None;
if self.verify_fees {
let mut tx = tx_builder.build()?;
let sigs = tx.create_sigs(&[signature_secret])?;
tx.signatures = vec![sigs];
let (fee_call, fee_proofs, fee_secrets, _spent_fee_coins, fee_call_params) =
self.append_fee_call(voter, tx, block_height, &[]).await?;
tx_builder.append(ContractCallLeaf { call: fee_call, proofs: fee_proofs }, vec![])?;
fee_signature_secrets = Some(fee_secrets);
fee_params = Some(fee_call_params);
}
let mut tx = tx_builder.build()?;
let sigs = tx.create_sigs(&[signature_secret])?;
tx.signatures = vec![sigs];
if let Some(fee_signature_secrets) = fee_signature_secrets {
let sigs = tx.create_sigs(&fee_signature_secrets)?;
tx.signatures.push(sigs);
}
Ok((tx, params, fee_params))
}
pub async fn execute_dao_vote_tx(
&mut self,
holder: &Holder,
tx: Transaction,
fee_params: &Option<MoneyFeeParamsV1>,
block_height: u32,
append: bool,
) -> Result<Vec<OwnCoin>> {
let wallet = self.holders.get_mut(holder).unwrap();
wallet.add_transaction("dao::vote", tx, block_height).await?;
if !append {
return Ok(vec![])
}
if let Some(ref fee_params) = fee_params {
let nullifier = fee_params.input.nullifier.inner();
wallet
.money_null_smt
.insert_batch(vec![(nullifier, nullifier)])
.expect("smt.insert_batch()");
if let Some(spent_coin) = wallet
.unspent_money_coins
.iter()
.find(|x| x.nullifier() == fee_params.input.nullifier)
.cloned()
{
debug!("Found spent OwnCoin({}) for {:?}", spent_coin.coin, holder);
wallet.unspent_money_coins.retain(|x| x.nullifier() != fee_params.input.nullifier);
wallet.spent_money_coins.push(spent_coin.clone());
}
wallet.money_merkle_tree.append(MerkleNode::from(fee_params.output.coin.inner()));
let Ok(note) = fee_params.output.note.decrypt::<MoneyNote>(&wallet.keypair.secret)
else {
return Ok(vec![])
};
let owncoin = OwnCoin {
coin: fee_params.output.coin,
note: note.clone(),
secret: wallet.keypair.secret,
leaf_position: wallet.money_merkle_tree.mark().unwrap(),
};
debug!("Found new OwnCoin({}) for {:?}", owncoin.coin, holder);
wallet.unspent_money_coins.push(owncoin.clone());
return Ok(vec![owncoin])
}
Ok(vec![])
}
}