Crates.io | webchain-rs |
lib.rs | webchain-rs |
version | 0.22.1 |
source | src |
created_at | 2019-03-12 18:04:14.643711 |
updated_at | 2019-04-07 20:52:56.979663 |
description | Webchain Network secure account management core libary |
homepage | https://webchain.network |
repository | https://github.com/webchain-network/webchain-rs |
max_upload_size | |
id | 120312 |
size | 292,428 |
Secure account management for Webchain Network
NOTE:
An offline wallet, also known as cold storage, provides the highest level of security for savings.
It involves storing a wallet in a secured place that is not connected to the network (air-gapped).
When done properly, it can offer a very good protection against computer vulnerabilities.
Distributed as a Rust crate or can be embedded via foreign function interface (FFI).
For minimalistic CLI tool refer to Webchain-cli, or if you looking for a fully-featured UI online wallet, take a look at our Webchain Network Wallet
Ensure you have these dependencies installed:
openssl pkgconfig rustc cargo clang
cargo
and rustc
should be at least versions 0.18 and 1.17 respectively.
If you use Nix you may execute the nix-shell
command in your cloned repository and all dependencies will be made available in your environment automatically.
extern crate emerald_core as emerald;
use std::net::SocketAddr;
fn main() {
let addr = "127.0.0.1:1920"
.parse::<SocketAddr>()
.expect("Expect to parse address");
emerald::start(&addr, None, None);
}
Chat with us via Gitter
Apache 2.0