faster-eth-utils 5.3.10__cp39-cp39-win_amd64.whl → 5.3.12__cp39-cp39-win_amd64.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 (31) hide show
  1. faster_eth_utils/abi.cp39-win_amd64.pyd +0 -0
  2. faster_eth_utils/abi.py +20 -16
  3. faster_eth_utils/address.cp39-win_amd64.pyd +0 -0
  4. faster_eth_utils/applicators.cp39-win_amd64.pyd +0 -0
  5. faster_eth_utils/applicators.py +38 -36
  6. faster_eth_utils/conversions.cp39-win_amd64.pyd +0 -0
  7. faster_eth_utils/crypto.cp39-win_amd64.pyd +0 -0
  8. faster_eth_utils/currency.cp39-win_amd64.pyd +0 -0
  9. faster_eth_utils/debug.cp39-win_amd64.pyd +0 -0
  10. faster_eth_utils/decorators.cp39-win_amd64.pyd +0 -0
  11. faster_eth_utils/encoding.cp39-win_amd64.pyd +0 -0
  12. faster_eth_utils/exceptions.cp39-win_amd64.pyd +0 -0
  13. faster_eth_utils/exceptions.py +8 -1
  14. faster_eth_utils/functional.cp39-win_amd64.pyd +0 -0
  15. faster_eth_utils/hexadecimal.cp39-win_amd64.pyd +0 -0
  16. faster_eth_utils/humanize.cp39-win_amd64.pyd +0 -0
  17. faster_eth_utils/module_loading.cp39-win_amd64.pyd +0 -0
  18. faster_eth_utils/network.cp39-win_amd64.pyd +0 -0
  19. faster_eth_utils/numeric.cp39-win_amd64.pyd +0 -0
  20. faster_eth_utils/toolz.cp39-win_amd64.pyd +0 -0
  21. faster_eth_utils/types.cp39-win_amd64.pyd +0 -0
  22. faster_eth_utils/units.cp39-win_amd64.pyd +0 -0
  23. {faster_eth_utils-5.3.10.dist-info → faster_eth_utils-5.3.12.dist-info}/METADATA +9 -4
  24. faster_eth_utils-5.3.12.dist-info/RECORD +53 -0
  25. faster_eth_utils-5.3.12.dist-info/top_level.txt +3 -0
  26. faster_eth_utils__mypyc.cp39-win_amd64.pyd +0 -0
  27. 99c07adba6ff961eaf3e__mypyc.cp39-win_amd64.pyd +0 -0
  28. faster_eth_utils-5.3.10.dist-info/RECORD +0 -53
  29. faster_eth_utils-5.3.10.dist-info/top_level.txt +0 -3
  30. {faster_eth_utils-5.3.10.dist-info → faster_eth_utils-5.3.12.dist-info}/WHEEL +0 -0
  31. {faster_eth_utils-5.3.10.dist-info → faster_eth_utils-5.3.12.dist-info}/licenses/LICENSE +0 -0
Binary file
faster_eth_utils/abi.py CHANGED
@@ -7,6 +7,7 @@ import re
7
7
  from typing import (
8
8
  Any,
9
9
  Dict,
10
+ Final,
10
11
  Iterable,
11
12
  List,
12
13
  Literal,
@@ -40,6 +41,9 @@ from .crypto import (
40
41
  )
41
42
 
42
43
 
44
+ ABIType = Literal["function", "constructor", "fallback", "receive", "event", "error"]
45
+
46
+
43
47
  def _align_abi_input(
44
48
  arg_abi: ABIComponent, normalized_arg: Any
45
49
  ) -> Union[Any, Tuple[Any, ...]]:
@@ -278,6 +282,16 @@ def filter_abi_by_name(abi_name: str, contract_abi: ABI) -> Sequence[ABIElement]
278
282
  ]
279
283
 
280
284
 
285
+ __ABI_TYPE_LITERALS: Final = {
286
+ Literal["function"]: "function",
287
+ Literal["constructor"]: "constructor",
288
+ Literal["fallback"]: "fallback",
289
+ Literal["receive"]: "receive",
290
+ Literal["event"]: "event",
291
+ Literal["error"]: "error",
292
+ }
293
+
294
+
281
295
  @overload
