ethers_primitives 0.2.2

Primitive types for ethereum, including Rlp/ABI encode/decode support
Documentation
//! Primitives for contract abi, eip715 and rlp

mod bytes;
pub use self::bytes::*;

mod address;
pub use address::*;

mod int;
pub use int::*;

mod hex;
pub use self::hex::*;

mod sig;
pub use sig::*;

pub type H256 = Bytes32;

mod fixed;
pub use fixed::*;

mod unit;
pub use unit::*;