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
use crate::errors::{ErrorKind, Result};
use bitcoin::bech32::{decode, encode, u5, FromBase32, ToBase32};
use crypto::digest::Digest;
use crypto::ripemd160::Ripemd160;
use crypto::sha2::Sha256;
use serde::{Deserialize, Serialize};
static BECH32_PUBKEY_DATA_PREFIX: [u8; 5] = [0xeb, 0x5a, 0xe9, 0x87, 0x21];
#[derive(Deserialize, Serialize, Debug)]
pub struct PublicKey {
pub raw_pub_key: Option<Vec<u8>>,
pub raw_address: Option<Vec<u8>>,
}
impl PublicKey {
pub fn from_bitcoin_public_key(bpub: &bitcoin::util::key::PublicKey) -> PublicKey {
let bpub_bytes = bpub.key.serialize();
let raw_pub_key = PublicKey::pubkey_from_public_key(&bpub_bytes);
let raw_address = PublicKey::address_from_public_key(&bpub_bytes);
PublicKey {
raw_pub_key: Some(raw_pub_key),
raw_address: Some(raw_address),
}
}
pub fn from_public_key(bpub: &[u8]) -> PublicKey {
let raw_pub_key = PublicKey::pubkey_from_public_key(bpub);
let raw_address = PublicKey::address_from_public_key(bpub);
PublicKey {
raw_pub_key: Some(raw_pub_key),
raw_address: Some(raw_address),
}
}
pub fn from_account(acc_address: &str) -> Result<PublicKey> {
PublicKey::check_prefix_and_length("terra", acc_address, 44).and_then(|vu5| {
match Vec::from_base32(vu5.as_slice()) {
Ok(vu8) => Ok(PublicKey {
raw_pub_key: None,
raw_address: Some(vu8),
}),
Err(_) => Err(ErrorKind::Conversion(String::from(acc_address)).into()),
}
})
}
pub fn from_operator_address(valoper_address: &str) -> Result<PublicKey> {
PublicKey::check_prefix_and_length("terravaloper", valoper_address, 51).and_then(|vu5| {
match Vec::from_base32(vu5.as_slice()) {
Ok(vu8) => Ok(PublicKey {
raw_pub_key: None,
raw_address: Some(vu8),
}),
Err(_) => Err(ErrorKind::Conversion(String::from(valoper_address)).into()),
}
})
}
pub fn from_raw_address(raw_address: &str) -> Result<PublicKey> {
let vec1 = hex::decode(raw_address)?;
Ok(PublicKey {
raw_pub_key: None,
raw_address: Some(vec1),
})
}
fn check_prefix_and_length(prefix: &str, data: &str, length: usize) -> Result<Vec<u5>> {
match decode(data) {
Ok((hrp, decoded_str)) => {
if hrp == prefix && data.len() == length {
Ok(decoded_str)
} else {
Err(ErrorKind::Bech32DecodeErr.into())
}
}
Err(_) => Err(ErrorKind::Conversion(String::from(data)).into()),
}
}
pub fn pubkey_from_public_key(public_key: &[u8]) -> Vec<u8> {
[BECH32_PUBKEY_DATA_PREFIX.to_vec(), public_key.to_vec()].concat()
}
pub fn address_from_public_key(public_key: &[u8]) -> Vec<u8> {
let mut hasher = Ripemd160::new();
let mut sha = Sha256::new();
let mut sha_result: [u8; 32] = [0; 32];
let mut ripe_result: [u8; 20] = [0; 20];
sha.input(public_key);
sha.result(&mut sha_result);
hasher.input(&sha_result);
hasher.result(&mut ripe_result);
let address: Vec<u8> = ripe_result.to_vec();
address
}
pub fn account(&self) -> Result<String> {
match &self.raw_address {
Some(raw) => {
let data = encode("terra", raw.to_base32());
match data {
Ok(acc) => Ok(acc),
Err(_) => Err(ErrorKind::Bech32DecodeErr.into()),
}
}
None => Err(ErrorKind::Implementation.into()),
}
}
pub fn operator_address(&self) -> Result<String> {
match &self.raw_address {
Some(raw) => {
let data = encode("terravaloper", raw.to_base32());
match data {
Ok(acc) => Ok(acc),
Err(_) => Err(ErrorKind::Bech32DecodeErr.into()),
}
}
None => Err(ErrorKind::Implementation.into()),
}
}
#[allow(missing_docs)]
#[allow(non_snake_case)]
pub fn TerraPub(&self) -> Result<String> {
match &self.raw_pub_key {
Some(raw) => {
let data = encode("terrapub", raw.to_base32());
match data {
Ok(acc) => Ok(acc),
Err(_) => Err(ErrorKind::Bech32DecodeErr.into()),
}
}
None => Err(ErrorKind::Implementation.into()),
}
}
#[allow(missing_docs)]
#[allow(non_snake_case)]
pub fn TerraValOperPub(&self) -> Result<String> {
match &self.raw_pub_key {
Some(raw) => {
let data = encode("terravaloperpub", raw.to_base32());
match data {
Ok(acc) => Ok(acc),
Err(_) => Err(ErrorKind::Bech32DecodeErr.into()),
}
}
None => Err(ErrorKind::Implementation.into()),
}
}
#[allow(missing_docs)]
#[allow(non_snake_case)]
pub fn ValConsAddress(&self) -> Result<String> {
match &self.raw_address {
Some(raw) => {
let data = encode("terravalcons", raw.to_base32());
match data {
Ok(acc) => Ok(acc),
Err(_) => Err(ErrorKind::Bech32DecodeErr.into()),
}
}
None => Err(ErrorKind::Implementation.into()),
}
}
#[allow(missing_docs)]
#[allow(non_snake_case)]
pub fn ValConsPub(&self) -> Result<String> {
match &self.raw_pub_key {
Some(raw) => {
let data = encode("terravalconspub", raw.to_base32());
match data {
Ok(acc) => Ok(acc),
Err(_) => Err(ErrorKind::Bech32DecodeErr.into()),
}
}
None => Err(ErrorKind::Implementation.into()),
}
}
}
#[cfg(test)]
mod tst {
use super::*;
#[test]
pub fn tst_conv() -> Result<()> {
let pub_key = PublicKey::from_account("terra1jnzv225hwl3uxc5wtnlgr8mwy6nlt0vztv3qqm")?;
assert_eq!(
&pub_key.account()?,
"terra1jnzv225hwl3uxc5wtnlgr8mwy6nlt0vztv3qqm"
);
assert_eq!(
&pub_key.operator_address()?,
"terravaloper1jnzv225hwl3uxc5wtnlgr8mwy6nlt0vztraasg"
);
assert_eq!(
&pub_key.ValConsAddress()?,
"terravalcons1jnzv225hwl3uxc5wtnlgr8mwy6nlt0vzlswpuf"
);
let x = &pub_key.raw_address.unwrap();
assert_eq!(hex::encode(x), "94c4c52a9777e3c3628e5cfe819f6e26a7f5bd82");
Ok(())
}
#[test]
pub fn test_pete() -> Result<()> {
let pub_key = PublicKey::from_public_key(&hex::decode(
"02cf7ed0b5832538cd89b55084ce93399b186e381684b31388763801439cbdd20a",
)?);
assert_eq!(
&pub_key.operator_address()?,
"terravaloper1jnzv225hwl3uxc5wtnlgr8mwy6nlt0vztraasg"
);
assert_eq!(
&pub_key.account()?.to_string(),
"terra1jnzv225hwl3uxc5wtnlgr8mwy6nlt0vztv3qqm"
);
assert_eq!(
&pub_key.TerraPub()?,
"terrapub1addwnpepqt8ha594svjn3nvfk4ggfn5n8xd3sm3cz6ztxyugwcuqzsuuhhfq5nwzrf9"
);
assert_eq!(
&pub_key.ValConsPub()?,
"terravalconspub1addwnpepqt8ha594svjn3nvfk4ggfn5n8xd3sm3cz6ztxyugwcuqzsuuhhfq5z3fguk"
);
let x = &pub_key.raw_address.unwrap();
assert_eq!(hex::encode(x), "94c4c52a9777e3c3628e5cfe819f6e26a7f5bd82");
let y = pub_key.raw_pub_key.unwrap();
assert_eq!(
hex::encode(y),
"eb5ae9872102cf7ed0b5832538cd89b55084ce93399b186e381684b31388763801439cbdd20a"
);
Ok(())
}
}