faster-eth-abi 5.2.12__cp313-cp313-win_amd64.whl → 5.2.13__cp313-cp313-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-abi might be problematic. Click here for more details.
- benchmarks/__init__.py +1 -0
- benchmarks/batch.py +9 -0
- benchmarks/data.py +313 -0
- benchmarks/test_abi_benchmarks.py +82 -0
- benchmarks/test_decoding_benchmarks.py +109 -0
- benchmarks/test_encoding_benchmarks.py +99 -0
- benchmarks/test_grammar_benchmarks.py +38 -0
- benchmarks/test_io_benchmarks.py +99 -0
- benchmarks/test_packed_benchmarks.py +41 -0
- benchmarks/test_registry_benchmarks.py +42 -0
- benchmarks/type_strings.py +26 -0
- faster_eth_abi/_codec.cp313-win_amd64.pyd +0 -0
- faster_eth_abi/_decoding.cp313-win_amd64.pyd +0 -0
- faster_eth_abi/_decoding.py +136 -5
- faster_eth_abi/_encoding.cp313-win_amd64.pyd +0 -0
- faster_eth_abi/_grammar.cp313-win_amd64.pyd +0 -0
- faster_eth_abi/abi.cp313-win_amd64.pyd +0 -0
- faster_eth_abi/constants.cp313-win_amd64.pyd +0 -0
- faster_eth_abi/decoding.py +66 -80
- faster_eth_abi/from_type_str.cp313-win_amd64.pyd +0 -0
- faster_eth_abi/packed.cp313-win_amd64.pyd +0 -0
- faster_eth_abi/tools/__init__.cp313-win_amd64.pyd +0 -0
- faster_eth_abi/tools/_strategies.cp313-win_amd64.pyd +0 -0
- faster_eth_abi/utils/__init__.cp313-win_amd64.pyd +0 -0
- faster_eth_abi/utils/numeric.cp313-win_amd64.pyd +0 -0
- faster_eth_abi/utils/padding.cp313-win_amd64.pyd +0 -0
- faster_eth_abi/utils/string.cp313-win_amd64.pyd +0 -0
- faster_eth_abi/utils/validation.cp313-win_amd64.pyd +0 -0
- {faster_eth_abi-5.2.12.dist-info → faster_eth_abi-5.2.13.dist-info}/METADATA +14 -2
- faster_eth_abi-5.2.13.dist-info/RECORD +57 -0
- {faster_eth_abi-5.2.12.dist-info → faster_eth_abi-5.2.13.dist-info}/top_level.txt +1 -0
- faster_eth_abi__mypyc.cp313-win_amd64.pyd +0 -0
- faster_eth_abi-5.2.12.dist-info/RECORD +0 -46
- {faster_eth_abi-5.2.12.dist-info → faster_eth_abi-5.2.13.dist-info}/WHEEL +0 -0
- {faster_eth_abi-5.2.12.dist-info → faster_eth_abi-5.2.13.dist-info}/licenses/LICENSE +0 -0
|
Binary file
|
|
Binary file
|
|
@@ -1,11 +1,19 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: faster_eth_abi
|
|
3
|
-
Version: 5.2.
|
|
3
|
+
Version: 5.2.13
|
|
4
4
|
Summary: A 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
|
|
8
8
|
License: MIT
|
|
9
|
+
Project-URL: Documentation, https://eth-abi.readthedocs.io/en/stable/
|
|
10
|
+
Project-URL: Release Notes, https://github.com/BobTheBuidler/faster-eth-abi/releases
|
|
11
|
+
Project-URL: Issues, https://github.com/BobTheBuidler/faster-eth-abi/issues
|
|
12
|
+
Project-URL: Source - Precompiled (.py), https://github.com/BobTheBuidler/faster-eth-utils/tree/master/faster_eth_utils
|
|
13
|
+
Project-URL: Source - Compiled (.c), https://github.com/BobTheBuidler/faster-eth-utils/tree/master/build
|
|
14
|
+
Project-URL: Benchmarks, https://github.com/BobTheBuidler/faster-eth-utils/tree/master/benchmarks
|
|
15
|
+
Project-URL: Benchmarks - Results, https://github.com/BobTheBuidler/faster-eth-utils/tree/master/benchmarks/results
|
|
16
|
+
Project-URL: Original, https://github.com/ethereum/eth-abi
|
|
9
17
|
Keywords: ethereum
|
|
10
18
|
Classifier: Development Status :: 5 - Production/Stable
|
|
11
19
|
Classifier: Intended Audience :: Developers
|
|
@@ -38,7 +46,6 @@ Requires-Dist: pre-commit>=3.4.0; extra == "dev"
|
|
|
38
46
|
Requires-Dist: tox>=4.0.0; extra == "dev"
|
|
39
47
|
Requires-Dist: twine; extra == "dev"
|
|
40
48
|
Requires-Dist: wheel; extra == "dev"
|
|
41
|
-
Requires-Dist: pytest-codspeed; extra == "dev"
|
|
42
49
|
Requires-Dist: pytest-benchmark; extra == "dev"
|
|
43
50
|
Requires-Dist: sphinx>=6.0.0; extra == "dev"
|
|
44
51
|
Requires-Dist: sphinx-autobuild>=2021.3.14; extra == "dev"
|
|
@@ -64,6 +71,10 @@ Requires-Dist: eth-hash[pycryptodome]; extra == "test"
|
|
|
64
71
|
Requires-Dist: hypothesis<6.108.7,>=6.22.0; extra == "test"
|
|
65
72
|
Provides-Extra: tools
|
|
66
73
|
Requires-Dist: hypothesis<6.108.7,>=6.22.0; extra == "tools"
|
|
74
|
+
Provides-Extra: codspeed
|
|
75
|
+
Requires-Dist: pytest>=7.0.0; extra == "codspeed"
|
|
76
|
+
Requires-Dist: pytest-codspeed; extra == "codspeed"
|
|
77
|
+
Requires-Dist: pytest-test-groups; extra == "codspeed"
|
|
67
78
|
Dynamic: author
|
|
68
79
|
Dynamic: author-email
|
|
69
80
|
Dynamic: classifier
|
|
@@ -73,6 +84,7 @@ Dynamic: home-page
|
|
|
73
84
|
Dynamic: keywords
|
|
74
85
|
Dynamic: license
|
|
75
86
|
Dynamic: license-file
|
|
87
|
+
Dynamic: project-url
|
|
76
88
|
Dynamic: provides-extra
|
|
77
89
|
Dynamic: requires-dist
|
|
78
90
|
Dynamic: requires-python
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
faster_eth_abi__mypyc.cp313-win_amd64.pyd,sha256=Hex--OwP0AgfJOpEAL5Bxx5eLyWzfHl54BygJ6E-l10,226816
|
|
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.cp313-win_amd64.pyd,sha256=Cg9Vj8VtTsUrzBwbE1abcv6uS4602pL3ZCBHCOQbw9U,10752
|
|
15
|
+
faster_eth_abi/_codec.py,sha256=9l49XZv5CHdbSU_WShfvjCOGwrRhH75aFsh6eaZ-e0E,2341
|
|
16
|
+
faster_eth_abi/_decoding.cp313-win_amd64.pyd,sha256=M_p61Cquc7ZueAW9QvmoZ2V92vYIk5pt9-e_EXHXmJk,10752
|
|
17
|
+
faster_eth_abi/_decoding.py,sha256=NLY4Jpny7mfUHqMWSvh_xxywlTanO_6z5jw8mldJMbc,9899
|
|
18
|
+
faster_eth_abi/_encoding.cp313-win_amd64.pyd,sha256=4EFkdbFjwAqMHoQcw0naa75NwdmmJ96TCOHhXCUWLuA,10752
|
|
19
|
+
faster_eth_abi/_encoding.py,sha256=rsZihtFUqYu80ANOsxP9QwpFJDH73VBVJSzOrllBm2k,3340
|
|
20
|
+
faster_eth_abi/_grammar.cp313-win_amd64.pyd,sha256=BrEjlz3LRzh55gxONjVUMznD_v7xC04VidXxgxT-JGc,10752
|
|
21
|
+
faster_eth_abi/_grammar.py,sha256=IyftL6Ayb-6C1jR2xAt4y_NRnqdGtH08gwoz5zrF3rc,10491
|
|
22
|
+
faster_eth_abi/abi.cp313-win_amd64.pyd,sha256=azKLf-cXIUMm5UN0SdWtvsYKFcjHiuUb4s1ELlpNX1E,10752
|
|
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.cp313-win_amd64.pyd,sha256=tTP8YW3-v3ANt4o5f-hHt_WBJfFPfniycfBRpOOj0Co,10752
|
|
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.cp313-win_amd64.pyd,sha256=ztYIqzvXieWsWugzp8kOiD2LerDA8Y1D0K-ZpJGRndA,10752
|
|
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.cp313-win_amd64.pyd,sha256=og8Zn6jBKAGEDCGyzajci2lJWtWkVzhYp4YUK5ZgepI,10752
|
|
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__.cp313-win_amd64.pyd,sha256=opR4gTTnR-8eruhKi3Yiqe9pVrWsXKQUkBwsHRYDo24,10752
|
|
40
|
+
faster_eth_abi/tools/__init__.py,sha256=jxyQnb34ldRjCTYi3Ajb5h5QlFQ6ODfKQNhOCVwR7Ao,54
|
|
41
|
+
faster_eth_abi/tools/_strategies.cp313-win_amd64.pyd,sha256=AJsarHPq14SViz8q2eqqshf0oK8ii3WHk8R3A7e9nYc,10752
|
|
42
|
+
faster_eth_abi/tools/_strategies.py,sha256=02wmJpj336nOFu7pBVaH4ucj3FORweKkiGqlaRgy-8c,6330
|
|
43
|
+
faster_eth_abi/utils/__init__.cp313-win_amd64.pyd,sha256=YFnfkwD_T45kO9tbL7E_ET5v6B-sq3U_i7tKnzxbqHg,10752
|
|
44
|
+
faster_eth_abi/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
45
|
+
faster_eth_abi/utils/numeric.cp313-win_amd64.pyd,sha256=kLvJD35poy9H76t1njI2Mq_vh4CWTWhWkdr9zQJxcbs,10752
|
|
46
|
+
faster_eth_abi/utils/numeric.py,sha256=saAVL12dfDrMXZeao3u2jar-U2y57YKVUqF6VOzoLxs,3395
|
|
47
|
+
faster_eth_abi/utils/padding.cp313-win_amd64.pyd,sha256=XUwJFhghgXTc-zBFy1vflG4J6Ed8pIcn4dJ8RGjuT2A,10752
|
|
48
|
+
faster_eth_abi/utils/padding.py,sha256=k6dkOiQ3k0OhQUZ6blCiL1VOQVYGyynucafbySjcFfY,515
|
|
49
|
+
faster_eth_abi/utils/string.cp313-win_amd64.pyd,sha256=6r9nikgP5yBhzWNfc1KnQ5UmQuQD0RuwN-_BUY-l99I,10752
|
|
50
|
+
faster_eth_abi/utils/string.py,sha256=wYcvWof4kuitrGGSe_NOduQaxE4HHYmpraCPXKcZxMs,455
|
|
51
|
+
faster_eth_abi/utils/validation.cp313-win_amd64.pyd,sha256=1cFjg7FommowMbSJxkhRI1eJoT6tFEzwWrpQX_uofZ4,10752
|
|
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=qV0EIPljj1XC_vuSatRWjn02nZIz3N1t8jsZz7HBr2U,101
|
|
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,,
|
|
Binary file
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
faster_eth_abi__mypyc.cp313-win_amd64.pyd,sha256=JpPHM3T02vHXSpg1XZWoGv4beHvxnl5f-aJimuGEWU4,213504
|
|
2
|
-
faster_eth_abi/__init__.py,sha256=JpTfPTiusUGMmX8sEsGAxvILxFbvhh3MEyfiKOd5o9g,217
|
|
3
|
-
faster_eth_abi/_codec.cp313-win_amd64.pyd,sha256=9phf1pNTCCYbrqUrCx5_3An1qn2knFj6U3Gu-YSzQZw,10752
|
|
4
|
-
faster_eth_abi/_codec.py,sha256=9l49XZv5CHdbSU_WShfvjCOGwrRhH75aFsh6eaZ-e0E,2341
|
|
5
|
-
faster_eth_abi/_decoding.cp313-win_amd64.pyd,sha256=8mQgCY0SUb1d2mSvDtMOZSs34T_gg8ZQh1d44vzEvHE,10752
|
|
6
|
-
faster_eth_abi/_decoding.py,sha256=06ddzblp834cZ_6SA5Q3J3_XnQTa0gmWeM4gYRxrcSk,4555
|
|
7
|
-
faster_eth_abi/_encoding.cp313-win_amd64.pyd,sha256=ms1T6WIZYuBwdOKXEq8kwGxFqcwaZn-f9UgkNDAfVJs,10752
|
|
8
|
-
faster_eth_abi/_encoding.py,sha256=rsZihtFUqYu80ANOsxP9QwpFJDH73VBVJSzOrllBm2k,3340
|
|
9
|
-
faster_eth_abi/_grammar.cp313-win_amd64.pyd,sha256=Mt8PUNKaDpIwKg8By2tTVhrB_dK9VmoL2ktKeGPwhks,10752
|
|
10
|
-
faster_eth_abi/_grammar.py,sha256=IyftL6Ayb-6C1jR2xAt4y_NRnqdGtH08gwoz5zrF3rc,10491
|
|
11
|
-
faster_eth_abi/abi.cp313-win_amd64.pyd,sha256=jGVm5fQVaGB75oCQZ1FaejUbnfRWIIHQYTH6IiytUWM,10752
|
|
12
|
-
faster_eth_abi/abi.py,sha256=-t9OVBSCxy6SuWpCu3cxHrCqkx8_svPIRb0MSFXEl5Q,383
|
|
13
|
-
faster_eth_abi/base.py,sha256=y4IXpQJWGfUISl3xjCO420Grxido3tE2ebPV2rK-DvM,1229
|
|
14
|
-
faster_eth_abi/codec.py,sha256=QZFGQ8Fg2BRVGDVLVpmrkmqjtkdMVG1Gqr9AD7dSEI0,4557
|
|
15
|
-
faster_eth_abi/constants.cp313-win_amd64.pyd,sha256=2FyGqLOuDncTiAygGf8V1_4dc07jYEsFptMNLKOf1QI,10752
|
|
16
|
-
faster_eth_abi/constants.py,sha256=q3FGynS-Eb78cnrL6mBoAvTDz16PF3tW2OylTMd6ajs,114
|
|
17
|
-
faster_eth_abi/decoding.py,sha256=7zOcSLdiQhAJWnCOSAdFg2AtSMoj8ZdN2IYE_aZKHQU,17028
|
|
18
|
-
faster_eth_abi/encoding.py,sha256=P1svhYylcZa55cQ9LPj6jV8iJVLSL_c5SIZT1Umol58,19679
|
|
19
|
-
faster_eth_abi/exceptions.py,sha256=r4O6bmcxRzw44lNNgz_QdhukQfrnRfTm10xK2wPuba4,3701
|
|
20
|
-
faster_eth_abi/from_type_str.cp313-win_amd64.pyd,sha256=d1l5UsCiSzGOFPUi395gGNujgFemww0dgKXFrZcTi3I,10752
|
|
21
|
-
faster_eth_abi/from_type_str.py,sha256=PV697XdxjhwHYCBbaA-H_9I2CrfkQ5vsSkSxpCOt8eg,4474
|
|
22
|
-
faster_eth_abi/grammar.py,sha256=a2FopTc3TtRvjYVHlOPo18IPEXueuD8IqDdCyiuFStM,4681
|
|
23
|
-
faster_eth_abi/io.py,sha256=E_QX7aYAjGYnkNAZmJMmSmx1lqvl_FDNmMFruTi9UX4,3831
|
|
24
|
-
faster_eth_abi/packed.cp313-win_amd64.pyd,sha256=vYWQnNletxEKLzhmBsvkRR5RFOVKsitYh7l13TwwULY,10752
|
|
25
|
-
faster_eth_abi/packed.py,sha256=RZ2chvsx9_AL9OxY1ixHTsaUJHaR_tmrNdViOIp-xSg,316
|
|
26
|
-
faster_eth_abi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
|
-
faster_eth_abi/registry.py,sha256=WYkH4BF2of91Pv8xLxBPTgBP0xV2uJ0FsYlYx-XrUcc,21758
|
|
28
|
-
faster_eth_abi/tools/__init__.cp313-win_amd64.pyd,sha256=pLzYgOF6EXlW09re9-lLTt_wddw4H7KImpycyXPzdwc,10752
|
|
29
|
-
faster_eth_abi/tools/__init__.py,sha256=jxyQnb34ldRjCTYi3Ajb5h5QlFQ6ODfKQNhOCVwR7Ao,54
|
|
30
|
-
faster_eth_abi/tools/_strategies.cp313-win_amd64.pyd,sha256=sWQ5NrSC876SAwVLVzesa5MdpwXbUW4b6Ag99ok4BZg,10752
|
|
31
|
-
faster_eth_abi/tools/_strategies.py,sha256=02wmJpj336nOFu7pBVaH4ucj3FORweKkiGqlaRgy-8c,6330
|
|
32
|
-
faster_eth_abi/utils/__init__.cp313-win_amd64.pyd,sha256=6n_jkN7buzNAcNj7_pqb_N0fXLvRxAXrQTUf6ZkMDAs,10752
|
|
33
|
-
faster_eth_abi/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
|
-
faster_eth_abi/utils/numeric.cp313-win_amd64.pyd,sha256=ieGyIs0oRiaQkRY4rWMlGWYJIglT3bVfrooq780Wbmk,10752
|
|
35
|
-
faster_eth_abi/utils/numeric.py,sha256=saAVL12dfDrMXZeao3u2jar-U2y57YKVUqF6VOzoLxs,3395
|
|
36
|
-
faster_eth_abi/utils/padding.cp313-win_amd64.pyd,sha256=YQ8fQlywJ-lPZbg4F8KX--yPFn7TAPhFaS6H2RACunI,10752
|
|
37
|
-
faster_eth_abi/utils/padding.py,sha256=k6dkOiQ3k0OhQUZ6blCiL1VOQVYGyynucafbySjcFfY,515
|
|
38
|
-
faster_eth_abi/utils/string.cp313-win_amd64.pyd,sha256=Ymx4ZN1RLs9pAtAzmJer_HZ7TjYCidTDzqZDxe6y5FA,10752
|
|
39
|
-
faster_eth_abi/utils/string.py,sha256=wYcvWof4kuitrGGSe_NOduQaxE4HHYmpraCPXKcZxMs,455
|
|
40
|
-
faster_eth_abi/utils/validation.cp313-win_amd64.pyd,sha256=10pXN2lm4R_FUyv5UuG65sJY-hN0IOmmoECrmc81Jo8,10752
|
|
41
|
-
faster_eth_abi/utils/validation.py,sha256=9veO7wyQsmcFgeaGrsKdSifjV1gaXfTDDKAt1EbKHYY,539
|
|
42
|
-
faster_eth_abi-5.2.12.dist-info/licenses/LICENSE,sha256=Q1lDDWXR057JL2Y7HTAwclCF32_LCloN4sGUkXO1YeI,1127
|
|
43
|
-
faster_eth_abi-5.2.12.dist-info/METADATA,sha256=E4sFIP3_tN7CYkNFZ9jmQqKB4jZs0fRhDuGuceQvPwo,6210
|
|
44
|
-
faster_eth_abi-5.2.12.dist-info/WHEEL,sha256=qV0EIPljj1XC_vuSatRWjn02nZIz3N1t8jsZz7HBr2U,101
|
|
45
|
-
faster_eth_abi-5.2.12.dist-info/top_level.txt,sha256=Y0kTTMPnPpssaR0jlmJwQ2XbkYXMEj_80Ewd7quo1Cg,37
|
|
46
|
-
faster_eth_abi-5.2.12.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|