faster-eth-utils 5.3.19__cp311-cp311-win32.whl → 5.3.23__cp311-cp311-win32.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of faster-eth-utils might be problematic. Click here for more details.

Files changed (43) hide show
  1. faster_eth_utils/abi.cp311-win32.pyd +0 -0
  2. faster_eth_utils/abi.py +76 -55
  3. faster_eth_utils/address.cp311-win32.pyd +0 -0
  4. faster_eth_utils/address.py +7 -14
  5. faster_eth_utils/applicators.cp311-win32.pyd +0 -0
  6. faster_eth_utils/applicators.py +20 -33
  7. faster_eth_utils/conversions.cp311-win32.pyd +0 -0
  8. faster_eth_utils/conversions.py +18 -20
  9. faster_eth_utils/crypto.cp311-win32.pyd +0 -0
  10. faster_eth_utils/crypto.py +3 -8
  11. faster_eth_utils/currency.cp311-win32.pyd +0 -0
  12. faster_eth_utils/currency.py +11 -8
  13. faster_eth_utils/curried/__init__.py +35 -44
  14. faster_eth_utils/debug.cp311-win32.pyd +0 -0
  15. faster_eth_utils/decorators.cp311-win32.pyd +0 -0
  16. faster_eth_utils/decorators.py +16 -20
  17. faster_eth_utils/encoding.cp311-win32.pyd +0 -0
  18. faster_eth_utils/encoding.py +1 -1
  19. faster_eth_utils/exceptions.cp311-win32.pyd +0 -0
  20. faster_eth_utils/exceptions.py +1 -1
  21. faster_eth_utils/functional.cp311-win32.pyd +0 -0
  22. faster_eth_utils/functional.py +10 -12
  23. faster_eth_utils/hexadecimal.cp311-win32.pyd +0 -0
  24. faster_eth_utils/hexadecimal.py +8 -12
  25. faster_eth_utils/humanize.cp311-win32.pyd +0 -0
  26. faster_eth_utils/humanize.py +16 -16
  27. faster_eth_utils/logging.py +33 -27
  28. faster_eth_utils/module_loading.cp311-win32.pyd +0 -0
  29. faster_eth_utils/network.cp311-win32.pyd +0 -0
  30. faster_eth_utils/network.py +2 -3
  31. faster_eth_utils/numeric.cp311-win32.pyd +0 -0
  32. faster_eth_utils/pydantic.py +4 -6
  33. faster_eth_utils/toolz.cp311-win32.pyd +0 -0
  34. faster_eth_utils/types.cp311-win32.pyd +0 -0
  35. faster_eth_utils/types.py +5 -8
  36. faster_eth_utils/units.cp311-win32.pyd +0 -0
  37. {faster_eth_utils-5.3.19.dist-info → faster_eth_utils-5.3.23.dist-info}/METADATA +8 -9
  38. faster_eth_utils-5.3.23.dist-info/RECORD +53 -0
  39. faster_eth_utils__mypyc.cp311-win32.pyd +0 -0
  40. faster_eth_utils-5.3.19.dist-info/RECORD +0 -53
  41. {faster_eth_utils-5.3.19.dist-info → faster_eth_utils-5.3.23.dist-info}/WHEEL +0 -0
  42. {faster_eth_utils-5.3.19.dist-info → faster_eth_utils-5.3.23.dist-info}/licenses/LICENSE +0 -0
  43. {faster_eth_utils-5.3.19.dist-info → faster_eth_utils-5.3.23.dist-info}/top_level.txt +0 -0
@@ -1,16 +1,17 @@
1
- import contextlib
1
+ import logging
2
+ from collections.abc import (
3
+ Iterator,
4
+ )
5
+ from contextlib import (
6
+ contextmanager,
7
+ )
2
8
  from functools import (
3
9
  cached_property,
4
10
  )
5
- import logging
6
11
  from typing import (
7
12
  Any,
8
- Dict,
9
- Iterator,
10
- Tuple,
11
- Type,
13
+ Final,
12
14
  TypeVar,
13
- Union,
14
15
  cast,
15
16
  overload,
16
17
  )
@@ -23,6 +24,11 @@ DEBUG2_LEVEL_NUM = 8
23
24
 
24
25
  TLogger = TypeVar("TLogger", bound=logging.Logger)
25
26
 
27
+ Logger: Final = logging.Logger
28
+ getLogger: Final = logging.getLogger
29
+ getLoggerClass: Final = logging.getLoggerClass
30
+ setLoggerClass: Final = logging.setLoggerClass
31
+
26
32
 
27
33
  class ExtendedDebugLogger(logging.Logger):
