1 个不稳定版本
0.1.0 | 2019年3月9日 |
---|
#7 在 #bch
591 每月下载次数
在 2 个 crate 中使用 (通过 bch_addr)
14KB
241 行
cash_addr
受 cashaddrjs 启发的 cash_addr 格式实现。
用法
use cash_addr::{encode, decode, AddressType};
let data = [0xF5, 0xBF, 0x48, 0xB3, 0x97, 0xDA, 0xE7, 0x0B, 0xE8, 0x2B, 0x3C, 0xCA, 0x47, 0x93, 0xF8, 0xEB, 0x2B, 0x6C, 0xDA, 0xC9];
let prefix = "bitcoincash";
let addr_type = AddressType::P2PKH;
let address = encode(prefix, addr_type, &data).unwrap();
assert_eq!(address, "bitcoincash:qr6m7j9njldwwzlg9v7v53unlr4jkmx6eylep8ekg2");
let (prefix, addr_type, hash) = decode(&address).unwrap();
assert_eq!(prefix, "bitcoincash");
assert_eq!(addr_type, AddressType::P2PKH);
assert_eq!(hash, data);
依赖项
~245KB