ethers-rs/src/lib.rs

31 lines
644 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.
2020-05-24 15:55:46 +00:00
//!
//! # Quickstart
//!
//! ## Sending Ether
//!
//! ## Checking the state of the blockchain
//!
//! ## Deploying and interacting with a smart contract
//!
//! ## Watching on-chain events
//!
//! More examples can be found in the [`examples` directory of the
//! repositry](https://github.com/gakonst/ethers-rs)
2020-05-22 18:37:21 +00:00
pub mod providers;
2020-05-24 15:55:46 +00:00
pub use providers::HttpProvider;
2020-05-22 18:37:21 +00:00
2020-05-24 15:40:16 +00:00
pub mod signers;
2020-05-24 16:14:27 +00:00
pub use signers::{AnyWallet, MainnetWallet, Signer};
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;