faster-eth-abi 5.2.12__cp311-cp311-macosx_11_0_arm64.whl → 5.2.13__cp311-cp311-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.
- 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.cpython-311-darwin.so +0 -0
- faster_eth_abi/_decoding.cpython-311-darwin.so +0 -0
- faster_eth_abi/_decoding.py +136 -5
- faster_eth_abi/_encoding.cpython-311-darwin.so +0 -0
- faster_eth_abi/_grammar.cpython-311-darwin.so +0 -0
- faster_eth_abi/abi.cpython-311-darwin.so +0 -0
- faster_eth_abi/constants.cpython-311-darwin.so +0 -0
- faster_eth_abi/decoding.py +66 -80
- faster_eth_abi/from_type_str.cpython-311-darwin.so +0 -0
- faster_eth_abi/packed.cpython-311-darwin.so +0 -0
- faster_eth_abi/tools/__init__.cpython-311-darwin.so +0 -0
- faster_eth_abi/tools/_strategies.cpython-311-darwin.so +0 -0
- faster_eth_abi/utils/__init__.cpython-311-darwin.so +0 -0
- faster_eth_abi/utils/numeric.cpython-311-darwin.so +0 -0
- faster_eth_abi/utils/padding.cpython-311-darwin.so +0 -0
- faster_eth_abi/utils/string.cpython-311-darwin.so +0 -0
- faster_eth_abi/utils/validation.cpython-311-darwin.so +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.cpython-311-darwin.so +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.cpython-311-darwin.so,sha256=p1U9PRhb4tPN6RY8CZUa7srmeJvH-2RGSIpqrbfMjR0,632008
|
|
2
|
+
faster_eth_abi/_encoding.py,sha256=nBIqwHbvT7loTmiYlcl7Z8HhnOGEY-jr-cpCZEU-1X8,3230
|
|
3
|
+
faster_eth_abi/from_type_str.cpython-311-darwin.so,sha256=Zz8XDrVen6i-qFPrdoqNMABp0GgkeJ1oBB2FNO-royg,50672
|
|
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/registry.py,sha256=RqHQNDLzvQ6embdnOSxlpvPw7dn-jqUU9MshLe5JuuM,21082
|
|
7
|
+
faster_eth_abi/_decoding.py,sha256=WbFy1GxPYGHduUNCjiTz4gLbNuDffbbJ6MFujjINTpw,9613
|
|
8
|
+
faster_eth_abi/constants.py,sha256=uJbuND1rFs_Pexuz58TKd-BJPuoA6hLqFEX6kkDS-dE,107
|
|
9
|
+
faster_eth_abi/io.py,sha256=PjOnBChWh_-6ADkpJQONnxHVwsAfC_4bRiT6YQhlP6c,3728
|
|
10
|
+
faster_eth_abi/__init__.py,sha256=55jGpiVbsTGNu-c_rr-wwyH3eqEv9MELSTWa4AMiKvU,205
|
|
11
|
+
faster_eth_abi/_grammar.py,sha256=6REsztEP6kJvWSB3DoLRGbl1whc-pLj5aEWrT6GxaN0,10142
|
|
12
|
+
faster_eth_abi/decoding.py,sha256=MYddNAyi3cUKnkV0KYSvff8SeJe3oXaw0GH--iujLzY,15350
|
|
13
|
+
faster_eth_abi/packed.cpython-311-darwin.so,sha256=LvOTz2URTfIb_r0BC2PM034mbdoZKQdEa0o2IBmiSYM,50640
|
|
14
|
+
faster_eth_abi/_decoding.cpython-311-darwin.so,sha256=kUXoyj9qxNBubuUfRkrEq40vIXrTYbD3iK_lV6wYI1Q,50656
|
|
15
|
+
faster_eth_abi/grammar.py,sha256=JJ7QLGJVKmoWwx3J8O-5snrza-Si4NdCweUummqzjlo,4511
|
|
16
|
+
faster_eth_abi/constants.cpython-311-darwin.so,sha256=r1sT-OJFgp5xHehz6Rkaecxh6-tjpgYQRsSdC6q25yQ,50656
|
|
17
|
+
faster_eth_abi/abi.cpython-311-darwin.so,sha256=OHGwjOH5tcx_4kli4qVXWKPTRB_1AMI8zpp2SYXtNRg,50632
|
|
18
|
+
faster_eth_abi/_codec.cpython-311-darwin.so,sha256=f4PmT5ugRgpVuvdOOCKrD5SPRPjT3PqevNiCdCl4z1w,50640
|
|
19
|
+
faster_eth_abi/from_type_str.py,sha256=C3QNACXS-5lTtOx1kNAqfZLvky37wV7gqY3Cf9QoEkk,4337
|
|
20
|
+
faster_eth_abi/_grammar.cpython-311-darwin.so,sha256=Xd-nDVL0cJgjyWWGqJPMFGPZp49hMoRri-TWBxXfoBM,50656
|
|
21
|
+
faster_eth_abi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
|
+
faster_eth_abi/abi.py,sha256=HzkXy0EjHraNbbC5l-EhVqVcx5vy8tcykiKIO4Fp1xw,366
|
|
23
|
+
faster_eth_abi/exceptions.py,sha256=pbwvH_WeAlSlwqA8w79e_RCt8_uaasLcGtRY7yT9LTQ,3577
|
|
24
|
+
faster_eth_abi/_codec.py,sha256=7TfO2ij2jBuUK54LuMdhC0YX8NEui3rnN2ZG1NnP3dA,2264
|
|
25
|
+
faster_eth_abi/codec.py,sha256=2CtGd3SdNCF5mLqTrZ2FpMAyBtFt83IGu81T--Gevyc,4415
|
|
26
|
+
faster_eth_abi/base.py,sha256=eMpUM78FhJg5wHPj6glvJRpS1AmvQ_1ks9ENwyu68hc,1188
|
|
27
|
+
faster_eth_abi/_encoding.cpython-311-darwin.so,sha256=dL1ssfw7RNyarrQaR1Gqhc4AwNRkTACBfAmIUIrcr2w,50656
|
|
28
|
+
faster_eth_abi/tools/_strategies.py,sha256=XQhK8eG87W7LB5v6ibzEAB0BkhTr-oc7dIzPvZu6AE0,6089
|
|
29
|
+
faster_eth_abi/tools/__init__.py,sha256=trtATEmgu4ctg04qkejbODDzvDSofgcVJ3rkzMP_hQE,51
|
|
30
|
+
faster_eth_abi/tools/_strategies.cpython-311-darwin.so,sha256=S-_62qjQ2upgg3ijquyoAghfQ26vCBMCd_MLX4TUaLM,50672
|
|
31
|
+
faster_eth_abi/tools/__init__.cpython-311-darwin.so,sha256=m90PZXl1gSa3MKH8qljN5JcJbGQ_tMH5MMuL1kXbcoI,50640
|
|
32
|
+
faster_eth_abi/utils/string.cpython-311-darwin.so,sha256=8WJmj6ZX4Q6kfEwQY0j_uAyrSdO-OzLJZII6iU-qMeM,50656
|
|
33
|
+
faster_eth_abi/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
|
+
faster_eth_abi/utils/validation.cpython-311-darwin.so,sha256=NhBDtmnCeFCrkEL08f2JpZXMPAKueyD-WZfKvnB7OjU,50672
|
|
35
|
+
faster_eth_abi/utils/numeric.py,sha256=fkdazLcgd7FN0JGSSyb6Jsx555QdgRf2N0mxrm6rGB4,3278
|
|
36
|
+
faster_eth_abi/utils/string.py,sha256=fjsAR2C7Xlu5bHomxx5l4rlADFtByzGTQfugMTo8TQk,436
|
|
37
|
+
faster_eth_abi/utils/__init__.cpython-311-darwin.so,sha256=wbSIBwL0WNoef9BBzTKK_gfmZQdHDzuvWLuq977_jWo,50640
|
|
38
|
+
faster_eth_abi/utils/numeric.cpython-311-darwin.so,sha256=uZABS6TC2H2MslJoECRuz7KXLkEN64G-Ip2A5oPrTCs,50656
|
|
39
|
+
faster_eth_abi/utils/padding.py,sha256=JBuFhdrvKWLrmmJBZ-a6pqbHWydAuiUBt2aBjCwVcVE,493
|
|
40
|
+
faster_eth_abi/utils/padding.cpython-311-darwin.so,sha256=HllnpFhmzj0bz4EbbBCHBzkvTw7bUc1a_yhHRzbKOxU,50656
|
|
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/WHEEL,sha256=sunMa2yiYbrNLGeMVDqEA0ayyJbHlex7SCn1TZrEq60,136
|
|
55
|
+
faster_eth_abi-5.2.13.dist-info/top_level.txt,sha256=z3gorxabz8D2eg5A3YX2M3p3JMFRLLX3DRp0jAwNZOY,48
|
|
56
|
+
faster_eth_abi-5.2.13.dist-info/METADATA,sha256=xmxMq_V5kqGXUFQQWEQB33b7JhiezKLg--TTfjkK60s,6978
|
|
57
|
+
faster_eth_abi-5.2.13.dist-info/licenses/LICENSE,sha256=P_zrhVa0OXK-_XuA0RF3d3gwMLXRSBkn2fWraC4CFLo,1106
|
|
Binary file
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
faster_eth_abi__mypyc.cpython-311-darwin.so,sha256=ibDJQ-V7cMvXYb_fIMUu6k_W1ZKhGPUsnJIcm_2CYkE,601864
|
|
2
|
-
faster_eth_abi/_encoding.py,sha256=nBIqwHbvT7loTmiYlcl7Z8HhnOGEY-jr-cpCZEU-1X8,3230
|
|
3
|
-
faster_eth_abi/from_type_str.cpython-311-darwin.so,sha256=Kq-EYY9arjYyUJVGsUt20YUKbS7r9-aPb7LLbys0hBw,50672
|
|
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/registry.py,sha256=RqHQNDLzvQ6embdnOSxlpvPw7dn-jqUU9MshLe5JuuM,21082
|
|
7
|
-
faster_eth_abi/_decoding.py,sha256=TjTj4_uzkxN3opJfk4SxHHWn4r9T8ZztpPA-Uzic1Bg,4400
|
|
8
|
-
faster_eth_abi/constants.py,sha256=uJbuND1rFs_Pexuz58TKd-BJPuoA6hLqFEX6kkDS-dE,107
|
|
9
|
-
faster_eth_abi/io.py,sha256=PjOnBChWh_-6ADkpJQONnxHVwsAfC_4bRiT6YQhlP6c,3728
|
|
10
|
-
faster_eth_abi/__init__.py,sha256=55jGpiVbsTGNu-c_rr-wwyH3eqEv9MELSTWa4AMiKvU,205
|
|
11
|
-
faster_eth_abi/_grammar.py,sha256=6REsztEP6kJvWSB3DoLRGbl1whc-pLj5aEWrT6GxaN0,10142
|
|
12
|
-
faster_eth_abi/decoding.py,sha256=bfMhG-KvKa836JTHyql-HFm5Z37OEd0W8Y0rsaoFn4A,16498
|
|
13
|
-
faster_eth_abi/packed.cpython-311-darwin.so,sha256=8OLzS2Vu4Q0g7y3zqhmVEuSAwOQtzHe6GAOjj80cgbc,50640
|
|
14
|
-
faster_eth_abi/_decoding.cpython-311-darwin.so,sha256=Nq9yHQT-k5R2qaxGGz2PsxQNGvtTSlv8u_WSlWFPEKk,50656
|
|
15
|
-
faster_eth_abi/grammar.py,sha256=JJ7QLGJVKmoWwx3J8O-5snrza-Si4NdCweUummqzjlo,4511
|
|
16
|
-
faster_eth_abi/constants.cpython-311-darwin.so,sha256=uB63cUe0K83Ul6WhFkfcF6svg_vEMZRcDz8RDPdjARc,50656
|
|
17
|
-
faster_eth_abi/abi.cpython-311-darwin.so,sha256=lj9VZps9QCg7EsFMFrWQMmM7aaV4FMb2MK1TlE8wBsw,50632
|
|
18
|
-
faster_eth_abi/_codec.cpython-311-darwin.so,sha256=i9I6p0ksk3Q0Gs-IJfnT6YuVgmxOoUVkH4Gsz_hsvqc,50640
|
|
19
|
-
faster_eth_abi/from_type_str.py,sha256=C3QNACXS-5lTtOx1kNAqfZLvky37wV7gqY3Cf9QoEkk,4337
|
|
20
|
-
faster_eth_abi/_grammar.cpython-311-darwin.so,sha256=Loa_B2_m-5K3lE1m_z2Ok6nc0Dp-_b6jwgQu7ZmKsOM,50656
|
|
21
|
-
faster_eth_abi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
|
-
faster_eth_abi/abi.py,sha256=HzkXy0EjHraNbbC5l-EhVqVcx5vy8tcykiKIO4Fp1xw,366
|
|
23
|
-
faster_eth_abi/exceptions.py,sha256=pbwvH_WeAlSlwqA8w79e_RCt8_uaasLcGtRY7yT9LTQ,3577
|
|
24
|
-
faster_eth_abi/_codec.py,sha256=7TfO2ij2jBuUK54LuMdhC0YX8NEui3rnN2ZG1NnP3dA,2264
|
|
25
|
-
faster_eth_abi/codec.py,sha256=2CtGd3SdNCF5mLqTrZ2FpMAyBtFt83IGu81T--Gevyc,4415
|
|
26
|
-
faster_eth_abi/base.py,sha256=eMpUM78FhJg5wHPj6glvJRpS1AmvQ_1ks9ENwyu68hc,1188
|
|
27
|
-
faster_eth_abi/_encoding.cpython-311-darwin.so,sha256=nz5dJptaZTGsvqvyErwrYSSG8My8gyhrLXHrBAgczWY,50656
|
|
28
|
-
faster_eth_abi/tools/_strategies.py,sha256=XQhK8eG87W7LB5v6ibzEAB0BkhTr-oc7dIzPvZu6AE0,6089
|
|
29
|
-
faster_eth_abi/tools/__init__.py,sha256=trtATEmgu4ctg04qkejbODDzvDSofgcVJ3rkzMP_hQE,51
|
|
30
|
-
faster_eth_abi/tools/_strategies.cpython-311-darwin.so,sha256=z7mmg5bey74gwuqSZXQkjjFRxrJDd5jIrhvPVCUBjvE,50672
|
|
31
|
-
faster_eth_abi/tools/__init__.cpython-311-darwin.so,sha256=4MJ-wudGtM2V48TxZBML8w4mh-vItUoakNAhnx3rfbI,50640
|
|
32
|
-
faster_eth_abi/utils/string.cpython-311-darwin.so,sha256=kbPRebN4zZJYO_tNCksAvs2u9VOGZj2LpL24OHA6aGY,50656
|
|
33
|
-
faster_eth_abi/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
|
-
faster_eth_abi/utils/validation.cpython-311-darwin.so,sha256=OjYuNMaAqUhjF1LzW7_N15bu04uMP1ao3LpQEfDR3bY,50672
|
|
35
|
-
faster_eth_abi/utils/numeric.py,sha256=fkdazLcgd7FN0JGSSyb6Jsx555QdgRf2N0mxrm6rGB4,3278
|
|
36
|
-
faster_eth_abi/utils/string.py,sha256=fjsAR2C7Xlu5bHomxx5l4rlADFtByzGTQfugMTo8TQk,436
|
|
37
|
-
faster_eth_abi/utils/__init__.cpython-311-darwin.so,sha256=s1m4UDL3Bz5QCajWc6sLo8pgfEJ36yb5gXIm1WxHUvk,50640
|
|
38
|
-
faster_eth_abi/utils/numeric.cpython-311-darwin.so,sha256=AKroSGZb2lmmRe_F2Go9fXlxblv_XpwjzmI36tQudco,50656
|
|
39
|
-
faster_eth_abi/utils/padding.py,sha256=JBuFhdrvKWLrmmJBZ-a6pqbHWydAuiUBt2aBjCwVcVE,493
|
|
40
|
-
faster_eth_abi/utils/padding.cpython-311-darwin.so,sha256=exlfkRpu2h7Tej2_13qEK5im2Aw80gAOnqwY2p2eTGM,50656
|
|
41
|
-
faster_eth_abi/utils/validation.py,sha256=NA2wRacYEBdkpQnZfmeDvzF-sHyy6NT2QzCFuBnYJVI,521
|
|
42
|
-
faster_eth_abi-5.2.12.dist-info/RECORD,,
|
|
43
|
-
faster_eth_abi-5.2.12.dist-info/WHEEL,sha256=sunMa2yiYbrNLGeMVDqEA0ayyJbHlex7SCn1TZrEq60,136
|
|
44
|
-
faster_eth_abi-5.2.12.dist-info/top_level.txt,sha256=Y0kTTMPnPpssaR0jlmJwQ2XbkYXMEj_80Ewd7quo1Cg,37
|
|
45
|
-
faster_eth_abi-5.2.12.dist-info/METADATA,sha256=K3VxS87huMNp8qVU0CmhoLSujpwNBFHkoBJS5qqZxpY,6093
|
|
46
|
-
faster_eth_abi-5.2.12.dist-info/licenses/LICENSE,sha256=P_zrhVa0OXK-_XuA0RF3d3gwMLXRSBkn2fWraC4CFLo,1106
|
|
File without changes
|
|
File without changes
|