Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/pumpkinseed/ethock
- Owner: PumpkinSeed
- License: apache-2.0
- Created: 2021-01-31T09:54:19.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-02-11T13:24:18.000Z (almost 4 years ago)
- Last Synced: 2024-08-11T09:47:52.979Z (3 months ago)
- Topics: cryptocurrency, ethereum, json, mock, rpc
- Language: Rust
- Homepage:
- Size: 31.3 KB
- Stars: 8
- Watchers: 4
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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();
}
```