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
use crate::{formatter::TryFormat, types::*, Error};
use codec::{Decode, Encode};
use scale_info::TypeInfo;
#[cfg(not(feature = "std"))]
use alloc::{vec, vec::Vec};
#[cfg(feature = "std")]
use codec::alloc::string::String;
#[derive(Encode, Decode, TypeInfo, PartialEq, Debug, Clone)]
pub struct Script {
pub(crate) bytes: Vec<u8>,
}
impl Default for Script {
fn default() -> Self {
Script { bytes: vec![] }
}
}
impl Script {
pub fn new() -> Script {
Self::default()
}
pub(crate) fn height(height: u32) -> Script {
let mut script = Script::new();
let mut height_bytes = height.to_le_bytes().to_vec();
for i in (1..4).rev() {
if height_bytes[i] == 0 {
height_bytes.remove(i);
} else {
break;
}
}
if let Some(x) = height_bytes.last() {
if (x & 0x80) != 0 {
height_bytes.push(0);
}
}
script.append(height_bytes);
script
}
pub fn op_return(return_content: &[u8]) -> Script {
let mut script = Script::new();
script.append(OpCode::OpReturn);
script.append(return_content.len() as u8);
script.append(return_content);
script
}
pub fn is_p2wpkh_v0(&self) -> bool {
self.len() == P2WPKH_V0_SCRIPT_SIZE as usize
&& self.bytes[0] == OpCode::Op0 as u8
&& self.bytes[1] == HASH160_SIZE_HEX
}
pub fn is_p2wsh_v0(&self) -> bool {
self.len() == P2WSH_V0_SCRIPT_SIZE as usize
&& self.bytes[0] == OpCode::Op0 as u8
&& self.bytes[1] == HASH256_SIZE_HEX
}
pub fn is_p2pkh(&self) -> bool {
self.len() == P2PKH_SCRIPT_SIZE as usize
&& self.bytes[0] == OpCode::OpDup as u8
&& self.bytes[1] == OpCode::OpHash160 as u8
&& self.bytes[2] == HASH160_SIZE_HEX
&& self.bytes[23] == OpCode::OpEqualVerify as u8
&& self.bytes[24] == OpCode::OpCheckSig as u8
}
pub fn is_p2sh(&self) -> bool {
self.len() == P2SH_SCRIPT_SIZE as usize
&& self.bytes[0] == OpCode::OpHash160 as u8
&& self.bytes[1] == HASH160_SIZE_HEX
&& self.bytes[22] == OpCode::OpEqual as u8
}
pub fn append<T: TryFormat>(&mut self, value: T) {
value.try_format(&mut self.bytes).expect("Not bounded");
}
pub fn extract_op_return_data(&self) -> Result<Vec<u8>, Error> {
let output_script = &self.bytes;
if *output_script.get(0).ok_or(Error::EndOfFile)? != OpCode::OpReturn as u8 {
return Err(Error::MalformedOpReturnOutput);
}
if output_script.len() > MAX_OPRETURN_SIZE {
return Err(Error::MalformedOpReturnOutput);
}
let result = output_script.get(2..).ok_or(Error::EndOfFile)?;
if result.len() != output_script[1] as usize {
return Err(Error::MalformedOpReturnOutput);
}
Ok(result.to_vec())
}
pub fn as_bytes(&self) -> &[u8] {
&self.bytes
}
#[cfg(feature = "std")]
pub fn as_hex(&self) -> String {
hex::encode(&self.bytes)
}
pub fn len(&self) -> usize {
self.bytes.len()
}
pub fn is_empty(&self) -> bool {
self.len() == 0
}
}
impl From<Vec<u8>> for Script {
fn from(bytes: Vec<u8>) -> Script {
Script { bytes }
}
}
#[cfg(feature = "std")]
impl std::convert::TryFrom<&str> for Script {
type Error = crate::Error;
fn try_from(hex_string: &str) -> Result<Script, Self::Error> {
let bytes = hex::decode(hex_string).map_err(|_e| Error::InvalidScript)?;
Ok(Script { bytes })
}
}
#[test]
fn test_script_height() {
assert_eq!(Script::height(7).bytes, vec![1, 7]);
assert_eq!(Script::height(127).bytes, vec![1, 127]);
assert_eq!(Script::height(128).bytes, vec![2, 128, 0]);
assert_eq!(Script::height(255).bytes, vec![2, 0xff, 0x00]);
assert_eq!(Script::height(256).bytes, vec![2, 0x00, 0x01]);
assert_eq!(Script::height(32767).bytes, vec![2, 0xff, 0x7f]);
assert_eq!(Script::height(32768).bytes, vec![3, 0x00, 0x80, 0x00]);
assert_eq!(Script::height(65535).bytes, vec![3, 0xff, 0xff, 0x00]);
assert_eq!(Script::height(65536).bytes, vec![3, 0x00, 0x00, 0x01]);
}