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.
- Host: GitHub
- URL: https://github.com/gnosis/reth-util
- Owner: gnosis
- License: apache-2.0
- Created: 2020-12-23T14:06:06.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2020-12-23T20:53:58.000Z (almost 5 years ago)
- Last Synced: 2025-01-24T07:29:40.269Z (9 months ago)
- Language: Rust
- Size: 8.79 KB
- Stars: 1
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
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.