uethers
A very lightweight synchronous Ethereum client.
Supported RPC endpoints so far:
- eth_getBalance
- eth_getStorageAt
- eth_blockNumber
- eth_getTransactionCount
- eth_getCode
- eth_getBlockByNumber
- eth_getTransactionByHash
Why?
- For some small projects, I don't want to pull in lots of async crates used by
ethers-rs
.
- The main use case for me is to implement EVM backend which just uses some preliminary RPC endpoints.