deso 0.1.0

DeSo (BitClout) Transaction Signing, and Other Helpful Utilities
Documentation
1
2
3
4
5
6
7
8
9
10
pub trait ToHexString {
    fn to_hex_string(&self) -> String;
  }
  
  impl ToHexString for SeedHex {
    fn to_hex_string(&self) -> String {
        hex::encode(self.seed_bytes.to_owned())
    }
  }