faster-eth-utils 5.3.11__cp314-cp314t-macosx_11_0_arm64.whl → 5.3.13__cp314-cp314t-macosx_11_0_arm64.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 (27) hide show
  1. faster_eth_utils/abi.cpython-314t-darwin.so +0 -0
  2. faster_eth_utils/address.cpython-314t-darwin.so +0 -0
  3. faster_eth_utils/applicators.cpython-314t-darwin.so +0 -0
  4. faster_eth_utils/applicators.py +8 -10
  5. faster_eth_utils/conversions.cpython-314t-darwin.so +0 -0
  6. faster_eth_utils/crypto.cpython-314t-darwin.so +0 -0
  7. faster_eth_utils/currency.cpython-314t-darwin.so +0 -0
  8. faster_eth_utils/debug.cpython-314t-darwin.so +0 -0
  9. faster_eth_utils/decorators.cpython-314t-darwin.so +0 -0
  10. faster_eth_utils/encoding.cpython-314t-darwin.so +0 -0
  11. faster_eth_utils/exceptions.cpython-314t-darwin.so +0 -0
  12. faster_eth_utils/functional.cpython-314t-darwin.so +0 -0
  13. faster_eth_utils/hexadecimal.cpython-314t-darwin.so +0 -0
  14. faster_eth_utils/humanize.cpython-314t-darwin.so +0 -0
  15. faster_eth_utils/module_loading.cpython-314t-darwin.so +0 -0
  16. faster_eth_utils/network.cpython-314t-darwin.so +0 -0
  17. faster_eth_utils/numeric.cpython-314t-darwin.so +0 -0
  18. faster_eth_utils/toolz.cpython-314t-darwin.so +0 -0
  19. faster_eth_utils/types.cpython-314t-darwin.so +0 -0
  20. faster_eth_utils/units.cpython-314t-darwin.so +0 -0
  21. {faster_eth_utils-5.3.11.dist-info → faster_eth_utils-5.3.13.dist-info}/METADATA +9 -3
  22. faster_eth_utils-5.3.13.dist-info/RECORD +53 -0
  23. faster_eth_utils__mypyc.cpython-314t-darwin.so +0 -0
  24. faster_eth_utils-5.3.11.dist-info/RECORD +0 -53
  25. {faster_eth_utils-5.3.11.dist-info → faster_eth_utils-5.3.13.dist-info}/WHEEL +0 -0
  26. {faster_eth_utils-5.3.11.dist-info → faster_eth_utils-5.3.13.dist-info}/licenses/LICENSE +0 -0
  27. {faster_eth_utils-5.3.11.dist-info → faster_eth_utils-5.3.13.dist-info}/top_level.txt +0 -0
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,
@@ -137,24 +138,21 @@ def apply_formatters_to_dict(
137
138
  if isinstance(value, CamelModel):
138
139
  value = value.model_dump(by_alias=not unaliased)
139
140
 
140
- def get_value(key: Any, item: Any) -> Any:
141
+ def get_value(key: Any, val: Any) -> Any:
141
142
  if key not in formatters:
142
- return item
143
+ return val
143
144
  try:
144
- return formatters[key](item)
145
+ return formatters[key](val)
145
146
  except ValueError as exc:
146
147
  raise ValueError(
147
- f"Could not format invalid value {repr(item)} as field {repr(key)}"
148
+ f"Could not format invalid value {val!r} as field {key!r}"
148
149
  ) from exc
149
150
  except TypeError as exc:
150
151
  raise TypeError(
151
- f"Could not format invalid type {repr(item)} as field {repr(key)}"
152
+ f"Could not format invalid type {val!r} as field {key!r}"
152
153
  ) from exc
153
154
 
154
- return {
155
- key: get_value(key, item) if key in formatters else key
156
- for key, item in value.items()
157
- }
155
+ return {key: get_value(key, val) for key, val in value.items()}
158
156
 
159
157
 
160
158
  @return_arg_type(1)
@@ -179,7 +177,7 @@ def apply_one_of_formatters(
179
177
 
180
178
 
181
179
  def apply_key_map(
182
- key_mappings: Dict[Any, Any], value: Dict[Any, Any]
180
+ key_mappings: Dict[Any, Any], value: Mapping[Any, Any]
183
181
  ) -> Dict[Any, Any]:
184
182
  key_conflicts = (
185
183
  set(value.keys())
@@ -1,11 +1,16 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: faster-eth-utils
3
- Version: 5.3.11
3
+ Version: 5.3.13
4
4
  Summary: A fork of eth-utils: Common utility functions for python code that interacts with Ethereum, implemented in C
5
- Home-page: https://github.com/BobTheBuidler/eth-utils
5
+ Home-page: https://github.com/BobTheBuidler/faster-eth-utils
6
6
  Author: The Ethereum Foundation
7
7
  Author-email: snakecharmers@ethereum.org
8
8
  License: MIT
9
+ Project-URL: Documentation, https://eth-utils.readthedocs.io/en/stable/
10
+ Project-URL: Release Notes, https://github.com/BobTheBuidler/faster-eth-utils/releases
11
+ Project-URL: Issues, https://github.com/BobTheBuidler/faster-eth-utils/issues
12
+ Project-URL: Source, https://github.com/BobTheBuidler/faster-eth-utils
13
+ Project-URL: Original, https://github.com/ethereum/eth-utils
9
14
  Keywords: ethereum
10
15
  Classifier: Intended Audience :: Developers
11
16
  Classifier: License :: OSI Approved :: MIT License
@@ -67,6 +72,7 @@ Dynamic: home-page
67
72
  Dynamic: keywords
68
73
  Dynamic: license
69
74
  Dynamic: license-file
75
+ Dynamic: project-url
70
76
  Dynamic: provides-extra
71
77
  Dynamic: requires-dist
72
78
  Dynamic: requires-python
@@ -84,7 +90,7 @@ Dynamic: summary
84
90
 
85
91
  ##### 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).
86
92
 
87
- ##### You can find the compiled C code on faster-eth-utils [master](https://github.com/BobTheBuidler/eth-utils/tree/master) branch.
93
+ ##### You can find the compiled C code and header files in the [build](https://github.com/BobTheBuidler/eth-utils/tree/master/build) directory.
88
94
 
89
95
  ###### 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
96
 
@@ -0,0 +1,53 @@
1
+ faster_eth_utils__mypyc.cpython-314t-darwin.so,sha256=VTEBoSe43haYbbNKaGS1NuoymVliDO7WKCrKwM1_Khw,1321936
2
+ faster_eth_utils/hexadecimal.py,sha256=bPxUdJse6A3j3vF6KpnvSM2h3eRhgWSWeyicwnLdvHY,2082
3
+ faster_eth_utils/address.py,sha256=IIHlYuIz-F6-mAnRWdsD4uH5l56yVRFMokFQINao9lE,3680
4
+ faster_eth_utils/logging.py,sha256=Gm0B2D7oDPByi-mNCEwLnl3lAU4_TJ4yc6EsOOJA8Rc,4590
5
+ faster_eth_utils/humanize.cpython-314t-darwin.so,sha256=ozJLJc1PfhY96a_moJNmOHjuA-NVXTCJXb3ddWS7KWg,51040
6
+ faster_eth_utils/encoding.cpython-314t-darwin.so,sha256=OyVXRKpHhi6hTwvXq8IN2w-brNKVxyWIp3F-HJQDUkw,51040
7
+ faster_eth_utils/abi.cpython-314t-darwin.so,sha256=2-TNpOWRSFNHZSUN3gQsxRNx5YMJv4uQ0YimWwdy3DE,51000
8
+ faster_eth_utils/module_loading.cpython-314t-darwin.so,sha256=1PJmQ31BUmGESeMdiUuz8s_TWZry9wnLdxaUxu-fnQE,51096
9
+ faster_eth_utils/address.cpython-314t-darwin.so,sha256=04c_tRQCmQeZ7UgXvfuLb-aALfKUmhW_T-s8InS0q7E,51040
10
+ faster_eth_utils/applicators.py,sha256=61XBoTjROcwRslkPyCExOOYb5v7FbVVIIOYfmwgJIBk,5774
11
+ faster_eth_utils/units.py,sha256=jRo8p6trxwuISBnT8kfxTNVyd_TSd5vVY5aiKDefB1U,1757
12
+ faster_eth_utils/encoding.py,sha256=1qfDeuinLZ01XjYgknpm_p9LuWwaYvicYkYI8mS1iMc,199
13
+ faster_eth_utils/conversions.cpython-314t-darwin.so,sha256=kMzYxSrnw6r4SC-Kg1G7-Rh9wZPUWJCyy0--5gS2fi4,51072
14
+ faster_eth_utils/functional.cpython-314t-darwin.so,sha256=nfPuPRfqLMKsHEpEogiqNrekPKkvfN-lVGykti17EDc,51056
15
+ faster_eth_utils/applicators.cpython-314t-darwin.so,sha256=5mHaPjkuZ_IXZ9CKoY0nSKOzxakzahWPWVlXV1IlEwQ,51072
16
+ faster_eth_utils/types.cpython-314t-darwin.so,sha256=Y6hS1UIXZ8I3WnrbM9BtZZlY61dVMx3KREPneF7V0tc,51024
17
+ faster_eth_utils/conversions.py,sha256=t2TEe0WsffqOFDbyQcERTSbHJYpDBWHKd8XPArhLoEE,5665
18
+ faster_eth_utils/numeric.cpython-314t-darwin.so,sha256=mboJmadIPG3KYg7U5bzwZLmRPc2NsuWqnvs_NGGcexY,51040
19
+ faster_eth_utils/network.cpython-314t-darwin.so,sha256=PB3Fr-FgjuhkKgZ5sdl2g9UY1eH4Q-aLV96MKnJ0r8k,51040
20
+ faster_eth_utils/currency.cpython-314t-darwin.so,sha256=Klx7QHe2U2FM2flBM4fRGo4mVYs5ec4HFNXb-F6bj9M,51040
21
+ faster_eth_utils/__init__.py,sha256=hW-A_fjyQ76crTKwuxxSbvNzvPfW27dSlzhtOkseymg,2762
22
+ faster_eth_utils/types.py,sha256=-RDPzkoNhkp3dpDNK9iKzGmSQawwZ6wJ4exur0E_BuY,1519
23
+ faster_eth_utils/humanize.py,sha256=bCxXyx73NuVIDjRnpPZs7lybfrun-llC3ITy-0zZSns,4682
24
+ faster_eth_utils/pydantic.py,sha256=za0WJGWkjYQkRnMbEke7ueyhDt-kuqFmCq0Utaji46g,3393
25
+ faster_eth_utils/toolz.cpython-314t-darwin.so,sha256=ZJ5IVDmVfjUMrS3POEiu3A68uYjfSLcycqx_2ycjnZ4,51024
26
+ faster_eth_utils/functional.py,sha256=nJTxE4_HDci0chos5mQdy05pJ8o7n0wx_o7_WCro2gI,2449
27
+ faster_eth_utils/crypto.py,sha256=EQgupom_TnURbLNXodwbJoKB-mHyxgOTvo8EjnSzdxw,395
28
+ faster_eth_utils/debug.py,sha256=0Z-tNOqgQJunS4uHeSCCH1LWLoijlH34MBh6NRrrDrk,499
29
+ faster_eth_utils/exceptions.cpython-314t-darwin.so,sha256=EwE95rrY0Mahipg_E4Ho4agmzsbQmE6fUzRnB6KUQ2M,51056
30
+ faster_eth_utils/crypto.cpython-314t-darwin.so,sha256=dQXnPZAY5x0SXP5mBhCApX5-hHunx9EES98XMdxarbw,51024
31
+ faster_eth_utils/debug.cpython-314t-darwin.so,sha256=P0A2ooztbA074amP6pmspEW5TWs9_Uru29jwqAUvBrM,51024
32
+ faster_eth_utils/numeric.py,sha256=RrXdXI-bhhkEsz3aBtxHuGlc_2ZJvUGpvMc47wx408Y,1190
33
+ faster_eth_utils/network.py,sha256=O3yTtA93YyyZ6Obkusr_IbbcZ6upkCewN6EsAcF0Npc,2278
34
+ faster_eth_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
+ faster_eth_utils/abi.py,sha256=3pAqpKXMOcOLCD4uUUVfxBcM9H1K311dpd1Zj0Qi21g,26404
36
+ faster_eth_utils/exceptions.py,sha256=7Cjxewj4g95RxNvjNqaB2w3HGk6068V82ppCHS_S-Y0,369
37
+ faster_eth_utils/hexadecimal.cpython-314t-darwin.so,sha256=0LVarVESzbFk4767Qc5KXPf9sKnWqyKST1E5iVbEfYE,51072
38
+ faster_eth_utils/currency.py,sha256=01YVV2f2GL4830jfSjnC4XhLQjTNQB-5y7vbGzaMWbM,4150
39
+ faster_eth_utils/module_loading.py,sha256=DCLM4dEh1gqr8Ny-FWwD-_pINqeHzbLSupz4ZIpCCAw,842
40
+ faster_eth_utils/__main__.py,sha256=mH37e49q7_A0-q1ymqkq1QyYABbQHVmXeuSKIBSahO8,86
41
+ faster_eth_utils/toolz.py,sha256=1QQY-aMbZrEgJsuqR0Ajsa32C_cXrQquzViw7OkxNLU,4410
42
+ faster_eth_utils/decorators.cpython-314t-darwin.so,sha256=6Vj0xmzNPoBENScZjxcUR_qgbSS6byEv4d8_GC6-pv8,51056
43
+ faster_eth_utils/units.cpython-314t-darwin.so,sha256=vNwk_M73cJLlYAbYsBtvIIqpneSyqVxzFDZ38ABAE2E,51024
44
+ faster_eth_utils/decorators.py,sha256=BdAz-imQIf0TlBm7Di7T05o3IC6ei-xJc7FgIOqqAyE,2145
45
+ faster_eth_utils/curried/__init__.py,sha256=x_nPjvTwmXeEl5jV86RRUvudu6ks1kMUxZfbjNuGx8Y,7407
46
+ faster_eth_utils/typing/misc.py,sha256=4N5raYXFAeRGpmch6qgHrtYNCDxCJM5XtAAsJ1FSzzU,190
47
+ faster_eth_utils/typing/__init__.py,sha256=84PxIxCvEHtBb-Ik6qnGvXH4alaWbamr_zDbtlbJh3A,325
48
+ faster_eth_utils/__json/eth_networks.json,sha256=0S8HoWD6RTR6Hc0uQdQl2VHtopytIYl5NiDAzpuskBs,414773
49
+ faster_eth_utils-5.3.13.dist-info/RECORD,,
50
+ faster_eth_utils-5.3.13.dist-info/WHEEL,sha256=26nyvDx4qlf6NyRSh1NSNrXJDCQeX0hnJ7EH1bB1egM,137
51
+ faster_eth_utils-5.3.13.dist-info/top_level.txt,sha256=wTH6UCItCCvEEiJ9EiOrm0Kn4p4xhB7VdmmTHktoo9Y,51
52
+ faster_eth_utils-5.3.13.dist-info/METADATA,sha256=s6MKNWkp8Bo9yKciC5RajtnB6uiZCwTJmcvTVT2Ci9I,8197
53
+ faster_eth_utils-5.3.13.dist-info/licenses/LICENSE,sha256=STqznQ6A8OeJylPrTA7dlsMtH0isQQybRlnDZOKGVrM,1095
@@ -1,53 +0,0 @@
1
- faster_eth_utils__mypyc.cpython-314t-darwin.so,sha256=LwTJKvSJ4AL8JXHsXDc7j0Ok5ZqF8G6do_UKZbRB76s,1321584
2
- faster_eth_utils/hexadecimal.py,sha256=bPxUdJse6A3j3vF6KpnvSM2h3eRhgWSWeyicwnLdvHY,2082
3
- faster_eth_utils/address.py,sha256=IIHlYuIz-F6-mAnRWdsD4uH5l56yVRFMokFQINao9lE,3680
4
- faster_eth_utils/logging.py,sha256=Gm0B2D7oDPByi-mNCEwLnl3lAU4_TJ4yc6EsOOJA8Rc,4590
5
- faster_eth_utils/humanize.cpython-314t-darwin.so,sha256=aW-pPOSuMqUc1uV_OeQ0nH51fOjiqz3lSqRV1sM8yzQ,51040
6
- faster_eth_utils/encoding.cpython-314t-darwin.so,sha256=nUoYiw7iNuaKVpnRH_SznZ-L-mcdfdxVPdqFN6vvHn8,51040
7
- faster_eth_utils/abi.cpython-314t-darwin.so,sha256=lRBDIVX6vvCtiHSAbjgUZfQ6s9HtU9tjkWYt6eruNsU,51000
8
- faster_eth_utils/module_loading.cpython-314t-darwin.so,sha256=0CCMapCiLIuz3wVxlJvQB889XeXgMdaYrlkdoNS-axo,51096
9
- faster_eth_utils/address.cpython-314t-darwin.so,sha256=5bnyIFqwND2DiVF1a43h0pXjq8I-MawIG-KS9Rotoeg,51040
10
- faster_eth_utils/applicators.py,sha256=LEffyul-ZdsAhNB7H7E6e-J4fXw7bUt0NxrkjZWMHkA,5833
11
- faster_eth_utils/units.py,sha256=jRo8p6trxwuISBnT8kfxTNVyd_TSd5vVY5aiKDefB1U,1757
12
- faster_eth_utils/encoding.py,sha256=1qfDeuinLZ01XjYgknpm_p9LuWwaYvicYkYI8mS1iMc,199
13
- faster_eth_utils/conversions.cpython-314t-darwin.so,sha256=k-h55SvvtpIU2wtXz68ZeUKczVbSuMT9xzOtvv5i-NE,51072
14
- faster_eth_utils/functional.cpython-314t-darwin.so,sha256=PWJ9iguUtGk0dos9fi_b4rYxRnN7W9a3Ts80tFBiOGM,51056
15
- faster_eth_utils/applicators.cpython-314t-darwin.so,sha256=scyG_iW8gTRow49whivvVHQhGSoTej0FBbrssAu8KYQ,51072
16
- faster_eth_utils/types.cpython-314t-darwin.so,sha256=3GuPiqXSN4tA6KrcEy_SYqQYVWHK5v4lNGpkjNr-Ig8,51024
17
- faster_eth_utils/conversions.py,sha256=t2TEe0WsffqOFDbyQcERTSbHJYpDBWHKd8XPArhLoEE,5665
18
- faster_eth_utils/numeric.cpython-314t-darwin.so,sha256=Qc7VzkC5uGH8mowdYRJTumLho8ZAYk0oeyK_-ewq1HM,51040
19
- faster_eth_utils/network.cpython-314t-darwin.so,sha256=Ds_5T5mb_oBmRGs2n-Uhpm51kZiChRaxHKmpEkT304E,51040
20
- faster_eth_utils/currency.cpython-314t-darwin.so,sha256=xr-lmeh08vl-EMhNi_KnU_IlWpXaQX8LtFxXlpBomiY,51040
21
- faster_eth_utils/__init__.py,sha256=hW-A_fjyQ76crTKwuxxSbvNzvPfW27dSlzhtOkseymg,2762
22
- faster_eth_utils/types.py,sha256=-RDPzkoNhkp3dpDNK9iKzGmSQawwZ6wJ4exur0E_BuY,1519
23
- faster_eth_utils/humanize.py,sha256=bCxXyx73NuVIDjRnpPZs7lybfrun-llC3ITy-0zZSns,4682
24
- faster_eth_utils/pydantic.py,sha256=za0WJGWkjYQkRnMbEke7ueyhDt-kuqFmCq0Utaji46g,3393
25
- faster_eth_utils/toolz.cpython-314t-darwin.so,sha256=dNYVdLYQ7HVWjUisNIEoU_n3BEtPw2rnPjkGuNFwAf4,51024
26
- faster_eth_utils/functional.py,sha256=nJTxE4_HDci0chos5mQdy05pJ8o7n0wx_o7_WCro2gI,2449
27
- faster_eth_utils/crypto.py,sha256=EQgupom_TnURbLNXodwbJoKB-mHyxgOTvo8EjnSzdxw,395
28
- faster_eth_utils/debug.py,sha256=0Z-tNOqgQJunS4uHeSCCH1LWLoijlH34MBh6NRrrDrk,499
29
- faster_eth_utils/exceptions.cpython-314t-darwin.so,sha256=PW7hwZKMpfp848LWSlyzXKWoMh-5qUmAhN1dk5khxyE,51056
30
- faster_eth_utils/crypto.cpython-314t-darwin.so,sha256=eb4iMmybSuwG7fHqGdh7ATOGE6yLiZYKj4TCcg847OQ,51024
31
- faster_eth_utils/debug.cpython-314t-darwin.so,sha256=RQO8HwNoaRLw0KjU-7k61vUP3sX9oF6Fhvj-rb0-k1o,51024
32
- faster_eth_utils/numeric.py,sha256=RrXdXI-bhhkEsz3aBtxHuGlc_2ZJvUGpvMc47wx408Y,1190
33
- faster_eth_utils/network.py,sha256=O3yTtA93YyyZ6Obkusr_IbbcZ6upkCewN6EsAcF0Npc,2278
34
- faster_eth_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
- faster_eth_utils/abi.py,sha256=3pAqpKXMOcOLCD4uUUVfxBcM9H1K311dpd1Zj0Qi21g,26404
36
- faster_eth_utils/exceptions.py,sha256=7Cjxewj4g95RxNvjNqaB2w3HGk6068V82ppCHS_S-Y0,369
37
- faster_eth_utils/hexadecimal.cpython-314t-darwin.so,sha256=xpelEABY4g3YuvO-fg3PH0S9wo7LfUbhDjt8c_qP46U,51072
38
- faster_eth_utils/currency.py,sha256=01YVV2f2GL4830jfSjnC4XhLQjTNQB-5y7vbGzaMWbM,4150
39
- faster_eth_utils/module_loading.py,sha256=DCLM4dEh1gqr8Ny-FWwD-_pINqeHzbLSupz4ZIpCCAw,842
40
- faster_eth_utils/__main__.py,sha256=mH37e49q7_A0-q1ymqkq1QyYABbQHVmXeuSKIBSahO8,86
41
- faster_eth_utils/toolz.py,sha256=1QQY-aMbZrEgJsuqR0Ajsa32C_cXrQquzViw7OkxNLU,4410
42
- faster_eth_utils/decorators.cpython-314t-darwin.so,sha256=YITJdO51M7Xj0_w2DURJILXk-SNtGz-7ELPcwAPUxi4,51056
43
- faster_eth_utils/units.cpython-314t-darwin.so,sha256=yqOIsQN4ZzJLN_OG5xQ0H_8TzkCDqYo6Qb7jpMcUpHo,51024
44
- faster_eth_utils/decorators.py,sha256=BdAz-imQIf0TlBm7Di7T05o3IC6ei-xJc7FgIOqqAyE,2145
45
- faster_eth_utils/curried/__init__.py,sha256=x_nPjvTwmXeEl5jV86RRUvudu6ks1kMUxZfbjNuGx8Y,7407
46
- faster_eth_utils/typing/misc.py,sha256=4N5raYXFAeRGpmch6qgHrtYNCDxCJM5XtAAsJ1FSzzU,190
47
- faster_eth_utils/typing/__init__.py,sha256=84PxIxCvEHtBb-Ik6qnGvXH4alaWbamr_zDbtlbJh3A,325
48
- faster_eth_utils/__json/eth_networks.json,sha256=0S8HoWD6RTR6Hc0uQdQl2VHtopytIYl5NiDAzpuskBs,414773
49
- faster_eth_utils-5.3.11.dist-info/RECORD,,
50
- faster_eth_utils-5.3.11.dist-info/WHEEL,sha256=26nyvDx4qlf6NyRSh1NSNrXJDCQeX0hnJ7EH1bB1egM,137
51
- faster_eth_utils-5.3.11.dist-info/top_level.txt,sha256=wTH6UCItCCvEEiJ9EiOrm0Kn4p4xhB7VdmmTHktoo9Y,51
52
- faster_eth_utils-5.3.11.dist-info/METADATA,sha256=mWz6FEZ0Mh9sRbTKYAx0Lgohpb_fpXSIB6IzYmwd0GA,7788
53
- faster_eth_utils-5.3.11.dist-info/licenses/LICENSE,sha256=STqznQ6A8OeJylPrTA7dlsMtH0isQQybRlnDZOKGVrM,1095