wagyu-model 0.6.3

A generic model for cryptocurrency wallets
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[cfg_attr(test, macro_use)]
pub mod bytes;
pub mod crypto;

pub fn to_hex_string(bytes: &[u8]) -> String {
    bytes
        .iter()
        .map(|b| format!("{:02X}", b))
        .collect::<Vec<String>>()
        .join("")
}