Crates.io | emerald-rs |
lib.rs | emerald-rs |
version | 0.25.6 |
source | src |
created_at | 2017-09-21 15:13:12.356391 |
updated_at | 2019-04-25 04:02:20.098579 |
description | Ethereum secure account management core libary |
homepage | https://etcdevteam.com |
repository | https://github.com/ETCDEVTeam/emerald-rs |
max_upload_size | |
id | 32536 |
size | 306,159 |
Secure account management for Ethereum Classic
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 Emerald Vault, or if you looking for a fully-featured UI wallet, take a look at our Ethereum Classic Emerald Wallet
Developed by ETCDEV Team
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.
Should your distribution or operating system not have a recent cargo
and rustc
binaries, you can install them from: http://doc.crates.io/
$ cargo install emerald-cli
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