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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
use crate::db::SpendableNote;
use crate::api::payment::RecipientMemo;
use crate::coinconfig::CoinConfig;
use crate::{GetAddressUtxosReply, Hash, RawTransaction};
use anyhow::anyhow;
use jubjub::Fr;
use rand::prelude::SliceRandom;
use rand::rngs::OsRng;
use secp256k1::SecretKey;
use serde::{Deserialize, Serialize};
use std::sync::mpsc;
use tonic::Request;
use zcash_client_backend::address::RecipientAddress;
use zcash_client_backend::encoding::{
decode_extended_full_viewing_key, decode_payment_address, encode_extended_full_viewing_key,
encode_payment_address,
};
use zcash_params::coin::{get_coin_chain, CoinChain, CoinType};
use zcash_primitives::consensus::{BlockHeight, Parameters};
use zcash_primitives::keys::OutgoingViewingKey;
use zcash_primitives::legacy::Script;
use zcash_primitives::memo::{Memo, MemoBytes};
use zcash_primitives::merkle_tree::IncrementalWitness;
use zcash_primitives::sapling::prover::TxProver;
use zcash_primitives::sapling::{Diversifier, Node, PaymentAddress, Rseed};
use zcash_primitives::transaction::builder::{Builder, Progress};
use zcash_primitives::transaction::components::amount::{DEFAULT_FEE, MAX_MONEY};
use zcash_primitives::transaction::components::{Amount, OutPoint, TxOut as ZTxOut};
use zcash_primitives::zip32::{ExtendedFullViewingKey, ExtendedSpendingKey};
use crate::chain::get_latest_height;
#[derive(Serialize, Deserialize, Debug)]
pub struct Tx {
pub coin_type: CoinType,
pub height: u32,
pub t_inputs: Vec<TTxIn>,
pub inputs: Vec<TxIn>,
pub outputs: Vec<TxOut>,
pub change: String,
pub ovk: String,
}
impl Tx {
pub fn new(coin_type: CoinType, height: u32) -> Self {
Tx {
coin_type,
height,
t_inputs: vec![],
inputs: vec![],
outputs: vec![],
change: "".to_string(),
ovk: "".to_string(),
}
}
}
#[derive(Serialize, Deserialize, Debug)]
pub struct TxIn {
pub diversifier: String,
pub fvk: String,
pub amount: u64,
pub rseed: String,
pub witness: String,
}
#[derive(Clone, Serialize, Deserialize, Debug)]
pub struct TTxIn {
pub op: String,
pub n: u32,
pub amount: u64,
pub script: String,
}
#[derive(Clone, Serialize, Deserialize, Debug)]
pub struct TxOut {
pub addr: String,
pub amount: u64,
pub ovk: String,
pub memo: String,
}
#[derive(Serialize, Debug)]
pub struct TxSummary {
pub recipients: Vec<RecipientSummary>,
}
#[derive(Serialize, Debug)]
pub struct RecipientSummary {
pub address: String,
pub amount: u64,
}
pub struct TxBuilder {
pub tx: Tx,
coin_type: CoinType,
}
impl TxBuilder {
pub fn new(coin_type: CoinType, height: u32) -> Self {
TxBuilder {
coin_type,
tx: Tx::new(coin_type, height),
}
}
fn add_t_input(&mut self, op: OutPoint, amount: u64, script: &[u8]) {
self.tx.t_inputs.push(TTxIn {
op: hex::encode(op.hash()),
n: op.n(),
amount,
script: hex::encode(script),
});
}
fn add_z_input(
&mut self,
diversifier: &Diversifier,
fvk: &ExtendedFullViewingKey,
amount: Amount,
rseed: &[u8],
witness: &[u8],
) -> anyhow::Result<()> {
let tx_in = TxIn {
diversifier: hex::encode(diversifier.0),
fvk: encode_extended_full_viewing_key(
self.chain()
.network()
.hrp_sapling_extended_full_viewing_key(),
fvk,
),
amount: u64::from(amount),
rseed: hex::encode(rseed),
witness: hex::encode(witness),
};
self.tx.inputs.push(tx_in);
Ok(())
}
fn add_t_output(&mut self, address: &str, amount: Amount) -> anyhow::Result<()> {
let tx_out = TxOut {
addr: address.to_string(),
amount: u64::from(amount),
ovk: String::new(),
memo: String::new(),
};
self.tx.outputs.push(tx_out);
Ok(())
}
fn add_z_output(
&mut self,
address: &str,
ovk: &OutgoingViewingKey,
amount: Amount,
memo: &Memo,
) -> anyhow::Result<()> {
let tx_out = TxOut {
addr: address.to_string(),
amount: u64::from(amount),
ovk: hex::encode(ovk.0),
memo: hex::encode(MemoBytes::from(memo).as_slice()),
};
self.tx.outputs.push(tx_out);
Ok(())
}
fn set_change(
&mut self,
ovk: &OutgoingViewingKey,
address: &PaymentAddress,
) -> anyhow::Result<()> {
self.tx.change = encode_payment_address(
self.chain().network().hrp_sapling_payment_address(),
address,
);
self.tx.ovk = hex::encode(ovk.0);
Ok(())
}
pub fn select_inputs(
&mut self,
fvk: &ExtendedFullViewingKey,
notes: &[SpendableNote],
utxos: &[GetAddressUtxosReply],
target_amount: u64,
) -> anyhow::Result<Vec<u32>> {
let mut selected_notes: Vec<u32> = vec![];
let target_amount = Amount::from_u64(target_amount).unwrap();
let mut t_amount = Amount::zero();
if !utxos.is_empty() {
for utxo in utxos.iter() {
let mut tx_hash = [0u8; 32];
tx_hash.copy_from_slice(&utxo.txid);
let op = OutPoint::new(tx_hash, utxo.index as u32);
self.add_t_input(op, utxo.value_zat as u64, &utxo.script);
t_amount += Amount::from_i64(utxo.value_zat).unwrap();
}
}
let target_amount_with_fee =
(target_amount + DEFAULT_FEE).ok_or(anyhow!("Invalid amount"))?;
if target_amount_with_fee > t_amount {
let mut amount = (target_amount_with_fee - t_amount).unwrap();
let mut notes = notes.to_vec();
notes.shuffle(&mut OsRng);
for n in notes.iter() {
if amount.is_positive() {
let a = amount.min(
Amount::from_u64(n.note.value)
.map_err(|_| anyhow::anyhow!("Invalid amount"))?,
);
amount -= a;
let mut witness_bytes: Vec<u8> = vec![];
n.witness.write(&mut witness_bytes)?;
if let Rseed::BeforeZip212(rseed) = n.note.rseed {
self.add_z_input(
&n.diversifier,
fvk,
Amount::from_u64(n.note.value).unwrap(),
&rseed.to_bytes(),
&witness_bytes,
)?;
selected_notes.push(n.id);
}
}
}
if amount.is_positive() {
log::info!("Not enough balance");
anyhow::bail!(
"Not enough balance, need {} zats, missing {} zats",
u64::from(target_amount_with_fee),
u64::from(amount)
);
}
}
Ok(selected_notes)
}
pub fn select_outputs(
&mut self,
fvk: &ExtendedFullViewingKey,
recipients: &[RecipientMemo],
) -> anyhow::Result<()> {
let ovk = &fvk.fvk.ovk;
let (_, change) = fvk.default_address();
self.set_change(ovk, &change)?;
for r in recipients.iter() {
let to_addr = RecipientAddress::decode(self.chain().network(), &r.address)
.ok_or(anyhow::anyhow!("Invalid address"))?;
let memo = &r.memo;
let amount = Amount::from_u64(r.amount).unwrap();
let max_amount_per_note = r.max_amount_per_note;
let max_amount_per_note = if max_amount_per_note != 0 {
Amount::from_u64(max_amount_per_note).unwrap()
} else {
Amount::from_i64(MAX_MONEY).unwrap()
};
let mut is_first = true;
let mut remaining_amount = amount;
while remaining_amount.is_positive() || is_first {
is_first = false;
let note_amount = remaining_amount.min(max_amount_per_note);
remaining_amount -= note_amount;
match &to_addr {
RecipientAddress::Shielded(_pa) => {
log::info!("Sapling output: {}", r.amount);
self.add_z_output(&r.address, ovk, note_amount, memo)
}
RecipientAddress::Transparent(_address) => {
self.add_t_output(&r.address, note_amount)
}
}?;
}
}
Ok(())
}
fn chain(&self) -> &dyn CoinChain {
get_coin_chain(self.coin_type)
}
}
impl Tx {
pub fn sign(
&self,
tsk: Option<SecretKey>,
zsk: &ExtendedSpendingKey,
prover: &impl TxProver,
progress_callback: impl Fn(Progress) + Send + 'static,
) -> anyhow::Result<Vec<u8>> {
let chain = get_coin_chain(self.coin_type);
let last_height = BlockHeight::from_u32(self.height as u32);
let mut builder = Builder::new(*chain.network(), last_height);
let efvk = ExtendedFullViewingKey::from(zsk);
let ovk: Hash = hex::decode(&self.ovk)?.try_into().unwrap();
builder.send_change_to(
OutgoingViewingKey(ovk),
decode_payment_address(chain.network().hrp_sapling_payment_address(), &self.change)
.unwrap()
.unwrap(),
);
if let Some(tsk) = tsk {
for txin in self.t_inputs.iter() {
let mut txid = [0u8; 32];
hex::decode_to_slice(&txin.op, &mut txid)?;
builder.add_transparent_input(
tsk,
OutPoint::new(txid, txin.n),
ZTxOut {
value: Amount::from_u64(txin.amount).unwrap(),
script_pubkey: Script(hex::decode(&txin.script).unwrap()),
},
)?;
}
} else if !self.t_inputs.is_empty() {
anyhow::bail!("Missing secret key of transparent account");
}
for txin in self.inputs.iter() {
let mut diversifier = [0u8; 11];
hex::decode_to_slice(&txin.diversifier, &mut diversifier)?;
let diversifier = Diversifier(diversifier);
let fvk = decode_extended_full_viewing_key(
chain.network().hrp_sapling_extended_full_viewing_key(),
&txin.fvk,
)?
.unwrap();
if fvk != efvk {
anyhow::bail!("Incorrect account - Secret key mismatch")
}
let pa = fvk.fvk.vk.to_payment_address(diversifier).unwrap();
let mut rseed_bytes = [0u8; 32];
hex::decode_to_slice(&txin.rseed, &mut rseed_bytes)?;
let rseed = Fr::from_bytes(&rseed_bytes).unwrap();
let note = pa
.create_note(txin.amount, Rseed::BeforeZip212(rseed))
.unwrap();
let w = hex::decode(&txin.witness)?;
let witness = IncrementalWitness::<Node>::read(&*w)?;
let merkle_path = witness.path().unwrap();
builder.add_sapling_spend(zsk.clone(), diversifier, note, merkle_path)?;
}
for txout in self.outputs.iter() {
let recipient = RecipientAddress::decode(chain.network(), &txout.addr).unwrap();
let amount = Amount::from_u64(txout.amount).unwrap();
match recipient {
RecipientAddress::Transparent(ta) => {
builder.add_transparent_output(&ta, amount)?;
}
RecipientAddress::Shielded(pa) => {
let mut ovk = [0u8; 32];
hex::decode_to_slice(&txout.ovk, &mut ovk)?;
let ovk = OutgoingViewingKey(ovk);
let mut memo = vec![0; 512];
let m = hex::decode(&txout.memo)?;
memo[..m.len()].copy_from_slice(&m);
let memo = MemoBytes::from_bytes(&memo)?;
builder.add_sapling_output(Some(ovk), pa, amount, memo)?;
}
}
}
let (progress_tx, progress_rx) = mpsc::channel::<Progress>();
builder.with_progress_notifier(progress_tx);
tokio::spawn(async move {
while let Ok(progress) = progress_rx.recv() {
log::info!("Progress: {}", progress.cur());
progress_callback(progress);
}
});
let (tx, _) = builder.build(prover)?;
let mut raw_tx = vec![];
tx.write(&mut raw_tx)?;
Ok(raw_tx)
}
}
pub async fn broadcast_tx(tx: &[u8]) -> anyhow::Result<String> {
let c = CoinConfig::get_active();
let mut client = c.connect_lwd().await?;
let latest_height = get_latest_height(&mut client).await?;
let raw_tx = RawTransaction {
data: tx.to_vec(),
height: latest_height as u64,
};
let rep = client
.send_transaction(Request::new(raw_tx))
.await?
.into_inner();
let code = rep.error_code;
if code == 0 {
Ok(rep.error_message)
} else {
Err(anyhow::anyhow!(rep.error_message))
}
}
pub fn get_tx_summary(tx: &Tx) -> anyhow::Result<TxSummary> {
let mut recipients = vec![];
for tx_out in tx.outputs.iter() {
recipients.push(RecipientSummary {
address: tx_out.addr.clone(),
amount: tx_out.amount,
});
}
Ok(TxSummary { recipients })
}