ethereum-sdk 0.1.0

library for ethereum
Documentation
1
2
3
4
5
6
7
8
9
10
11
### 初始化
```
let ethereum_client = EthereumClient::new(
        &etherum.endpoint,
        &etherum.chain_name,
        etherum.chain_id,
        etherum.start_height,
        etherum.contracts.clone(),
    )
    .await;
```