gemblockchain 0.2.0

Library to work with Gem blockchain
Documentation
gemblockchain-0.2.0 has been yanked.

gem-lib-rust

crates.io docs.rs

Library to work with Gem blockchain

Usage

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());