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

Files changed (31) hide show
  1. benchmarks/test_registry_benchmarks.py +7 -4
  2. faster_eth_abi/_codec.cp314-win32.pyd +0 -0
  3. faster_eth_abi/_codec.py +1 -1
  4. faster_eth_abi/_decoding.cp314-win32.pyd +0 -0
  5. faster_eth_abi/_encoding.cp314-win32.pyd +0 -0
  6. faster_eth_abi/_encoding.py +141 -6
  7. faster_eth_abi/_grammar.cp314-win32.pyd +0 -0
  8. faster_eth_abi/_grammar.py +9 -3
  9. faster_eth_abi/abi.cp314-win32.pyd +0 -0
  10. faster_eth_abi/codec.py +1550 -0
  11. faster_eth_abi/constants.cp314-win32.pyd +0 -0
  12. faster_eth_abi/decoding.py +41 -16
  13. faster_eth_abi/encoding.py +55 -27
  14. faster_eth_abi/from_type_str.cp314-win32.pyd +0 -0
  15. faster_eth_abi/packed.cp314-win32.pyd +0 -0
  16. faster_eth_abi/registry.py +47 -31
  17. faster_eth_abi/tools/__init__.cp314-win32.pyd +0 -0
  18. faster_eth_abi/tools/_strategies.cp314-win32.pyd +0 -0
  19. faster_eth_abi/typing.py +4543 -0
  20. faster_eth_abi/utils/__init__.cp314-win32.pyd +0 -0
  21. faster_eth_abi/utils/numeric.cp314-win32.pyd +0 -0
  22. faster_eth_abi/utils/padding.cp314-win32.pyd +0 -0
  23. faster_eth_abi/utils/string.cp314-win32.pyd +0 -0
  24. faster_eth_abi/utils/validation.cp314-win32.pyd +0 -0
  25. {faster_eth_abi-5.2.13.dist-info → faster_eth_abi-5.2.15.dist-info}/METADATA +4 -4
  26. faster_eth_abi-5.2.15.dist-info/RECORD +58 -0
  27. faster_eth_abi__mypyc.cp314-win32.pyd +0 -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}/WHEEL +0 -0
  30. {faster_eth_abi-5.2.13.dist-info → faster_eth_abi-5.2.15.dist-info}/licenses/LICENSE +0 -0
  31. {faster_eth_abi-5.2.13.dist-info → faster_eth_abi-5.2.15.dist-info}/top_level.txt +0 -0
Binary file
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
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
@@ -73,7 +73,7 @@ Provides-Extra: tools
73
73
  Requires-Dist: hypothesis<6.108.7,>=6.22.0; extra == "tools"
74
74
  Provides-Extra: codspeed
75
75
  Requires-Dist: pytest>=7.0.0; extra == "codspeed"
76
- Requires-Dist: pytest-codspeed; extra == "codspeed"
76
+ Requires-Dist: pytest-codspeed<4.3,>=4.2; extra == "codspeed"
77
77
  Requires-Dist: pytest-test-groups; extra == "codspeed"
78
78
  Dynamic: author
79
79
  Dynamic: author-email
@@ -90,7 +90,7 @@ Dynamic: requires-dist
90
90
  Dynamic: requires-python
91
91
  Dynamic: summary
92
92
 
93
- ### I forked eth-abi and compiled it to C. It does the same stuff, now faster
93
+ ### I forked eth-abi and compiled it to C. It does the same stuff, now ~2-6x faster
94
94
 
