-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbch_address.rs
59 lines (51 loc) · 2.73 KB
/
bch_address.rs
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
use crate::api::{AddressParam, BtcForkWallet};
use crate::error_handling::Result;
use crate::message_handler::encode_message;
use bitcoin::Network;
use coin_bch::address::BchAddress;
use coin_btc_fork::address::BtcForkAddress;
pub fn get_address(param: &AddressParam) -> Result<Vec<u8>> {
let network = match param.network.as_ref() {
"MAINNET" => Network::Bitcoin,
"TESTNET" => Network::Testnet,
_ => Network::Testnet,
};
let address = BchAddress::get_address(network, ¶m.path)?;
let account_path = common::utility::get_account_path(¶m.path)?;
let enc_xpub = BtcForkAddress::get_enc_xpub(network, &account_path)?;
let address_message = BtcForkWallet {
path: param.path.to_owned(),
chain_type: param.chain_type.to_string(),
address: address,
enc_x_pub: enc_xpub,
};
encode_message(address_message)
}
#[cfg(test)]
mod tests {
use crate::api::{
AddressParam, AddressResult, BitcoinWallet, ExternalAddress, ExternalAddressParam,
};
use crate::bch_address::get_address;
use device::device_binding::bind_test;
#[test]
fn test_btc_fork_address() {
bind_test();
let param = AddressParam {
chain_type: "BITCOINCASH".to_string(),
path: "m/44'/145'/0'/0/0".to_string(),
network: "MAINNET".to_string(),
seg_wit: "P2WPKH".to_string(),
};
let message = get_address(¶m);
assert_eq!("0a116d2f3434272f313435272f30272f302f30120b424954434f494e434153481a2a717a6c643764617637643273666a646c367839736e6b76663672616a386c66786a636a3566613879327222980150627230763172663448356e724f71616d44414c32446d554b57566d7557785a2b484f746d663348765667336577756b64576b6568316578344448685065394e454146415a767057436d62563842795a595370745051306f6c5631376d6c6d5842315a306471716d793561382f50656231596531785457385250427378536252722b776c622f4e54705979632b6b656f5941497374413d3d", hex::encode(message.unwrap()));
let param = AddressParam {
chain_type: "BITCOINCASH".to_string(),
path: "m/44'/145'/0'/0/0".to_string(),
network: "TESTNET".to_string(),
seg_wit: "P2WPKH".to_string(),
};
let message = get_address(¶m);
assert_eq!("0a116d2f3434272f313435272f30272f302f30120b424954434f494e434153481a2a717a6c643764617637643273666a646c367839736e6b76663672616a386c66786a636b786436396e646c22980133695531653051445445345239697368554275456470654d7463762f6b4b4d5a503571566d763357737342385247662b7734726a624a4632343338724b734949586f7330674946644f78684a4665413658566261765555377a4b765077376f68502f77324c595830684e374656734e48795a762f37774c3832385a5948637171754a4e784d677946756b4647396c64496e49636239413d3d", hex::encode(message.unwrap()));
}
}