reweb3 0.2.4

Client-side protocol(Web3) for ethereum and other EVM-based chains rewritten in rust
Documentation
//! This mod defines primitive types for ethereum client.

pub mod balance;

mod serde;

mod address;
mod bytes;
mod h256;
mod hex;
mod int;
mod sig;

pub use address::*;
pub use bytes::*;
pub use h256::*;
pub use hex::*;
pub use int::*;
pub use sig::*;