gemblockchain 0.2.1

Library to work with Gem blockchain
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# gem-lib-rust

![crates.io](https://img.shields.io/crates/v/gemblockchain.svg)
![docs.rs](https://docs.rs/gemblockchain/badge.svg)

Library to work with Gem blockchain

# Usage
```rust
use gemblockchain::GemAddress;

let gem = GemAddress::generate(None);
println!("Address: {}", gem.address);
println!("Mnemonic phrase: {}", gem.mnemonic_phrase);
println!("Mini secret key: {}", gem.mini_secret_key_to_string());
println!("Public key: {}", gem.public_key_to_string());
```