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
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
use std::io::Cursor;
use std::io::Read;
use std::io::Write;
use crate::BSVErrors;
use crate::Script;
use crate::{Hash, VarInt};
use byteorder::*;
use serde::{Deserialize, Serialize};
use thiserror::*;
use wasm_bindgen::{prelude::*, throw_str, JsValue};
mod match_criteria;
mod sighash;
mod txin;
mod txout;
pub use match_criteria::*;
pub use sighash::*;
pub use txin::*;
pub use txout::*;
#[wasm_bindgen]
#[derive(Debug, Clone, PartialEq, Default, Serialize, Deserialize)]
pub struct Transaction {
pub(super) version: u32,
pub(super) inputs: Vec<TxIn>,
pub(super) outputs: Vec<TxOut>,
pub(super) n_locktime: u32,
#[serde(skip)]
pub(super) hash_cache: HashCache,
}
impl Transaction {
pub(crate) fn new_impl(version: u32, inputs: Vec<TxIn>, outputs: Vec<TxOut>, n_locktime: u32) -> Transaction {
Transaction {
version,
inputs,
outputs,
n_locktime,
hash_cache: HashCache::new(),
}
}
pub(crate) fn from_hex_impl(hex_str: &str) -> Result<Transaction, BSVErrors> {
let tx_bytes = hex::decode(hex_str)?;
Transaction::from_bytes_impl(&tx_bytes)
}
pub(crate) fn from_bytes_impl(tx_bytes: &[u8]) -> Result<Transaction, BSVErrors> {
let mut cursor = Cursor::new(tx_bytes.to_vec());
let version = match cursor.read_u32::<LittleEndian>() {
Ok(v) => v,
Err(e) => return Err(BSVErrors::DeserialiseTransaction("version".to_string(), e)),
};
let n_inputs = match cursor.read_varint() {
Ok(v) => v,
Err(e) => return Err(BSVErrors::DeserialiseTransaction("n_inputs".to_string(), e)),
};
let mut inputs: Vec<TxIn> = Vec::new();
for _ in 0..n_inputs {
let tx_in = TxIn::read_in(&mut cursor)?;
inputs.push(tx_in);
}
let n_outputs = match cursor.read_varint() {
Ok(v) => v,
Err(e) => return Err(BSVErrors::DeserialiseTransaction("n_outputs".to_string(), e)),
};
let mut outputs: Vec<TxOut> = Vec::new();
for _ in 0..n_outputs {
let tx_out = TxOut::read_in(&mut cursor)?;
outputs.push(tx_out);
}
let n_locktime = match cursor.read_u32::<LittleEndian>() {
Ok(v) => v,
Err(e) => return Err(BSVErrors::DeserialiseTransaction("n_locktime".to_string(), e)),
};
Ok(Transaction {
version,
inputs,
outputs,
n_locktime,
hash_cache: HashCache::new(),
})
}
pub(crate) fn to_bytes_impl(&self) -> Result<Vec<u8>, BSVErrors> {
let mut buffer = Vec::new();
if let Err(e) = buffer.write_u32::<LittleEndian>(self.version) {
return Err(BSVErrors::SerialiseTransaction("version".to_string(), e));
}
if let Err(e) = buffer.write_varint(self.get_ninputs() as u64) {
return Err(BSVErrors::SerialiseTransaction("n_inputs".to_string(), e));
}
for i in 0..self.get_ninputs() {
let input = &self.inputs[i];
let input_bytes = input.to_bytes_impl()?;
if let Err(e) = buffer.write_all(&input_bytes) {
return Err(BSVErrors::SerialiseTransaction(format!("input {}", i), e));
}
}
if let Err(e) = buffer.write_varint(self.get_noutputs() as u64) {
return Err(BSVErrors::SerialiseTransaction("n_outputs".to_string(), e));
}
for i in 0..self.get_noutputs() {
let output = &self.outputs[i as usize];
let output_bytes = output.to_bytes_impl()?;
if let Err(e) = buffer.write_all(&output_bytes) {
return Err(BSVErrors::SerialiseTransaction(format!("output {}", i), e));
}
}
if let Err(e) = buffer.write_u32::<LittleEndian>(self.n_locktime) {
return Err(BSVErrors::SerialiseTransaction("n_locktime".to_string(), e));
}
Ok(buffer)
}
pub(crate) fn to_compact_bytes_impl(&self) -> Result<Vec<u8>, BSVErrors> {
let mut buffer = vec![];
ciborium::ser::into_writer(&self, &mut buffer)?;
Ok(buffer)
}
pub(crate) fn from_compact_bytes_impl(compact_buffer: &[u8]) -> Result<Self, BSVErrors> {
let tx = ciborium::de::from_reader(compact_buffer)?;
Ok(tx)
}
pub(crate) fn get_size_impl(&self) -> Result<usize, BSVErrors> {
let tx_bytes = self.to_bytes_impl()?;
Ok(tx_bytes.len())
}
pub(crate) fn to_hex_impl(&self) -> Result<String, BSVErrors> {
Ok(hex::encode(&self.to_bytes_impl()?))
}
pub(crate) fn to_json_string_impl(&self) -> Result<String, BSVErrors> {
let json = serde_json::to_string(self)?;
Ok(json)
}
pub(crate) fn get_id_impl(&self) -> Result<Hash, BSVErrors> {
let tx_bytes = self.to_bytes_impl()?;
let mut hash = Hash::sha_256d(&tx_bytes);
hash.0.reverse();
Ok(hash)
}
pub(crate) fn get_outpoints_impl(&self) -> Vec<Vec<u8>> {
self.inputs
.iter()
.map(|x| {
let mut outpoint: Vec<u8> = vec![];
outpoint.extend(x.prev_tx_id.clone());
outpoint.reverse();
outpoint.extend(x.vout.to_le_bytes());
outpoint
})
.collect()
}
}
#[wasm_bindgen]
impl Transaction {
#[wasm_bindgen(js_name = getVersion)]
pub fn get_version(&self) -> u32 {
self.version
}
#[wasm_bindgen(js_name = getInputsCount)]
pub fn get_ninputs(&self) -> usize {
self.inputs.len()
}
#[wasm_bindgen(js_name = getOutputsCount)]
pub fn get_noutputs(&self) -> usize {
self.outputs.len()
}
#[wasm_bindgen(js_name = getInput)]
pub fn get_input(&self, index: usize) -> Option<TxIn> {
self.inputs.get(index).cloned()
}
#[wasm_bindgen(js_name = getOutput)]
pub fn get_output(&self, index: usize) -> Option<TxOut> {
self.outputs.get(index).cloned()
}
#[wasm_bindgen(js_name = getNLocktime)]
pub fn get_n_locktime(&self) -> u32 {
self.n_locktime
}
#[wasm_bindgen(js_name = getNLocktimeAsBytes)]
pub fn get_n_locktime_as_bytes(&self) -> Vec<u8> {
self.n_locktime.to_be_bytes().to_vec()
}
#[wasm_bindgen(constructor)]
pub fn new(version: u32, n_locktime: u32) -> Transaction {
Transaction::new_impl(version, vec![], vec![], n_locktime)
}
#[wasm_bindgen(js_name = addInput)]
pub fn add_input(&mut self, input: &TxIn) {
self.inputs.push(input.clone());
self.hash_cache.hash_inputs = None;
self.hash_cache.hash_sequence = None;
}
#[wasm_bindgen(js_name = addOutput)]
pub fn add_output(&mut self, output: &TxOut) {
self.outputs.push(output.clone());
self.hash_cache.hash_outputs = None;
}
#[wasm_bindgen(js_name = setInput)]
pub fn set_input(&mut self, index: usize, input: &TxIn) {
self.inputs[index] = input.clone();
}
#[wasm_bindgen(js_name = setOutput)]
pub fn set_output(&mut self, index: usize, output: &TxOut) {
self.outputs[index] = output.clone();
}
fn is_matching_output(txout: &TxOut, criteria: &MatchCriteria) -> bool {
if matches!(&criteria.script, Some(crit_script) if crit_script != &txout.script_pub_key) {
return false;
}
if criteria.exact_value.is_some() && criteria.exact_value != Some(txout.value) {
return false;
}
if criteria.min_value.is_some() && criteria.min_value > Some(txout.value) {
return false;
}
if criteria.max_value.is_some() && criteria.max_value < Some(txout.value) {
return false;
}
true
}
#[wasm_bindgen(js_name = matchOutput)]
pub fn match_output(&self, criteria: &MatchCriteria) -> Option<usize> {
self.outputs.iter().enumerate().find_map(|(i, txout)| match Transaction::is_matching_output(txout, criteria) {
true => Some(i),
false => None,
})
}
#[wasm_bindgen(js_name = matchOutputs)]
pub fn match_outputs(&self, criteria: &MatchCriteria) -> Vec<usize> {
let matches = self
.outputs
.iter()
.enumerate()
.filter_map(|(i, txout)| match Transaction::is_matching_output(txout, criteria) {
true => Some(i),
false => None,
})
.collect();
matches
}
fn is_matching_input(txin: &TxIn, criteria: &MatchCriteria) -> bool {
if matches!(&criteria.script, Some(crit_script) if crit_script != &txin.script_sig) {
return false;
}
if criteria.exact_value.is_some() && criteria.exact_value != txin.satoshis {
return false;
}
if criteria.min_value.is_some() && criteria.min_value > txin.satoshis {
return false;
}
if criteria.max_value.is_some() && criteria.max_value < txin.satoshis {
return false;
}
true
}
#[wasm_bindgen(js_name = matchInput)]
pub fn match_input(&self, criteria: &MatchCriteria) -> Option<usize> {
self.inputs.iter().enumerate().find_map(|(i, txin)| match Transaction::is_matching_input(txin, criteria) {
true => Some(i),
false => None,
})
}
#[wasm_bindgen(js_name = matchInputs)]
pub fn match_inputs(&self, criteria: &MatchCriteria) -> Vec<usize> {
let matches = self
.inputs
.iter()
.enumerate()
.filter_map(|(i, txin)| match Transaction::is_matching_input(txin, criteria) {
true => Some(i),
false => None,
})
.collect();
matches
}
#[wasm_bindgen(js_name = satoshisIn)]
pub fn satoshis_in(&self) -> Option<u64> {
self.inputs.iter().map(|x| x.satoshis).reduce(|a, b| {
if a == None || b == None {
return None;
}
Some(a.unwrap() + b.unwrap())
})?
}
#[wasm_bindgen(js_name = satoshisOut)]
pub fn satoshis_out(&self) -> u64 {
self.outputs.iter().map(|x| x.value).sum()
}
}
#[cfg(target_arch = "wasm32")]
#[wasm_bindgen]
impl Transaction {
#[wasm_bindgen(js_name = fromHex)]
pub fn from_hex(hex_str: &str) -> Result<Transaction, JsValue> {
return match Transaction::from_hex_impl(hex_str) {
Ok(v) => Ok(v),
Err(e) => throw_str(&e.to_string()),
};
}
#[wasm_bindgen(js_name = fromBytes)]
pub fn from_bytes(tx_bytes: &[u8]) -> Result<Transaction, JsValue> {
return match Transaction::from_bytes_impl(tx_bytes) {
Ok(v) => Ok(v),
Err(e) => throw_str(&e.to_string()),
};
}
#[wasm_bindgen(js_name = toString)]
pub fn to_json_string(&self) -> Result<String, JsValue> {
match Transaction::to_json_string_impl(&self) {
Ok(v) => Ok(v),
Err(e) => throw_str(&e.to_string()),
}
}
#[wasm_bindgen(js_name = toJSON)]
pub fn to_json(&self) -> Result<JsValue, JsValue> {
match JsValue::from_serde(&self) {
Ok(v) => Ok(v),
Err(e) => throw_str(&e.to_string()),
}
}
#[wasm_bindgen(js_name = toBytes)]
pub fn to_bytes(&self) -> Result<Vec<u8>, JsValue> {
match Transaction::to_bytes_impl(&self) {
Ok(v) => Ok(v),
Err(e) => throw_str(&e.to_string()),
}
}
#[wasm_bindgen(js_name = toHex)]
pub fn to_hex(&self) -> Result<String, JsValue> {
match Transaction::to_hex_impl(&self) {
Ok(v) => Ok(v),
Err(e) => throw_str(&e.to_string()),
}
}
#[wasm_bindgen(js_name = getSize)]
pub fn get_size(&self) -> Result<usize, JsValue> {
match Transaction::get_size_impl(&self) {
Ok(v) => Ok(v),
Err(e) => throw_str(&e.to_string()),
}
}
#[wasm_bindgen(js_name = addInputs)]
pub fn add_inputs(&mut self, tx_ins: Box<[JsValue]>) {
let js_value = &*tx_ins.to_vec();
for elem in js_value {
let input = elem.into_serde().unwrap();
self.add_input(&input);
}
}
#[wasm_bindgen(js_name = getOutpoints)]
pub fn get_outpoints(&mut self) -> Result<JsValue, JsValue> {
let outpoints = self.get_outpoints_impl();
match JsValue::from_serde(&outpoints) {
Ok(v) => Ok(v),
Err(e) => throw_str(&e.to_string()),
}
}
#[wasm_bindgen(js_name = addOutputs)]
pub fn add_outputs(&mut self, tx_outs: Box<[JsValue]>) {
let js_value = &*tx_outs.to_vec();
for elem in js_value {
let output = elem.into_serde().unwrap();
self.add_output(&output);
}
}
#[wasm_bindgen(js_name = getIdHex)]
pub fn get_id_hex(&self) -> Result<String, JsValue> {
match self.get_id_impl() {
Ok(v) => Ok(v.to_hex()),
Err(e) => throw_str(&e.to_string()),
}
}
#[wasm_bindgen(js_name = getIdBytes)]
pub fn get_id_bytes(&self) -> Result<Vec<u8>, JsValue> {
match self.get_id_impl() {
Ok(v) => Ok(v.to_bytes()),
Err(e) => throw_str(&e.to_string()),
}
}
#[wasm_bindgen(js_name = toCompactBytes)]
pub fn to_compact_bytes(&self) -> Result<Vec<u8>, JsValue> {
match self.to_compact_bytes_impl() {
Ok(v) => Ok(v),
Err(e) => throw_str(&e.to_string()),
}
}
#[wasm_bindgen(js_name = fromCompactBytes)]
pub fn from_compact_bytes(compact_buffer: &[u8]) -> Result<Transaction, JsValue> {
match Transaction::from_compact_bytes_impl(compact_buffer) {
Ok(v) => Ok(v),
Err(e) => throw_str(&e.to_string()),
}
}
}
#[cfg(not(target_arch = "wasm32"))]
impl Transaction {
pub fn get_id_hex(&self) -> Result<String, BSVErrors> {
Ok(self.get_id_impl()?.to_hex())
}
pub fn get_id_bytes(&self) -> Result<Vec<u8>, BSVErrors> {
Ok(self.get_id_impl()?.to_bytes())
}
pub fn get_size(&self) -> Result<usize, BSVErrors> {
self.get_size_impl()
}
#[cfg(not(target_arch = "wasm32"))]
pub fn from_hex(hex_str: &str) -> Result<Transaction, BSVErrors> {
Transaction::from_hex_impl(hex_str)
}
#[cfg(not(target_arch = "wasm32"))]
pub fn from_bytes(tx_bytes: &[u8]) -> Result<Transaction, BSVErrors> {
Transaction::from_bytes_impl(tx_bytes)
}
#[cfg(not(target_arch = "wasm32"))]
pub fn to_json_string(&self) -> Result<String, BSVErrors> {
Transaction::to_json_string_impl(self)
}
#[cfg(not(target_arch = "wasm32"))]
pub fn to_json(&self) -> Result<serde_json::Value, BSVErrors> {
let json = serde_json::to_value(self)?;
Ok(json)
}
#[cfg(not(target_arch = "wasm32"))]
pub fn to_bytes(&self) -> Result<Vec<u8>, BSVErrors> {
Transaction::to_bytes_impl(self)
}
#[cfg(not(target_arch = "wasm32"))]
pub fn to_hex(&self) -> Result<String, BSVErrors> {
Transaction::to_hex_impl(self)
}
#[cfg(not(target_arch = "wasm32"))]
pub fn add_inputs(&mut self, tx_ins: Vec<TxIn>) {
for txin in tx_ins {
self.add_input(&txin);
}
}
#[cfg(not(target_arch = "wasm32"))]
pub fn add_outputs(&mut self, tx_outs: Vec<TxOut>) {
for txout in tx_outs {
self.add_output(&txout);
}
}
#[cfg(not(target_arch = "wasm32"))]
pub fn get_outpoints(&mut self) -> Vec<Vec<u8>> {
self.get_outpoints_impl()
}
pub fn to_compact_bytes(&self) -> Result<Vec<u8>, BSVErrors> {
self.to_compact_bytes_impl()
}
pub fn from_compact_bytes(compact_buffer: &[u8]) -> Result<Self, BSVErrors> {
Transaction::from_compact_bytes_impl(compact_buffer)
}
}