faster-eth-utils


Namefaster-eth-utils JSON
Version 5.3.10 PyPI version JSON
download
home_pagehttps://github.com/BobTheBuidler/eth-utils
SummaryA fork of eth-utils: Common utility functions for python code that interacts with Ethereum, implemented in C
upload_time2025-10-10 01:51:18
maintainerNone
docs_urlNone
authorThe Ethereum Foundation
requires_python<4,>=3.8
licenseMIT
keywords ethereum
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ### I forked eth-utils and compiled it to C. It does the same stuff, now faster

[![PyPI](https://img.shields.io/pypi/v/faster-eth-utils.svg?logo=Python&logoColor=white)](https://pypi.org/project/faster-eth-utils)
[![Monthly Downloads](https://img.shields.io/pypi/dm/faster-eth-utils)](https://pypistats.org/packages/faster-eth-utils)
[![Codspeed.io Status](https://img.shields.io/endpoint?url=https://codspeed.io/badge.json)](https://codspeed.io/BobTheBuidler/faster-eth-utils)

##### This fork will be kept up-to-date with [eth-utils](https://github.com/ethereum/eth-utils). I will pull updates as they are released and push new [faster-eth-utils](https://github.com/BobTheBuidler/faster-eth-utils) releases to [PyPI](https://pypi.org/project/faster-eth-utils/).

##### You can find the compiled C code on faster-eth-utils [master](https://github.com/BobTheBuidler/eth-utils/tree/master) branch.

##### We benchmark `faster-eth-utils` against the original `eth-utils` for your convenience. [See results](https://github.com/BobTheBuidler/faster-eth-utils/tree/master/benchmarks/results).

##### The original eth-utils readme is below:

# Ethereum Utilities

[![Join the conversation on Discord](https://img.shields.io/discord/809793915578089484?color=blue&label=chat&logo=discord&logoColor=white)](https://discord.gg/GHryRvPB84)
[![Build Status](https://circleci.com/gh/ethereum/eth-utils.svg?style=shield)](https://circleci.com/gh/ethereum/eth-utils)
[![PyPI version](https://badge.fury.io/py/eth-utils.svg)](https://badge.fury.io/py/eth-utils)
[![Python versions](https://img.shields.io/pypi/pyversions/eth-utils.svg)](https://pypi.python.org/pypi/eth-utils)
[![Docs build](https://readthedocs.org/projects/eth-utils/badge/?version=latest)](https://eth-utils.readthedocs.io/en/latest/?badge=latest)

Common utility functions for python code that interacts with Ethereum

Read the [documentation](https://eth-utils.readthedocs.io/).

View the [change log](https://eth-utils.readthedocs.io/en/latest/release_notes.html).

## Installation

```sh
python -m pip install eth-utils
```

## Developer Setup

If you would like to hack on eth-utils, please check out the [Snake Charmers
Tactical Manual](https://github.com/ethereum/snake-charmers-tactical-manual)
for information on how we do:

- Testing
- Pull Requests
- Documentation

We use [pre-commit](https://pre-commit.com/) to maintain consistent code style. Once
installed, it will run automatically with every commit. You can also run it manually
with `make lint`. If you need to make a commit that skips the `pre-commit` checks, you
can do so with `git commit --no-verify`.

### Development Environment Setup

You can set up your dev environment with:

```sh
git clone git@github.com:ethereum/eth-utils.git
cd eth-utils
virtualenv -p python3 venv
. venv/bin/activate
python -m pip install -e ".[dev]"
pre-commit install
```

### Update Networks

The list of networks resides in the JSON file under eth_utils/\_\_json/eth_networks.json.
This file is used to initialize Networks, which can be used to obtain network
information with a chain ID.

Run the script to update the JSON file with the response from the remote list.

```sh
python update_networks.py
```

If there are new networks they will appear in the JSON file. After checking the updates,
open a PR to make them available in a new release.

### Release setup

To release a new version:

```sh
make release bump=$$VERSION_PART_TO_BUMP$$
```

#### How to bumpversion

The version format for this repo is `{major}.{minor}.{patch}` for stable, and
`{major}.{minor}.{patch}-{stage}.{devnum}` for unstable (`stage` can be alpha or beta).

To issue the next version in line, specify which part to bump,
like `make release bump=minor` or `make release bump=devnum`. This is typically done from the
main branch, except when releasing a beta (in which case the beta is released from main,
and the previous stable branch is released from said branch).

If you are in a beta version, `make release bump=stage` will switch to a stable.

To issue an unstable version when the current version is stable, specify the
new version explicitly, like `make release bump="--new-version 4.0.0-alpha.1 devnum"`

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/BobTheBuidler/eth-utils",
    "name": "faster-eth-utils",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4,>=3.8",
    "maintainer_email": null,
    "keywords": "ethereum",
    "author": "The Ethereum Foundation",
    "author_email": "snakecharmers@ethereum.org",
    "download_url": "https://files.pythonhosted.org/packages/5a/fb/ce15276adf5418ba58433dd2eb6e6fdeedb64a6d3e1a212d0988f4a1f243/faster-eth-utils-5.3.10.tar.gz",
    "platform": null,
    "description": "### I forked eth-utils and compiled it to C. It does the same stuff, now faster\n\n[![PyPI](https://img.shields.io/pypi/v/faster-eth-utils.svg?logo=Python&logoColor=white)](https://pypi.org/project/faster-eth-utils)\n[![Monthly Downloads](https://img.shields.io/pypi/dm/faster-eth-utils)](https://pypistats.org/packages/faster-eth-utils)\n[![Codspeed.io Status](https://img.shields.io/endpoint?url=https://codspeed.io/badge.json)](https://codspeed.io/BobTheBuidler/faster-eth-utils)\n\n##### This fork will be kept up-to-date with [eth-utils](https://github.com/ethereum/eth-utils). I will pull updates as they are released and push new [faster-eth-utils](https://github.com/BobTheBuidler/faster-eth-utils) releases to [PyPI](https://pypi.org/project/faster-eth-utils/).\n\n##### You can find the compiled C code on faster-eth-utils [master](https://github.com/BobTheBuidler/eth-utils/tree/master) branch.\n\n##### We benchmark `faster-eth-utils` against the original `eth-utils` for your convenience. [See results](https://github.com/BobTheBuidler/faster-eth-utils/tree/master/benchmarks/results).\n\n##### The original eth-utils readme is below:\n\n# Ethereum Utilities\n\n[![Join the conversation on Discord](https://img.shields.io/discord/809793915578089484?color=blue&label=chat&logo=discord&logoColor=white)](https://discord.gg/GHryRvPB84)\n[![Build Status](https://circleci.com/gh/ethereum/eth-utils.svg?style=shield)](https://circleci.com/gh/ethereum/eth-utils)\n[![PyPI version](https://badge.fury.io/py/eth-utils.svg)](https://badge.fury.io/py/eth-utils)\n[![Python versions](https://img.shields.io/pypi/pyversions/eth-utils.svg)](https://pypi.python.org/pypi/eth-utils)\n[![Docs build](https://readthedocs.org/projects/eth-utils/badge/?version=latest)](https://eth-utils.readthedocs.io/en/latest/?badge=latest)\n\nCommon utility functions for python code that interacts with Ethereum\n\nRead the [documentation](https://eth-utils.readthedocs.io/).\n\nView the [change log](https://eth-utils.readthedocs.io/en/latest/release_notes.html).\n\n## Installation\n\n```sh\npython -m pip install eth-utils\n```\n\n## Developer Setup\n\nIf you would like to hack on eth-utils, please check out the [Snake Charmers\nTactical Manual](https://github.com/ethereum/snake-charmers-tactical-manual)\nfor information on how we do:\n\n- Testing\n- Pull Requests\n- Documentation\n\nWe use [pre-commit](https://pre-commit.com/) to maintain consistent code style. Once\ninstalled, it will run automatically with every commit. You can also run it manually\nwith `make lint`. If you need to make a commit that skips the `pre-commit` checks, you\ncan do so with `git commit --no-verify`.\n\n### Development Environment Setup\n\nYou can set up your dev environment with:\n\n```sh\ngit clone git@github.com:ethereum/eth-utils.git\ncd eth-utils\nvirtualenv -p python3 venv\n. venv/bin/activate\npython -m pip install -e \".[dev]\"\npre-commit install\n```\n\n### Update Networks\n\nThe list of networks resides in the JSON file under eth_utils/\\_\\_json/eth_networks.json.\nThis file is used to initialize Networks, which can be used to obtain network\ninformation with a chain ID.\n\nRun the script to update the JSON file with the response from the remote list.\n\n```sh\npython update_networks.py\n```\n\nIf there are new networks they will appear in the JSON file. After checking the updates,\nopen a PR to make them available in a new release.\n\n### Release setup\n\nTo release a new version:\n\n```sh\nmake release bump=$$VERSION_PART_TO_BUMP$$\n```\n\n#### How to bumpversion\n\nThe version format for this repo is `{major}.{minor}.{patch}` for stable, and\n`{major}.{minor}.{patch}-{stage}.{devnum}` for unstable (`stage` can be alpha or beta).\n\nTo issue the next version in line, specify which part to bump,\nlike `make release bump=minor` or `make release bump=devnum`. This is typically done from the\nmain branch, except when releasing a beta (in which case the beta is released from main,\nand the previous stable branch is released from said branch).\n\nIf you are in a beta version, `make release bump=stage` will switch to a stable.\n\nTo issue an unstable version when the current version is stable, specify the\nnew version explicitly, like `make release bump=\"--new-version 4.0.0-alpha.1 devnum\"`\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A fork of eth-utils: Common utility functions for python code that interacts with Ethereum, implemented in C",
    "version": "5.3.10",
    "project_urls": {
        "Homepage": "https://github.com/BobTheBuidler/eth-utils"
    },
    "split_keywords": [
        "ethereum"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5103598a5dccbee017227fb92df6fd5153303372afecd39c2e8c728ba511da57",
                "md5": "875bfe605fad64eff26147b75b28929c",
                "sha256": "0518f43ba2ad19860f09c173c304d66ad79da1c4e4c3d0ad467bd8ef9211b334"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "875bfe605fad64eff26147b75b28929c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.8",
            "size": 440028,
            "upload_time": "2025-10-10T01:50:50",
            "upload_time_iso_8601": "2025-10-10T01:50:50.637664Z",
            "url": "https://files.pythonhosted.org/packages/51/03/598a5dccbee017227fb92df6fd5153303372afecd39c2e8c728ba511da57/faster_eth_utils-5.3.10-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c5124f170d654ee3fe7670a981ebad6b66c531d563cb1d01d204b35e993f8c76",
                "md5": "8214fcdfccf776727bbcdc2632a879c7",
                "sha256": "04acca6c4b665049a34125e3b636db61c8b3468ca5f9c3c54198d89991aa407c"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
            "has_sig": false,
            "md5_digest": "8214fcdfccf776727bbcdc2632a879c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.8",
            "size": 655068,
            "upload_time": "2025-10-10T01:50:22",
            "upload_time_iso_8601": "2025-10-10T01:50:22.087659Z",
            "url": "https://files.pythonhosted.org/packages/c5/12/4f170d654ee3fe7670a981ebad6b66c531d563cb1d01d204b35e993f8c76/faster_eth_utils-5.3.10-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "477e6962841e9b4814888246dae9ad44ddd8da7a68dc0ab807f9367bd19f9c5a",
                "md5": "63d520644c739bdac12cfc8e90714b9d",
                "sha256": "b792d3f47dddbb1705a7be0ac825863eb3f6a3bd408daf4d3b664319fbe846e1"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "63d520644c739bdac12cfc8e90714b9d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.8",
            "size": 650760,
            "upload_time": "2025-10-10T01:50:10",
            "upload_time_iso_8601": "2025-10-10T01:50:10.907086Z",
            "url": "https://files.pythonhosted.org/packages/47/7e/6962841e9b4814888246dae9ad44ddd8da7a68dc0ab807f9367bd19f9c5a/faster_eth_utils-5.3.10-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "24add649cb6b522dd7157009e8bad9520112a211dc8df1d493e8a9122810a02f",
                "md5": "ab270cc13b1b21380f6ad416e9ef60ba",
                "sha256": "b510f05430a7338fe367ce70e07034c01df13cc25a108aa994e7c6966823e1ec"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "ab270cc13b1b21380f6ad416e9ef60ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.8",
            "size": 669839,
            "upload_time": "2025-10-10T01:50:41",
            "upload_time_iso_8601": "2025-10-10T01:50:41.654708Z",
            "url": "https://files.pythonhosted.org/packages/24/ad/d649cb6b522dd7157009e8bad9520112a211dc8df1d493e8a9122810a02f/faster_eth_utils-5.3.10-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bf6e13c06100d1bd469890b410f70163c9aa9f9b3652e5779950441663add4a4",
                "md5": "d6fc38d59614e4331ba5ac6202c2ec13",
                "sha256": "e2b6cfde6828bad8bcc14da1d023154232a560fee790801e54ab0bcdc58dc7fc"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d6fc38d59614e4331ba5ac6202c2ec13",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.8",
            "size": 660817,
            "upload_time": "2025-10-10T01:50:32",
            "upload_time_iso_8601": "2025-10-10T01:50:32.309168Z",
            "url": "https://files.pythonhosted.org/packages/bf/6e/13c06100d1bd469890b410f70163c9aa9f9b3652e5779950441663add4a4/faster_eth_utils-5.3.10-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4d4e14731211e7e88460418d81523d0f81a5ba74c7dffa21422429a67d2dca14",
                "md5": "6c25b138cb85d53835d6e46eb6463626",
                "sha256": "d6b25a50eab58f75e534ca1e66cb24a5c999cf75f56d3e8c7da3f6a36f647c6c"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "6c25b138cb85d53835d6e46eb6463626",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.8",
            "size": 327541,
            "upload_time": "2025-10-10T01:51:09",
            "upload_time_iso_8601": "2025-10-10T01:51:09.532707Z",
            "url": "https://files.pythonhosted.org/packages/4d/4e/14731211e7e88460418d81523d0f81a5ba74c7dffa21422429a67d2dca14/faster_eth_utils-5.3.10-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "42d8db168c671abaf41977ed932046f7c560c46262af4989ac28151c1271aef8",
                "md5": "dbf81c938782c9b28d445886675cc1bc",
                "sha256": "656c5c2edaf884a7c4ffb5fceee8fee910ffae1de6ac0ae8d7360a2ab7a0a89a"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "dbf81c938782c9b28d445886675cc1bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.8",
            "size": 362213,
            "upload_time": "2025-10-10T01:50:59",
            "upload_time_iso_8601": "2025-10-10T01:50:59.873044Z",
            "url": "https://files.pythonhosted.org/packages/42/d8/db168c671abaf41977ed932046f7c560c46262af4989ac28151c1271aef8/faster_eth_utils-5.3.10-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b51cecb33e74d4ba853158213d1c1742e848ece324d8aa613ce78c68fabc62af",
                "md5": "f428b717b5930355a74ea57b000a1f80",
                "sha256": "ca0c3b660e7a4dcda5d72099e20b209149742165eb4f3bed7c08255353f621ec"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f428b717b5930355a74ea57b000a1f80",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.8",
            "size": 434688,
            "upload_time": "2025-10-10T01:50:51",
            "upload_time_iso_8601": "2025-10-10T01:50:51.890539Z",
            "url": "https://files.pythonhosted.org/packages/b5/1c/ecb33e74d4ba853158213d1c1742e848ece324d8aa613ce78c68fabc62af/faster_eth_utils-5.3.10-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c010cae098454e54a197a86cbd8efb9cc39dd63ab82b0eeb58d8970f65742c31",
                "md5": "9351ff19eaab40ef783830641793dc95",
                "sha256": "f15aebacb5f1879478a873c49285c1880ec1936b74bad11d3abec050d7a486c5"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
            "has_sig": false,
            "md5_digest": "9351ff19eaab40ef783830641793dc95",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.8",
            "size": 641657,
            "upload_time": "2025-10-10T01:50:23",
            "upload_time_iso_8601": "2025-10-10T01:50:23.601113Z",
            "url": "https://files.pythonhosted.org/packages/c0/10/cae098454e54a197a86cbd8efb9cc39dd63ab82b0eeb58d8970f65742c31/faster_eth_utils-5.3.10-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "49191ea2fc26e7035a897589989538d719e7584cd9e822e3ca122f67800f163b",
                "md5": "29632d6d7411a6b8c6efb4cb246912c0",
                "sha256": "8b6ec71e25c57297d0f39963302bad86961fe988c7be435c94650225de4d079e"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "29632d6d7411a6b8c6efb4cb246912c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.8",
            "size": 637921,
            "upload_time": "2025-10-10T01:50:12",
            "upload_time_iso_8601": "2025-10-10T01:50:12.740589Z",
            "url": "https://files.pythonhosted.org/packages/49/19/1ea2fc26e7035a897589989538d719e7584cd9e822e3ca122f67800f163b/faster_eth_utils-5.3.10-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c6eaf5beffcdc29e35de4a50a4277626009da91b68ea38a059a3b00541fa02c7",
                "md5": "8571f92304ba859d78c2ee851898af62",
                "sha256": "9db50adc9e9234435482b5b3afeff30b6c9bc39752f734dc66d3d85534e294c6"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "8571f92304ba859d78c2ee851898af62",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.8",
            "size": 656699,
            "upload_time": "2025-10-10T01:50:42",
            "upload_time_iso_8601": "2025-10-10T01:50:42.768301Z",
            "url": "https://files.pythonhosted.org/packages/c6/ea/f5beffcdc29e35de4a50a4277626009da91b68ea38a059a3b00541fa02c7/faster_eth_utils-5.3.10-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aed8d85e91a84e40cebe711e139336253595592783c2832f956d3135ac1add54",
                "md5": "d1890652a29d31c758c8f25cc42599dd",
                "sha256": "c07fca88e5ea507f95a9f83adbac7a481b6b574c74187628ff43350f9a85870d"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d1890652a29d31c758c8f25cc42599dd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.8",
            "size": 649065,
            "upload_time": "2025-10-10T01:50:33",
            "upload_time_iso_8601": "2025-10-10T01:50:33.372832Z",
            "url": "https://files.pythonhosted.org/packages/ae/d8/d85e91a84e40cebe711e139336253595592783c2832f956d3135ac1add54/faster_eth_utils-5.3.10-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3d373791deabedbde9b5c8d0f075afe2c6760235e4616a34f1af02199a2bc1e6",
                "md5": "a7affb150d84e6c8cb4b67c3ba23be3a",
                "sha256": "04045ee42bcbace2989ae8492591f61fad505a797a1ce488a06d167a846f7066"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "a7affb150d84e6c8cb4b67c3ba23be3a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.8",
            "size": 327179,
            "upload_time": "2025-10-10T01:51:10",
            "upload_time_iso_8601": "2025-10-10T01:51:10.509629Z",
            "url": "https://files.pythonhosted.org/packages/3d/37/3791deabedbde9b5c8d0f075afe2c6760235e4616a34f1af02199a2bc1e6/faster_eth_utils-5.3.10-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c83bd10d6cbed717ce2312c70c81f2e81d65dc8dfa338ca5b6eb041457a2ba7d",
                "md5": "c99d376ef6ae236f1aa9929293af7750",
                "sha256": "1fa91d04f102fb89002412162dbfa88180cbfdf415355b4798538b13b3636a58"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c99d376ef6ae236f1aa9929293af7750",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.8",
            "size": 361626,
            "upload_time": "2025-10-10T01:51:01",
            "upload_time_iso_8601": "2025-10-10T01:51:01.431797Z",
            "url": "https://files.pythonhosted.org/packages/c8/3b/d10d6cbed717ce2312c70c81f2e81d65dc8dfa338ca5b6eb041457a2ba7d/faster_eth_utils-5.3.10-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0a61808f5137c368a71e6c26d4a5e35475fc831605957e04752cb3c5c27d2644",
                "md5": "2ed289c07c921b6a15878300396b20f5",
                "sha256": "6acb9ed06381ce95297871f9e821014c4f0d36617217e33b833c7b5531f201fd"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2ed289c07c921b6a15878300396b20f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.8",
            "size": 435256,
            "upload_time": "2025-10-10T01:50:53",
            "upload_time_iso_8601": "2025-10-10T01:50:53.449052Z",
            "url": "https://files.pythonhosted.org/packages/0a/61/808f5137c368a71e6c26d4a5e35475fc831605957e04752cb3c5c27d2644/faster_eth_utils-5.3.10-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bf2a25410239645a046cfcf163ac676ffbaed2c8695c12303c5e2e4195de4a21",
                "md5": "73ffa9b268051e33ccdcf072e91e54b4",
                "sha256": "65d2303204ab84e41c1ef5011b9ecac61580a5105b2ee8ed53577b49c2b8129d"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
            "has_sig": false,
            "md5_digest": "73ffa9b268051e33ccdcf072e91e54b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.8",
            "size": 684579,
            "upload_time": "2025-10-10T01:50:24",
            "upload_time_iso_8601": "2025-10-10T01:50:24.998257Z",
            "url": "https://files.pythonhosted.org/packages/bf/2a/25410239645a046cfcf163ac676ffbaed2c8695c12303c5e2e4195de4a21/faster_eth_utils-5.3.10-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6d54546221ae29bb1446f9d711abe7a6b73127f78518c18100aaa4d851622f76",
                "md5": "7c19bc82f34922e55361efa6975a0ea5",
                "sha256": "93233747432143e1dca5cb7f918f4019e35dfa384ddda8bc3a0d085738e3f1cf"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7c19bc82f34922e55361efa6975a0ea5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.8",
            "size": 664233,
            "upload_time": "2025-10-10T01:50:14",
            "upload_time_iso_8601": "2025-10-10T01:50:14.251847Z",
            "url": "https://files.pythonhosted.org/packages/6d/54/546221ae29bb1446f9d711abe7a6b73127f78518c18100aaa4d851622f76/faster_eth_utils-5.3.10-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7f9e5e4351d91dce37e7c97ce9c719c6dbaf5d172bc02321f50519ab773f8c84",
                "md5": "60ac087db94bd713911074315d4c9d08",
                "sha256": "4b235e3ab02b1c45d375dd5c0cb8afd1be626437cb2786a9495c903759debb47"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "60ac087db94bd713911074315d4c9d08",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.8",
            "size": 681306,
            "upload_time": "2025-10-10T01:50:44",
            "upload_time_iso_8601": "2025-10-10T01:50:44.119077Z",
            "url": "https://files.pythonhosted.org/packages/7f/9e/5e4351d91dce37e7c97ce9c719c6dbaf5d172bc02321f50519ab773f8c84/faster_eth_utils-5.3.10-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "01817192620ba3eb0edf00396dcd1ff1605fe914ba357fd67237cd43c4e8d44e",
                "md5": "d4877676274653aebb8d7d2221524310",
                "sha256": "306a0ceef55d53ea36316f9c42e39896492e3abbc3462fa1913fcffec4bb7fd7"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d4877676274653aebb8d7d2221524310",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.8",
            "size": 662117,
            "upload_time": "2025-10-10T01:50:34",
            "upload_time_iso_8601": "2025-10-10T01:50:34.464712Z",
            "url": "https://files.pythonhosted.org/packages/01/81/7192620ba3eb0edf00396dcd1ff1605fe914ba357fd67237cd43c4e8d44e/faster_eth_utils-5.3.10-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b962252254a5650b857b28fe3da1011a4819a0f0b1d8ce493025e317ef3b145d",
                "md5": "4eff369f045b3651d78a54509bed19cb",
                "sha256": "939fbbc0bc86c5743200d6a38e5763060fb7cae06ed27f74e484d37c58e3c8a4"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "4eff369f045b3651d78a54509bed19cb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.8",
            "size": 327304,
            "upload_time": "2025-10-10T01:51:11",
            "upload_time_iso_8601": "2025-10-10T01:51:11.613220Z",
            "url": "https://files.pythonhosted.org/packages/b9/62/252254a5650b857b28fe3da1011a4819a0f0b1d8ce493025e317ef3b145d/faster_eth_utils-5.3.10-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0a2255482f9bbbae2a3d89f0f6748d1646719e8eea4c6f0e97a8232041e88528",
                "md5": "6bdb6c01ad47402faee0783350146aaf",
                "sha256": "b64e74bd2f0ae4e98466aaad5b15bb0916b5864e7a3458eb62462bdcb5bde3c6"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6bdb6c01ad47402faee0783350146aaf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.8",
            "size": 362539,
            "upload_time": "2025-10-10T01:51:02",
            "upload_time_iso_8601": "2025-10-10T01:51:02.588697Z",
            "url": "https://files.pythonhosted.org/packages/0a/22/55482f9bbbae2a3d89f0f6748d1646719e8eea4c6f0e97a8232041e88528/faster_eth_utils-5.3.10-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f09e0594a862707eeb5c180ee7e126da0b68347807b893a24061b6f8bcf9bc12",
                "md5": "c9638867f766242b715c1a44c8ece4a4",
                "sha256": "209200dc57d17162c8b3d42843f44887478d9176a0385d815214c1bd954447c0"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c9638867f766242b715c1a44c8ece4a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.8",
            "size": 434763,
            "upload_time": "2025-10-10T01:50:54",
            "upload_time_iso_8601": "2025-10-10T01:50:54.503217Z",
            "url": "https://files.pythonhosted.org/packages/f0/9e/0594a862707eeb5c180ee7e126da0b68347807b893a24061b6f8bcf9bc12/faster_eth_utils-5.3.10-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "183732535314ef1a6dff7357ea9e02ffaddc40fb167f347341124e8dba778b5b",
                "md5": "c2568d9cd80d554e14e8e17da12b48a6",
                "sha256": "efcd8df04a3fdd496a5c555730620e7b9a38e72b940481d389abc93ddb9b648c"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
            "has_sig": false,
            "md5_digest": "c2568d9cd80d554e14e8e17da12b48a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.8",
            "size": 682786,
            "upload_time": "2025-10-10T01:50:26",
            "upload_time_iso_8601": "2025-10-10T01:50:26.032339Z",
            "url": "https://files.pythonhosted.org/packages/18/37/32535314ef1a6dff7357ea9e02ffaddc40fb167f347341124e8dba778b5b/faster_eth_utils-5.3.10-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f559e97200fb0c464d171d3214153165bae5b7f1a0ee47c950ec1f6cb74c0088",
                "md5": "d4d76cc023a383b2d3c015e4e7be10df",
                "sha256": "eed484869f3b1e95d0ca2642d8f939b41b1e5e55c21be2436051c6a51f24c665"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d4d76cc023a383b2d3c015e4e7be10df",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.8",
            "size": 660859,
            "upload_time": "2025-10-10T01:50:15",
            "upload_time_iso_8601": "2025-10-10T01:50:15.402642Z",
            "url": "https://files.pythonhosted.org/packages/f5/59/e97200fb0c464d171d3214153165bae5b7f1a0ee47c950ec1f6cb74c0088/faster_eth_utils-5.3.10-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "675bcc0beff9ef5314a9673f737088b067e33ac71ddcb0ca37554852af09d1df",
                "md5": "1f48bc2e1c71720bdec2aa0f5023aff8",
                "sha256": "9eb92fbe65a2012c0b0dc30ac887888a1fa19631b6ab8db9690210302e2650cd"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "1f48bc2e1c71720bdec2aa0f5023aff8",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.8",
            "size": 678902,
            "upload_time": "2025-10-10T01:50:45",
            "upload_time_iso_8601": "2025-10-10T01:50:45.272902Z",
            "url": "https://files.pythonhosted.org/packages/67/5b/cc0beff9ef5314a9673f737088b067e33ac71ddcb0ca37554852af09d1df/faster_eth_utils-5.3.10-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "44d63ab3b8fa348ceb1066529fbc5cee4ae002c86d692f90481485d5c671e80a",
                "md5": "26f1889b2db4a807d8b020c9c46a5923",
                "sha256": "5680d2aacba1ec9ab0c0f9bbacb29f9c2dbe7972d268178b121895ca8ca1db1c"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "26f1889b2db4a807d8b020c9c46a5923",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.8",
            "size": 657538,
            "upload_time": "2025-10-10T01:50:35",
            "upload_time_iso_8601": "2025-10-10T01:50:35.514588Z",
            "url": "https://files.pythonhosted.org/packages/44/d6/3ab3b8fa348ceb1066529fbc5cee4ae002c86d692f90481485d5c671e80a/faster_eth_utils-5.3.10-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9168098de1f00f4ce71ecaf0dd4deba09d10c94b7fb1a253e71aae49f8fe3b45",
                "md5": "1627037c0df04493f12a4fd1b67cdb59",
                "sha256": "43d3a628e665713760856f1df6fa87d99cdb2720d0bf447399adec01e315f1a7"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "1627037c0df04493f12a4fd1b67cdb59",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.8",
            "size": 327207,
            "upload_time": "2025-10-10T01:51:12",
            "upload_time_iso_8601": "2025-10-10T01:51:12.768692Z",
            "url": "https://files.pythonhosted.org/packages/91/68/098de1f00f4ce71ecaf0dd4deba09d10c94b7fb1a253e71aae49f8fe3b45/faster_eth_utils-5.3.10-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0e06775f6a06f53eb8a13ff9a4f19609f51434728f60ebbd9fc58d5272a68aaa",
                "md5": "db19fed87fa8259b68c6b1e75d44cbb4",
                "sha256": "3a1e2d66bca0d306415c2fe01538d1dc9f48d0aea8138d2511266cd3df15865e"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "db19fed87fa8259b68c6b1e75d44cbb4",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.8",
            "size": 362725,
            "upload_time": "2025-10-10T01:51:03",
            "upload_time_iso_8601": "2025-10-10T01:51:03.980873Z",
            "url": "https://files.pythonhosted.org/packages/0e/06/775f6a06f53eb8a13ff9a4f19609f51434728f60ebbd9fc58d5272a68aaa/faster_eth_utils-5.3.10-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a7c58392ca20ae4e973d8e272e7aa95eee07a5949b8a083e4813d3cc4e980715",
                "md5": "db2d84e69222b0f254d95ae45ae30adc",
                "sha256": "46067837b1c74cc3e8cddbd224a2a85677d94243d37adb0e9c87194367c220e0"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp314-cp314-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "db2d84e69222b0f254d95ae45ae30adc",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": "<4,>=3.8",
            "size": 435634,
            "upload_time": "2025-10-10T01:50:55",
            "upload_time_iso_8601": "2025-10-10T01:50:55.550757Z",
            "url": "https://files.pythonhosted.org/packages/a7/c5/8392ca20ae4e973d8e272e7aa95eee07a5949b8a083e4813d3cc4e980715/faster_eth_utils-5.3.10-cp314-cp314-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4b37ed601be19182ff4792417a337e0e38a968761cfebcaed28a3ca17b2fbcb5",
                "md5": "2fb25c7367a954e0b7757cb7756c078d",
                "sha256": "2861156eb5bc79ad72ee4d709b743fd6c4b043771286900b346a53441ddc96a0"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
            "has_sig": false,
            "md5_digest": "2fb25c7367a954e0b7757cb7756c078d",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": "<4,>=3.8",
            "size": 682684,
            "upload_time": "2025-10-10T01:50:27",
            "upload_time_iso_8601": "2025-10-10T01:50:27.129456Z",
            "url": "https://files.pythonhosted.org/packages/4b/37/ed601be19182ff4792417a337e0e38a968761cfebcaed28a3ca17b2fbcb5/faster_eth_utils-5.3.10-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "12db80d1b6d058a74b02faa62a9941a2b75cdf59bdcdebf5b061a3ad2fc06b0d",
                "md5": "2c1f9f1019e08a2705b8b64da9db724b",
                "sha256": "d90f279ae3b0b8da95a48463ae79d844406be083b318660beb9f2ff8d0810544"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2c1f9f1019e08a2705b8b64da9db724b",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": "<4,>=3.8",
            "size": 662867,
            "upload_time": "2025-10-10T01:50:16",
            "upload_time_iso_8601": "2025-10-10T01:50:16.803051Z",
            "url": "https://files.pythonhosted.org/packages/12/db/80d1b6d058a74b02faa62a9941a2b75cdf59bdcdebf5b061a3ad2fc06b0d/faster_eth_utils-5.3.10-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ac0bfec1ab57e6a73f393f3a05bb45820c26722a2c50c96e7b6ba309092db2ee",
                "md5": "659aa3075efb93fcc8855fef149082fb",
                "sha256": "6275e08c50397fbb4a026f3fa59e0b3fd1f6d6877c2c7f7d7a23bbe193bffe63"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp314-cp314-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "659aa3075efb93fcc8855fef149082fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": "<4,>=3.8",
            "size": 696812,
            "upload_time": "2025-10-10T01:50:46",
            "upload_time_iso_8601": "2025-10-10T01:50:46.335332Z",
            "url": "https://files.pythonhosted.org/packages/ac/0b/fec1ab57e6a73f393f3a05bb45820c26722a2c50c96e7b6ba309092db2ee/faster_eth_utils-5.3.10-cp314-cp314-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "592c57217a1e21bf36a2197dd53f3af22f55cf8db950b2b26d4632ad80e6e3bd",
                "md5": "d51df25df2f1baf7bb0a4c225cdd30bc",
                "sha256": "1c4f5e878bc594616ae1efa15d46cbc804a917831d6503379ef9fe48f1144564"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp314-cp314-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d51df25df2f1baf7bb0a4c225cdd30bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": "<4,>=3.8",
            "size": 672276,
            "upload_time": "2025-10-10T01:50:36",
            "upload_time_iso_8601": "2025-10-10T01:50:36.591958Z",
            "url": "https://files.pythonhosted.org/packages/59/2c/57217a1e21bf36a2197dd53f3af22f55cf8db950b2b26d4632ad80e6e3bd/faster_eth_utils-5.3.10-cp314-cp314-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "612ac9e1f5063bc864088fedd49d81b334b3bb1a819c21ddd455a4b4643ad0a0",
                "md5": "bdb6d4520c0c9e08d0e428efa4c238df",
                "sha256": "fe6ce9f02af52b93e294871244d69476072ae3aa2a78d02eb55f510700564a7f"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp314-cp314t-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "bdb6d4520c0c9e08d0e428efa4c238df",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": "<4,>=3.8",
            "size": 460956,
            "upload_time": "2025-10-10T01:50:56",
            "upload_time_iso_8601": "2025-10-10T01:50:56.730990Z",
            "url": "https://files.pythonhosted.org/packages/61/2a/c9e1f5063bc864088fedd49d81b334b3bb1a819c21ddd455a4b4643ad0a0/faster_eth_utils-5.3.10-cp314-cp314t-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9a3ae140490ef44db740e37fc5cb974e95addc83576e74cf0554406e2856a17c",
                "md5": "6a1fd4681437d59be34762a9bf2b8f9c",
                "sha256": "ae578657b4ab7210c07bc74a0a23b485cc952ff6137e811d5b09e7bb20088d8c"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
            "has_sig": false,
            "md5_digest": "6a1fd4681437d59be34762a9bf2b8f9c",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": "<4,>=3.8",
            "size": 706403,
            "upload_time": "2025-10-10T01:50:29",
            "upload_time_iso_8601": "2025-10-10T01:50:29.208530Z",
            "url": "https://files.pythonhosted.org/packages/9a/3a/e140490ef44db740e37fc5cb974e95addc83576e74cf0554406e2856a17c/faster_eth_utils-5.3.10-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3e455944adaa1d12302153e7069b1d23ec6402083d2049f8414c1efe44449908",
                "md5": "210df217a8d16c8795e2dd9550429518",
                "sha256": "bbc58386f7fa85244ce6a3415a87b4fcc8307ff80d3baf850e4adb7afcd2dcc6"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "210df217a8d16c8795e2dd9550429518",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": "<4,>=3.8",
            "size": 708475,
            "upload_time": "2025-10-10T01:50:17",
            "upload_time_iso_8601": "2025-10-10T01:50:17.762091Z",
            "url": "https://files.pythonhosted.org/packages/3e/45/5944adaa1d12302153e7069b1d23ec6402083d2049f8414c1efe44449908/faster_eth_utils-5.3.10-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7299eca084e4357db9c238eb49a4f815335d8a48f64b759b75f5809133ca9506",
                "md5": "e07b3f10cc6dd94f6a14f34de11e7189",
                "sha256": "4107acc3e110400c10fd4de7a2161e4ba95bbdbff8d1243d1e90387174012839"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp314-cp314t-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "e07b3f10cc6dd94f6a14f34de11e7189",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": "<4,>=3.8",
            "size": 719665,
            "upload_time": "2025-10-10T01:50:47",
            "upload_time_iso_8601": "2025-10-10T01:50:47.388592Z",
            "url": "https://files.pythonhosted.org/packages/72/99/eca084e4357db9c238eb49a4f815335d8a48f64b759b75f5809133ca9506/faster_eth_utils-5.3.10-cp314-cp314t-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3faa6a72b2cd0eddc99ecab29a5b54e99c7b41d76f778a66c8329e8635ab5dc7",
                "md5": "2a16c85abb53fcda8b668eb5748ec3cc",
                "sha256": "a034c79b4e87aacf69d4555cef111a1b378fef29f4c35299fa6c7d3539dc9929"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp314-cp314t-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2a16c85abb53fcda8b668eb5748ec3cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": "<4,>=3.8",
            "size": 717078,
            "upload_time": "2025-10-10T01:50:38",
            "upload_time_iso_8601": "2025-10-10T01:50:38.103650Z",
            "url": "https://files.pythonhosted.org/packages/3f/aa/6a72b2cd0eddc99ecab29a5b54e99c7b41d76f778a66c8329e8635ab5dc7/faster_eth_utils-5.3.10-cp314-cp314t-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a5cef4cc385b4281658105692c8406e71413e650a019a7fe2a52ae66b4aae16c",
                "md5": "43b5755af367b870853b4cf2dc500a46",
                "sha256": "70e27fc226c8536e5990f1404e13f34b8f393d549adefe73dfdde45b4480daf4"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp314-cp314t-win32.whl",
            "has_sig": false,
            "md5_digest": "43b5755af367b870853b4cf2dc500a46",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": "<4,>=3.8",
            "size": 359918,
            "upload_time": "2025-10-10T01:51:15",
            "upload_time_iso_8601": "2025-10-10T01:51:15.291274Z",
            "url": "https://files.pythonhosted.org/packages/a5/ce/f4cc385b4281658105692c8406e71413e650a019a7fe2a52ae66b4aae16c/faster_eth_utils-5.3.10-cp314-cp314t-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f5aa08c54682e3c5a69590aa13ede7045572e20e71564f356416b3fc73c187bc",
                "md5": "20b3c70ab8b59557e1e6022a99a2148e",
                "sha256": "06f6444edcb11cc78cb2d9de54b2c7bd7683a831570ea8db73a38831a8848622"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp314-cp314t-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "20b3c70ab8b59557e1e6022a99a2148e",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": "<4,>=3.8",
            "size": 402937,
            "upload_time": "2025-10-10T01:51:06",
            "upload_time_iso_8601": "2025-10-10T01:51:06.105780Z",
            "url": "https://files.pythonhosted.org/packages/f5/aa/08c54682e3c5a69590aa13ede7045572e20e71564f356416b3fc73c187bc/faster_eth_utils-5.3.10-cp314-cp314t-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "20e287b17ccb46da947ddc912115bc4f96d8d8929cb7b14a3fbbc33e81e92799",
                "md5": "b0ed76fbe7459c2a2d9849d73855c20c",
                "sha256": "155c778388b993806ee26ec640a3de0cdba2c010e896a648d8ead8be727fa354"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp314-cp314-win32.whl",
            "has_sig": false,
            "md5_digest": "b0ed76fbe7459c2a2d9849d73855c20c",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": "<4,>=3.8",
            "size": 330132,
            "upload_time": "2025-10-10T01:51:13",
            "upload_time_iso_8601": "2025-10-10T01:51:13.914768Z",
            "url": "https://files.pythonhosted.org/packages/20/e2/87b17ccb46da947ddc912115bc4f96d8d8929cb7b14a3fbbc33e81e92799/faster_eth_utils-5.3.10-cp314-cp314-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "37989669693bd7f631989aff5395df809f7361f0429d0f4a260ce3a3ed817e39",
                "md5": "be63b878daa62176f453e642b6a2714f",
                "sha256": "ed5e1c5b4a592793cc8655aa283aaae33b4ad37fa27e76fdb89b74ed014e2dcf"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp314-cp314-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "be63b878daa62176f453e642b6a2714f",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": "<4,>=3.8",
            "size": 364672,
            "upload_time": "2025-10-10T01:51:05",
            "upload_time_iso_8601": "2025-10-10T01:51:05.072970Z",
            "url": "https://files.pythonhosted.org/packages/37/98/9669693bd7f631989aff5395df809f7361f0429d0f4a260ce3a3ed817e39/faster_eth_utils-5.3.10-cp314-cp314-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "163821d75dc86b2981b43f69afd9223b7e887d4cb53a7eabacfd414655859110",
                "md5": "d0bbaecf22aa04e42d2ac56fd54de157",
                "sha256": "b9da233ea299c392c867cdb38d2146604e37a822fa7137383df2b27678a5b7fa"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d0bbaecf22aa04e42d2ac56fd54de157",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.8",
            "size": 435198,
            "upload_time": "2025-10-10T01:50:57",
            "upload_time_iso_8601": "2025-10-10T01:50:57.890802Z",
            "url": "https://files.pythonhosted.org/packages/16/38/21d75dc86b2981b43f69afd9223b7e887d4cb53a7eabacfd414655859110/faster_eth_utils-5.3.10-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8e3d58f7c335817f49ffa3233094a8485b5d48ae3dcefe7547a3dd387d309fee",
                "md5": "3fc5fb2ebed83d0d149eb9782a4740ce",
                "sha256": "d231359b7d412008732fd92635dad490ac78aed30d90eecd801857c6f25e018b"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
            "has_sig": false,
            "md5_digest": "3fc5fb2ebed83d0d149eb9782a4740ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.8",
            "size": 642144,
            "upload_time": "2025-10-10T01:50:30",
            "upload_time_iso_8601": "2025-10-10T01:50:30.261340Z",
            "url": "https://files.pythonhosted.org/packages/8e/3d/58f7c335817f49ffa3233094a8485b5d48ae3dcefe7547a3dd387d309fee/faster_eth_utils-5.3.10-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "78873d32e861e8161e0362c05a89aab77171571139b1a4a88995ccdbd08b9dcb",
                "md5": "9c7fbf15e0ae8729c1e00368a25cd626",
                "sha256": "ca8675813563c20c6661072ee9c4857fddacccf120e176de170c459e78b79171"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9c7fbf15e0ae8729c1e00368a25cd626",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.8",
            "size": 640208,
            "upload_time": "2025-10-10T01:50:19",
            "upload_time_iso_8601": "2025-10-10T01:50:19.127391Z",
            "url": "https://files.pythonhosted.org/packages/78/87/3d32e861e8161e0362c05a89aab77171571139b1a4a88995ccdbd08b9dcb/faster_eth_utils-5.3.10-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7446f017e2e5d3c81162aa1326c5a7d260f9e992b6374607ee13855e507a02e2",
                "md5": "77e63c865fdc4fb958183e2f0590ab72",
                "sha256": "b1736f538282a3186ca5aa76fa154fbb75778710c20f92e5901ba81f10515026"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "77e63c865fdc4fb958183e2f0590ab72",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.8",
            "size": 656134,
            "upload_time": "2025-10-10T01:50:48",
            "upload_time_iso_8601": "2025-10-10T01:50:48.451870Z",
            "url": "https://files.pythonhosted.org/packages/74/46/f017e2e5d3c81162aa1326c5a7d260f9e992b6374607ee13855e507a02e2/faster_eth_utils-5.3.10-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6617b13fe876feb4803af915b14b4d3a2e7b64979e431fa2b7311a28d148dfd8",
                "md5": "c26251b1ba4c9dedb28beb3b7116a842",
                "sha256": "d29c6c65811e4b3b3b31fd51a9fdd3605476276dcea29e3d015d86041a50a961"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c26251b1ba4c9dedb28beb3b7116a842",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.8",
            "size": 650765,
            "upload_time": "2025-10-10T01:50:39",
            "upload_time_iso_8601": "2025-10-10T01:50:39.142247Z",
            "url": "https://files.pythonhosted.org/packages/66/17/b13fe876feb4803af915b14b4d3a2e7b64979e431fa2b7311a28d148dfd8/faster_eth_utils-5.3.10-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ce4ef7bd023452bebd45cf3b5d8b3c99db5dbdbb599223d7d626f02bd64f55af",
                "md5": "45a9e55cefe1c79cd280d967f1143913",
                "sha256": "fcbe954a13076664d45322c182da7a0d6def89cc7fbb6f6de17510ddcd9c867e"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "45a9e55cefe1c79cd280d967f1143913",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.8",
            "size": 332105,
            "upload_time": "2025-10-10T01:51:16",
            "upload_time_iso_8601": "2025-10-10T01:51:16.275172Z",
            "url": "https://files.pythonhosted.org/packages/ce/4e/f7bd023452bebd45cf3b5d8b3c99db5dbdbb599223d7d626f02bd64f55af/faster_eth_utils-5.3.10-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "318bad8119c8f97f25c6657cff65264ef249a61fc78c83c1f4a11aabcbda2572",
                "md5": "da77612a3ccfd4fb5f12b8b414f52389",
                "sha256": "1ef56f4bb45c67cbea2ac7c42bae41a579d15cedf734499bc5abbfa0cb209bfc"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "da77612a3ccfd4fb5f12b8b414f52389",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.8",
            "size": 367160,
            "upload_time": "2025-10-10T01:51:07",
            "upload_time_iso_8601": "2025-10-10T01:51:07.142453Z",
            "url": "https://files.pythonhosted.org/packages/31/8b/ad8119c8f97f25c6657cff65264ef249a61fc78c83c1f4a11aabcbda2572/faster_eth_utils-5.3.10-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bb86c6cd8e27d66df87eea6e7087e40b54ed83ddf0b0e6fcc8128edd31e49673",
                "md5": "cbb524c25b44f1267c26edd079bc6fe4",
                "sha256": "cb771b6ce64eb7cabf48001d793765c28628e28262b8cffbfe75718107f86f79"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cbb524c25b44f1267c26edd079bc6fe4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.8",
            "size": 439830,
            "upload_time": "2025-10-10T01:50:58",
            "upload_time_iso_8601": "2025-10-10T01:50:58.865775Z",
            "url": "https://files.pythonhosted.org/packages/bb/86/c6cd8e27d66df87eea6e7087e40b54ed83ddf0b0e6fcc8128edd31e49673/faster_eth_utils-5.3.10-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eac6685d09a5a319b561cd9c784c7666dd8c570f4226c6030e715df15c16a5e9",
                "md5": "bd09fda66ecdc6ea91e102f340a1959a",
                "sha256": "a0748987dc1ef519292e1de2ce3cb075865dde9878ab31c81eb39730f451c38d"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
            "has_sig": false,
            "md5_digest": "bd09fda66ecdc6ea91e102f340a1959a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.8",
            "size": 654527,
            "upload_time": "2025-10-10T01:50:31",
            "upload_time_iso_8601": "2025-10-10T01:50:31.281216Z",
            "url": "https://files.pythonhosted.org/packages/ea/c6/685d09a5a319b561cd9c784c7666dd8c570f4226c6030e715df15c16a5e9/faster_eth_utils-5.3.10-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b1da04ea103eee83b48ce88f9b9d8f2349d5a4e08ce66690a2988fa956a448bf",
                "md5": "c801e9d9fff3020c8a6bcbd01a4cfdd3",
                "sha256": "dae187d85ad4cbc94c212fe45795de6d0ef02032192bb039b87fadf7decd27cc"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c801e9d9fff3020c8a6bcbd01a4cfdd3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.8",
            "size": 649392,
            "upload_time": "2025-10-10T01:50:20",
            "upload_time_iso_8601": "2025-10-10T01:50:20.689776Z",
            "url": "https://files.pythonhosted.org/packages/b1/da/04ea103eee83b48ce88f9b9d8f2349d5a4e08ce66690a2988fa956a448bf/faster_eth_utils-5.3.10-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bb7d61878e6a5e3a7c49827ebc90c1651b8e2d7b43ec099922df049b2ba4a534",
                "md5": "60e5714b8b147b8e0f5291d4670d6d30",
                "sha256": "e620fb4ea6b69409c941d855ad82a84eba1300acbb65e4a864209af6cf60e764"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "60e5714b8b147b8e0f5291d4670d6d30",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.8",
            "size": 669093,
            "upload_time": "2025-10-10T01:50:49",
            "upload_time_iso_8601": "2025-10-10T01:50:49.528113Z",
            "url": "https://files.pythonhosted.org/packages/bb/7d/61878e6a5e3a7c49827ebc90c1651b8e2d7b43ec099922df049b2ba4a534/faster_eth_utils-5.3.10-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "70618a5e8dcf7ae0b7f692c3e668aae7ba3f27247858bd021d31d23a37ef2371",
                "md5": "4c42c92e28178d41aa3402860720daa3",
                "sha256": "c42db2853d0a368f5fa2f3c244199f5993983b1731709e0cf5f8d8e7632980d0"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4c42c92e28178d41aa3402860720daa3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.8",
            "size": 659650,
            "upload_time": "2025-10-10T01:50:40",
            "upload_time_iso_8601": "2025-10-10T01:50:40.297024Z",
            "url": "https://files.pythonhosted.org/packages/70/61/8a5e8dcf7ae0b7f692c3e668aae7ba3f27247858bd021d31d23a37ef2371/faster_eth_utils-5.3.10-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a28f8d264e685fa28d7543117e68b8b650759f8bf9a16ea978823dc34e4f2a99",
                "md5": "f9779d6c90ae530f878986890ede779a",
                "sha256": "82e525baaa7588550c36b98ee1def1ec5039d78a8b3e9b177ce319388024b472"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "f9779d6c90ae530f878986890ede779a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.8",
            "size": 327467,
            "upload_time": "2025-10-10T01:51:17",
            "upload_time_iso_8601": "2025-10-10T01:51:17.403140Z",
            "url": "https://files.pythonhosted.org/packages/a2/8f/8d264e685fa28d7543117e68b8b650759f8bf9a16ea978823dc34e4f2a99/faster_eth_utils-5.3.10-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b540b5f2e1cc88d3acdb1967b35f18a8893228ec0e222b83f386e5c196e167f9",
                "md5": "f6147c7c73888a2f6987ba01867f7898",
                "sha256": "2e584190145d1585afec9a8909c872f6a8a76940131931d9caccc6b2db56a3b1"
            },
            "downloads": -1,
            "filename": "faster_eth_utils-5.3.10-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f6147c7c73888a2f6987ba01867f7898",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.8",
            "size": 361992,
            "upload_time": "2025-10-10T01:51:08",
            "upload_time_iso_8601": "2025-10-10T01:51:08.225742Z",
            "url": "https://files.pythonhosted.org/packages/b5/40/b5f2e1cc88d3acdb1967b35f18a8893228ec0e222b83f386e5c196e167f9/faster_eth_utils-5.3.10-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5afbce15276adf5418ba58433dd2eb6e6fdeedb64a6d3e1a212d0988f4a1f243",
                "md5": "3b91b592da2285162a1d359c4fe70f75",
                "sha256": "f4823a607512de045e2c79d2e92e6b737b9b7a301a66bf8a137f6712ccf264f4"
            },
            "downloads": -1,
            "filename": "faster-eth-utils-5.3.10.tar.gz",
            "has_sig": false,
            "md5_digest": "3b91b592da2285162a1d359c4fe70f75",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4,>=3.8",
            "size": 126661,
            "upload_time": "2025-10-10T01:51:18",
            "upload_time_iso_8601": "2025-10-10T01:51:18.385439Z",
            "url": "https://files.pythonhosted.org/packages/5a/fb/ce15276adf5418ba58433dd2eb6e6fdeedb64a6d3e1a212d0988f4a1f243/faster-eth-utils-5.3.10.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-10-10 01:51:18",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "BobTheBuidler",
    "github_project": "eth-utils",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "circle": true,
    "tox": true,
    "lcname": "faster-eth-utils"
}
        
Elapsed time: 1.91537s