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

https://github.com/gnosis/reth-util

Small utilities for Ethereum blockchain client.
https://github.com/gnosis/reth-util

Last synced: 7 months ago
JSON representation

Small utilities for Ethereum blockchain client.

Awesome Lists containing this project

README

          

# Rust Ethereum utility library

Purpose is to group parts of code that can be used for rust ethereum client.

Currently it contains:
* Queue:
* AsyncQueue: VecDeque that can be used to send Item from one thread to another. Max items and batches execution are supported.
* ExecutionQueue: It spins one thread and uses closure to executes Item for queue. It uses AsyncQueue as queue.