rust-web3

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

10
2
10
Rust
public
Forked

rust-web3

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

Build Status

Documentation

Usage

First, add this to your Cargo.toml:

[dependencies]
web3 = { git = "https://github.com/tomusdrw/rust-web3" }

Example

#[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.

Futures migration

  • Consider getting rid of Unpin
  • Consider using tokio instead of async-std for ws.rs

General

  • More flexible API (accept Into<X>
  • Contract calls (ABI encoding; debris/ethabi

Transports

Types

  • Types for
  • Transaction type (Transaction
  • Transaction receipt type (TransactionReceipt
  • Block type (RichBlock
  • Work type (Work
  • Syncing type (SyncStats

APIs

  • Eth:
  • Eth filters:
  • Eth pubsub:

Parity-specific APIs

  • Parity read-only:

  • Parity accounts: parity_*

  • Parity set:

let web3 = Web3::new(transport);
web3.api::<CustomNamespace>().custom_method().wait().unwrap()

Installation on Windows

Currently, Windows does not support IPC, which is enabled in the library by default.
To complile, you need to disable the IPC feature:

web3 = { version = "0.11.0", default-features = false, features = ["http"] }
v0.3.3[beta]