ethers-rs/src/lib.rs

19 lines
278 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;
pub mod wallet;
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
/// JSON-RPC client
2020-05-22 18:37:21 +00:00
mod jsonrpc;
2020-05-23 00:01:20 +00:00
mod utils;