282
296
  def filter_abi_by_type(
283
297
  abi_type: Literal["function"],
@@ -327,9 +341,7 @@ def filter_abi_by_type(
327
341
 
328
342
 
329
343
  def filter_abi_by_type(
330
- abi_type: Literal[
331
- "function", "constructor", "fallback", "receive", "event", "error"
332
- ],
344
+ abi_type: ABIType,
333
345
  contract_abi: ABI,
334
346
  ) -> Union[
335
347
  List[ABIFunction], List[ABIConstructor], List[ABIFallback], List[ABIReceive], List[ABIEvent], List[ABIError]
@@ -361,20 +373,12 @@ ABIEvent, ABIError]]`
361
373
  [{'type': 'function', 'name': 'myFunction', 'inputs': [], 'outputs': []}, \
362
374
  {'type': 'function', 'name': 'myFunction2', 'inputs': [], 'outputs': []}]
363
375
  """
364
- if abi_type == Literal["function"] or abi_type == "function":
365
- return [abi for abi in contract_abi if abi["type"] == "function"]
366
- elif abi_type == Literal["constructor"] or abi_type == "constructor":
367
- return [abi for abi in contract_abi if abi["type"] == "constructor"]
368
- elif abi_type == Literal["fallback"] or abi_type == "fallback":
369
- return [abi for abi in contract_abi if abi["type"] == "fallback"]
370
- elif abi_type == Literal["receive"] or abi_type == "receive":
371
- return [abi for abi in contract_abi if abi["type"] == "receive"]
372
- elif abi_type == Literal["event"] or abi_type == "event":
373
- return [abi for abi in contract_abi if abi["type"] == "event"]
374
- elif abi_type == Literal["error"] or abi_type == "error":
375
- return [abi for abi in contract_abi if abi["type"] == "error"]
376
- else:
376
+ if abi_type in ("function", "constructor", "fallback", "receive", "event", "error"):
377
+ return [abi for abi in contract_abi if abi["type"] == abi_type] # type: ignore [return-value]
378
+ abi_type_string: Optional[ABIType] = __ABI_TYPE_LITERALS.get(abi_type) # type: ignore [call-overload]
379
+ if abi_type_string is None:
377
380
  raise ValueError(f"Unsupported ABI type: {abi_type}")
381
+ return [abi for abi in contract_abi if abi["type"] == abi_type_string] # type: ignore [return-value]
378
382
 
379
383
 
380
384
  def get_all_function_abis(contract_abi: ABI) -> Sequence[ABIFunction]:
Binary file
@@ -4,6 +4,7 @@ from typing import (
4
4
  Dict,
5
5
  Generator,
6
6
  List,
7
+ Mapping,
7
8
  Sequence,
8
9
  Tuple,
9
10
  TypeVar,
@@ -50,9 +51,9 @@ def apply_formatter_at_index(
50
51
  f"Need: {at_index + 1}"
51
52
  ) from None
52
53
 
53
- yield from value[:at_index]
54
+ yield from cast(Sequence[TOther], value[:at_index])
54
55
  yield formatter(cast(TArg, item))
55
- yield from value[at_index + 1 :]
56
+ yield from cast(Sequence[TOther], value[at_index + 1 :])
56
57
 
57
58
 
58
59
  def combine_argument_formatters(*formatters: Callable[..., Any]) -> Formatters:
@@ -80,18 +81,20 @@ def combine_argument_formatters(*formatters: Callable[..., Any]) -> Formatters:
80
81
  def apply_formatters_to_sequence(
81
82
  formatters: List[Callable[[Any], TReturn]], sequence: Sequence[Any]
82
83
  ) -> Generator[TReturn, None, None]:
83
- if len(formatters) == len(sequence):
84
+ num_formatters = len(formatters)
85
+ num_items = len(sequence)
86
+ if num_formatters == num_items:
84
87
  for formatter, item in zip(formatters, sequence):
85
88
  yield formatter(item)
86
- elif len(formatters) > len(sequence):
89
+ elif num_formatters > num_items:
87
90
  raise IndexError(
88
- f"Too many formatters for sequence: {len(formatters)} formatters for "
89
- f"{repr(sequence)}"
91
+ f"Too many formatters for sequence: {num_formatters} formatters for "
92
+ f"{sequence!r}"
90
93
  )
91
94
  else:
92
95
  raise IndexError(
93
- f"Too few formatters for sequence: {len(formatters)} formatters for "
94
- f"{repr(sequence)}"
96
+ f"Too few formatters for sequence: {num_formatters} formatters for "
97
+ f"{sequence!r}"
95
98
  )
96
99
 
97
100
 
@@ -105,8 +108,8 @@ def apply_formatter_if(
105
108
  condition: Callable[[TArg], bool], formatter: Callable[[TArg], TReturn], value: TArg
106
109
  ) -> Union[TArg, TReturn]: ...
107
110
 
108
- def apply_formatter_if(
109
- condition: Union[Callable[[TArg], TypeGuard[TOther]], Callable[[Any], TypeGuard[TOther]], Callable[[TArg], bool]],
111
+ def apply_formatter_if( # type: ignore [misc]
112
+ condition: Union[Callable[[TArg], TypeGuard[TOther]], Callable[[TArg], bool]],
110
113
  formatter: Union[Callable[[TOther], TReturn], Callable[[TArg], TReturn]],
111
114
  value: TArg,
112
115
  ) -> Union[TArg, TReturn]:
@@ -116,12 +119,11 @@ def apply_formatter_if(
116
119
  return value
117
120
 
118
121
 
119
- @to_dict
120
122
  def apply_formatters_to_dict(
121
123
  formatters: Dict[Any, Any],
122
124
  value: Union[Dict[Any, Any], CamelModel],
123
125
  unaliased: bool = False,
124
- ) -> Generator[Tuple[Any, Any], None, None]:
126
+ ) -> Dict[Any, Any]:
125
127
  """
126
128
  Apply formatters to a dictionary of values. If the value is a pydantic model,
127
129
  it will be serialized to a dictionary first, taking into account the
@@ -136,22 +138,24 @@ def apply_formatters_to_dict(
136
138
  if isinstance(value, CamelModel):
137
139
  value = value.model_dump(by_alias=not unaliased)
138
140
 
139
- for key, item in value.items():
140
- if key in formatters:
141
- try:
142
- yield key, formatters[key](item)
143
- except ValueError as exc:
144
- new_error_message = (
145
- f"Could not format invalid value {repr(item)} as field {repr(key)}"
146
- )
147
- raise ValueError(new_error_message) from exc
148
- except TypeError as exc:
149
- new_error_message = (
150
- f"Could not format invalid type {repr(item)} as field {repr(key)}"
151
- )
152
- raise TypeError(new_error_message) from exc
153
- else:
154
- yield key, item
141
+ def get_value(key: Any, item: Any) -> Any:
142
+ if key not in formatters:
143
+ return item
144
+ try:
145
+ return formatters[key](item)
146
+ except ValueError as exc:
147
+ raise ValueError(
148
+ f"Could not format invalid value {repr(item)} as field {repr(key)}"
149
+ ) from exc
150
+ except TypeError as exc:
151
+ raise TypeError(
152
+ f"Could not format invalid type {repr(item)} as field {repr(key)}"
153
+ ) from exc
154
+
155
+ return {
156
+ key: get_value(key, item) if key in formatters else key
157
+ for key, item in value.items()
158
+ }
155
159
 
156
160
 
157
161
  @return_arg_type(1)
@@ -175,10 +179,9 @@ def apply_one_of_formatters(
175
179
  )
176
180
 
177
181
 
178
- @to_dict
179
182
  def apply_key_map(
180
- key_mappings: Dict[Any, Any], value: Dict[Any, Any]
181
- ) -> Generator[Tuple[Any, Any], None, None]:
183
+ key_mappings: Dict[Any, Any], value: Mapping[Any, Any]
184
+ ) -> Dict[Any, Any]:
182
185
  key_conflicts = (
183
186
  set(value.keys())
184
187
  .difference(key_mappings.keys())
@@ -189,8 +192,7 @@ def apply_key_map(
189
192
  f"Could not apply key map due to conflicting key(s): {key_conflicts}"
190
193
  )
191
194
 
192
- for key, item in value.items():
193
- if key in key_mappings:
194
- yield key_mappings[key], item
195
- else:
196
- yield key, item
195
+ def get_key(key: Any) -> Any:
196
+ return key_mappings[key] if key in key_mappings else key
197
+
198
+ return {get_key(key): item for key, item in value.items()}
Binary file
Binary file
@@ -1,4 +1,11 @@
1
- class ValidationError(Exception):
1
+ """
2
+ faster-eth-utils exceptions always inherit from eth-utils exceptions, so porting to faster-eth-utils
3
+ does not require any change to your existing exception handlers. They will continue to work.
4
+ """
5
+
6
+ import eth_utils.exceptions
7
+
8
+ class ValidationError(eth_utils.exceptions.ValidationError):
2
9
  """
3
10
  Raised when something does not pass a validation check.
4
11
  """
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: faster-eth-utils
3
- Version: 5.3.10
3
+ Version: 5.3.12
4
4
  Summary: A 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/eth-utils
6
6
  Author: The Ethereum Foundation
@@ -24,6 +24,7 @@ License-File: LICENSE
24
24
  Requires-Dist: cchecksum>=0.0.3
25
25
  Requires-Dist: eth-hash>=0.3.1
26
26
  Requires-Dist: eth-typing>=5.0.0
27
+ Requires-Dist: eth-utils<6,>=5.2.0
27
28
  Requires-Dist: toolz>0.8.2; implementation_name == "pypy"
28
29
  Requires-Dist: cytoolz>=0.10.1; implementation_name == "cpython"
29
30
  Requires-Dist: pydantic<3,>=2.0.0
@@ -40,7 +41,7 @@ Requires-Dist: wheel; extra == "dev"
40
41
  Requires-Dist: sphinx>=6.0.0; extra == "dev"
41
42
  Requires-Dist: sphinx-autobuild>=2021.3.14; extra == "dev"
42
43
  Requires-Dist: sphinx_rtd_theme>=1.0.0; extra == "dev"
43
- Requires-Dist: towncrier<25,>=24; extra == "dev"
44
+ Requires-Dist: towncrier<26,>=24; extra == "dev"
44
45
  Requires-Dist: hypothesis>=4.43.0; extra == "dev"
45
46
  Requires-Dist: mypy==1.18.2; extra == "dev"
46
47
  Requires-Dist: pytest>=7.0.0; extra == "dev"
@@ -50,7 +51,7 @@ Provides-Extra: docs
50
51
  Requires-Dist: sphinx>=6.0.0; extra == "docs"
51
52
  Requires-Dist: sphinx-autobuild>=2021.3.14; extra == "docs"
52
53
  Requires-Dist: sphinx_rtd_theme>=1.0.0; extra == "docs"
53
- Requires-Dist: towncrier<25,>=24; extra == "docs"
54
+ Requires-Dist: towncrier<26,>=24; extra == "docs"
54
55
  Provides-Extra: test
55
56
  Requires-Dist: hypothesis>=4.43.0; extra == "test"
56
57
  Requires-Dist: mypy==1.18.2; extra == "test"
@@ -79,10 +80,14 @@ Dynamic: summary
79
80
 
80
81
  ##### 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/).
81
82
 
82
- ##### You can find the compiled C code on faster-eth-utils [master](https://github.com/BobTheBuidler/eth-utils/tree/master) branch.
83
+ ##### Starting in [v5.3.11](https://github.com/BobTheBuidler/faster-eth-utils/releases/tag/v5.3.11), all `faster-eth-utils` Exception classes inherit from the matching Exception class in `eth-utils`, so porting to `faster-eth-utils` does not require any change to your existing exception handlers. All existing exception handling in your codebase will continue to work as it did when originaly implemented.
83
84
 
84
85
  ##### 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).
85
86
 
87
+ ##### You can find the compiled C code and header files in the [build](https://github.com/BobTheBuidler/eth-utils/tree/master/build) directory.
88
+
89
+ ###### You may also be interested in: [faster-web3.py](https://github.com/BobTheBuidler/faster-web3.py/), [faster-eth-abi](https://github.com/BobTheBuidler/faster-eth-abi/), and [faster-hexbytes](https://github.com/BobTheBuidler/faster-hexbytes/)
90
+
86
91
  ##### The original eth-utils readme is below:
87
92
 
88
93
  # Ethereum Utilities
@@ -0,0 +1,53 @@
1
+ faster_eth_utils__mypyc.cp39-win_amd64.pyd,sha256=B5ycSxvqdCYTgG_i72HmzZMrWQBoEZA9y0zkyGyozpY,430592
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.cp39-win_amd64.pyd,sha256=ev5rECXXYfTFfljGf2Wp0UPKNaYqch74WeafnOjm4mE,10752
5
+ faster_eth_utils/abi.py,sha256=Zbp4hMfcsEs9_g2BbTdvfebQXvOgW5XTeuWPrmZmmXk,27251
6
+ faster_eth_utils/address.cp39-win_amd64.pyd,sha256=2e6mJmDQDJSzV1we5Y6nB4vZGdNKYulcT-z34vbf2Ro,10752
7
+ faster_eth_utils/address.py,sha256=G9HKC4rFnPFF94Dyae5NmOICgjubl0ZPlNJWZGEOCNg,3825
8
+ faster_eth_utils/applicators.cp39-win_amd64.pyd,sha256=9IKsGbySU5iX80KTQYM_njD3Hw9ByDy0J7sNbxoSnSk,10752
9
+ faster_eth_utils/applicators.py,sha256=3g7t-8Fzy4flmzKN5w6joLhCpZfQlgcuX-VtIJMbJ8o,6047
10
+ faster_eth_utils/conversions.cp39-win_amd64.pyd,sha256=PYHxI-YpN9-zySx_y3PVNdH5odiEFJaAPDd2T5pmiiY,10752
11
+ faster_eth_utils/conversions.py,sha256=IPUPtXHUyzBYc13c2IY8ZhM4MmA2BBaVnDihvDIApSY,5856
12
+ faster_eth_utils/crypto.cp39-win_amd64.pyd,sha256=YNrRJ1a9lZKEEcBKBExcWfqEfJZ2nCOPDCmn7QFLDt0,10752
13
+ faster_eth_utils/crypto.py,sha256=X_l4B_ZBNHaulcInSVpdBG24xqjQ1_W9t4wYvi9Btw0,416
14
+ faster_eth_utils/currency.cp39-win_amd64.pyd,sha256=CFqiZEajaHTCcYbaApiSg8vSxeEJIUaVqBtsK8t2RhU,10752
15
+ faster_eth_utils/currency.py,sha256=8oLxDv52IDJ2SK5q8C1zBdPXKHHBi7v_44sdbv3VJVw,4291
16
+ faster_eth_utils/debug.cp39-win_amd64.pyd,sha256=pLAvaCrBDPyxJhH39mCv8Erhr4dwd2o7gjjo0IXToss,10752
17
+ faster_eth_utils/debug.py,sha256=V3fN7-gz246Tcf_Zp99QK3uDzW22odPpAl_bShIZhZs,519
18
+ faster_eth_utils/decorators.cp39-win_amd64.pyd,sha256=hM3Bx6xBgr3mqfdfOWxEKPEk5A9-eVP22jUv6ErAU3I,10752
19
+ faster_eth_utils/decorators.py,sha256=h9v97vwtqgtPVkcBMtTk1MNYk4BY7QH53GC3c_Wc-OQ,2224
20
+ faster_eth_utils/encoding.cp39-win_amd64.pyd,sha256=b__eJghepqBkZOf7o9A5lDPvwhggZYnLNr5MO0c6LJA,10752
21
+ faster_eth_utils/encoding.py,sha256=8_mWHVwdNL4Y1R-7N6q-N9R3N-yKtZ0arHaq8CuuCMM,205
22
+ faster_eth_utils/exceptions.cp39-win_amd64.pyd,sha256=HXOSGsrB-gcBh2rslpzKmUZPWYRmNCFq4EF617T7XeQ,10752
23
+ faster_eth_utils/exceptions.py,sha256=denVYkJGaikAbaHY62qcIJTFCQS9T55s60XKklihyLA,380
24
+ faster_eth_utils/functional.cp39-win_amd64.pyd,sha256=aIayElwv76HSW61VWUVlGfMR34eJp6Inqx9n19Wm-sQ,10752
25
+ faster_eth_utils/functional.py,sha256=MWexxiZH6yqg1MMGsTRHuC0SxLVi3kZQKBAgtq6wrqo,2538
26
+ faster_eth_utils/hexadecimal.cp39-win_amd64.pyd,sha256=DMPohDsvp8hPiX-0EsRkU1LBH0dhAcstTPJGz0qo-i0,10752
27
+ faster_eth_utils/hexadecimal.py,sha256=bnWHo68ajygzhbLJfVOmqBlgifXfkBX8QvlHbigk9KU,2162
28
+ faster_eth_utils/humanize.cp39-win_amd64.pyd,sha256=02HE0ggolfQeU2kxPLZEAyQRnvKd1vKKpmnHQ3Oo5IU,10752
29
+ faster_eth_utils/humanize.py,sha256=GA0N9yfbnQiYuP3CnT6nO6YLFs4GT1e6EskRsH9xL4s,4883
30
+ faster_eth_utils/logging.py,sha256=fYULygZhlrLaXr5-Ao589w7wiNLLsvC7JWblR5E9oy0,4735
31
+ faster_eth_utils/module_loading.cp39-win_amd64.pyd,sha256=xMB2iN-r1yo3KteX_A8wgrtWdWEsjvNb508x_49BVXI,10752
32
+ faster_eth_utils/module_loading.py,sha256=gGZ0n4zezi2zxMRuEU0cf7EYW1lXpS_a1aPvP1KFkXA,873
33
+ faster_eth_utils/network.cp39-win_amd64.pyd,sha256=XpPFVgjsQb5G2Cv-GiKDN7jZYX8VTtPw8t7N5ptPL6s,10752
34
+ faster_eth_utils/network.py,sha256=MVyNw-DQGoaMvKXedWbOzESSfT2x5HPtsxaImWLhXd4,2370
35
+ faster_eth_utils/numeric.cp39-win_amd64.pyd,sha256=pOv0CEqe7wFCTCT1N9fA4d-QiHgYkzKR_o2I3h-kbhU,10752
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.cp39-win_amd64.pyd,sha256=yLx8KPrTImkN2d8fWarqW_Bm9Q3PL7H_qg5Z_7tkoMk,10752
40
+ faster_eth_utils/toolz.py,sha256=P3s23LOEFRY6XQ8i_ChnA9hf-PSi-Oe-pv0jzsj7DjY,4494
41
+ faster_eth_utils/types.cp39-win_amd64.pyd,sha256=P54QqiDaEjdN6ivqLTkPm3abhaU-adWFkEYN7PBUsAs,10752
42
+ faster_eth_utils/types.py,sha256=93qhgOdd3t9oVYptsgddUV42LEbic80wfqpevLwrIWI,1587
43
+ faster_eth_utils/units.cp39-win_amd64.pyd,sha256=Mxgr_bE_IZZx5i3UrLWrHyc8ukQOZkrrxkWzaSWtLzw,10752
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=l6kKdgMwrK4nqMz9r6AoNMIPJKfSI5bNxKuQzgq2sRQ,7707
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.12.dist-info/licenses/LICENSE,sha256=VSsrPEmF7tY2P84NOLM4ZsJDoEIjpf16GFwU5-py2n0,1116
50
+ faster_eth_utils-5.3.12.dist-info/METADATA,sha256=T5Deq7_RncPKDKqsV1Wsm7brc-89GBl7uTZFAIBdD30,7977
51
+ faster_eth_utils-5.3.12.dist-info/WHEEL,sha256=XkFE14KmFh7mutkkb-qn_ueuH2lwfT8rLdfc5xpQ7wE,99
52
+ faster_eth_utils-5.3.12.dist-info/top_level.txt,sha256=wTH6UCItCCvEEiJ9EiOrm0Kn4p4xhB7VdmmTHktoo9Y,51
53
+ faster_eth_utils-5.3.12.dist-info/RECORD,,
@@ -0,0 +1,3 @@
1
+ eth_utils
2
+ faster_eth_utils
3
+ faster_eth_utils__mypyc
@@ -1,53 +0,0 @@
1
- 99c07adba6ff961eaf3e__mypyc.cp39-win_amd64.pyd,sha256=T-p_919K6J-n6EOU0vpUUxCR5JWN_ZK6Yzj7fMQVjZE,434688
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.cp39-win_amd64.pyd,sha256=l1ucnWGT1oQblMGcorj3V-IOIasP_UO1QPsbhqUJweI,10752
5
- faster_eth_utils/abi.py,sha256=3VWTb9hWO_bxHHdbz4-rDZNN_gYmdFv7CHKo6N6bOq4,27387
6
- faster_eth_utils/address.cp39-win_amd64.pyd,sha256=bVhoBnAtBhZvopBb8d2b1akuKdyrv9sn5XE3LswWyVA,10752
7
- faster_eth_utils/address.py,sha256=G9HKC4rFnPFF94Dyae5NmOICgjubl0ZPlNJWZGEOCNg,3825
8
- faster_eth_utils/applicators.cp39-win_amd64.pyd,sha256=WmrNMqBVeR_n50HV7K2ct-AsORI5lbHrRRlNKNkVH1A,10752
9
- faster_eth_utils/applicators.py,sha256=kTklp5yH0a4SWqnkEY3g5IkQTU6k4OFqu3vBgVZR1QY,6038
10
- faster_eth_utils/conversions.cp39-win_amd64.pyd,sha256=gOk-tSOEh7Ka1u8BngcT6nHZpohT_QC6p3_AGvV6MB0,10752
11
- faster_eth_utils/conversions.py,sha256=IPUPtXHUyzBYc13c2IY8ZhM4MmA2BBaVnDihvDIApSY,5856
12
- faster_eth_utils/crypto.cp39-win_amd64.pyd,sha256=5_kFFLYqaDPj_Za9Xw9QTc7J_tUe8q0OE6A4aeVnOtI,10752
13
- faster_eth_utils/crypto.py,sha256=X_l4B_ZBNHaulcInSVpdBG24xqjQ1_W9t4wYvi9Btw0,416
14
- faster_eth_utils/currency.cp39-win_amd64.pyd,sha256=1ryp7I8UYQvGXP8ILe6A-q3GVeFLjDiQDt3MoQ0Clf8,10752
15
- faster_eth_utils/currency.py,sha256=8oLxDv52IDJ2SK5q8C1zBdPXKHHBi7v_44sdbv3VJVw,4291
16
- faster_eth_utils/debug.cp39-win_amd64.pyd,sha256=2VFVvQNxiOAlMDPkn8KBqf1Xd72dzXt8m6I0Oxba8Xw,10752
17
- faster_eth_utils/debug.py,sha256=V3fN7-gz246Tcf_Zp99QK3uDzW22odPpAl_bShIZhZs,519
18
- faster_eth_utils/decorators.cp39-win_amd64.pyd,sha256=HUbVxq8oeilqaZraxF50xGTGAjC66mWduvMlbqwWXm4,10752
19
- faster_eth_utils/decorators.py,sha256=h9v97vwtqgtPVkcBMtTk1MNYk4BY7QH53GC3c_Wc-OQ,2224
20
- faster_eth_utils/encoding.cp39-win_amd64.pyd,sha256=xh3jtyvgMxRRBiru3AX50OOCFv_H_Ccbe3ByN6CoQKs,10752
21
- faster_eth_utils/encoding.py,sha256=8_mWHVwdNL4Y1R-7N6q-N9R3N-yKtZ0arHaq8CuuCMM,205
22
- faster_eth_utils/exceptions.cp39-win_amd64.pyd,sha256=79x44pvnRYiFVm8z2ow-vObL7JZ1n0joFXy-G0_-t_s,10752
23
- faster_eth_utils/exceptions.py,sha256=BFZxGWQcQGmeYZHn-valoA_1M0Y7Ub43-L9CndFewGc,114
24
- faster_eth_utils/functional.cp39-win_amd64.pyd,sha256=-bOJIt4BF0-0OADcmTgPMu5RPsH2Fckvd8GNhRuPW6Y,10752
25
- faster_eth_utils/functional.py,sha256=MWexxiZH6yqg1MMGsTRHuC0SxLVi3kZQKBAgtq6wrqo,2538
26
- faster_eth_utils/hexadecimal.cp39-win_amd64.pyd,sha256=rsl2pPvFuS4RN2kH2rKvb1yf3zb2kRUcW_xCOvRynJM,10752
27
- faster_eth_utils/hexadecimal.py,sha256=bnWHo68ajygzhbLJfVOmqBlgifXfkBX8QvlHbigk9KU,2162
28
- faster_eth_utils/humanize.cp39-win_amd64.pyd,sha256=gKVjT-rh_sZe0few4PQOOPG2ooEWhelPQMI1sIOek4w,10752
29
- faster_eth_utils/humanize.py,sha256=GA0N9yfbnQiYuP3CnT6nO6YLFs4GT1e6EskRsH9xL4s,4883
30
- faster_eth_utils/logging.py,sha256=fYULygZhlrLaXr5-Ao589w7wiNLLsvC7JWblR5E9oy0,4735
31
- faster_eth_utils/module_loading.cp39-win_amd64.pyd,sha256=jXi8yFolgh0_l0xg2GhhyEJhg9cL048snKSB2VgOook,10752
32
- faster_eth_utils/module_loading.py,sha256=gGZ0n4zezi2zxMRuEU0cf7EYW1lXpS_a1aPvP1KFkXA,873
33
- faster_eth_utils/network.cp39-win_amd64.pyd,sha256=xVYAP4etwAZE0S-Qirdaap9TURYjwG13Orc2bsFZDgc,10752
34
- faster_eth_utils/network.py,sha256=MVyNw-DQGoaMvKXedWbOzESSfT2x5HPtsxaImWLhXd4,2370
35
- faster_eth_utils/numeric.cp39-win_amd64.pyd,sha256=-UNf3pBxHBir23FnM_3CZLBk2epwMG5dFcEtY5zZsRs,10752
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.cp39-win_amd64.pyd,sha256=H71wQFW_P0gbJFbTeOILXY0F3nOircyx87w3_FL7NOk,10752
40
- faster_eth_utils/toolz.py,sha256=P3s23LOEFRY6XQ8i_ChnA9hf-PSi-Oe-pv0jzsj7DjY,4494
41
- faster_eth_utils/types.cp39-win_amd64.pyd,sha256=J9a78egiCrhrkqeHd_DIDmGg6Laqfm3xbQ83W3hdogQ,10752
42
- faster_eth_utils/types.py,sha256=93qhgOdd3t9oVYptsgddUV42LEbic80wfqpevLwrIWI,1587
43
- faster_eth_utils/units.cp39-win_amd64.pyd,sha256=pqn6pXjDht1oiQlQSlMfX_jglhmQa4nvCR4MvWsMw7A,10752
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=l6kKdgMwrK4nqMz9r6AoNMIPJKfSI5bNxKuQzgq2sRQ,7707
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.10.dist-info/licenses/LICENSE,sha256=VSsrPEmF7tY2P84NOLM4ZsJDoEIjpf16GFwU5-py2n0,1116
50
- faster_eth_utils-5.3.10.dist-info/METADATA,sha256=1ZkDvxSFhyI1m3v7xFxJZIhmdfPaxu7IURFwo_xONkQ,7269
51
- faster_eth_utils-5.3.10.dist-info/WHEEL,sha256=XkFE14KmFh7mutkkb-qn_ueuH2lwfT8rLdfc5xpQ7wE,99
52
- faster_eth_utils-5.3.10.dist-info/top_level.txt,sha256=8eOy3WlvVLCcmwPnl2UMylYQNmrXz76p9L_TH-NYSSM,55
53
- faster_eth_utils-5.3.10.dist-info/RECORD,,
@@ -1,3 +0,0 @@
1
- 99c07adba6ff961eaf3e__mypyc
2
- eth_utils
3
- faster_eth_utils