28
34
  """
@@ -42,7 +48,7 @@ class ExtendedDebugLogger(logging.Logger):
42
48
  # lambda to further speed up
43
49
  self.__dict__["debug2"] = lambda message, *args, **kwargs: None
44
50
 
45
- def __reduce__(self) -> Tuple[Any, ...]:
51
+ def __reduce__(self) -> tuple[Any, ...]:
46
52
  # This is needed because our parent's implementation could
47
53
  # cause us to become a regular Logger on unpickling.
48
54
  return get_extended_debug_logger, (self.name,)
@@ -56,23 +62,23 @@ def setup_DEBUG2_logging() -> None:
56
62
  logging.addLevelName(DEBUG2_LEVEL_NUM, "DEBUG2")
57
63
  logging.DEBUG2 = DEBUG2_LEVEL_NUM # type: ignore [attr-defined]
58
64
 
59
- @contextlib.contextmanager
60
- def _use_logger_class(logger_class: Type[logging.Logger]) -> Iterator[None]:
61
- original_logger_class = logging.getLoggerClass()
62
- logging.setLoggerClass(logger_class)
65
+ @contextmanager
66
+ def _use_logger_class(logger_class: type[logging.Logger]) -> Iterator[None]:
67
+ original_logger_class = getLoggerClass()
68
+ setLoggerClass(logger_class)
63
69
  try:
64
70
  yield
65
71
  finally:
66
- logging.setLoggerClass(original_logger_class)
72
+ setLoggerClass(original_logger_class)
67
73
 
68
74
 
69
75
  @overload
70
- def get_logger(name: str, logger_class: Type[TLogger]) -> TLogger: ...
76
+ def get_logger(name: str, logger_class: type[TLogger]) -> TLogger: ...
71
77
  @overload
72
78
  def get_logger(name: str, logger_class: None = None) -> logging.Logger: ...
73
- def get_logger(name: str, logger_class: Union[Type[TLogger], None] = None) -> Union[TLogger, logging.Logger]:
79
+ def get_logger(name: str, logger_class: type[TLogger] | None = None) -> TLogger | logging.Logger:
74
80
  if logger_class is None:
75
- return logging.getLogger(name)
81
+ return getLogger(name)
76
82
 
77
83
  with _use_logger_class(logger_class):
78
84
  # The logging module caches logger instances. The following code
@@ -80,12 +86,12 @@ def get_logger(name: str, logger_class: Union[Type[TLogger], None] = None) -> Un
80
86
  # accidentally return the incorrect logger type because the logging
81
87
  # module does not *update* the cached instance in the event that
82
88
  # the global logging class changes.
83
- manager = logging.Logger.manager
89
+ manager = Logger.manager
84
90
  logger_dict = manager.loggerDict
85
91
  cached_logger = logger_dict.get(name)
86
92
  if cached_logger is not None and type(cached_logger) is not logger_class:
87
93
  del logger_dict[name]
88
- return cast(TLogger, logging.getLogger(name))
94
+ return cast(TLogger, getLogger(name))
89
95
 
90
96
 
91
97
  def get_extended_debug_logger(name: str) -> ExtendedDebugLogger:
@@ -103,13 +109,13 @@ class HasLoggerMeta(type):
103
109
  to use when creating the associated logger for a given class.
104
110
  """
105
111
 
106
- logger_class = logging.Logger
112
+ logger_class = Logger
107
113
 
108
114
  def __new__(
109
- mcls: Type[THasLoggerMeta],
115
+ mcls: type[THasLoggerMeta],
110
116
  name: str,
111
- bases: Tuple[Type[Any]],
112
- namespace: Dict[str, Any],
117
+ bases: tuple[type[Any]],
118
+ namespace: dict[str, Any],
113
119
  ) -> THasLoggerMeta:
114
120
  if "logger" in namespace:
115
121
  # If a logger was explicitly declared we shouldn't do anything to
@@ -124,14 +130,14 @@ class HasLoggerMeta(type):
124
130
 
125
131
  @classmethod
126
132
  def replace_logger_class(
127
- mcls: Type[THasLoggerMeta], value: Type[logging.Logger]
128
- ) -> Type[THasLoggerMeta]:
133
+ mcls: type[THasLoggerMeta], value: type[logging.Logger]
134
+ ) -> type[THasLoggerMeta]:
129
135
  return type(mcls.__name__, (mcls,), {"logger_class": value})
130
136
 
131
137
  @classmethod
132
138
  def meta_compat(
133
- mcls: Type[THasLoggerMeta], other: Type[type]
134
- ) -> Type[THasLoggerMeta]:
139
+ mcls: type[THasLoggerMeta], other: type[type]
140
+ ) -> type[THasLoggerMeta]:
135
141
  return type(mcls.__name__, (mcls, other), {})
