rust-web3

Rust Ethereum JSON-RPC client (Web3).

Documentation

Examples

```rust extern crate futures; extern crate web3;

use futures::Future; use web3::api::Eth;

fn main() { let web3 = web3::Web3::new(web3::transports::Http::new("http://localhost:8545").unwrap()); let accounts = web3.eth().accounts().wait().unwrap();

println!("Accounts: {:?}", accounts); } ```

For more see examples folder.

TODO

General

Transports

Types

APIs

Parity-specific APIs