Crates.io | gemblockchain |
lib.rs | gemblockchain |
version | 0.3.0 |
source | src |
created_at | 2020-11-10 15:48:13.958878 |
updated_at | 2023-12-05 11:20:15.819847 |
description | Library to work with Gem blockchain |
homepage | https://github.com/gemblockchain/gem-lib-rust |
repository | https://github.com/gemblockchain/gem-lib-rust |
max_upload_size | |
id | 310838 |
size | 132,388 |
Library to work with Gem blockchain
use std::time::{SystemTime, UNIX_EPOCH};
use gemblockchain::account::{PrivateKeyAccount, TESTNET};
use gemblockchain::base58::*;
use gemblockchain::seed::*;
use gemblockchain::transaction::*;
fn main() {
let phrase = generate_phrase();
let account = PrivateKeyAccount::from_seed(&phrase);
println!("My TESTNET address: {}", account.public_key().to_address(TESTNET).to_string());
let ts = SystemTime::now().duration_since(UNIX_EPOCH).unwrap().as_secs() * 1000;
let tx = Transaction::new_alias(&account.public_key(), "rhino", TESTNET, 100000, ts);
println!("ID is {}", tx.id().to_string());
let ptx = account.sign_transaction(tx);
println!("Proofs are {:?}", ptx.proofs.iter().map(|p| p.to_base58()).collect::<Vec<String>>());
}