136
142
 
137
143
 
@@ -142,5 +148,5 @@ class HasLogger(metaclass=HasLoggerMeta):
142
148
  HasExtendedDebugLoggerMeta = HasLoggerMeta.replace_logger_class(ExtendedDebugLogger)
143
149
 
144
150
 
145
- class HasExtendedDebugLogger(metaclass=HasExtendedDebugLoggerMeta): # type: ignore [metaclass,misc]
151
+ class HasExtendedDebugLogger(metaclass=HasExtendedDebugLoggerMeta): # type: ignore[metaclass]
146
152
  logger: ExtendedDebugLogger
Binary file
@@ -9,14 +9,13 @@ from pathlib import (
9
9
  )
10
10
  from typing import (
11
11
  Final,
12
- List,
13
12
  )
14
13
 
15
14
  from eth_typing import (
16
15
  ChainId,
17
16
  )
18
17
 
19
- from faster_eth_utils import (
18
+ from faster_eth_utils.exceptions import (
20
19
  ValidationError,
21
20
  )
22
21
 
@@ -32,7 +31,7 @@ class Network:
32
31
  symbol: ChainId
33
32
 
34
33
 
35
- def initialize_network_objects() -> List[Network]:
34
+ def initialize_network_objects() -> list[Network]:
36
35
  networks_obj = []
37
36
 
38
37
  networks_json_path = os.path.abspath(
Binary file
@@ -1,7 +1,5 @@
1
1
  from typing import (
2
2
  Any,
3
- Dict,
4
- Type,
5
3
  )
6
4
 
7
5
  from pydantic import (
@@ -21,7 +19,7 @@ from pydantic.json_schema import (
21
19
  )
22
20
 
23
21
 
24
- class OmitJsonSchema(GenerateJsonSchema):
22
+ class OmitJsonSchema(GenerateJsonSchema): # type: ignore[misc]
25
23
  """
26
24
  Custom JSON schema generator that omits the schema generation for fields that are
27
25
  invalid. Excluded fields (``Field(exclude=True)``) are generally useful as
@@ -35,7 +33,7 @@ class OmitJsonSchema(GenerateJsonSchema):
35
33
  return super().field_is_present(field)
36
34
 
37
35
 
38
- class CamelModel(BaseModel):
36
+ class CamelModel(BaseModel): # type: ignore[misc]
39
37
  """
40
38
  Camel-case pydantic model. This model is used to ensure serialization in a
41
39
  consistent manner, aliasing as camelCase serialization. This is useful for models
@@ -86,9 +84,9 @@ class CamelModel(BaseModel):
86
84
  by_alias: bool = True,
87
85
  ref_template: str = DEFAULT_REF_TEMPLATE,
88
86
  # default to ``OmitJsonSchema`` to prevent errors from excluded fields
89
- schema_generator: Type[GenerateJsonSchema] = OmitJsonSchema,
87
+ schema_generator: type[GenerateJsonSchema] = OmitJsonSchema,
90
88
  mode: JsonSchemaMode = "validation",
91
- ) -> Dict[str, Any]:
89
+ ) -> dict[str, Any]:
92
90
  """
93
91
  Omits excluded fields from the JSON schema, preventing errors that would
94
92
  otherwise be raised by the default schema generator.
Binary file
Binary file
faster_eth_utils/types.py CHANGED
@@ -3,13 +3,10 @@ import numbers
3
3
  from typing import (
4
4
  Any,
5
5
  Final,
6
- List,
7
6
  Literal,
8
- Tuple,
9
- Union,
10
7
  )
11
8
 
12
- from typing_extensions import (
9
+ from typing import (
13
10
  TypeGuard,
14
11
  )
15
12
 
@@ -28,7 +25,7 @@ def is_integer(value: Any) -> TypeGuard[int]:
28
25
  return isinstance(value, int) and not isinstance(value, bool)
29
26
 
30
27
 
31
- def is_bytes(value: Any) -> TypeGuard[Union[bytes, bytearray]]:
28
+ def is_bytes(value: Any) -> TypeGuard[bytes | bytearray]:
32
29
  return isinstance(value, bytes_types)
33
30
 
34
31
 
@@ -36,7 +33,7 @@ def is_text(value: Any) -> TypeGuard[str]:
36
33
  return isinstance(value, str)
37
34
 
38
35
 
39
- def is_string(value: Any) -> TypeGuard[Union[bytes, str, bytearray]]:
36
+ def is_string(value: Any) -> TypeGuard[bytes | str | bytearray]:
40
37
  return isinstance(value, string_types)
41
38
 
42
39
 
@@ -52,11 +49,11 @@ def is_list_like(obj: Any) -> TypeGuard[collections.abc.Sequence[Any]]:
52
49
  return isinstance(obj, (list, tuple)) or not is_string(obj) and isinstance(obj, Sequence)
53
50
 
54
51
 
55
- def is_list(obj: Any) -> TypeGuard[List[Any]]:
52
+ def is_list(obj: Any) -> TypeGuard[list[Any]]:
56
53
  return isinstance(obj, list)
57
54
 
58
55
 
59
- def is_tuple(obj: Any) -> TypeGuard[Tuple[Any, ...]]:
56
+ def is_tuple(obj: Any) -> TypeGuard[tuple[Any, ...]]:
60
57
  return isinstance(obj, tuple)
61
58
 
62
59
 
Binary file
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: faster-eth-utils
3
- Version: 5.3.19
4
- Summary: A fork of eth-utils: Common utility functions for python code that interacts with Ethereum, implemented in C
3
+ Version: 5.3.23
4
+ Summary: A faster fork of eth-utils: Common utility functions for python code that interacts with Ethereum. Implemented in C
5
5
  Home-page: https://github.com/BobTheBuidler/faster-eth-utils
6
6
  Author: The Ethereum Foundation
7
7
  Author-email: snakecharmers@ethereum.org
@@ -18,17 +18,16 @@ Keywords: ethereum
18
18
  Classifier: Intended Audience :: Developers
19
19
  Classifier: Natural Language :: English
20
20
  Classifier: Programming Language :: Python :: 3
21
- Classifier: Programming Language :: Python :: 3.8
22
- Classifier: Programming Language :: Python :: 3.9
23
21
  Classifier: Programming Language :: Python :: 3.10
24
22
  Classifier: Programming Language :: Python :: 3.11
25
23
  Classifier: Programming Language :: Python :: 3.12
26
24
  Classifier: Programming Language :: Python :: 3.13
25
+ Classifier: Programming Language :: Python :: 3.14
27
26
  Classifier: Programming Language :: Python :: Implementation :: CPython
28
- Requires-Python: >=3.8, <4
27
+ Requires-Python: >=3.10, <4
29
28
  Description-Content-Type: text/markdown
30
29
  License-File: LICENSE
31
- Requires-Dist: cchecksum==0.3.7.dev0
30
+ Requires-Dist: cchecksum==0.3.10
32
31
  Requires-Dist: eth-hash>=0.3.1
33
32
  Requires-Dist: eth-typing==5.2.1
34
33
  Requires-Dist: eth-utils==5.3.1
@@ -40,7 +39,7 @@ Requires-Dist: build>=0.9.0; extra == "dev"
40
39
  Requires-Dist: bump_my_version>=0.19.0; extra == "dev"
41
40
  Requires-Dist: eth-hash[pycryptodome]; extra == "dev"
42
41
  Requires-Dist: ipython; extra == "dev"
43
- Requires-Dist: mypy<1.18.3,>=1.14.1; extra == "dev"
42
+ Requires-Dist: mypy[mypyc]<1.20,>=1.14.1; extra == "dev"
44
43
  Requires-Dist: pre-commit>=3.4.0; extra == "dev"
45
44
  Requires-Dist: tox>=4.0.0; extra == "dev"
46
45
  Requires-Dist: twine; extra == "dev"
@@ -50,7 +49,7 @@ Requires-Dist: sphinx-autobuild>=2021.3.14; extra == "dev"
50
49
  Requires-Dist: sphinx_rtd_theme>=1.0.0; extra == "dev"
51
50
  Requires-Dist: towncrier<26,>=24; extra == "dev"
52
51
  Requires-Dist: hypothesis>=4.43.0; extra == "dev"
53
- Requires-Dist: mypy<1.18.3,>=1.14.1; extra == "dev"
52
+ Requires-Dist: mypy[mypyc]<1.20,>=1.14.1; extra == "dev"
54
53
  Requires-Dist: pytest-xdist>=2.4.0; extra == "dev"
55
54
  Requires-Dist: pytest>=7.0.0; extra == "dev"
56
55
  Provides-Extra: docs
@@ -60,7 +59,7 @@ Requires-Dist: sphinx_rtd_theme>=1.0.0; extra == "docs"
60
59
  Requires-Dist: towncrier<26,>=24; extra == "docs"
61
60
  Provides-Extra: test
62
61
  Requires-Dist: hypothesis>=4.43.0; extra == "test"
63
- Requires-Dist: mypy<1.18.3,>=1.14.1; extra == "test"
62
+ Requires-Dist: mypy[mypyc]<1.20,>=1.14.1; extra == "test"
64
63
  Requires-Dist: pytest-xdist>=2.4.0; extra == "test"
65
64
  Requires-Dist: pytest>=7.0.0; extra == "test"
66
65
  Provides-Extra: codspeed
@@ -0,0 +1,53 @@
1
+ faster_eth_utils__mypyc.cp311-win32.pyd,sha256=VTtuwYkZaSyMHmmwuhI7ipw87j2gIZ8byXg7Mr4PVtg,377856
2
+ faster_eth_utils/__init__.py,sha256=Hk6hT3RXB-ednEtyC4QgGeRVby9xSwUsK5I38NxnqBg,2906
3
+ faster_eth_utils/__main__.py,sha256=_ZPSIKET0Rym_kVRE6xmvmbZVqYTMuTeyRdwduo2e48,91
4
+ faster_eth_utils/abi.cp311-win32.pyd,sha256=1SC2Cc9BezWfPnuGMSWkleP8_Yu0wHoDCrNNMVqlxeo,9216
5
+ faster_eth_utils/abi.py,sha256=9hONYnt8Hehk2PAn5N3eOsqR91kDVeT9pH9FdkquIlk,27889
6
+ faster_eth_utils/address.cp311-win32.pyd,sha256=qeoLPHRDxg5rBUtqCw757KlJa-mD3dMD4rPyZzQucqs,9216
7
+ faster_eth_utils/address.py,sha256=Yu9jE6XuKKC0nhFc4KOGHEul8G4X8t79yHfdcprWq4U,3710
8
+ faster_eth_utils/applicators.cp311-win32.pyd,sha256=_JnuWA_ngoLxnCq4Q8PgvSHN_B8hL55-BTWymkaaMS4,9216
9
+ faster_eth_utils/applicators.py,sha256=irFMuW-PdWMwVlzZQ5OL9wSx9JebUPr9dshVu_BSX3s,6040
10
+ faster_eth_utils/conversions.cp311-win32.pyd,sha256=j7hu7Pc-FCWU4w2D3uWGS1E4vALtLeuWCE6Vdcblq5U,9216
11
+ faster_eth_utils/conversions.py,sha256=s2twjSs7eXAZYA7q-MvVx8nRh6pSwhrGWp7TWWPHMaI,5759
12
+ faster_eth_utils/crypto.cp311-win32.pyd,sha256=8urS7BTtt6eMDFbgs4x_StbuU99clI1J-TeDtQ7mxq4,9216
13
+ faster_eth_utils/crypto.py,sha256=QNl-6kpKS97cjtcqq3k0LonQNVY0zccdJWTbtMzTOeA,348
14
+ faster_eth_utils/currency.cp311-win32.pyd,sha256=XmaDNaaZ2eyAuVF3BEEJOzyxl8l00jDuLJTPgtrEPx0,9216
15
+ faster_eth_utils/currency.py,sha256=m_PjhECWaqZHq5-1q6EphcjSotWwAkf88JzbtZGxfvo,4351
16
+ faster_eth_utils/debug.cp311-win32.pyd,sha256=CU8uJhbA1k0HWIQNc1HuoxqNLUOlzIXlPFJ0CxgyVxI,9216
17
+ faster_eth_utils/debug.py,sha256=V3fN7-gz246Tcf_Zp99QK3uDzW22odPpAl_bShIZhZs,519
18
+ faster_eth_utils/decorators.cp311-win32.pyd,sha256=bf05tTZu-55__9ThgHKXk8q8okYhIvPmjc8y1g6Mgz4,9216
19
+ faster_eth_utils/decorators.py,sha256=OX-fovjdPjlSY4fkC3rV2M9YW20GlXRy1bv28ivSl4w,3309
20
+ faster_eth_utils/encoding.cp311-win32.pyd,sha256=vKri8PyCyq6-rnuJmWCslZNBf-NI9DWtoXRTsljYQJU,9216
21
+ faster_eth_utils/encoding.py,sha256=Be10DAYjsVq-0xMu1Kc3IYU28EDfZkOqxdE8qJuHQMc,217
22
+ faster_eth_utils/exceptions.cp311-win32.pyd,sha256=u-gtVq_ftoMEMHMdPlr5fCs5l9NFvajz-lTxeWpwg9Q,9216
23
+ faster_eth_utils/exceptions.py,sha256=IekZC213PemJO8Z1EUo65Fx7YaAUEOeIoshbXaeFvB0,402
24
+ faster_eth_utils/functional.cp311-win32.pyd,sha256=QWjgiR_v1HPfiQpYCnwT43UpWpsJZdXPHPJhVtsFZbg,9216
25
+ faster_eth_utils/functional.py,sha256=H4BpF_SVLFpLOEQs7Y0fLVGVGstvN2emxpjBZEoy0uI,2545
26
+ faster_eth_utils/hexadecimal.cp311-win32.pyd,sha256=k9tXvzyZy2R5ezvlA5VRuvtmn9tB-lG7avngMZJHdBc,9216
27
+ faster_eth_utils/hexadecimal.py,sha256=5ABF--j_998u_6beToLRwhb7nLQPdplNWOp1o-Q0ZuE,2134
28
+ faster_eth_utils/humanize.cp311-win32.pyd,sha256=uZVYZ1nzvnc73Sj8-aEERuUE3wNFMjTrdTU93zmUtfE,9216
29
+ faster_eth_utils/humanize.py,sha256=zJwr9UttVTdDALOdXYu6T1rPNLtjwYufVIILXeqev7g,4904
30
+ faster_eth_utils/logging.py,sha256=oYHS-6MMMfqBCXId5kPiTUFA8tkZOGbpopVtAu_8UQM,4910
31
+ faster_eth_utils/module_loading.cp311-win32.pyd,sha256=vFM8b9fQguKYYU4dRkEE8rkipx1L4HC18TIfDNcxwjk,9216
32
+ faster_eth_utils/module_loading.py,sha256=gGZ0n4zezi2zxMRuEU0cf7EYW1lXpS_a1aPvP1KFkXA,873
33
+ faster_eth_utils/network.cp311-win32.pyd,sha256=paTjnOFhj6mxzH8XfvMn9jnLpOEbLl-ZyNprr9FLHMI,9216
34
+ faster_eth_utils/network.py,sha256=jy6m5g54X3777Iti1G3mR_0N2B-TNU3IIZl-pb16eXs,2370
35
+ faster_eth_utils/numeric.cp311-win32.pyd,sha256=BVRiLYvfxMQtA8N4yRfCXBsI-9tNlOTgR2lga3b4Z54,9216
36
+ faster_eth_utils/numeric.py,sha256=Mqc6dzs-aK84cBFxsZtXJhpb7_S-TDug-FuFqlR6vHg,1233
37
+ faster_eth_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
+ faster_eth_utils/pydantic.py,sha256=g5YQh2EbfwdJvxT5s7HiYId8dz94Xl7dy_hT9XBKOyo,3516
39
+ faster_eth_utils/toolz.cp311-win32.pyd,sha256=-2k4LTFsQnBirGav7ChRpoBjc8louO2kQpBgtZI1rYc,9216
40
+ faster_eth_utils/toolz.py,sha256=P3s23LOEFRY6XQ8i_ChnA9hf-PSi-Oe-pv0jzsj7DjY,4494
41
+ faster_eth_utils/types.cp311-win32.pyd,sha256=TvDehqUgz_nU9R54byh7cYH1uvc8Q_f6xJa8v4BUVPs,9216
42
+ faster_eth_utils/types.py,sha256=uncVkm2E0WNhOPyubsxXN4wgc600tgE_qo2MP8Gm8Dg,1589
43
+ faster_eth_utils/units.cp311-win32.pyd,sha256=Ji-87qxdYYIWh2x_s_NAoXXVLCpzMUgWEycz7b7IKgk,9216
44
+ faster_eth_utils/units.py,sha256=QQyNHx2umgN5LtOmptc_2-XKf3A-5YfVcTwaEcVrev8,1788
45
+ faster_eth_utils/__json/eth_networks.json,sha256=Zvb92ir0B_xKfqAraQtQLSf7J1zrfl_lwbYYrtP-hms,414774
46
+ faster_eth_utils/curried/__init__.py,sha256=GGoJTtrx54OSlW0dS_l2hMZjwePQzBSIdHNUMVki0OA,8102
47
+ faster_eth_utils/typing/__init__.py,sha256=mCjbC5-GULGyLCr-LHccbW_aKPkzN2w1ejW3EBfy6mU,343
48
+ faster_eth_utils/typing/misc.py,sha256=rokTYylOyX_Uok6rb8L1JsH_7fAydRmDWLzL5xc6Bao,204
49
+ faster_eth_utils-5.3.23.dist-info/licenses/LICENSE,sha256=VSsrPEmF7tY2P84NOLM4ZsJDoEIjpf16GFwU5-py2n0,1116
50
+ faster_eth_utils-5.3.23.dist-info/METADATA,sha256=iB-sc2io4uoDNT6OUlgEbli7Lz2_QWkHgvA4MQdJv-o,9099
51
+ faster_eth_utils-5.3.23.dist-info/WHEEL,sha256=Ri8zddKrjGdgjlj1OpSsvpDnvHfnQhMQWi3E_v2pqng,97
52
+ faster_eth_utils-5.3.23.dist-info/top_level.txt,sha256=wTH6UCItCCvEEiJ9EiOrm0Kn4p4xhB7VdmmTHktoo9Y,51
53
+ faster_eth_utils-5.3.23.dist-info/RECORD,,
Binary file
@@ -1,53 +0,0 @@
1
- faster_eth_utils__mypyc.cp311-win32.pyd,sha256=LAVd7AnJMVRym4ds3FHh-Hty4X72BLe2nw36R1p0nog,369664
2
- faster_eth_utils/__init__.py,sha256=Hk6hT3RXB-ednEtyC4QgGeRVby9xSwUsK5I38NxnqBg,2906
3
- faster_eth_utils/__main__.py,sha256=_ZPSIKET0Rym_kVRE6xmvmbZVqYTMuTeyRdwduo2e48,91
4
- faster_eth_utils/abi.cp311-win32.pyd,sha256=l-tEBIMr59fqqvDnLFt-TloOtT84eu6BXnUESrdT4FA,9216
5
- faster_eth_utils/abi.py,sha256=Zbp4hMfcsEs9_g2BbTdvfebQXvOgW5XTeuWPrmZmmXk,27251
6
- faster_eth_utils/address.cp311-win32.pyd,sha256=IybXo3ICsFiozm0kWs4QEIwqMU8lcA2PuinyqUk63Bg,9216
7
- faster_eth_utils/address.py,sha256=G9HKC4rFnPFF94Dyae5NmOICgjubl0ZPlNJWZGEOCNg,3825
8
- faster_eth_utils/applicators.cp311-win32.pyd,sha256=knMEHrtiS4muwgdQL4Cffo-90umaDDMYaz0yRxVI_kk,9216
9
- faster_eth_utils/applicators.py,sha256=hlQkYGlfZ3py32kztRQQwJ3iKWF1RzhYtNOFxD2f5Qc,6253
10
- faster_eth_utils/conversions.cp311-win32.pyd,sha256=kxjtaN9XJPmgP7nftnoanJLemJRi6lSeO_fLoBy8W7g,9216
11
- faster_eth_utils/conversions.py,sha256=IPUPtXHUyzBYc13c2IY8ZhM4MmA2BBaVnDihvDIApSY,5856
12
- faster_eth_utils/crypto.cp311-win32.pyd,sha256=YPeNG0LboUNTe4Eiq0zZmcE30TPHLH0qc9HYJl5VQIM,9216
13
- faster_eth_utils/crypto.py,sha256=X_l4B_ZBNHaulcInSVpdBG24xqjQ1_W9t4wYvi9Btw0,416
14
- faster_eth_utils/currency.cp311-win32.pyd,sha256=GZ--0mHDHNFqSafG-s6k9Gq0KJ_Uejl41p_kTgsMwUc,9216
15
- faster_eth_utils/currency.py,sha256=8oLxDv52IDJ2SK5q8C1zBdPXKHHBi7v_44sdbv3VJVw,4291
16
- faster_eth_utils/debug.cp311-win32.pyd,sha256=X153RCBDWgDAD5DzlMg9Kwh9xMr4dJyjSgb_le0MlYs,9216
17
- faster_eth_utils/debug.py,sha256=V3fN7-gz246Tcf_Zp99QK3uDzW22odPpAl_bShIZhZs,519
18
- faster_eth_utils/decorators.cp311-win32.pyd,sha256=3jeMklTN2AHvybVCKW8XfDM6n77h9fcU4FeBSmdAHxo,9216
19
- faster_eth_utils/decorators.py,sha256=c00RdpHjyI-iU27MqlUn30i3VNx_bn8mupI_lXyMKBA,3407
20
- faster_eth_utils/encoding.cp311-win32.pyd,sha256=8aflO3WYnvYUO-1Zcgt4BhY2ylQoiOHS29A3fE5dGko,9216
21
- faster_eth_utils/encoding.py,sha256=8_mWHVwdNL4Y1R-7N6q-N9R3N-yKtZ0arHaq8CuuCMM,205
22
- faster_eth_utils/exceptions.cp311-win32.pyd,sha256=A7AHCttBpRH8KL9ojCs3YtCcF1c1WU8_751iKr4Mzzo,9216
23
- faster_eth_utils/exceptions.py,sha256=denVYkJGaikAbaHY62qcIJTFCQS9T55s60XKklihyLA,380
24
- faster_eth_utils/functional.cp311-win32.pyd,sha256=J8bmasupMDDvW0aFc4s9WQgB_5Ax9e1xJOncSzYivhg,9216
25
- faster_eth_utils/functional.py,sha256=MWexxiZH6yqg1MMGsTRHuC0SxLVi3kZQKBAgtq6wrqo,2538
26
- faster_eth_utils/hexadecimal.cp311-win32.pyd,sha256=vXHOvDnKXTgPNdEQYPWxib9dwArwX9MZE6ivsq0VJR0,9216
27
- faster_eth_utils/hexadecimal.py,sha256=bnWHo68ajygzhbLJfVOmqBlgifXfkBX8QvlHbigk9KU,2162
28
- faster_eth_utils/humanize.cp311-win32.pyd,sha256=pIIUEi5rnmKcKMf5XyVuvjlhLbPnzsmp_yuV_Q-KhCw,9216
29
- faster_eth_utils/humanize.py,sha256=GA0N9yfbnQiYuP3CnT6nO6YLFs4GT1e6EskRsH9xL4s,4883
30
- faster_eth_utils/logging.py,sha256=mKsFFTuWMvEk0b66hdEb02jJ476olz6zIuC8vzEjTZk,4796
31
- faster_eth_utils/module_loading.cp311-win32.pyd,sha256=d8i6pXlSFYO6cJC1xIaZuMqHMtRXdh9ijwELkzB3jyc,9216
32
- faster_eth_utils/module_loading.py,sha256=gGZ0n4zezi2zxMRuEU0cf7EYW1lXpS_a1aPvP1KFkXA,873
33
- faster_eth_utils/network.cp311-win32.pyd,sha256=Wd8Orm2Rfdy9YjaGHL_w2vfW7X3O_DKcRmoAFg84yJU,9216
34
- faster_eth_utils/network.py,sha256=MVyNw-DQGoaMvKXedWbOzESSfT2x5HPtsxaImWLhXd4,2370
35
- faster_eth_utils/numeric.cp311-win32.pyd,sha256=d0PLCRV4BV60jA5j--z9ygWc_nWVbWtn6Xb_Vpkz9fY,9216
36
- faster_eth_utils/numeric.py,sha256=Mqc6dzs-aK84cBFxsZtXJhpb7_S-TDug-FuFqlR6vHg,1233
37
- faster_eth_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
- faster_eth_utils/pydantic.py,sha256=Vx8Y_CB_3u5h9CHchwFyTQw-HUdADdTxD5NJN-CIf3I,3494
39
- faster_eth_utils/toolz.cp311-win32.pyd,sha256=v68F0_qi1W21l4vpTnSNQ-79JJGw4s0FEY5c3lf-3H0,9216
40
- faster_eth_utils/toolz.py,sha256=P3s23LOEFRY6XQ8i_ChnA9hf-PSi-Oe-pv0jzsj7DjY,4494
41
- faster_eth_utils/types.cp311-win32.pyd,sha256=ZNyFfL405GTBpJWIoeNqFsOt8KZkH0Wvf0wXYGafNIY,9216
42
- faster_eth_utils/types.py,sha256=TarbJJqSEkmn6Vd0U8cJiKBMGuAtt2nXBPxonZsJ0rE,1646
43
- faster_eth_utils/units.cp311-win32.pyd,sha256=wgbm3ZQCV0Wygp4Kj7O6Yiq206eoP9BrA1xY7ANiJuY,9216
44
- faster_eth_utils/units.py,sha256=QQyNHx2umgN5LtOmptc_2-XKf3A-5YfVcTwaEcVrev8,1788
45
- faster_eth_utils/__json/eth_networks.json,sha256=Zvb92ir0B_xKfqAraQtQLSf7J1zrfl_lwbYYrtP-hms,414774
46
- faster_eth_utils/curried/__init__.py,sha256=708oh6cNXsO-3Qak7x21EN1P-aRLQlIHKDksMYZtFRQ,8298
47
- faster_eth_utils/typing/__init__.py,sha256=mCjbC5-GULGyLCr-LHccbW_aKPkzN2w1ejW3EBfy6mU,343
48
- faster_eth_utils/typing/misc.py,sha256=rokTYylOyX_Uok6rb8L1JsH_7fAydRmDWLzL5xc6Bao,204
49
- faster_eth_utils-5.3.19.dist-info/licenses/LICENSE,sha256=VSsrPEmF7tY2P84NOLM4ZsJDoEIjpf16GFwU5-py2n0,1116
50
- faster_eth_utils-5.3.19.dist-info/METADATA,sha256=7-KhvbC9CtKt1XrCPglNpZjSYRyAZHnhCgljO9T9koA,9130
51
- faster_eth_utils-5.3.19.dist-info/WHEEL,sha256=Ri8zddKrjGdgjlj1OpSsvpDnvHfnQhMQWi3E_v2pqng,97
52
- faster_eth_utils-5.3.19.dist-info/top_level.txt,sha256=wTH6UCItCCvEEiJ9EiOrm0Kn4p4xhB7VdmmTHktoo9Y,51
53
- faster_eth_utils-5.3.19.dist-info/RECORD,,