use darkfi::{
tx::{ContractCallLeaf, Transaction, TransactionBuilder},
Result,
};
use darkfi_dao_contract::{
blockwindow,
client::{DaoProposeCall, DaoProposeStakeInput},
model::{Dao, DaoAuthCall, DaoProposal, DaoProposeParams},
DaoFunction, DAO_CONTRACT_ZKAS_DAO_PROPOSE_INPUT_NS, DAO_CONTRACT_ZKAS_DAO_PROPOSE_MAIN_NS,
};
use darkfi_money_contract::{
client::{MoneyNote, OwnCoin},
model::{CoinAttributes, MoneyFeeParamsV1},
MoneyFunction,
};
use darkfi_sdk::{
crypto::{
contract_id::{DAO_CONTRACT_ID, MONEY_CONTRACT_ID},
Blind, MerkleNode, SecretKey,
},
pasta::pallas,
ContractCall,
};
use darkfi_serial::AsyncEncodable;
use log::debug;
use rand::rngs::OsRng;
use super::{Holder, TestHarness};
impl TestHarness {
#[allow(clippy::too_many_arguments)]
pub async fn dao_propose_transfer(
&mut self,
proposer: &Holder,
proposal_coinattrs: &[CoinAttributes],
user_data: pallas::Base,
dao: &Dao,
dao_proposer_secret_key: &SecretKey,
block_height: u32,
duration_blockwindows: u64,
) -> Result<(Transaction, DaoProposeParams, Option<MoneyFeeParamsV1>, DaoProposal)> {
let wallet = self.holders.get(proposer).unwrap();
let (dao_propose_burn_pk, dao_propose_burn_zkbin) =
self.proving_keys.get(DAO_CONTRACT_ZKAS_DAO_PROPOSE_INPUT_NS).unwrap();
let (dao_propose_main_pk, dao_propose_main_zkbin) =
self.proving_keys.get(DAO_CONTRACT_ZKAS_DAO_PROPOSE_MAIN_NS).unwrap();
let propose_owncoin: OwnCoin = wallet
.unspent_money_coins
.iter()
.find(|x| x.note.token_id == dao.gov_token_id)
.unwrap()
.clone();
let input = DaoProposeStakeInput {
secret: wallet.keypair.secret,
note: propose_owncoin.note.clone(),
leaf_position: propose_owncoin.leaf_position,
merkle_path: wallet
.money_merkle_tree
.witness(propose_owncoin.leaf_position, 0)
.unwrap(),
};
let mut proposal_coins = vec![];
for coin_params in proposal_coinattrs {
proposal_coins.push(coin_params.to_coin());
}
let mut proposal_data = vec![];
proposal_coins.encode_async(&mut proposal_data).await?;
let auth_calls = vec![
DaoAuthCall {
contract_id: *DAO_CONTRACT_ID,
function_code: DaoFunction::AuthMoneyTransfer as u8,
auth_data: proposal_data,
},
DaoAuthCall {
contract_id: *MONEY_CONTRACT_ID,
function_code: MoneyFunction::TransferV1 as u8,
auth_data: vec![],
},
];
let block_target = wallet.validator.consensus.module.read().await.target;
let creation_blockwindow = blockwindow(block_height, block_target);
let proposal = DaoProposal {
auth_calls,
creation_blockwindow,
duration_blockwindows,
user_data,
dao_bulla: dao.to_bulla(),
blind: Blind::random(&mut OsRng),
};
let signature_secret = SecretKey::random(&mut OsRng);
let dao_bulla = dao.to_bulla();
let call = DaoProposeCall {
money_null_smt: &wallet.money_null_smt,
inputs: vec![input],
proposal: proposal.clone(),
dao: dao.clone(),
dao_leaf_position: *wallet.dao_leafs.get(&dao_bulla).unwrap(),
dao_merkle_path: wallet
.dao_merkle_tree
.witness(*wallet.dao_leafs.get(&dao_bulla).unwrap(), 0)
.unwrap(),
dao_merkle_root: wallet.dao_merkle_tree.root(0).unwrap(),
signature_secret,
};
let (params, proofs) = call.make(
dao_proposer_secret_key,
dao_propose_burn_zkbin,
dao_propose_burn_pk,
dao_propose_main_zkbin,
dao_propose_main_pk,
)?;
let mut data = vec![DaoFunction::Propose 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(proposer, 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, proposal))
}
pub async fn dao_propose_generic(
&mut self,
proposer: &Holder,
user_data: pallas::Base,
dao: &Dao,
dao_proposer_secret_key: &SecretKey,
block_height: u32,
duration_blockwindows: u64,
) -> Result<(Transaction, DaoProposeParams, Option<MoneyFeeParamsV1>, DaoProposal)> {
let wallet = self.holders.get(proposer).unwrap();
let (dao_propose_burn_pk, dao_propose_burn_zkbin) =
self.proving_keys.get(DAO_CONTRACT_ZKAS_DAO_PROPOSE_INPUT_NS).unwrap();
let (dao_propose_main_pk, dao_propose_main_zkbin) =
self.proving_keys.get(DAO_CONTRACT_ZKAS_DAO_PROPOSE_MAIN_NS).unwrap();
let propose_owncoin: OwnCoin = wallet
.unspent_money_coins
.iter()
.find(|x| x.note.token_id == dao.gov_token_id)
.unwrap()
.clone();
let input = DaoProposeStakeInput {
secret: wallet.keypair.secret,
note: propose_owncoin.note.clone(),
leaf_position: propose_owncoin.leaf_position,
merkle_path: wallet
.money_merkle_tree
.witness(propose_owncoin.leaf_position, 0)
.unwrap(),
};
let block_target = wallet.validator.consensus.module.read().await.target;
let creation_blockwindow = blockwindow(block_height, block_target);
let proposal = DaoProposal {
auth_calls: vec![],
creation_blockwindow,
duration_blockwindows,
user_data,
dao_bulla: dao.to_bulla(),
blind: Blind::random(&mut OsRng),
};
let signature_secret = SecretKey::random(&mut OsRng);
let dao_bulla = dao.to_bulla();
let call = DaoProposeCall {
money_null_smt: &wallet.money_null_smt,
inputs: vec![input],
proposal: proposal.clone(),
dao: dao.clone(),
dao_leaf_position: *wallet.dao_leafs.get(&dao_bulla).unwrap(),
dao_merkle_path: wallet
.dao_merkle_tree
.witness(*wallet.dao_leafs.get(&dao_bulla).unwrap(), 0)
.unwrap(),
dao_merkle_root: wallet.dao_merkle_tree.root(0).unwrap(),
signature_secret,
};
let (params, proofs) = call.make(
dao_proposer_secret_key,
dao_propose_burn_zkbin,
dao_propose_burn_pk,
dao_propose_main_zkbin,
dao_propose_main_pk,
)?;
let mut data = vec![DaoFunction::Propose 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(proposer, 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, proposal))
}
pub async fn execute_dao_propose_tx(
&mut self,
holder: &Holder,
tx: Transaction,
params: &DaoProposeParams,
fee_params: &Option<MoneyFeeParamsV1>,
block_height: u32,
append: bool,
) -> Result<Vec<OwnCoin>> {
let wallet = self.holders.get_mut(holder).unwrap();
wallet.add_transaction("dao::propose", tx, block_height).await?;
wallet.money_null_smt_snapshot = Some(wallet.money_null_smt.clone());
if !append {
return Ok(vec![])
}
wallet.dao_proposals_tree.append(MerkleNode::from(params.proposal_bulla.inner()));
let prop_leaf_pos = wallet.dao_proposals_tree.mark().unwrap();
let prop_money_snapshot = wallet.money_merkle_tree.clone();
wallet.dao_prop_leafs.insert(params.proposal_bulla, (prop_leaf_pos, prop_money_snapshot));
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![])
}
}