darkfi_contract_test_harness/
money_transfer.rsuse darkfi::{
tx::{ContractCallLeaf, Transaction, TransactionBuilder},
Result,
};
use darkfi_money_contract::{
client::{transfer_v1::make_transfer_call, MoneyNote, OwnCoin},
model::{MoneyFeeParamsV1, MoneyTransferParamsV1, TokenId},
MoneyFunction, MONEY_CONTRACT_ZKAS_BURN_NS_V1, MONEY_CONTRACT_ZKAS_MINT_NS_V1,
};
use darkfi_sdk::{
crypto::{contract_id::MONEY_CONTRACT_ID, MerkleNode},
ContractCall,
};
use darkfi_serial::AsyncEncodable;
use log::debug;
use super::{Holder, TestHarness};
impl TestHarness {
#[allow(clippy::too_many_arguments)]
pub async fn transfer(
&mut self,
amount: u64,
holder: &Holder,
recipient: &Holder,
owncoins: &[OwnCoin],
token_id: TokenId,
block_height: u32,
half_split: bool,
) -> Result<(Transaction, (MoneyTransferParamsV1, Option<MoneyFeeParamsV1>), Vec<OwnCoin>)>
{
let wallet = self.holders.get(holder).unwrap();
let rcpt = self.holders.get(recipient).unwrap().keypair.public;
let (mint_pk, mint_zkbin) = self.proving_keys.get(MONEY_CONTRACT_ZKAS_MINT_NS_V1).unwrap();
let (burn_pk, burn_zkbin) = self.proving_keys.get(MONEY_CONTRACT_ZKAS_BURN_NS_V1).unwrap();
let (params, secrets, mut spent_coins) = make_transfer_call(
wallet.keypair,
rcpt,
amount,
token_id,
owncoins.to_owned(),
wallet.money_merkle_tree.clone(),
None,
None,
mint_zkbin.clone(),
mint_pk.clone(),
burn_zkbin.clone(),
burn_pk.clone(),
half_split,
)?;
let mut data = vec![MoneyFunction::TransferV1 as u8];
params.encode_async(&mut data).await?;
let call = ContractCall { contract_id: *MONEY_CONTRACT_ID, data };
let mut tx_builder =
TransactionBuilder::new(ContractCallLeaf { call, proofs: secrets.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(&secrets.signature_secrets)?;
tx.signatures = vec![sigs];
let (fee_call, fee_proofs, fee_secrets, spent_fee_coins, fee_call_params) =
self.append_fee_call(holder, tx, block_height, &spent_coins).await?;
tx_builder.append(ContractCallLeaf { call: fee_call, proofs: fee_proofs }, vec![])?;
fee_signature_secrets = Some(fee_secrets);
spent_coins.extend_from_slice(&spent_fee_coins);
fee_params = Some(fee_call_params);
}
let mut tx = tx_builder.build()?;
let sigs = tx.create_sigs(&secrets.signature_secrets)?;
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), spent_coins))
}
pub async fn execute_transfer_tx(
&mut self,
holder: &Holder,
tx: Transaction,
call_params: &MoneyTransferParamsV1,
fee_params: &Option<MoneyFeeParamsV1>,
block_height: u32,
append: bool,
) -> Result<Vec<OwnCoin>> {
let wallet = self.holders.get_mut(holder).unwrap();
wallet.add_transaction("money::transfer", tx, block_height).await?;
let nullifiers =
call_params.inputs.iter().map(|i| i.nullifier.inner()).map(|l| (l, l)).collect();
wallet.money_null_smt.insert_batch(nullifiers).expect("smt.insert_batch()");
let mut found_owncoins = vec![];
if append {
for input in &call_params.inputs {
if let Some(spent_coin) = wallet
.unspent_money_coins
.iter()
.find(|x| x.nullifier() == input.nullifier)
.cloned()
{
debug!("Found spent OwnCoin({}) for {:?}", spent_coin.coin, holder);
wallet.unspent_money_coins.retain(|x| x.nullifier() != input.nullifier);
wallet.spent_money_coins.push(spent_coin.clone());
}
}
for output in &call_params.outputs {
wallet.money_merkle_tree.append(MerkleNode::from(output.coin.inner()));
let Ok(note) = output.note.decrypt::<MoneyNote>(&wallet.keypair.secret) else {
continue
};
let owncoin = OwnCoin {
coin: 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());
found_owncoins.push(owncoin);
}
}
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 append {
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()));
if let Ok(note) =
fee_params.output.note.decrypt::<MoneyNote>(&wallet.keypair.secret)
{
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());
found_owncoins.push(owncoin);
};
}
}
Ok(found_owncoins)
}
}