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
use std::fmt;
use serde::{Serialize, Serializer, Deserialize, Deserializer};
use serde::ser::SerializeMap;
use keys::Address;
use v1::types;
use super::bytes::Bytes;
use super::hash::H256;
use super::script::ScriptType;
pub type RawTransaction = Bytes;
#[derive(Debug, Serialize, Deserialize, PartialEq)]
pub struct TransactionInput {
pub txid: H256,
pub vout: u32,
pub sequence: Option<u32>,
}
#[derive(Debug, PartialEq)]
pub struct TransactionOutputWithAddress {
pub address: Address,
pub amount: f64,
}
#[derive(Debug, PartialEq)]
pub struct TransactionOutputWithScriptData {
pub script_data: Bytes,
}
#[derive(Debug, PartialEq)]
pub enum TransactionOutput {
Address(TransactionOutputWithAddress),
ScriptData(TransactionOutputWithScriptData),
}
#[derive(Debug, PartialEq)]
pub struct TransactionOutputs {
pub outputs: Vec<TransactionOutput>,
}
#[derive(Debug, Serialize, Deserialize, PartialEq)]
pub struct TransactionInputScript {
pub asm: String,
pub hex: Bytes,
}
#[derive(Debug, Serialize, Deserialize, PartialEq)]
pub struct TransactionOutputScript {
pub asm: String,
pub hex: Bytes,
#[serde(rename = "reqSigs")]
pub req_sigs: u32,
#[serde(rename = "type")]
pub script_type: ScriptType,
#[serde(with = "types::address::vec")]
pub addresses: Vec<Address>,
}
#[derive(Debug, Serialize, Deserialize, PartialEq)]
pub struct SignedTransactionInput {
pub txid: H256,
pub vout: u32,
pub script_sig: TransactionInputScript,
pub sequence: u32,
pub txinwitness: Vec<String>,
}
#[derive(Debug, Serialize, Deserialize, PartialEq)]
pub struct SignedTransactionOutput {
pub value: f64,
pub n: u32,
#[serde(rename = "scriptPubKey")]
pub script: TransactionOutputScript,
}
#[derive(Debug, Serialize, Deserialize, PartialEq)]
pub struct Transaction {
pub hex: RawTransaction,
pub txid: H256,
pub hash: H256,
pub size: usize,
pub vsize: usize,
pub version: i32,
pub locktime: i32,
pub vin: Vec<SignedTransactionInput>,
pub vout: Vec<SignedTransactionOutput>,
pub blockhash: H256,
pub confirmations: u32,
pub time: u32,
pub blocktime: u32,
}
#[derive(Debug, PartialEq)]
pub enum GetRawTransactionResponse {
Raw(RawTransaction),
Verbose(Transaction),
}
impl Serialize for GetRawTransactionResponse {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> where S: Serializer {
match *self {
GetRawTransactionResponse::Raw(ref raw_transaction) => raw_transaction.serialize(serializer),
GetRawTransactionResponse::Verbose(ref verbose_transaction) => verbose_transaction.serialize(serializer),
}
}
}
impl TransactionOutputs {
pub fn len(&self) -> usize {
self.outputs.len()
}
}
impl Serialize for TransactionOutputs {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> where S: Serializer {
let mut state = serializer.serialize_map(Some(self.len()))?;
for output in &self.outputs {
match output {
&TransactionOutput::Address(ref address_output) => {
state.serialize_entry(&address_output.address.to_string(), &address_output.amount)?;
},
&TransactionOutput::ScriptData(ref script_output) => {
state.serialize_entry("data", &script_output.script_data)?;
},
}
}
state.end()
}
}
impl<'a> Deserialize<'a> for TransactionOutputs {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where D: Deserializer<'a> {
use serde::de::{Visitor, MapAccess};
struct TransactionOutputsVisitor;
impl<'b> Visitor<'b> for TransactionOutputsVisitor {
type Value = TransactionOutputs;
fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
formatter.write_str("a transaction output object")
}
fn visit_map<V>(self, mut visitor: V) -> Result<TransactionOutputs, V::Error> where V: MapAccess<'b> {
let mut outputs: Vec<TransactionOutput> = Vec::with_capacity(visitor.size_hint().unwrap_or(0));
while let Some(key) = try!(visitor.next_key::<String>()) {
if &key == "data" {
let value: Bytes = try!(visitor.next_value());
outputs.push(TransactionOutput::ScriptData(TransactionOutputWithScriptData {
script_data: value,
}));
} else {
let address = types::address::AddressVisitor::default().visit_str(&key)?;
let amount: f64 = try!(visitor.next_value());
outputs.push(TransactionOutput::Address(TransactionOutputWithAddress {
address: address,
amount: amount,
}));
}
}
Ok(TransactionOutputs {
outputs: outputs,
})
}
}
deserializer.deserialize_any(TransactionOutputsVisitor)
}
}
#[cfg(test)]
mod tests {
use serde_json;
use super::super::bytes::Bytes;
use super::super::hash::H256;
use super::super::script::ScriptType;
use super::*;
#[test]
fn transaction_input_serialize() {
let txinput = TransactionInput {
txid: H256::from(7),
vout: 33,
sequence: Some(88),
};
assert_eq!(serde_json::to_string(&txinput).unwrap(), r#"{"txid":"0700000000000000000000000000000000000000000000000000000000000000","vout":33,"sequence":88}"#);
}
#[test]
fn transaction_input_deserialize() {
let txinput = TransactionInput {
txid: H256::from(7),
vout: 33,
sequence: Some(88),
};
assert_eq!(
serde_json::from_str::<TransactionInput>(r#"{"txid":"0700000000000000000000000000000000000000000000000000000000000000","vout":33,"sequence":88}"#).unwrap(),
txinput);
}
#[test]
fn transaction_outputs_serialize() {
let txout = TransactionOutputs {
outputs: vec![
TransactionOutput::Address(TransactionOutputWithAddress {
address: "1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa".into(),
amount: 123.45,
}),
TransactionOutput::Address(TransactionOutputWithAddress {
address: "1H5m1XzvHsjWX3wwU781ubctznEpNACrNC".into(),
amount: 67.89,
}),
TransactionOutput::ScriptData(TransactionOutputWithScriptData {
script_data: Bytes::new(vec![1, 2, 3, 4]),
}),
TransactionOutput::ScriptData(TransactionOutputWithScriptData {
script_data: Bytes::new(vec![5, 6, 7, 8]),
}),
]
};
assert_eq!(serde_json::to_string(&txout).unwrap(), r#"{"1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa":123.45,"1H5m1XzvHsjWX3wwU781ubctznEpNACrNC":67.89,"data":"01020304","data":"05060708"}"#);
}
#[test]
fn transaction_outputs_deserialize() {
let txout = TransactionOutputs {
outputs: vec![
TransactionOutput::Address(TransactionOutputWithAddress {
address: "1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa".into(),
amount: 123.45,
}),
TransactionOutput::Address(TransactionOutputWithAddress {
address: "1H5m1XzvHsjWX3wwU781ubctznEpNACrNC".into(),
amount: 67.89,
}),
TransactionOutput::ScriptData(TransactionOutputWithScriptData {
script_data: Bytes::new(vec![1, 2, 3, 4]),
}),
TransactionOutput::ScriptData(TransactionOutputWithScriptData {
script_data: Bytes::new(vec![5, 6, 7, 8]),
}),
]
};
assert_eq!(
serde_json::from_str::<TransactionOutputs>(r#"{"1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa":123.45,"1H5m1XzvHsjWX3wwU781ubctznEpNACrNC":67.89,"data":"01020304","data":"05060708"}"#).unwrap(),
txout);
}
#[test]
fn transaction_input_script_serialize() {
let txin = TransactionInputScript {
asm: "Hello, world!!!".to_owned(),
hex: Bytes::new(vec![1, 2, 3, 4]),
};
assert_eq!(serde_json::to_string(&txin).unwrap(), r#"{"asm":"Hello, world!!!","hex":"01020304"}"#);
}
#[test]
fn transaction_input_script_deserialize() {
let txin = TransactionInputScript {
asm: "Hello, world!!!".to_owned(),
hex: Bytes::new(vec![1, 2, 3, 4]),
};
assert_eq!(
serde_json::from_str::<TransactionInputScript>(r#"{"asm":"Hello, world!!!","hex":"01020304"}"#).unwrap(),
txin);
}
#[test]
fn transaction_output_script_serialize() {
let txout = TransactionOutputScript {
asm: "Hello, world!!!".to_owned(),
hex: Bytes::new(vec![1, 2, 3, 4]),
req_sigs: 777,
script_type: ScriptType::Multisig,
addresses: vec!["1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa".into(), "1H5m1XzvHsjWX3wwU781ubctznEpNACrNC".into()],
};
assert_eq!(serde_json::to_string(&txout).unwrap(), r#"{"asm":"Hello, world!!!","hex":"01020304","reqSigs":777,"type":"multisig","addresses":["1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa","1H5m1XzvHsjWX3wwU781ubctznEpNACrNC"]}"#);
}
#[test]
fn transaction_output_script_deserialize() {
let txout = TransactionOutputScript {
asm: "Hello, world!!!".to_owned(),
hex: Bytes::new(vec![1, 2, 3, 4]),
req_sigs: 777,
script_type: ScriptType::Multisig,
addresses: vec!["1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa".into(), "1H5m1XzvHsjWX3wwU781ubctznEpNACrNC".into()],
};
assert_eq!(
serde_json::from_str::<TransactionOutputScript>(r#"{"asm":"Hello, world!!!","hex":"01020304","reqSigs":777,"type":"multisig","addresses":["1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa","1H5m1XzvHsjWX3wwU781ubctznEpNACrNC"]}"#).unwrap(),
txout);
}
#[test]
fn signed_transaction_input_serialize() {
let txin = SignedTransactionInput {
txid: H256::from(77),
vout: 13,
script_sig: TransactionInputScript {
asm: "Hello, world!!!".to_owned(),
hex: Bytes::new(vec![1, 2, 3, 4]),
},
sequence: 123,
txinwitness: vec![],
};
assert_eq!(serde_json::to_string(&txin).unwrap(), r#"{"txid":"4d00000000000000000000000000000000000000000000000000000000000000","vout":13,"script_sig":{"asm":"Hello, world!!!","hex":"01020304"},"sequence":123,"txinwitness":[]}"#);
}
#[test]
fn signed_transaction_input_deserialize() {
let txin = SignedTransactionInput {
txid: H256::from(77),
vout: 13,
script_sig: TransactionInputScript {
asm: "Hello, world!!!".to_owned(),
hex: Bytes::new(vec![1, 2, 3, 4]),
},
sequence: 123,
txinwitness: vec![],
};
assert_eq!(
serde_json::from_str::<SignedTransactionInput>(r#"{"txid":"4d00000000000000000000000000000000000000000000000000000000000000","vout":13,"script_sig":{"asm":"Hello, world!!!","hex":"01020304"},"sequence":123,"txinwitness":[]}"#).unwrap(),
txin);
}
#[test]
fn signed_transaction_output_serialize() {
let txout = SignedTransactionOutput {
value: 777.79,
n: 12,
script: TransactionOutputScript {
asm: "Hello, world!!!".to_owned(),
hex: Bytes::new(vec![1, 2, 3, 4]),
req_sigs: 777,
script_type: ScriptType::Multisig,
addresses: vec!["1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa".into(), "1H5m1XzvHsjWX3wwU781ubctznEpNACrNC".into()],
},
};
assert_eq!(serde_json::to_string(&txout).unwrap(), r#"{"value":777.79,"n":12,"scriptPubKey":{"asm":"Hello, world!!!","hex":"01020304","reqSigs":777,"type":"multisig","addresses":["1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa","1H5m1XzvHsjWX3wwU781ubctznEpNACrNC"]}}"#);
}
#[test]
fn signed_transaction_output_deserialize() {
let txout = SignedTransactionOutput {
value: 777.79,
n: 12,
script: TransactionOutputScript {
asm: "Hello, world!!!".to_owned(),
hex: Bytes::new(vec![1, 2, 3, 4]),
req_sigs: 777,
script_type: ScriptType::Multisig,
addresses: vec!["1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa".into(), "1H5m1XzvHsjWX3wwU781ubctznEpNACrNC".into()],
},
};
assert_eq!(
serde_json::from_str::<SignedTransactionOutput>(r#"{"value":777.79,"n":12,"scriptPubKey":{"asm":"Hello, world!!!","hex":"01020304","reqSigs":777,"type":"multisig","addresses":["1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa","1H5m1XzvHsjWX3wwU781ubctznEpNACrNC"]}}"#).unwrap(),
txout);
}
#[test]
fn transaction_serialize() {
let tx = Transaction {
hex: "DEADBEEF".into(),
txid: H256::from(4),
hash: H256::from(5),
size: 33,
vsize: 44,
version: 55,
locktime: 66,
vin: vec![],
vout: vec![],
blockhash: H256::from(6),
confirmations: 77,
time: 88,
blocktime: 99,
};
assert_eq!(serde_json::to_string(&tx).unwrap(), r#"{"hex":"deadbeef","txid":"0400000000000000000000000000000000000000000000000000000000000000","hash":"0500000000000000000000000000000000000000000000000000000000000000","size":33,"vsize":44,"version":55,"locktime":66,"vin":[],"vout":[],"blockhash":"0600000000000000000000000000000000000000000000000000000000000000","confirmations":77,"time":88,"blocktime":99}"#);
}
#[test]
fn transaction_deserialize() {
let tx = Transaction {
hex: "DEADBEEF".into(),
txid: H256::from(4),
hash: H256::from(5),
size: 33,
vsize: 44,
version: 55,
locktime: 66,
vin: vec![],
vout: vec![],
blockhash: H256::from(6),
confirmations: 77,
time: 88,
blocktime: 99,
};
assert_eq!(
serde_json::from_str::<Transaction>(r#"{"hex":"deadbeef","txid":"0400000000000000000000000000000000000000000000000000000000000000","hash":"0500000000000000000000000000000000000000000000000000000000000000","size":33,"vsize":44,"version":55,"locktime":66,"vin":[],"vout":[],"blockhash":"0600000000000000000000000000000000000000000000000000000000000000","confirmations":77,"time":88,"blocktime":99}"#).unwrap(),
tx);
}
}