faster-eth-utils 5.3.11__cp312-cp312-macosx_11_0_arm64.whl → 5.3.13__cp312-cp312-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.
Files changed (27) hide show
  1. faster_eth_utils/abi.cpython-312-darwin.so +0 -0
  2. faster_eth_utils/address.cpython-312-darwin.so +0 -0
  3. faster_eth_utils/applicators.cpython-312-darwin.so +0 -0
  4. faster_eth_utils/applicators.py +8 -10
  5. faster_eth_utils/conversions.cpython-312-darwin.so +0 -0
  6. faster_eth_utils/crypto.cpython-312-darwin.so +0 -0
  7. faster_eth_utils/currency.cpython-312-darwin.so +0 -0
  8. faster_eth_utils/debug.cpython-312-darwin.so +0 -0
  9. faster_eth_utils/decorators.cpython-312-darwin.so +0 -0
  10. faster_eth_utils/encoding.cpython-312-darwin.so +0 -0
  11. faster_eth_utils/exceptions.cpython-312-darwin.so +0 -0
  12. faster_eth_utils/functional.cpython-312-darwin.so +0 -0
  13. faster_eth_utils/hexadecimal.cpython-312-darwin.so +0 -0
  14. faster_eth_utils/humanize.cpython-312-darwin.so +0 -0
  15. faster_eth_utils/module_loading.cpython-312-darwin.so +0 -0
  16. faster_eth_utils/network.cpython-312-darwin.so +0 -0
  17. faster_eth_utils/numeric.cpython-312-darwin.so +0 -0
  18. faster_eth_utils/toolz.cpython-312-darwin.so +0 -0
  19. faster_eth_utils/types.cpython-312-darwin.so +0 -0
  20. faster_eth_utils/units.cpython-312-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-312-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-312-darwin.so,sha256=nOC1ewOd2AqR7bz8Kv1WrhuSFX5AoWlzyxpZXUxx7q8,1202960