95
95
  [![PyPI](https://img.shields.io/pypi/v/faster-eth-abi.svg?logo=Python&logoColor=white)](https://pypi.org/project/faster-eth-abi/)
96
96
  [![Monthly Downloads](https://img.shields.io/pypi/dm/faster-eth-abi)](https://pypistats.org/packages/faster-eth-abi)
@@ -0,0 +1,58 @@
1
+ faster_eth_abi__mypyc.cp314-win32.pyd,sha256=vBwr3jBJuo_2D3Ho19szMEakFaIJgRfFaA6ei-MH1uY,220672
2
+ benchmarks/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
3
+ benchmarks/batch.py,sha256=8Va6LrNWIpn_Ssvjt4FlaM4SAS0yfGeg_yepBrOnJpE,208
4
+ benchmarks/data.py,sha256=iistViDoK6kYW5YUAsd6RVtoLYHsI8_mgATAm0DFwUQ,9518
5
+ benchmarks/test_abi_benchmarks.py,sha256=Dc1GmpAqfLRyf_ZoV48kXQOwkezj7-uUhVDaPIObHbc,2579
6
+ benchmarks/test_decoding_benchmarks.py,sha256=0IHC87DQBccNO0tyCYg4SFrBcZBs_kMlhePLmWYxQqA,4013
7
+ benchmarks/test_encoding_benchmarks.py,sha256=QwRazu9VERrTZ0JvF6SjZ6UVoWVNEZF3wwYPGSLnTF4,3311
8
+ benchmarks/test_grammar_benchmarks.py,sha256=Z8XP1sVU0ds_KCMalgSLcsfaNKVuF4o80CJe5F0a-6M,1167
9
+ benchmarks/test_io_benchmarks.py,sha256=SNCfk_Yt3u76OjCj7_-1fQYq-jTucc2HFOlVXsEdsWs,3164
10
+ benchmarks/test_packed_benchmarks.py,sha256=PPjhMmr9bZvu57ESLURD1QBGvjDYr_YgIVweC07H48E,1436
11
+ benchmarks/test_registry_benchmarks.py,sha256=8XqwdVH6JgnkqBVLY9Ptiqy1Ck2714QjVV6A2UM9AQ4,1307
12
+ benchmarks/type_strings.py,sha256=q2Mwk2EwZCcI2ajQKac9zs76_yuMN9gXRbG8NqOrMrA,592
13
+ faster_eth_abi/__init__.py,sha256=JpTfPTiusUGMmX8sEsGAxvILxFbvhh3MEyfiKOd5o9g,217
14
+ faster_eth_abi/_codec.cp314-win32.pyd,sha256=i834wTa7XKNMSLqEF0IaqmJ7DtFuRJSyRn_JLhSsRlk,9216
15
+ faster_eth_abi/_codec.py,sha256=1r9MEBi21sg9MW765LRM5XdSmNif8tO9-CR8PPFJgnE,2348
16
+ faster_eth_abi/_decoding.cp314-win32.pyd,sha256=yJdp7jj2SY6eHsDo2eBojptRtN2hw-YTFM7aIw-iiv0,9216
17
+ faster_eth_abi/_decoding.py,sha256=NLY4Jpny7mfUHqMWSvh_xxywlTanO_6z5jw8mldJMbc,9899
18
+ faster_eth_abi/_encoding.cp314-win32.pyd,sha256=obRd3KXJHKBCuyk-Vj2xWVITyBGENu6WZ-lXU-zYA2Q,9216
19
+ faster_eth_abi/_encoding.py,sha256=QJgfNDbszNgf_pGYvhdzeV6hL8u6DslzGE2sLT8hijQ,8785
20
+ faster_eth_abi/_grammar.cp314-win32.pyd,sha256=VdcWFZab9T1KeTP6x-BaS0ZW3qSTPjpMTWrJgDe8r1Y,9216
21
+ faster_eth_abi/_grammar.py,sha256=EV4QLeB93ZjsPDXjKKxfQcGn4d8bPhisAHF0YIuKqio,10670
22
+ faster_eth_abi/abi.cp314-win32.pyd,sha256=gs7NEDiptNgUMptNqzmMv0M_nm_AKLEfbQCuHCjE1-Y,9216
23
+ faster_eth_abi/abi.py,sha256=-t9OVBSCxy6SuWpCu3cxHrCqkx8_svPIRb0MSFXEl5Q,383
24
+ faster_eth_abi/base.py,sha256=y4IXpQJWGfUISl3xjCO420Grxido3tE2ebPV2rK-DvM,1229
25
+ faster_eth_abi/codec.py,sha256=sIeJ9Fqx32vPSIaObPE6xWdLSA0i2ZasNwqCCd5q8e8,41404
26
+ faster_eth_abi/constants.cp314-win32.pyd,sha256=9j9wcvA7lUKlOfP_0SfqWw4IrTtQrhHvKVM-ITXTfR8,9216
27
+ faster_eth_abi/constants.py,sha256=q3FGynS-Eb78cnrL6mBoAvTDz16PF3tW2OylTMd6ajs,114
28
+ faster_eth_abi/decoding.py,sha256=nSEdsjc38jix4EeEyA6GngkBPDuWZCRYDxDB2UCM0rI,16768
29
+ faster_eth_abi/encoding.py,sha256=7Z65tihtDFbdFEkn70zHBRvRiJV1QZexiHubeQWzEEY,20383
30
+ faster_eth_abi/exceptions.py,sha256=r4O6bmcxRzw44lNNgz_QdhukQfrnRfTm10xK2wPuba4,3701
31
+ faster_eth_abi/from_type_str.cp314-win32.pyd,sha256=GUBKnWzBRQtCa5reUWD8jwXwaM7RFzs7w1f8HdnZn2g,9216
32
+ faster_eth_abi/from_type_str.py,sha256=PV697XdxjhwHYCBbaA-H_9I2CrfkQ5vsSkSxpCOt8eg,4474
33
+ faster_eth_abi/grammar.py,sha256=a2FopTc3TtRvjYVHlOPo18IPEXueuD8IqDdCyiuFStM,4681
34
+ faster_eth_abi/io.py,sha256=E_QX7aYAjGYnkNAZmJMmSmx1lqvl_FDNmMFruTi9UX4,3831
35
+ faster_eth_abi/packed.cp314-win32.pyd,sha256=eZcfmzjDcYKWOyqtlnHaVRvoTzWsZ8GKHw7fEOHnJgA,9216
36
+ faster_eth_abi/packed.py,sha256=RZ2chvsx9_AL9OxY1ixHTsaUJHaR_tmrNdViOIp-xSg,316
37
+ faster_eth_abi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
+ faster_eth_abi/registry.py,sha256=Mx0w-Ahxpbmof_lcK7GIRktkGFm6FuVptfoEiYDY-R0,22246
39
+ faster_eth_abi/typing.py,sha256=ZDVSJKboPeCn1CLGI4rbDmVtajDEpGi2383AyJ6mSF4,108266
40
+ faster_eth_abi/tools/__init__.cp314-win32.pyd,sha256=j_fPBckCDRM0d2awgCdx6zrfIRjcAvmc1wMODuFqOUM,9216
41
+ faster_eth_abi/tools/__init__.py,sha256=jxyQnb34ldRjCTYi3Ajb5h5QlFQ6ODfKQNhOCVwR7Ao,54
42
+ faster_eth_abi/tools/_strategies.cp314-win32.pyd,sha256=1ZY9nzv3OZTw27MWYJgGi7-cyei8ZYe8tKPiBDmK1Ww,9216
43
+ faster_eth_abi/tools/_strategies.py,sha256=02wmJpj336nOFu7pBVaH4ucj3FORweKkiGqlaRgy-8c,6330
44
+ faster_eth_abi/utils/__init__.cp314-win32.pyd,sha256=VrxcDlWUbtyQ83LvO3e0MovM7Pzvq61lLmECQtKFWwQ,9216
45
+ faster_eth_abi/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
+ faster_eth_abi/utils/numeric.cp314-win32.pyd,sha256=Bxrmc8lFulxq0l-hHR9tbT7MHl-ux-oT3sCEVBikYNw,9216
47
+ faster_eth_abi/utils/numeric.py,sha256=saAVL12dfDrMXZeao3u2jar-U2y57YKVUqF6VOzoLxs,3395
48
+ faster_eth_abi/utils/padding.cp314-win32.pyd,sha256=n8qqdKI642lUaA4GaCZppsLDScuk2ga4SjIMeV0oQSU,9216
49
+ faster_eth_abi/utils/padding.py,sha256=k6dkOiQ3k0OhQUZ6blCiL1VOQVYGyynucafbySjcFfY,515
50
+ faster_eth_abi/utils/string.cp314-win32.pyd,sha256=pK7lDhXv-lpLhKYuQn9SAySzBY_J73rTDyj1Lvu4pFs,9216
51
+ faster_eth_abi/utils/string.py,sha256=wYcvWof4kuitrGGSe_NOduQaxE4HHYmpraCPXKcZxMs,455
52
+ faster_eth_abi/utils/validation.cp314-win32.pyd,sha256=zdyO7a8L2ehKCE5iHXpqFOyJxcvnS3BbXrJ9G5I2DJo,9216
53
+ faster_eth_abi/utils/validation.py,sha256=9veO7wyQsmcFgeaGrsKdSifjV1gaXfTDDKAt1EbKHYY,539
54
+ faster_eth_abi-5.2.15.dist-info/licenses/LICENSE,sha256=Q1lDDWXR057JL2Y7HTAwclCF32_LCloN4sGUkXO1YeI,1127
55
+ faster_eth_abi-5.2.15.dist-info/METADATA,sha256=Mzr6plUz3RIjzbPhOIVj_gySmSthLv8i_G2yyir_yHQ,7129
56
+ faster_eth_abi-5.2.15.dist-info/WHEEL,sha256=avp3B09fSRXVHn4cshTNKc58MtFVN-cVe0NyrqeYT2s,97
57
+ faster_eth_abi-5.2.15.dist-info/top_level.txt,sha256=z3gorxabz8D2eg5A3YX2M3p3JMFRLLX3DRp0jAwNZOY,48
58
+ faster_eth_abi-5.2.15.dist-info/RECORD,,
Binary file
@@ -1,57 +0,0 @@
1
- faster_eth_abi__mypyc.cp314-win32.pyd,sha256=z9TZP4LAUQZdCccETP3iXuTgbzh7MaWdcf3ndZ0ByW4,198656
2
- benchmarks/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
3
- benchmarks/batch.py,sha256=8Va6LrNWIpn_Ssvjt4FlaM4SAS0yfGeg_yepBrOnJpE,208
4
- benchmarks/data.py,sha256=iistViDoK6kYW5YUAsd6RVtoLYHsI8_mgATAm0DFwUQ,9518
5
- benchmarks/test_abi_benchmarks.py,sha256=Dc1GmpAqfLRyf_ZoV48kXQOwkezj7-uUhVDaPIObHbc,2579
6
- benchmarks/test_decoding_benchmarks.py,sha256=0IHC87DQBccNO0tyCYg4SFrBcZBs_kMlhePLmWYxQqA,4013
7
- benchmarks/test_encoding_benchmarks.py,sha256=QwRazu9VERrTZ0JvF6SjZ6UVoWVNEZF3wwYPGSLnTF4,3311
8
- benchmarks/test_grammar_benchmarks.py,sha256=Z8XP1sVU0ds_KCMalgSLcsfaNKVuF4o80CJe5F0a-6M,1167
9
- benchmarks/test_io_benchmarks.py,sha256=SNCfk_Yt3u76OjCj7_-1fQYq-jTucc2HFOlVXsEdsWs,3164
10
- benchmarks/test_packed_benchmarks.py,sha256=PPjhMmr9bZvu57ESLURD1QBGvjDYr_YgIVweC07H48E,1436
11
- benchmarks/test_registry_benchmarks.py,sha256=Vk3hEAOINRtRv0hoBQe0oIWj5q7PIE5FK5MnPAoJ2Fc,1258
12
- benchmarks/type_strings.py,sha256=q2Mwk2EwZCcI2ajQKac9zs76_yuMN9gXRbG8NqOrMrA,592
13
- faster_eth_abi/__init__.py,sha256=JpTfPTiusUGMmX8sEsGAxvILxFbvhh3MEyfiKOd5o9g,217
14
- faster_eth_abi/_codec.cp314-win32.pyd,sha256=0AQoakHjmo-E9m7RmKC4AulQ4kp9ktouATIixSnXAao,9216
15
- faster_eth_abi/_codec.py,sha256=9l49XZv5CHdbSU_WShfvjCOGwrRhH75aFsh6eaZ-e0E,2341
16
- faster_eth_abi/_decoding.cp314-win32.pyd,sha256=eCs_wCgq0oGGSrY-1-tCZR-mbFIPKt5he7H64VN-kH0,9216
17
- faster_eth_abi/_decoding.py,sha256=NLY4Jpny7mfUHqMWSvh_xxywlTanO_6z5jw8mldJMbc,9899
18
- faster_eth_abi/_encoding.cp314-win32.pyd,sha256=l2Mx4uDHKIjgEQ2QxxbO6tyllQWXokyEKis7MUuDX_U,9216
19
- faster_eth_abi/_encoding.py,sha256=rsZihtFUqYu80ANOsxP9QwpFJDH73VBVJSzOrllBm2k,3340
20
- faster_eth_abi/_grammar.cp314-win32.pyd,sha256=snSbeVNasOuUyvY-SPsvJ1e59ASCl8cCj3SNl6ytmGo,9216
21
- faster_eth_abi/_grammar.py,sha256=IyftL6Ayb-6C1jR2xAt4y_NRnqdGtH08gwoz5zrF3rc,10491
22
- faster_eth_abi/abi.cp314-win32.pyd,sha256=TmXqAXo6QI-3Y1hNmArfCEKuazlivjdKOXKm7IvF9c4,9216
23
- faster_eth_abi/abi.py,sha256=-t9OVBSCxy6SuWpCu3cxHrCqkx8_svPIRb0MSFXEl5Q,383
24
- faster_eth_abi/base.py,sha256=y4IXpQJWGfUISl3xjCO420Grxido3tE2ebPV2rK-DvM,1229
25
- faster_eth_abi/codec.py,sha256=QZFGQ8Fg2BRVGDVLVpmrkmqjtkdMVG1Gqr9AD7dSEI0,4557
26
- faster_eth_abi/constants.cp314-win32.pyd,sha256=pIv57MX3XI6iNKZCHGYNCyi5_YDG6Pbx5mOkVwUxhB0,9216
27
- faster_eth_abi/constants.py,sha256=q3FGynS-Eb78cnrL6mBoAvTDz16PF3tW2OylTMd6ajs,114
28
- faster_eth_abi/decoding.py,sha256=rlJDBk1auhVwbxdoVVIJsFbF5JRENd76h94mjvH2kFU,15866
29
- faster_eth_abi/encoding.py,sha256=P1svhYylcZa55cQ9LPj6jV8iJVLSL_c5SIZT1Umol58,19679
30
- faster_eth_abi/exceptions.py,sha256=r4O6bmcxRzw44lNNgz_QdhukQfrnRfTm10xK2wPuba4,3701
31
- faster_eth_abi/from_type_str.cp314-win32.pyd,sha256=xzg3hzCNOmii4scQ9Wi0kHzwUG4DTPbA8B6NpHeF8Ks,9216
32
- faster_eth_abi/from_type_str.py,sha256=PV697XdxjhwHYCBbaA-H_9I2CrfkQ5vsSkSxpCOt8eg,4474
33
- faster_eth_abi/grammar.py,sha256=a2FopTc3TtRvjYVHlOPo18IPEXueuD8IqDdCyiuFStM,4681
34
- faster_eth_abi/io.py,sha256=E_QX7aYAjGYnkNAZmJMmSmx1lqvl_FDNmMFruTi9UX4,3831
35
- faster_eth_abi/packed.cp314-win32.pyd,sha256=EhnpJLZWmdFcrnZuSV0zVxjc6ogr855Njw4sJ1Pw5lY,9216
36
- faster_eth_abi/packed.py,sha256=RZ2chvsx9_AL9OxY1ixHTsaUJHaR_tmrNdViOIp-xSg,316
37
- faster_eth_abi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
- faster_eth_abi/registry.py,sha256=WYkH4BF2of91Pv8xLxBPTgBP0xV2uJ0FsYlYx-XrUcc,21758
39
- faster_eth_abi/tools/__init__.cp314-win32.pyd,sha256=C2y3MXZ2D6t-zfknYtW8AhW7nNA-QiFzfVKAmrRfI4g,9216
40
- faster_eth_abi/tools/__init__.py,sha256=jxyQnb34ldRjCTYi3Ajb5h5QlFQ6ODfKQNhOCVwR7Ao,54
41
- faster_eth_abi/tools/_strategies.cp314-win32.pyd,sha256=lvVhiTM3szPWiBoQD8M1qwYKHUszISlfuZTna6pb3eY,9216
42
- faster_eth_abi/tools/_strategies.py,sha256=02wmJpj336nOFu7pBVaH4ucj3FORweKkiGqlaRgy-8c,6330
43
- faster_eth_abi/utils/__init__.cp314-win32.pyd,sha256=-tJO42KDZ0Kxj_FWK2RVh8O_Kkm0wLPQVYpva9jfzHA,9216
44
- faster_eth_abi/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
45
- faster_eth_abi/utils/numeric.cp314-win32.pyd,sha256=vN_dnocUMolo57QLRREkv8UYlMP7rOzpcB6sOo-5OWo,9216
46
- faster_eth_abi/utils/numeric.py,sha256=saAVL12dfDrMXZeao3u2jar-U2y57YKVUqF6VOzoLxs,3395
47
- faster_eth_abi/utils/padding.cp314-win32.pyd,sha256=mm8bG0oApn56KJpIxsZu-YJGEWj7AkuwVZdKCIjSybk,9216
48
- faster_eth_abi/utils/padding.py,sha256=k6dkOiQ3k0OhQUZ6blCiL1VOQVYGyynucafbySjcFfY,515
49
- faster_eth_abi/utils/string.cp314-win32.pyd,sha256=blD7ymN0ZjZkBbgWH8feJsCxw696_3YJ94oNA3QXE9c,9216
50
- faster_eth_abi/utils/string.py,sha256=wYcvWof4kuitrGGSe_NOduQaxE4HHYmpraCPXKcZxMs,455
51
- faster_eth_abi/utils/validation.cp314-win32.pyd,sha256=ApQKRdDY4p9jQ6Au9by7u_YTiOENzJqXTAMZq5VLMQk,9216
52
- faster_eth_abi/utils/validation.py,sha256=9veO7wyQsmcFgeaGrsKdSifjV1gaXfTDDKAt1EbKHYY,539
53
- faster_eth_abi-5.2.13.dist-info/licenses/LICENSE,sha256=Q1lDDWXR057JL2Y7HTAwclCF32_LCloN4sGUkXO1YeI,1127
54
- faster_eth_abi-5.2.13.dist-info/METADATA,sha256=bHiAcFVRYDrkk04iJtOy0UOIfw7Ufibv6ZnIeTIv9vI,7107
55
- faster_eth_abi-5.2.13.dist-info/WHEEL,sha256=avp3B09fSRXVHn4cshTNKc58MtFVN-cVe0NyrqeYT2s,97
56
- faster_eth_abi-5.2.13.dist-info/top_level.txt,sha256=z3gorxabz8D2eg5A3YX2M3p3JMFRLLX3DRp0jAwNZOY,48
57
- faster_eth_abi-5.2.13.dist-info/RECORD,,