A Rust-based library to fetch and decode Uniswap V3 pool events, designed to be used as a Python module.
Project description
Uniswap Fetcher
Uniswap Fetcher is a Rust-based library that provides functionalities to fetch and decode Uniswap V3 pool events. It is designed to be used as a Python module using PyO3.
Features
- Fetch pool events by token pairs within a specified block range.
- Fetch pool events by token pairs within a specified time range.
- Fetch pool created events between two timestamps.
- Get block number range for a given timestamp range.
Prerequisites
- Rust and Cargo: Install from rustup.rs
- Python 3.10 or higher
- An Ethereum node RPC URL
Installation
-
Clone the repository:
git clone https://github.com/yourusername/uniswap-fetcher-rs.git cd uniswap-fetcher-rs
-
Build the Python module:
maturin developThis will build the Rust code and install the Python module locally.
Usage
Python
from uniswap_fetcher_rs import UniswapFetcher
# Initialize the fetcher with the RPC URL
fetcher = UniswapFetcher("http://localhost:8545")
# Define token pairs and block range
token_pairs = [("0xaea46a60368a7bd060eec7df8cba43b7ef41ad85", "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", 3000)]
from_block = 12345678
to_block = 12345778
# Fetch pool events by token pairs
events = fetcher.get_pool_events_by_token_pairs(token_pairs, from_block, to_block)
print(events)
# Define time range
start_timestamp = 1633046400 # Example start timestamp
end_timestamp = 1633132800 # Example end timestamp
# Fetch pool data by token pairs within the specified time range
pool_data = fetcher.fetch_pool_data(token_pairs, start_timestamp, end_timestamp)
print(pool_data)
# Fetch pool created events between two timestamps
pool_created_events = fetcher.get_pool_created_events_between_two_timestamps(start_timestamp, end_timestamp)
print(pool_created_events)
To use the library directly in Rust, you can call the asynchronous functions provided in the lib.rs file.
Testing
To run the tests, use the following command:
cargo test
License
This project is licensed under the MIT License. See the MIT License file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file uniswap_fetcher_rs-0.1.2-cp312-cp312-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: uniswap_fetcher_rs-0.1.2-cp312-cp312-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.12, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
44de17a2459e865582183ecbfb5e8b9d4522a58c62fadcae3aa86c3cb4914a43
|
|
| MD5 |
6d8d7c35f123bd4b32f97afa13c4c0ef
|
|
| BLAKE2b-256 |
3787cde085c232fa901690cd9c36ba2bb38ef024704e7f5f7c512e8015656424
|
File details
Details for the file uniswap_fetcher_rs-0.1.2-cp311-cp311-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: uniswap_fetcher_rs-0.1.2-cp311-cp311-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.11, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4dd4a904c6074637a6990b210a9c8fb2ac2edfc046b7bfd1b7539c9aa9a8d4fc
|
|
| MD5 |
50af9aa2f5661645bea437a673ebbdf9
|
|
| BLAKE2b-256 |
afaeb9d243c7a5aea7282700e93ae8a506324e84c0e3454d33079d475e0c4ab9
|
File details
Details for the file uniswap_fetcher_rs-0.1.2-cp310-cp310-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: uniswap_fetcher_rs-0.1.2-cp310-cp310-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.10, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f7a1c7b2283758f5376f0db584fbdb83635a179b7d367b8b05e35d111624575
|
|
| MD5 |
3f26b9161ec5e651fa42268cd12704eb
|
|
| BLAKE2b-256 |
a60626dfafac13a350b722f655e14029c35b8d50ba588660d6af5a2134687bcb
|