faster-eth-abi 5.2.13__cp38-cp38-macosx_11_0_arm64.whl → 5.2.15__cp38-cp38-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-abi might be problematic. Click here for more details.

Files changed (31) hide show
  1. 29859a9e7da9d19bb98c__mypyc.cpython-38-darwin.so +0 -0
  2. benchmarks/test_registry_benchmarks.py +7 -4
  3. faster_eth_abi/_codec.cpython-38-darwin.so +0 -0
  4. faster_eth_abi/_codec.py +1 -1
  5. faster_eth_abi/_decoding.cpython-38-darwin.so +0 -0
  6. faster_eth_abi/_encoding.cpython-38-darwin.so +0 -0
  7. faster_eth_abi/_encoding.py +141 -6
  8. faster_eth_abi/_grammar.cpython-38-darwin.so +0 -0
  9. faster_eth_abi/_grammar.py +9 -3
  10. faster_eth_abi/abi.cpython-38-darwin.so +0 -0
  11. faster_eth_abi/codec.py +1550 -0
  12. faster_eth_abi/constants.cpython-38-darwin.so +0 -0
  13. faster_eth_abi/decoding.py +41 -16
  14. faster_eth_abi/encoding.py +55 -27
  15. faster_eth_abi/from_type_str.cpython-38-darwin.so +0 -0
  16. faster_eth_abi/packed.cpython-38-darwin.so +0 -0
  17. faster_eth_abi/registry.py +47 -31
  18. faster_eth_abi/tools/__init__.cpython-38-darwin.so +0 -0
  19. faster_eth_abi/tools/_strategies.cpython-38-darwin.so +0 -0
  20. faster_eth_abi/typing.py +4543 -0
  21. faster_eth_abi/utils/__init__.cpython-38-darwin.so +0 -0
  22. faster_eth_abi/utils/numeric.cpython-38-darwin.so +0 -0
  23. faster_eth_abi/utils/padding.cpython-38-darwin.so +0 -0
  24. faster_eth_abi/utils/string.cpython-38-darwin.so +0 -0
  25. faster_eth_abi/utils/validation.cpython-38-darwin.so +0 -0
  26. {faster_eth_abi-5.2.13.dist-info → faster_eth_abi-5.2.15.dist-info}/METADATA +4 -4
  27. faster_eth_abi-5.2.15.dist-info/RECORD +58 -0
  28. faster_eth_abi-5.2.13.dist-info/RECORD +0 -57
  29. {faster_eth_abi-5.2.13.dist-info → faster_eth_abi-5.2.15.dist-info}/LICENSE +0 -0
  30. {faster_eth_abi-5.2.13.dist-info → faster_eth_abi-5.2.15.dist-info}/WHEEL +0 -0
  31. {faster_eth_abi-5.2.13.dist-info → faster_eth_abi-5.2.15.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: faster_eth_abi
3
- Version: 5.2.13
4
- Summary: A faster fork of eth_abi: Python utilities for working with Ethereum ABI definitions, especially encoding and decoding. Implemented in C.
3
+ Version: 5.2.15
4
+ Summary: A ~2-6x faster fork of eth_abi: Python utilities for working with Ethereum ABI definitions, especially encoding and decoding. Implemented in C.
5
5
  Home-page: https://github.com/BobTheBuidler/faster-eth-abi
6
6
  Author: The Ethereum Foundation
7
7
  Author-email: snakecharmers@ethereum.org
@@ -39,7 +39,7 @@ Requires-Dist: mypy-extensions
39
39
  Requires-Dist: parsimonious<0.11.0,>=0.10.0
40
40
  Provides-Extra: codspeed
41
41
  Requires-Dist: pytest>=7.0.0; extra == "codspeed"
42
- Requires-Dist: pytest-codspeed; extra == "codspeed"
42
+ Requires-Dist: pytest-codspeed<4.3,>=4.2; extra == "codspeed"
43
43
  Requires-Dist: pytest-test-groups; extra == "codspeed"
44
44
  Provides-Extra: dev
45
45
  Requires-Dist: build>=0.9.0; extra == "dev"
@@ -76,7 +76,7 @@ Requires-Dist: hypothesis<6.108.7,>=6.22.0; extra == "test"
76
76
  Provides-Extra: tools
77
77
  Requires-Dist: hypothesis<6.108.7,>=6.22.0; extra == "tools"
78
78
 
79
- ### I forked eth-abi and compiled it to C. It does the same stuff, now faster
79
+ ### I forked eth-abi and compiled it to C. It does the same stuff, now ~2-6x faster
80
80
 
81
81
  [![PyPI](https://img.shields.io/pypi/v/faster-eth-abi.svg?logo=Python&logoColor=white)](https://pypi.org/project/faster-eth-abi/)
82
82
  [![Monthly Downloads](https://img.shields.io/pypi/dm/faster-eth-abi)](https://pypistats.org/packages/faster-eth-abi)
@@ -0,0 +1,58 @@
1
+ 29859a9e7da9d19bb98c__mypyc.cpython-38-darwin.so,sha256=Dkk2cMgKn00CtymYvXxiFazrpgxW-OuB1Ey70gqt2tg,693216
2
+ faster_eth_abi/_codec.cpython-38-darwin.so,sha256=D9Mn8-vGn9041-TY1SyEB9prfF6VQa9J1k1XA4ANZzI,50536
3
+ faster_eth_abi/_encoding.py,sha256=n3POAR1IAjQObaDTY_GyqgQPwmTIC2CT7VuAf5vBvyg,8540
4
+ faster_eth_abi/packed.py,sha256=qDPBjish_0h26O7xGWopnlD4pRkphFuFq4izgIqT600,301
5
+ faster_eth_abi/encoding.py,sha256=3-MNnZ7PUNZXUbu-HrmM_PDSVfAEZcdmrbMu8GHqYMQ,19685
6
+ faster_eth_abi/abi.cpython-38-darwin.so,sha256=jyOgZE0WnP_IrtlpcY27d7darAThAQf2YdIwt76reps,50536
7
+ faster_eth_abi/packed.cpython-38-darwin.so,sha256=i1eMZ8fevE0-d3ylz0_ffN-vbFrf0OqzR5SK3Qi-_jY,50536
8
+ faster_eth_abi/from_type_str.cpython-38-darwin.so,sha256=JpYNm007j7tvegGp7gbxjh9hn25YEoX9YlBZP9JKsts,50576
9
+ faster_eth_abi/registry.py,sha256=HmspZBvwUrkeVjecCOQJUjXkYP5aDAGbkCx1CzASppk,21554
10
+ faster_eth_abi/_decoding.py,sha256=WbFy1GxPYGHduUNCjiTz4gLbNuDffbbJ6MFujjINTpw,9613
11
+ faster_eth_abi/constants.py,sha256=uJbuND1rFs_Pexuz58TKd-BJPuoA6hLqFEX6kkDS-dE,107
12
+ faster_eth_abi/io.py,sha256=PjOnBChWh_-6ADkpJQONnxHVwsAfC_4bRiT6YQhlP6c,3728
13
+ faster_eth_abi/__init__.py,sha256=55jGpiVbsTGNu-c_rr-wwyH3eqEv9MELSTWa4AMiKvU,205
14
+ faster_eth_abi/_grammar.py,sha256=e-t-f_v0BssDnma3yD-FpVR3IHdp-5vK1L-0s9vodKk,10315
15
+ faster_eth_abi/decoding.py,sha256=vBrGAol7NC_7iA3j4V_rwtLwo2hzK1b60-o559iuHls,16227
16
+ faster_eth_abi/grammar.py,sha256=JJ7QLGJVKmoWwx3J8O-5snrza-Si4NdCweUummqzjlo,4511
17
+ faster_eth_abi/from_type_str.py,sha256=C3QNACXS-5lTtOx1kNAqfZLvky37wV7gqY3Cf9QoEkk,4337
18
+ faster_eth_abi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
+ faster_eth_abi/abi.py,sha256=HzkXy0EjHraNbbC5l-EhVqVcx5vy8tcykiKIO4Fp1xw,366
20
+ faster_eth_abi/_decoding.cpython-38-darwin.so,sha256=ve3qN8gEUEjjRkXd5J7Ok4wKQ-N5GxcyTsn4Czo8Wvw,50560
21
+ faster_eth_abi/exceptions.py,sha256=pbwvH_WeAlSlwqA8w79e_RCt8_uaasLcGtRY7yT9LTQ,3577
22
+ faster_eth_abi/_codec.py,sha256=qcK1Mfy_6tO48srobl-WyBBIkEFzwpMQrdGQ8H5TH-o,2271
23
+ faster_eth_abi/_grammar.cpython-38-darwin.so,sha256=CdseD9oC27lwQBTFxk8IIIO1K5FE6spaJepkuFyrgBs,50560
24
+ faster_eth_abi/constants.cpython-38-darwin.so,sha256=MglGkCrv6uMo06rH2mMrQYxr_mte0nA7NqFM4Ro4wTw,50560
25
+ faster_eth_abi/typing.py,sha256=muZI3t_mw2awfy2JWa4XT2zFIqko03Z_P8s6rkWvu0g,103723
26
+ faster_eth_abi/codec.py,sha256=d1swlSK3m3_yn3vmzb08esOohJcDxDvoHnmP1SQKlpk,39712
27
+ faster_eth_abi/_encoding.cpython-38-darwin.so,sha256=vgNogDAG1OI1tmwqw2DJ6w-COPp5UIHzBUqZrIVgFPA,50560
28
+ faster_eth_abi/base.py,sha256=eMpUM78FhJg5wHPj6glvJRpS1AmvQ_1ks9ENwyu68hc,1188
29
+ faster_eth_abi/tools/__init__.cpython-38-darwin.so,sha256=9Ik1pqZ2NivUZlp27R6rYX_uaCKaqZc1zKaej3cLQv0,50544
30
+ faster_eth_abi/tools/_strategies.py,sha256=XQhK8eG87W7LB5v6ibzEAB0BkhTr-oc7dIzPvZu6AE0,6089
31
+ faster_eth_abi/tools/__init__.py,sha256=trtATEmgu4ctg04qkejbODDzvDSofgcVJ3rkzMP_hQE,51
32
+ faster_eth_abi/tools/_strategies.cpython-38-darwin.so,sha256=hI3cP3DrJ7RosV7PDhXHvwdHtXSvGEZpxuwltIljC_8,50592
33
+ faster_eth_abi/utils/__init__.cpython-38-darwin.so,sha256=_00GzeldT9VKnDyY-7tzSMJRh8U9wn8kXf6zG9RdjSI,50544
34
+ faster_eth_abi/utils/validation.cpython-38-darwin.so,sha256=cI1OgVG22luZA-Hh6utPvNHcXRhRdpC6U5zJDPehCNg,50576
35
+ faster_eth_abi/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
+ faster_eth_abi/utils/padding.cpython-38-darwin.so,sha256=rgo3FLN0KOCLA89-XZVYDNVLj8PDWixJBDvO-zn8f0w,50560
37
+ faster_eth_abi/utils/numeric.py,sha256=fkdazLcgd7FN0JGSSyb6Jsx555QdgRf2N0mxrm6rGB4,3278
38
+ faster_eth_abi/utils/string.cpython-38-darwin.so,sha256=SdhTzA2t9C0DukHBYpu6FNNOcYI0cZJawfiPKfFmEP4,50552
39
+ faster_eth_abi/utils/numeric.cpython-38-darwin.so,sha256=-IgGotoD7Dl0HiXV0LMYW5mW3uRrWcEC23Pu0Va0VQE,50560
40
+ faster_eth_abi/utils/string.py,sha256=fjsAR2C7Xlu5bHomxx5l4rlADFtByzGTQfugMTo8TQk,436
41
+ faster_eth_abi/utils/padding.py,sha256=JBuFhdrvKWLrmmJBZ-a6pqbHWydAuiUBt2aBjCwVcVE,493
42
+ faster_eth_abi/utils/validation.py,sha256=NA2wRacYEBdkpQnZfmeDvzF-sHyy6NT2QzCFuBnYJVI,521
43
+ benchmarks/test_registry_benchmarks.py,sha256=RQTkFsOk9pIDPd84bZqm3mfBuKSYhuQCCmSblYDzFOE,1262
44
+ benchmarks/type_strings.py,sha256=tC12IvA5TbJFQDvydi1lCxnCHUxWurBW69xLG9Xjywc,566
45
+ benchmarks/batch.py,sha256=8MkG1hAxZerEnPTtrESUAWXB6C-iNnCMQ5yJMz3HDIM,199
46
+ benchmarks/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
47
+ benchmarks/test_grammar_benchmarks.py,sha256=faL_y_fmdvEeULTmLj88OWEj4e1mAdzuZTYkLF47ZAA,1129
48
+ benchmarks/test_packed_benchmarks.py,sha256=KHi8aEKKWZw4lNNrpJtdr6l2cjI5RecyA8w4gJhDmm4,1395
49
+ benchmarks/test_abi_benchmarks.py,sha256=tTwhKGizr7hIu-QV-A1PAN-n3Bk8LnfaY3Dv5-dE3E0,2497
50
+ benchmarks/test_io_benchmarks.py,sha256=SkBGL0FijyVefSlL1VTQIaD1b2oruWjdo6WAck8rpQY,3065
51
+ benchmarks/test_encoding_benchmarks.py,sha256=sfVncm7BGIV0k_byD8HCjuwc8oGx4-KLnx8Jk8_9uD0,3212
52
+ benchmarks/data.py,sha256=YeU6gxSF2_XFVnwy7N2CuEiqiS8AFrc4ZQ4B3Z0HRw4,9205
53
+ benchmarks/test_decoding_benchmarks.py,sha256=MVZ4lN1V8OTvO-957joBBOgkHnsfSghF3d_GiBeEh1E,3904
54
+ faster_eth_abi-5.2.15.dist-info/RECORD,,
55
+ faster_eth_abi-5.2.15.dist-info/LICENSE,sha256=P_zrhVa0OXK-_XuA0RF3d3gwMLXRSBkn2fWraC4CFLo,1106
56
+ faster_eth_abi-5.2.15.dist-info/WHEEL,sha256=9FabR3Kab7Nb3lO5nBQWtZc544XJ0hYCmiQC2RH2bHM,107
57
+ faster_eth_abi-5.2.15.dist-info/top_level.txt,sha256=utY1QAB2ZlDnuEgQjydbGaBGXDRudjYvq61Wog-MIWI,54
58
+ faster_eth_abi-5.2.15.dist-info/METADATA,sha256=2n_HdYKPntwvb5kNiDcLmUzx5NXzgbPJyuUEICJdCoo,6701
@@ -1,57 +0,0 @@
1
- 29859a9e7da9d19bb98c__mypyc.cpython-38-darwin.so,sha256=7Jy_ZVluOS_Inp_0jPG0kyDY0dkoW0OCALi-pIlGDeo,626928
2
- faster_eth_abi/_codec.cpython-38-darwin.so,sha256=CkHKPiUIauZ64f0_uVF1ZpMrxIW9uyxZMpx26MFLpog,50536
3
- faster_eth_abi/_encoding.py,sha256=nBIqwHbvT7loTmiYlcl7Z8HhnOGEY-jr-cpCZEU-1X8,3230
4
- faster_eth_abi/packed.py,sha256=qDPBjish_0h26O7xGWopnlD4pRkphFuFq4izgIqT600,301
5
- faster_eth_abi/encoding.py,sha256=lH6t_8rokfmg8M4JBjmIO3a3l9jGu_rbwoskb0PcH7M,19009
6
- faster_eth_abi/abi.cpython-38-darwin.so,sha256=ISfgppGaQ_1yzgGlren-b_HO36nGuPXZi_w86mY97Qw,50536
7
- faster_eth_abi/packed.cpython-38-darwin.so,sha256=8V6PNm2qs-hv_thKgxztoa1gi9jIi3K_TCLiVzJX4lQ,50536
8
- faster_eth_abi/from_type_str.cpython-38-darwin.so,sha256=9SqYPfNAqd2pvPyjiseB0bRnonFNKc3xUsPOaVUjuO8,50576
9
- faster_eth_abi/registry.py,sha256=RqHQNDLzvQ6embdnOSxlpvPw7dn-jqUU9MshLe5JuuM,21082
10
- faster_eth_abi/_decoding.py,sha256=WbFy1GxPYGHduUNCjiTz4gLbNuDffbbJ6MFujjINTpw,9613
11
- faster_eth_abi/constants.py,sha256=uJbuND1rFs_Pexuz58TKd-BJPuoA6hLqFEX6kkDS-dE,107
12
- faster_eth_abi/io.py,sha256=PjOnBChWh_-6ADkpJQONnxHVwsAfC_4bRiT6YQhlP6c,3728
13
- faster_eth_abi/__init__.py,sha256=55jGpiVbsTGNu-c_rr-wwyH3eqEv9MELSTWa4AMiKvU,205
14
- faster_eth_abi/_grammar.py,sha256=6REsztEP6kJvWSB3DoLRGbl1whc-pLj5aEWrT6GxaN0,10142
15
- faster_eth_abi/decoding.py,sha256=MYddNAyi3cUKnkV0KYSvff8SeJe3oXaw0GH--iujLzY,15350
16
- faster_eth_abi/grammar.py,sha256=JJ7QLGJVKmoWwx3J8O-5snrza-Si4NdCweUummqzjlo,4511
17
- faster_eth_abi/from_type_str.py,sha256=C3QNACXS-5lTtOx1kNAqfZLvky37wV7gqY3Cf9QoEkk,4337
18
- faster_eth_abi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
- faster_eth_abi/abi.py,sha256=HzkXy0EjHraNbbC5l-EhVqVcx5vy8tcykiKIO4Fp1xw,366
20
- faster_eth_abi/_decoding.cpython-38-darwin.so,sha256=RhFj0QkQeiSVbw-hLhRANhjLJD3KTLIxAN2gwelX6XA,50560
21
- faster_eth_abi/exceptions.py,sha256=pbwvH_WeAlSlwqA8w79e_RCt8_uaasLcGtRY7yT9LTQ,3577
22
- faster_eth_abi/_codec.py,sha256=7TfO2ij2jBuUK54LuMdhC0YX8NEui3rnN2ZG1NnP3dA,2264
23
- faster_eth_abi/_grammar.cpython-38-darwin.so,sha256=R7ymoQ1j3lsK0EReC2tK7-va6mN8MswGzJat1IEqFVQ,50560
24
- faster_eth_abi/constants.cpython-38-darwin.so,sha256=RkQjsnrj4fUHrsAPZoztiLwQ5Rd23DYoZuNGOAZa0oI,50560
25
- faster_eth_abi/codec.py,sha256=2CtGd3SdNCF5mLqTrZ2FpMAyBtFt83IGu81T--Gevyc,4415
26
- faster_eth_abi/_encoding.cpython-38-darwin.so,sha256=E55WVVEiB7maZhNBdTt0Vdxs4Ug9azKPj6MzFMTI1g4,50560
27
- faster_eth_abi/base.py,sha256=eMpUM78FhJg5wHPj6glvJRpS1AmvQ_1ks9ENwyu68hc,1188
28
- faster_eth_abi/tools/__init__.cpython-38-darwin.so,sha256=4BgkFJ0chXuZPmkLuPWuoKLwtKvc8108ierhYJFOzFE,50544
29
- faster_eth_abi/tools/_strategies.py,sha256=XQhK8eG87W7LB5v6ibzEAB0BkhTr-oc7dIzPvZu6AE0,6089
30
- faster_eth_abi/tools/__init__.py,sha256=trtATEmgu4ctg04qkejbODDzvDSofgcVJ3rkzMP_hQE,51
31
- faster_eth_abi/tools/_strategies.cpython-38-darwin.so,sha256=9Kb8eWzfRov8Qfb0eVLd139MRE5ownza7dtzDkJav_0,50592
32
- faster_eth_abi/utils/__init__.cpython-38-darwin.so,sha256=rfnOR8FcI7YTgBdOXZoub-oJwcxu6u9pDEd5cBRsyxE,50544
33
- faster_eth_abi/utils/validation.cpython-38-darwin.so,sha256=m7ll1_tAnxWj7Ok9gJiFjQwKnMGzd7kZhgrYYDU9nWQ,50576
34
- faster_eth_abi/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
- faster_eth_abi/utils/padding.cpython-38-darwin.so,sha256=q9pB7YEpNMwPL8Bp_fBstlD5fMwJglUDQHVpRRmME_8,50560
36
- faster_eth_abi/utils/numeric.py,sha256=fkdazLcgd7FN0JGSSyb6Jsx555QdgRf2N0mxrm6rGB4,3278
37
- faster_eth_abi/utils/string.cpython-38-darwin.so,sha256=0IWlw_mA0okhYEu-_In3EZ6v8JPD-NNAxoKzEPYrvL4,50552
38
- faster_eth_abi/utils/numeric.cpython-38-darwin.so,sha256=N1OLnE-RZfkIct0DnTzs9sW_ReRtpgnyM59pWpdFtv4,50560
39
- faster_eth_abi/utils/string.py,sha256=fjsAR2C7Xlu5bHomxx5l4rlADFtByzGTQfugMTo8TQk,436
40
- faster_eth_abi/utils/padding.py,sha256=JBuFhdrvKWLrmmJBZ-a6pqbHWydAuiUBt2aBjCwVcVE,493
41
- faster_eth_abi/utils/validation.py,sha256=NA2wRacYEBdkpQnZfmeDvzF-sHyy6NT2QzCFuBnYJVI,521
42
- benchmarks/test_registry_benchmarks.py,sha256=76bFMgx0o4YxWfMszWJdmancPtywNJBN38nehhXeMRM,1216
43
- benchmarks/type_strings.py,sha256=tC12IvA5TbJFQDvydi1lCxnCHUxWurBW69xLG9Xjywc,566
44
- benchmarks/batch.py,sha256=8MkG1hAxZerEnPTtrESUAWXB6C-iNnCMQ5yJMz3HDIM,199
45
- benchmarks/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
46
- benchmarks/test_grammar_benchmarks.py,sha256=faL_y_fmdvEeULTmLj88OWEj4e1mAdzuZTYkLF47ZAA,1129
47
- benchmarks/test_packed_benchmarks.py,sha256=KHi8aEKKWZw4lNNrpJtdr6l2cjI5RecyA8w4gJhDmm4,1395
48
- benchmarks/test_abi_benchmarks.py,sha256=tTwhKGizr7hIu-QV-A1PAN-n3Bk8LnfaY3Dv5-dE3E0,2497
49
- benchmarks/test_io_benchmarks.py,sha256=SkBGL0FijyVefSlL1VTQIaD1b2oruWjdo6WAck8rpQY,3065
50
- benchmarks/test_encoding_benchmarks.py,sha256=sfVncm7BGIV0k_byD8HCjuwc8oGx4-KLnx8Jk8_9uD0,3212
51
- benchmarks/data.py,sha256=YeU6gxSF2_XFVnwy7N2CuEiqiS8AFrc4ZQ4B3Z0HRw4,9205
52
- benchmarks/test_decoding_benchmarks.py,sha256=MVZ4lN1V8OTvO-957joBBOgkHnsfSghF3d_GiBeEh1E,3904
53
- faster_eth_abi-5.2.13.dist-info/RECORD,,
54
- faster_eth_abi-5.2.13.dist-info/LICENSE,sha256=P_zrhVa0OXK-_XuA0RF3d3gwMLXRSBkn2fWraC4CFLo,1106
55
- faster_eth_abi-5.2.13.dist-info/WHEEL,sha256=9FabR3Kab7Nb3lO5nBQWtZc544XJ0hYCmiQC2RH2bHM,107
56
- faster_eth_abi-5.2.13.dist-info/top_level.txt,sha256=utY1QAB2ZlDnuEgQjydbGaBGXDRudjYvq61Wog-MIWI,54
57
- faster_eth_abi-5.2.13.dist-info/METADATA,sha256=jfYAgsdh_14MTVQhLZOQCDDRswyzeRuTGFd6M9UkPdA,6679