ethers-rs/src/lib.rs

17 lines
218 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.
mod network;
pub mod providers;
pub mod wallet;
pub mod primitives;
mod jsonrpc;
/// Re-export solc
pub use solc;