faster-eth-abi 5.2.14__cp314-cp314t-macosx_11_0_arm64.whl → 5.2.15__cp314-cp314t-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.
- faster_eth_abi/_codec.cpython-314t-darwin.so +0 -0
- faster_eth_abi/_decoding.cpython-314t-darwin.so +0 -0
- faster_eth_abi/_encoding.cpython-314t-darwin.so +0 -0
- faster_eth_abi/_grammar.cpython-314t-darwin.so +0 -0
- faster_eth_abi/_grammar.py +9 -3
- faster_eth_abi/abi.cpython-314t-darwin.so +0 -0
- faster_eth_abi/codec.py +1550 -0
- faster_eth_abi/constants.cpython-314t-darwin.so +0 -0
- faster_eth_abi/from_type_str.cpython-314t-darwin.so +0 -0
- faster_eth_abi/packed.cpython-314t-darwin.so +0 -0
- faster_eth_abi/tools/__init__.cpython-314t-darwin.so +0 -0
- faster_eth_abi/tools/_strategies.cpython-314t-darwin.so +0 -0
- faster_eth_abi/typing.py +4543 -0
- faster_eth_abi/utils/__init__.cpython-314t-darwin.so +0 -0
- faster_eth_abi/utils/numeric.cpython-314t-darwin.so +0 -0
- faster_eth_abi/utils/padding.cpython-314t-darwin.so +0 -0
- faster_eth_abi/utils/string.cpython-314t-darwin.so +0 -0
- faster_eth_abi/utils/validation.cpython-314t-darwin.so +0 -0
- {faster_eth_abi-5.2.14.dist-info → faster_eth_abi-5.2.15.dist-info}/METADATA +4 -4
- {faster_eth_abi-5.2.14.dist-info → faster_eth_abi-5.2.15.dist-info}/RECORD +24 -23
- faster_eth_abi__mypyc.cpython-314t-darwin.so +0 -0
- {faster_eth_abi-5.2.14.dist-info → faster_eth_abi-5.2.15.dist-info}/WHEEL +0 -0
- {faster_eth_abi-5.2.14.dist-info → faster_eth_abi-5.2.15.dist-info}/licenses/LICENSE +0 -0
- {faster_eth_abi-5.2.14.dist-info → faster_eth_abi-5.2.15.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: faster_eth_abi
|
|
3
|
-
Version: 5.2.
|
|
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
|
[](https://pypi.org/project/faster-eth-abi/)
|
|
96
96
|
[](https://pypistats.org/packages/faster-eth-abi)
|
|
@@ -1,49 +1,45 @@
|
|
|
1
|
-
faster_eth_abi__mypyc.cpython-314t-darwin.so,sha256=
|
|
2
|
-
faster_eth_abi/_encoding.cpython-314t-darwin.so,sha256=
|
|
3
|
-
faster_eth_abi/_decoding.cpython-314t-darwin.so,sha256=
|
|
1
|
+
faster_eth_abi__mypyc.cpython-314t-darwin.so,sha256=bTtx9Cpg2zKZZ-m15WvyLDzPgifsBSNBLXIRPA3ERzA,744352
|
|
2
|
+
faster_eth_abi/_encoding.cpython-314t-darwin.so,sha256=rxrCxjVlLLVO_Ck_sOLUH-YPY0zV7W3SjZKMA9ZUEEM,51040
|
|
3
|
+
faster_eth_abi/_decoding.cpython-314t-darwin.so,sha256=aOStq1RmH_LgA-K1BpBmov4ZIyEFZxNDQm2Bah20iKQ,51040
|
|
4
4
|
faster_eth_abi/_encoding.py,sha256=n3POAR1IAjQObaDTY_GyqgQPwmTIC2CT7VuAf5vBvyg,8540
|
|
5
|
-
faster_eth_abi/abi.cpython-314t-darwin.so,sha256=
|
|
5
|
+
faster_eth_abi/abi.cpython-314t-darwin.so,sha256=8BZfZcBNHmbXU_LVsDz5hIB5VfPKlOJtwZ4R5qf_QFg,50984
|
|
6
6
|
faster_eth_abi/packed.py,sha256=qDPBjish_0h26O7xGWopnlD4pRkphFuFq4izgIqT600,301
|
|
7
7
|
faster_eth_abi/encoding.py,sha256=3-MNnZ7PUNZXUbu-HrmM_PDSVfAEZcdmrbMu8GHqYMQ,19685
|
|
8
8
|
faster_eth_abi/registry.py,sha256=HmspZBvwUrkeVjecCOQJUjXkYP5aDAGbkCx1CzASppk,21554
|
|
9
9
|
faster_eth_abi/_decoding.py,sha256=WbFy1GxPYGHduUNCjiTz4gLbNuDffbbJ6MFujjINTpw,9613
|
|
10
10
|
faster_eth_abi/constants.py,sha256=uJbuND1rFs_Pexuz58TKd-BJPuoA6hLqFEX6kkDS-dE,107
|
|
11
11
|
faster_eth_abi/io.py,sha256=PjOnBChWh_-6ADkpJQONnxHVwsAfC_4bRiT6YQhlP6c,3728
|
|
12
|
-
faster_eth_abi/_grammar.cpython-314t-darwin.so,sha256=
|
|
12
|
+
faster_eth_abi/_grammar.cpython-314t-darwin.so,sha256=sHaJVnfwmh0bW8eMbfyvvtIms-1FdfzndZWl0pk1x8U,51024
|
|
13
13
|
faster_eth_abi/__init__.py,sha256=55jGpiVbsTGNu-c_rr-wwyH3eqEv9MELSTWa4AMiKvU,205
|
|
14
|
-
faster_eth_abi/_grammar.py,sha256=
|
|
14
|
+
faster_eth_abi/_grammar.py,sha256=e-t-f_v0BssDnma3yD-FpVR3IHdp-5vK1L-0s9vodKk,10315
|
|
15
15
|
faster_eth_abi/decoding.py,sha256=vBrGAol7NC_7iA3j4V_rwtLwo2hzK1b60-o559iuHls,16227
|
|
16
|
-
faster_eth_abi/packed.cpython-314t-darwin.so,sha256=
|
|
16
|
+
faster_eth_abi/packed.cpython-314t-darwin.so,sha256=TegrXZIelDLgb8zyUbF2kfXmA234cBlS0uD4efeClTc,51008
|
|
17
17
|
faster_eth_abi/grammar.py,sha256=JJ7QLGJVKmoWwx3J8O-5snrza-Si4NdCweUummqzjlo,4511
|
|
18
|
-
faster_eth_abi/from_type_str.cpython-314t-darwin.so,sha256=
|
|
18
|
+
faster_eth_abi/from_type_str.cpython-314t-darwin.so,sha256=630s7aY7QmUUs-fVKQQQi31DVZAzkM8faC3xjSt97wU,51080
|
|
19
19
|
faster_eth_abi/from_type_str.py,sha256=C3QNACXS-5lTtOx1kNAqfZLvky37wV7gqY3Cf9QoEkk,4337
|
|
20
20
|
faster_eth_abi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
21
|
faster_eth_abi/abi.py,sha256=HzkXy0EjHraNbbC5l-EhVqVcx5vy8tcykiKIO4Fp1xw,366
|
|
22
22
|
faster_eth_abi/exceptions.py,sha256=pbwvH_WeAlSlwqA8w79e_RCt8_uaasLcGtRY7yT9LTQ,3577
|
|
23
23
|
faster_eth_abi/_codec.py,sha256=qcK1Mfy_6tO48srobl-WyBBIkEFzwpMQrdGQ8H5TH-o,2271
|
|
24
|
-
faster_eth_abi/
|
|
25
|
-
faster_eth_abi/
|
|
26
|
-
faster_eth_abi/
|
|
24
|
+
faster_eth_abi/typing.py,sha256=muZI3t_mw2awfy2JWa4XT2zFIqko03Z_P8s6rkWvu0g,103723
|
|
25
|
+
faster_eth_abi/codec.py,sha256=d1swlSK3m3_yn3vmzb08esOohJcDxDvoHnmP1SQKlpk,39712
|
|
26
|
+
faster_eth_abi/_codec.cpython-314t-darwin.so,sha256=ijs3M0EC9W4ayUZiSAM39NTcwk_wvzu3VmQFrtum3u0,51008
|
|
27
|
+
faster_eth_abi/constants.cpython-314t-darwin.so,sha256=qqEC1AOYKKhhVFdNTMqMDlUjxsJ_AYQUI_lbbPlFH1E,51040
|
|
27
28
|
faster_eth_abi/base.py,sha256=eMpUM78FhJg5wHPj6glvJRpS1AmvQ_1ks9ENwyu68hc,1188
|
|
28
29
|
faster_eth_abi/tools/_strategies.py,sha256=XQhK8eG87W7LB5v6ibzEAB0BkhTr-oc7dIzPvZu6AE0,6089
|
|
29
|
-
faster_eth_abi/tools/_strategies.cpython-314t-darwin.so,sha256=
|
|
30
|
+
faster_eth_abi/tools/_strategies.cpython-314t-darwin.so,sha256=KjMeq4LUwHWfqPEdG0f7cCglHeysFGnaj7jkDqkxhaM,51072
|
|
30
31
|
faster_eth_abi/tools/__init__.py,sha256=trtATEmgu4ctg04qkejbODDzvDSofgcVJ3rkzMP_hQE,51
|
|
31
|
-
faster_eth_abi/tools/__init__.cpython-314t-darwin.so,sha256=
|
|
32
|
-
faster_eth_abi/utils/numeric.cpython-314t-darwin.so,sha256=
|
|
32
|
+
faster_eth_abi/tools/__init__.cpython-314t-darwin.so,sha256=mVcfc5zEd467APyfQpduo_4n3Uu1LSQAdN16PQ5Myhw,51008
|
|
33
|
+
faster_eth_abi/utils/numeric.cpython-314t-darwin.so,sha256=cG92syIXKgFZoiXE0hMFxo7yGpy0fNm4yntLScchOBM,51040
|
|
33
34
|
faster_eth_abi/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
|
-
faster_eth_abi/utils/validation.cpython-314t-darwin.so,sha256=
|
|
35
|
-
faster_eth_abi/utils/padding.cpython-314t-darwin.so,sha256=
|
|
36
|
-
faster_eth_abi/utils/__init__.cpython-314t-darwin.so,sha256=
|
|
35
|
+
faster_eth_abi/utils/validation.cpython-314t-darwin.so,sha256=tOgmK6MPHL02rzvC8Dc7dPp6JlWbGOqKehxnA7Krz0s,51056
|
|
36
|
+
faster_eth_abi/utils/padding.cpython-314t-darwin.so,sha256=nRvlA3rbu52rzUeDfbsElbQnN8YuJWGKpGQw_13WbDA,51040
|
|
37
|
+
faster_eth_abi/utils/__init__.cpython-314t-darwin.so,sha256=39Bec5DrCV9Bk-5wPQU8xtY7dzvbSksgJQUq2DtE2k0,51008
|
|
37
38
|
faster_eth_abi/utils/numeric.py,sha256=fkdazLcgd7FN0JGSSyb6Jsx555QdgRf2N0mxrm6rGB4,3278
|
|
38
39
|
faster_eth_abi/utils/string.py,sha256=fjsAR2C7Xlu5bHomxx5l4rlADFtByzGTQfugMTo8TQk,436
|
|
39
|
-
faster_eth_abi/utils/string.cpython-314t-darwin.so,sha256=
|
|
40
|
+
faster_eth_abi/utils/string.cpython-314t-darwin.so,sha256=rghgJgdMzfgnpMH-ihsA32WTz8Wj-kS7dmVLfP5nOl0,51024
|
|
40
41
|
faster_eth_abi/utils/padding.py,sha256=JBuFhdrvKWLrmmJBZ-a6pqbHWydAuiUBt2aBjCwVcVE,493
|
|
41
42
|
faster_eth_abi/utils/validation.py,sha256=NA2wRacYEBdkpQnZfmeDvzF-sHyy6NT2QzCFuBnYJVI,521
|
|
42
|
-
faster_eth_abi-5.2.14.dist-info/RECORD,,
|
|
43
|
-
faster_eth_abi-5.2.14.dist-info/WHEEL,sha256=26nyvDx4qlf6NyRSh1NSNrXJDCQeX0hnJ7EH1bB1egM,137
|
|
44
|
-
faster_eth_abi-5.2.14.dist-info/top_level.txt,sha256=z3gorxabz8D2eg5A3YX2M3p3JMFRLLX3DRp0jAwNZOY,48
|
|
45
|
-
faster_eth_abi-5.2.14.dist-info/METADATA,sha256=9Y3LCTA4ytM8PUoj2EoYJ1QTfGfyli9EY-HQCu2ugx8,6978
|
|
46
|
-
faster_eth_abi-5.2.14.dist-info/licenses/LICENSE,sha256=P_zrhVa0OXK-_XuA0RF3d3gwMLXRSBkn2fWraC4CFLo,1106
|
|
47
43
|
benchmarks/test_registry_benchmarks.py,sha256=RQTkFsOk9pIDPd84bZqm3mfBuKSYhuQCCmSblYDzFOE,1262
|
|
48
44
|
benchmarks/type_strings.py,sha256=tC12IvA5TbJFQDvydi1lCxnCHUxWurBW69xLG9Xjywc,566
|
|
49
45
|
benchmarks/batch.py,sha256=8MkG1hAxZerEnPTtrESUAWXB6C-iNnCMQ5yJMz3HDIM,199
|
|
@@ -55,3 +51,8 @@ benchmarks/test_io_benchmarks.py,sha256=SkBGL0FijyVefSlL1VTQIaD1b2oruWjdo6WAck8r
|
|
|
55
51
|
benchmarks/test_encoding_benchmarks.py,sha256=sfVncm7BGIV0k_byD8HCjuwc8oGx4-KLnx8Jk8_9uD0,3212
|
|
56
52
|
benchmarks/data.py,sha256=YeU6gxSF2_XFVnwy7N2CuEiqiS8AFrc4ZQ4B3Z0HRw4,9205
|
|
57
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/WHEEL,sha256=26nyvDx4qlf6NyRSh1NSNrXJDCQeX0hnJ7EH1bB1egM,137
|
|
56
|
+
faster_eth_abi-5.2.15.dist-info/top_level.txt,sha256=z3gorxabz8D2eg5A3YX2M3p3JMFRLLX3DRp0jAwNZOY,48
|
|
57
|
+
faster_eth_abi-5.2.15.dist-info/METADATA,sha256=0g5FmP2D2ZG45S9T-6zh9zMJdBTDsq8lgz1O_QiOgsA,7000
|
|
58
|
+
faster_eth_abi-5.2.15.dist-info/licenses/LICENSE,sha256=P_zrhVa0OXK-_XuA0RF3d3gwMLXRSBkn2fWraC4CFLo,1106
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|