Implementation of Ethereum public addresses for Rust.
This crate provides an Address type for representing Ethereum public
addresses.
Usage
Just add a dependency to your Cargo.toml:
[]
= "*"
For complete documentation checkout docs.rs.
Features
This crate provides a few features for fine-grained control of what gets included with the crate.
I want
#[no_std]!
[]
= { = "*", = false }
I want to use the Rust-Crypto
sha3crate for computing address checksums!
[]
= { = "*", = ["sha3"] }
I want
serdesupport!
[]
= { = "*", = ["serde"] }