2
+ faster_eth_utils/debug.cpython-312-darwin.so,sha256=HdmbUQa0uXPY-njs522GLUzuL6psOxRFEHUfjue7uAY,50648
3
+ faster_eth_utils/network.cpython-312-darwin.so,sha256=WhVRZGBe918n1acMlx9PfOaTx7owwUuVhllNfKnliAo,50656
4
+ faster_eth_utils/crypto.cpython-312-darwin.so,sha256=15jEejPyVRaAWViYTLHJc5FJrJG16K_X8TIMk1ELXK4,50656
5
+ faster_eth_utils/hexadecimal.py,sha256=bPxUdJse6A3j3vF6KpnvSM2h3eRhgWSWeyicwnLdvHY,2082
6
+ faster_eth_utils/address.py,sha256=IIHlYuIz-F6-mAnRWdsD4uH5l56yVRFMokFQINao9lE,3680
7
+ faster_eth_utils/logging.py,sha256=Gm0B2D7oDPByi-mNCEwLnl3lAU4_TJ4yc6EsOOJA8Rc,4590
8
+ faster_eth_utils/encoding.cpython-312-darwin.so,sha256=rOJ6rLVCak5NHvRdxrvx9Fa7HNAFnShLusic44g1tlk,50656
9
+ faster_eth_utils/numeric.cpython-312-darwin.so,sha256=Y3TyQOPDbbBOl634gZq6JflLqlWJTAOfErNq24rgric,50656
10
+ faster_eth_utils/applicators.cpython-312-darwin.so,sha256=b9qmVeqYH-jdggQeuOo1g-LGQU842C7G-CyWLA5-gxk,50672
11
+ faster_eth_utils/applicators.py,sha256=61XBoTjROcwRslkPyCExOOYb5v7FbVVIIOYfmwgJIBk,5774
12
+ faster_eth_utils/units.py,sha256=jRo8p6trxwuISBnT8kfxTNVyd_TSd5vVY5aiKDefB1U,1757
13
+ faster_eth_utils/encoding.py,sha256=1qfDeuinLZ01XjYgknpm_p9LuWwaYvicYkYI8mS1iMc,199
14
+ faster_eth_utils/abi.cpython-312-darwin.so,sha256=GkpnjdoWhMlPoEGD86Vv7AzMCKqg3Ock7QCiIMFE8Ao,50632
15
+ faster_eth_utils/conversions.cpython-312-darwin.so,sha256=bmidBnrQlUhoo9jnpz5gKg3fcumsrHueBJDCbKs2bVU,50672
16
+ faster_eth_utils/functional.cpython-312-darwin.so,sha256=86R4OV5ws2sF-zTZpa-bIieZOU7AqNtnxRNJ-IeveUk,50672
17
+ faster_eth_utils/conversions.py,sha256=t2TEe0WsffqOFDbyQcERTSbHJYpDBWHKd8XPArhLoEE,5665
18
+ faster_eth_utils/toolz.cpython-312-darwin.so,sha256=XQ3pFNLKh4sAtcMJbCwrBkPxbDCp7HzWSBfTdPVmrmw,50648
19
+ faster_eth_utils/decorators.cpython-312-darwin.so,sha256=6vY-9P3dGpTJlvjWgKMn9ZXI3PdsFlePaj-ezp1oGAQ,50672
20
+ faster_eth_utils/__init__.py,sha256=hW-A_fjyQ76crTKwuxxSbvNzvPfW27dSlzhtOkseymg,2762
21
+ faster_eth_utils/units.cpython-312-darwin.so,sha256=aImsAJU8sTt6X5WC3qJ38OsdvqXf6wHw078V8TlmB6Y,50648
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/module_loading.cpython-312-darwin.so,sha256=IKUTxKTk5nfc1vhKalTRiQPKX31iI4Pz0JmUR3vJIA8,50696
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/humanize.cpython-312-darwin.so,sha256=uG7dO_qXtUxKzp1S01LC0qq9exSSl-o30YdwtdU-Khc,50656
30
+ faster_eth_utils/types.cpython-312-darwin.so,sha256=GRWSAsZ21vPtr9qkxxb6XXobvMNd87jpnbks9-ivefY,50648
31
+ faster_eth_utils/numeric.py,sha256=RrXdXI-bhhkEsz3aBtxHuGlc_2ZJvUGpvMc47wx408Y,1190
32
+ faster_eth_utils/network.py,sha256=O3yTtA93YyyZ6Obkusr_IbbcZ6upkCewN6EsAcF0Npc,2278
33
+ faster_eth_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
+ faster_eth_utils/abi.py,sha256=3pAqpKXMOcOLCD4uUUVfxBcM9H1K311dpd1Zj0Qi21g,26404
35
+ faster_eth_utils/exceptions.py,sha256=7Cjxewj4g95RxNvjNqaB2w3HGk6068V82ppCHS_S-Y0,369
36
+ faster_eth_utils/currency.py,sha256=01YVV2f2GL4830jfSjnC4XhLQjTNQB-5y7vbGzaMWbM,4150
37
+ faster_eth_utils/module_loading.py,sha256=DCLM4dEh1gqr8Ny-FWwD-_pINqeHzbLSupz4ZIpCCAw,842
38
+ faster_eth_utils/__main__.py,sha256=mH37e49q7_A0-q1ymqkq1QyYABbQHVmXeuSKIBSahO8,86
39
+ faster_eth_utils/currency.cpython-312-darwin.so,sha256=E3Xoukeag6yttZYfr8oIhfCrB72K21AZVXcvlWs3BgM,50656
40
+ faster_eth_utils/exceptions.cpython-312-darwin.so,sha256=mCWpWlg80J5zVvzph6VJZZA7PXGwV1AkEprw9t9UUKA,50672
41
+ faster_eth_utils/hexadecimal.cpython-312-darwin.so,sha256=N_KPne05lpRznbpG4rR2FBdRPYXOt6XcsXcssa-Ormk,50672
42
+ faster_eth_utils/toolz.py,sha256=1QQY-aMbZrEgJsuqR0Ajsa32C_cXrQquzViw7OkxNLU,4410
43
+ faster_eth_utils/address.cpython-312-darwin.so,sha256=Inyjj3DEJK3ETi_7NsD1vu3LzcgV5a1N7fv0UWMVw9M,50656
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=V1loQ6TpxABu1APUg0MoTRBOzSKT5xVc3skizX-ovCU,136
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-312-darwin.so,sha256=x9OqgkyuCEJhId2ZlqAj-DSy2bKEY0au3GmqJWphleQ,1202704
2
- faster_eth_utils/debug.cpython-312-darwin.so,sha256=HXZymQ8-K5GaTEdqubtE7SWdThm89_0Uqlcvpd91hGA,50648
3
- faster_eth_utils/network.cpython-312-darwin.so,sha256=hyZo0ickiRIBPCrJduEpdUgonz_Mwqw0pcj-jB1mIX0,50656
4
- faster_eth_utils/crypto.cpython-312-darwin.so,sha256=I0srpgR-Rg1Lijw8m4XzvFX07oCsKJed48ADUcR8V4M,50656
5
- faster_eth_utils/hexadecimal.py,sha256=bPxUdJse6A3j3vF6KpnvSM2h3eRhgWSWeyicwnLdvHY,2082
6
- faster_eth_utils/address.py,sha256=IIHlYuIz-F6-mAnRWdsD4uH5l56yVRFMokFQINao9lE,3680
7
- faster_eth_utils/logging.py,sha256=Gm0B2D7oDPByi-mNCEwLnl3lAU4_TJ4yc6EsOOJA8Rc,4590
8
- faster_eth_utils/encoding.cpython-312-darwin.so,sha256=BYL7PveO4RJOHGFsTADYIDFl1b1nioL7j0bEaMxrlXU,50656
9
- faster_eth_utils/numeric.cpython-312-darwin.so,sha256=gGP95zNKzsJghFM3fMsdM-ieJVe0u1-HWB-5KtraOiw,50656
10
- faster_eth_utils/applicators.cpython-312-darwin.so,sha256=7zS2G3m3s7NJD3Qm-DBG-XtIjHeIk7lAlbUXS2fUCEM,50672
11
- faster_eth_utils/applicators.py,sha256=LEffyul-ZdsAhNB7H7E6e-J4fXw7bUt0NxrkjZWMHkA,5833
12
- faster_eth_utils/units.py,sha256=jRo8p6trxwuISBnT8kfxTNVyd_TSd5vVY5aiKDefB1U,1757
13
- faster_eth_utils/encoding.py,sha256=1qfDeuinLZ01XjYgknpm_p9LuWwaYvicYkYI8mS1iMc,199
14
- faster_eth_utils/abi.cpython-312-darwin.so,sha256=A2K2A7ERBMguXzbWPwoRfTI-2P-c7CYZbTrCCoMMCVc,50632
15
- faster_eth_utils/conversions.cpython-312-darwin.so,sha256=1ka2Kyk-xOrpJU0U49nDVPMhG0fmKU1xcgTzLv_AO2s,50672
16
- faster_eth_utils/functional.cpython-312-darwin.so,sha256=KFg5R2Ok709hK5bS1yiajNn0uDUDla6yiivIdEHqJ0Q,50672
17
- faster_eth_utils/conversions.py,sha256=t2TEe0WsffqOFDbyQcERTSbHJYpDBWHKd8XPArhLoEE,5665
18
- faster_eth_utils/toolz.cpython-312-darwin.so,sha256=ej5UvVmJsVCgSpdTJscaiG6Yby7AmbdPFxL4H4eyg2s,50648
19
- faster_eth_utils/decorators.cpython-312-darwin.so,sha256=8Sphn3DsR3S1t5xozuTv4MjfCmTzz5lyf1u4x-L7CaA,50672
20
- faster_eth_utils/__init__.py,sha256=hW-A_fjyQ76crTKwuxxSbvNzvPfW27dSlzhtOkseymg,2762
21
- faster_eth_utils/units.cpython-312-darwin.so,sha256=Qe0YKs13Bo273pgHZONaXLmOuMHPKBhbu9T11X4Kd34,50648
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/module_loading.cpython-312-darwin.so,sha256=gIR5_RsgY-splpSNfWTXtXSjMKna85mpxtta4AI9HIU,50696
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/humanize.cpython-312-darwin.so,sha256=IzjyxP6liL3PDgKJQukok8m-brWCW_b1osk0r3v1LJw,50656
30
- faster_eth_utils/types.cpython-312-darwin.so,sha256=S5WEWYpGRm79e_je-fYddTsRD_fhZJi5IP4RYJJh8lE,50648
31
- faster_eth_utils/numeric.py,sha256=RrXdXI-bhhkEsz3aBtxHuGlc_2ZJvUGpvMc47wx408Y,1190
32
- faster_eth_utils/network.py,sha256=O3yTtA93YyyZ6Obkusr_IbbcZ6upkCewN6EsAcF0Npc,2278
33
- faster_eth_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
- faster_eth_utils/abi.py,sha256=3pAqpKXMOcOLCD4uUUVfxBcM9H1K311dpd1Zj0Qi21g,26404
35
- faster_eth_utils/exceptions.py,sha256=7Cjxewj4g95RxNvjNqaB2w3HGk6068V82ppCHS_S-Y0,369
36
- faster_eth_utils/currency.py,sha256=01YVV2f2GL4830jfSjnC4XhLQjTNQB-5y7vbGzaMWbM,4150
37
- faster_eth_utils/module_loading.py,sha256=DCLM4dEh1gqr8Ny-FWwD-_pINqeHzbLSupz4ZIpCCAw,842
38
- faster_eth_utils/__main__.py,sha256=mH37e49q7_A0-q1ymqkq1QyYABbQHVmXeuSKIBSahO8,86
39
- faster_eth_utils/currency.cpython-312-darwin.so,sha256=PZ3Op2Usifxp5DwtbmznflrBdOfq0_4zjc1wRPn04ow,50656
40
- faster_eth_utils/exceptions.cpython-312-darwin.so,sha256=RZvEiHKqJoamn1aEh_nHqFnD2pyswvqRqryRgPFDNPE,50672
41
- faster_eth_utils/hexadecimal.cpython-312-darwin.so,sha256=vwRgv7ygLZn_6FIykk9kKsIucI6PFx4i8uUAa7qOMIo,50672
42
- faster_eth_utils/toolz.py,sha256=1QQY-aMbZrEgJsuqR0Ajsa32C_cXrQquzViw7OkxNLU,4410
43
- faster_eth_utils/address.cpython-312-darwin.so,sha256=vgVvu_xXSw6hO9TFVyeRGZ9_cDTs_S3gwjgfGgut0Qo,50656
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=V1loQ6TpxABu1APUg0MoTRBOzSKT5xVc3skizX-ovCU,136
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