ethane 1.0.2

An alternative web3 implementation with the aim of being slim and simple
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use super::Rpc;
use crate::types::{Bytes, H256};

pub fn web3_client_version() -> Rpc<String> {
    Rpc::new("web3_clientVersion")
}

pub fn web3_sha3(input: Bytes) -> Rpc<H256> {
    let mut rpc = Rpc::new("web3_sha3");
    rpc.add_param(input);
    rpc
}