ic_ethereum_types/
lib.rs

1//! Ethereum types used by canisters on the Internet Computer.
2
3#![forbid(unsafe_code)]
4#![warn(rust_2018_idioms)]
5#![forbid(missing_docs)]
6#![warn(future_incompatible)]
7
8mod address;
9pub mod serde_data;
10
11pub use address::Address;