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 | /* 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::Keypair;
use log::debug;
use rand::rngs::OsRng;
use crate::model::{MoneyAuthTokenFreezeParamsV1, TokenAttributes};
pub struct AuthTokenFreezeCallDebris {
pub params: MoneyAuthTokenFreezeParamsV1,
pub proofs: Vec<Proof>,
}
/// Struct holding necessary information to build a `Money::AuthTokenFreezeV1` contract call.
pub struct AuthTokenFreezeCallBuilder {
/// Mint authority keypair
pub mint_keypair: Keypair,
pub token_attrs: TokenAttributes,
/// `AuthTokenMint_V1` zkas circuit ZkBinary
pub auth_mint_zkbin: ZkBinary,
/// Proving key for the `AuthTokenMint_V1` zk circuit,
pub auth_mint_pk: ProvingKey,
}
impl AuthTokenFreezeCallBuilder {
pub fn build(&self) -> Result<AuthTokenFreezeCallDebris> {
debug!(target: "contract::money::client::auth_token_freeze", "Building Money::AuthTokenFreezeV1 contract call");
// For the AuthTokenFreeze call, we just need to produce a valid signature,
// and enforce the correct derivation inside ZK.
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 mint
Witness::Base(Value::known(self.mint_keypair.secret.inner())),
];
let mint_pubkey = self.mint_keypair.public;
let token_id = self.token_attrs.to_token_id();
let public_inputs = vec![mint_pubkey.x(), mint_pubkey.y(), 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)?;
let params =
MoneyAuthTokenFreezeParamsV1 { mint_public: self.mint_keypair.public, token_id };
let debris = AuthTokenFreezeCallDebris { params, proofs: vec![proof] };
Ok(debris)
}
}
|