Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pumpkinseed/ethock

Lightweight Ethereum JSON RPC Mock written in Rust
https://github.com/pumpkinseed/ethock

cryptocurrency ethereum json mock rpc

Last synced: 12 days ago
JSON representation

Lightweight Ethereum JSON RPC Mock written in Rust

Awesome Lists containing this project

README

        

# ethock - Ethereum Mock

Lightweight Ethereum JSON RPC Mock written in Rust

### Usage

```
ethock_lib = "x.x.x"
```

```rust
fn main() {
// Serve in blocking mode
ethock_lib::server::Entry::new("localhost:8545").serve();

// Serve in non-blocking mode
ethock_lib::server::Entry::new("localhost:8545").serve_silent();
}
```