ethers-rs/src/lib.rs

16 lines
245 B
Rust
Raw Normal View History

2020-05-22 18:37:21 +00:00
//! ethers-rs
//!
//! ethers-rs is a port of [ethers-js](github.com/ethers-io/ethers.js) in Rust.
pub mod providers;
2020-05-24 15:40:16 +00:00
pub mod signers;
2020-05-22 18:37:21 +00:00
2020-05-23 00:01:20 +00:00
/// Ethereum related datatypes
pub mod types;
/// Re-export solc for convenience
pub use solc;
2020-05-22 18:37:21 +00:00
2020-05-23 00:01:20 +00:00
mod utils;