1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96 | /* This file is part of DarkFi (https://dark.fi)
*
* Copyright (C) 2020-2025 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::{
zk::{halo2::Value, Proof, ProvingKey, Witness, ZkCircuit},
zkas::ZkBinary,
Result,
};
use darkfi_sdk::crypto::{note::AeadEncryptedNote, Blind, Keypair};
use log::debug;
use rand::rngs::OsRng;
use crate::{
client::MoneyNote,
model::{CoinAttributes, MoneyAuthTokenMintParamsV1, TokenAttributes},
};
pub struct AuthTokenMintCallDebris {
pub params: MoneyAuthTokenMintParamsV1,
pub proofs: Vec<Proof>,
}
/// Struct holding necessary information to build a `Money::AuthTokenMintV1` contract call.
pub struct AuthTokenMintCallBuilder {
/// Coin attributes
pub coin_attrs: CoinAttributes,
/// Token attributes
pub token_attrs: TokenAttributes,
/// Mint authority keypair
pub mint_keypair: Keypair,
/// `AuthTokenMint_V1` zkas circuit ZkBinary
pub auth_mint_zkbin: ZkBinary,
/// Proving key for the `AuthTokenMint_V1` zk circuit,
pub auth_mint_pk: ProvingKey,
}
impl AuthTokenMintCallBuilder {
pub fn build(&self) -> Result<AuthTokenMintCallDebris> {
debug!(target: "contract::money::client::auth_token_mint", "Building Money::AuthTokenMintV1 contract call");
// Create the proof
let prover_witnesses = vec![
// Token attributes
Witness::Base(Value::known(self.token_attrs.auth_parent.inner())),
Witness::Base(Value::known(self.token_attrs.blind.inner())),
// Secret key used by the mint authority
Witness::Base(Value::known(self.mint_keypair.secret.inner())),
];
let mint_pubkey = self.mint_keypair.public;
let public_inputs =
vec![mint_pubkey.x(), mint_pubkey.y(), self.token_attrs.to_token_id().inner()];
//darkfi::zk::export_witness_json("proof/witness/auth_token_mint_v1.json", &prover_witnesses, &public_inputs);
let circuit = ZkCircuit::new(prover_witnesses, &self.auth_mint_zkbin);
let proof = Proof::create(&self.auth_mint_pk, &[circuit], &public_inputs, &mut OsRng)?;
// Create the note
let note = MoneyNote {
value: self.coin_attrs.value,
token_id: self.coin_attrs.token_id,
spend_hook: self.coin_attrs.spend_hook,
user_data: self.coin_attrs.user_data,
coin_blind: self.coin_attrs.blind,
value_blind: Blind::random(&mut OsRng),
token_blind: Blind::ZERO,
memo: vec![],
};
let enc_note = AeadEncryptedNote::encrypt(¬e, &self.coin_attrs.public_key, &mut OsRng)?;
let params = MoneyAuthTokenMintParamsV1 {
token_id: self.token_attrs.to_token_id(),
enc_note,
mint_pubkey,
};
let debris = AuthTokenMintCallDebris { params, proofs: vec![proof] };
Ok(debris)
}
}
|