web3

Ethereum JSON-RPC multi-transport client. Rust implementation of Web3.js library.

Build Status Crates.io

Documentation: crates.io

Usage

First, add this to your Cargo.toml:

toml [dependencies] web3 = "0.14.0"

Example

```rust

[tokio::main]

async fn main() -> web3::Result<()> { let transport = web3::transports::Http::new("http://localhost:8545")?; let web3 = web3::Web3::new(transport);

println!("Calling accounts.");
let mut accounts = web3.eth().accounts().await?;
println!("Accounts: {:?}", accounts);
accounts.push("00a329c0648769a73afac7f9381e08fb43dbea72".parse().unwrap());

println!("Calling balance.");
for account in accounts {
    let balance = web3.eth().balance(account, None).await?;
    println!("Balance of {:?}: {}", account, balance);
}

Ok(())

} ```

If you want to deploy smart contracts you have written you can do something like this (make sure you have the solidity compiler installed):

solc -o build --bin --abi contracts/*.sol

The solidity compiler is generating the binary and abi code for the smart contracts in a directory called contracts and is being output to a directory called build.

For more see examples folder.

Opt-out Features

Futures migration

General

Transports

Types

APIs

Parity-specific APIs

Installation on Windows

Currently, Windows does not support IPC, which is enabled in the library by default. To compile, you need to disable the IPC feature: web3 = { version = "0.14.0", default-features = false, features = ["http"] }

Cargo Features

The library supports following features: - http - Enables http transport. - http-tls - Enables http over TLS (https) transport support. Implies http. - ipc-tokio - Enables ipc transport (tokio runtime). *NIX only! - ws-tokio - Enables ws tranport (tokio runtime). - ws-tls-tokio - Enables wss tranport (tokio runtime). - ws-async-std - Enables ws tranport (async-std runtime). - ws-tls-async-std - Enables wss tranport (async-std runtime).

By default http-tls and ws-tls-tokio are enabled.