faster-eth-abi 5.2.9__cp312-cp312-macosx_11_0_arm64.whl → 5.2.11__cp312-cp312-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 (35) hide show
  1. 29859a9e7da9d19bb98c__mypyc.cpython-312-darwin.so +0 -0
  2. faster_eth_abi/_codec.cpython-312-darwin.so +0 -0
  3. faster_eth_abi/_codec.py +0 -4
  4. faster_eth_abi/_decoding.cpython-312-darwin.so +0 -0
  5. faster_eth_abi/_decoding.py +46 -0
  6. faster_eth_abi/_encoding.cpython-312-darwin.so +0 -0
  7. faster_eth_abi/_encoding.py +12 -5
  8. faster_eth_abi/_grammar.cpython-312-darwin.so +0 -0
  9. faster_eth_abi/_grammar.py +349 -0
  10. faster_eth_abi/abi.cpython-312-darwin.so +0 -0
  11. faster_eth_abi/codec.py +8 -9
  12. faster_eth_abi/constants.cpython-312-darwin.so +0 -0
  13. faster_eth_abi/decoding.py +11 -31
  14. faster_eth_abi/from_type_str.cpython-312-darwin.so +0 -0
  15. faster_eth_abi/from_type_str.py +3 -1
  16. faster_eth_abi/grammar.py +10 -308
  17. faster_eth_abi/packed.cpython-312-darwin.so +0 -0
  18. faster_eth_abi/registry.py +37 -24
  19. faster_eth_abi/tools/__init__.cpython-312-darwin.so +0 -0
  20. faster_eth_abi/tools/_strategies.cpython-312-darwin.so +0 -0
  21. faster_eth_abi/tools/_strategies.py +9 -5
  22. faster_eth_abi/utils/__init__.cpython-312-darwin.so +0 -0
  23. faster_eth_abi/utils/numeric.cpython-312-darwin.so +0 -0
  24. faster_eth_abi/utils/numeric.py +51 -20
  25. faster_eth_abi/utils/padding.cpython-312-darwin.so +0 -0
  26. faster_eth_abi/utils/string.cpython-312-darwin.so +0 -0
  27. faster_eth_abi/utils/validation.cpython-312-darwin.so +0 -0
  28. {faster_eth_abi-5.2.9.dist-info → faster_eth_abi-5.2.11.dist-info}/METADATA +1 -1
  29. faster_eth_abi-5.2.11.dist-info/RECORD +46 -0
  30. faster_eth_abi-5.2.11.dist-info/top_level.txt +2 -0
  31. 76f9a3652d4d2667c55c__mypyc.cpython-312-darwin.so +0 -0
  32. faster_eth_abi-5.2.9.dist-info/RECORD +0 -44
  33. faster_eth_abi-5.2.9.dist-info/top_level.txt +0 -2
  34. {faster_eth_abi-5.2.9.dist-info → faster_eth_abi-5.2.11.dist-info}/WHEEL +0 -0
  35. {faster_eth_abi-5.2.9.dist-info → faster_eth_abi-5.2.11.dist-info}/licenses/LICENSE +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: faster_eth_abi
3
- Version: 5.2.9
3
+ Version: 5.2.11
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
@@ -0,0 +1,46 @@
1
+ 29859a9e7da9d19bb98c__mypyc.cpython-312-darwin.so,sha256=oJL4FvAetLWiEWXwkiaMZsCFLt7_v4SyOPJ0K70QqP0,599984
2
+ faster_eth_abi/_encoding.py,sha256=nBIqwHbvT7loTmiYlcl7Z8HhnOGEY-jr-cpCZEU-1X8,3230
3
+ faster_eth_abi/_encoding.cpython-312-darwin.so,sha256=Aq9SpI0yb2sHB04_CxPujSQyqmhRgSbVx3pBmQYfjRI,50656
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-312-darwin.so,sha256=zDqfZXvgNdn2MQ1xpGpLtr1mnnO2M3B1kFwAUKrsQbM,50632
7
+ faster_eth_abi/registry.py,sha256=RqHQNDLzvQ6embdnOSxlpvPw7dn-jqUU9MshLe5JuuM,21082
8
+ faster_eth_abi/_decoding.py,sha256=TjTj4_uzkxN3opJfk4SxHHWn4r9T8ZztpPA-Uzic1Bg,4400
9
+ faster_eth_abi/constants.cpython-312-darwin.so,sha256=0wWYSL0rxPg3grgmItlenxTDeS_y-OY2WwET-sJH4U0,50656
10
+ faster_eth_abi/_codec.cpython-312-darwin.so,sha256=eiAI3fLhrBt26pTI0y8SylxT9pcD_2zy-OUbD4Q8Rew,50640
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=bfMhG-KvKa836JTHyql-HFm5Z37OEd0W8Y0rsaoFn4A,16498
16
+ faster_eth_abi/grammar.py,sha256=JJ7QLGJVKmoWwx3J8O-5snrza-Si4NdCweUummqzjlo,4511
17
+ faster_eth_abi/_grammar.cpython-312-darwin.so,sha256=QgONkXh9YoLygfeirLQaKkMkG1AI3D_YLzMmxV6S1eA,50656
18
+ faster_eth_abi/from_type_str.py,sha256=C3QNACXS-5lTtOx1kNAqfZLvky37wV7gqY3Cf9QoEkk,4337
19
+ faster_eth_abi/_decoding.cpython-312-darwin.so,sha256=oyX_m0iwEzuf16eXYyG5Zv8ce2m8pujo-xXvFq0bgjE,50656
20
+ faster_eth_abi/packed.cpython-312-darwin.so,sha256=jXq3YuB-zaQy8TJYylMaIdo49SGqmDetd0wpZTEVPWY,50640
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=Q_b62R-E0OtlxQGLQSyx6BXkBbLf259KQ1pT5Eb1oh8,2952
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/from_type_str.cpython-312-darwin.so,sha256=SeJEUnYISY3DH93r12nc1pnGfChhU3RQ3cuN28ytsBQ,50672
28
+ faster_eth_abi/tools/__init__.cpython-312-darwin.so,sha256=okkQ4FLaIq_SDoGmoYLt4Xj7DT0iBccH94Kc7mCyPuI,50640
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-312-darwin.so,sha256=87xR8Em4HC5nTSKJ4hXa51SU-5pFgC3W-s4zHecbBkY,50672
32
+ faster_eth_abi/utils/__init__.cpython-312-darwin.so,sha256=WrX063MCQpABOXwF8ZI4RwdTFYnQB8qtNJigzGe8nv8,50640
33
+ faster_eth_abi/utils/numeric.cpython-312-darwin.so,sha256=1FWKLU_t6IXPyxfDQk-YMtGg6Vh7WyQJmmWzGfziCMw,50656
34
+ faster_eth_abi/utils/padding.cpython-312-darwin.so,sha256=__ypulifPOBC4t8zpPhFWbZzBoMShwmAkmOBPv_hdpk,50656
35
+ faster_eth_abi/utils/validation.cpython-312-darwin.so,sha256=qaGbHdLL1uTFuhHA7cf2iTEACdVh626Ex4Wbs3-Jw5E,50672
36
+ faster_eth_abi/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
37
+ faster_eth_abi/utils/string.cpython-312-darwin.so,sha256=2MVuXfiHQD079es4NbgOLcS2wMTLJq03kAZDVw1mOJc,50656
38
+ faster_eth_abi/utils/numeric.py,sha256=fkdazLcgd7FN0JGSSyb6Jsx555QdgRf2N0mxrm6rGB4,3278
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
+ faster_eth_abi-5.2.11.dist-info/RECORD,,
43
+ faster_eth_abi-5.2.11.dist-info/WHEEL,sha256=V1loQ6TpxABu1APUg0MoTRBOzSKT5xVc3skizX-ovCU,136
44
+ faster_eth_abi-5.2.11.dist-info/top_level.txt,sha256=VAQVriOsRsqhSQlZZtJw0zN50hc93HkAqPqL70TVuRU,43
45
+ faster_eth_abi-5.2.11.dist-info/METADATA,sha256=UQZ2Vm2yY9XCOocj7RXuo0dW3uq6L1vjcoY6epS6XZY,5387
46
+ faster_eth_abi-5.2.11.dist-info/licenses/LICENSE,sha256=P_zrhVa0OXK-_XuA0RF3d3gwMLXRSBkn2fWraC4CFLo,1106
@@ -0,0 +1,2 @@
1
+ 29859a9e7da9d19bb98c__mypyc
2
+ faster_eth_abi
@@ -1,44 +0,0 @@
1
- 76f9a3652d4d2667c55c__mypyc.cpython-312-darwin.so,sha256=X4c0-aiDVRpp0_mYQmE9RWursD2ZpGhbTyLfV38-hHU,447168
2
- faster_eth_abi/_encoding.py,sha256=dViSQVK5XvSuLBZADiXImJqXf4dIHkAHYWFzEiJtq-0,3114
3
- faster_eth_abi/_encoding.cpython-312-darwin.so,sha256=Gn33FwwzviIcYyevBYtdSv1yIwGeIA-MvUI55I6yt5I,50656
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-312-darwin.so,sha256=9gXSHivBMnZHYDMUUyIrF2Y4uWddA9qXAJYd-GzNNYY,50632
7
- faster_eth_abi/registry.py,sha256=kCcz1mJiENDzl9jKzJ99EiSLSSIFxfi4-96Fe59qrJM,20529
8
- faster_eth_abi/_decoding.py,sha256=D1-_62Lzw8zqsSymuqDjToDEPJqLU9BfCHPLzJS60Gs,3099
9
- faster_eth_abi/constants.cpython-312-darwin.so,sha256=-k3aHSZvtlwaYyE6qRTEyAfrN00RqLUg-p00O05db_w,50656
10
- faster_eth_abi/_codec.cpython-312-darwin.so,sha256=f6jatqB-tYBRWMRynkO0O8z2iRpoT3s25oISEKjz25Q,50640
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/decoding.py,sha256=LUBH3JSTHC70CttRB66QkVLJHDB0xHNlLBwJZXUvVEU,17082
15
- faster_eth_abi/grammar.py,sha256=IEnPoH3_p23Pjrn7nFG5O1_pX5arzRVQDyoUF40FgaI,13371
16
- faster_eth_abi/from_type_str.py,sha256=aAZ58YUBZuMF_DovGkthvnacAD6X6VkYFs0Zbv9JxoM,4311
17
- faster_eth_abi/_decoding.cpython-312-darwin.so,sha256=UA8Ml3I0zBAIOFdqV9Dufgc1GdWflAu05jr5RCkxlv4,50656
18
- faster_eth_abi/packed.cpython-312-darwin.so,sha256=ta9uDuNrdXkIKItrgqppMGual8_bD2C0C53SIpVlaDs,50640
19
- faster_eth_abi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
- faster_eth_abi/abi.py,sha256=HzkXy0EjHraNbbC5l-EhVqVcx5vy8tcykiKIO4Fp1xw,366
21
- faster_eth_abi/exceptions.py,sha256=Q_b62R-E0OtlxQGLQSyx6BXkBbLf259KQ1pT5Eb1oh8,2952
22
- faster_eth_abi/_codec.py,sha256=cGnNaQcaSmfywmro7WoxtZaTyUBTeAMB_K9cgoxz9pg,2428
23
- faster_eth_abi/codec.py,sha256=KMIgLUBeutkDTsRts8Y2Ydt3V0n5bMGLd21CZvwR9ds,4437
24
- faster_eth_abi/base.py,sha256=eMpUM78FhJg5wHPj6glvJRpS1AmvQ_1ks9ENwyu68hc,1188
25
- faster_eth_abi/from_type_str.cpython-312-darwin.so,sha256=eZ10qQpOdKnWJHtMx8smUryMXMv0ZLiSVQxdcghJfmo,50672
26
- faster_eth_abi/tools/__init__.cpython-312-darwin.so,sha256=7Re1oUEdi1O1WUm1qEDsUDHoQTK1q7r1ufSDmtOZRx8,50640
27
- faster_eth_abi/tools/_strategies.py,sha256=iLIjqRw7FlEEIXtnhSgtrWwbxO74dslT0EQrgE2o8I8,5960
28
- faster_eth_abi/tools/__init__.py,sha256=trtATEmgu4ctg04qkejbODDzvDSofgcVJ3rkzMP_hQE,51
29
- faster_eth_abi/tools/_strategies.cpython-312-darwin.so,sha256=WICH0hhuJxcqJxi2vVM9_SkrYC_JlcWnOmCwFcp1rR4,50672
30
- faster_eth_abi/utils/__init__.cpython-312-darwin.so,sha256=VHDyuinh68jhqWM8y9b7zGZhAAtthvHCl0mFMa28_uI,50640
31
- faster_eth_abi/utils/numeric.cpython-312-darwin.so,sha256=mnnAfLMAgRDKSqYV7YdpYn8h4Q0lsH67-edNZp-MjzM,50656
32
- faster_eth_abi/utils/padding.cpython-312-darwin.so,sha256=vJJ4ODcggMpI9tbODYUHy4zEENZkpwzXHlMgNMKuOM4,50656
33
- faster_eth_abi/utils/validation.cpython-312-darwin.so,sha256=3B_pgJvYLf1ANairewsAD4JNyEAzXFlWawkz1vrg8Oo,50672
34
- faster_eth_abi/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
- faster_eth_abi/utils/string.cpython-312-darwin.so,sha256=f8WJnVIsKvyNpzetGQvFMxWlqSygAue7ZgNoVTmgxWc,50656
36
- faster_eth_abi/utils/numeric.py,sha256=VU6Z76zvZn7rYaZMyDy1XO9A9ukKTzOrtA80jypp_LQ,2146
37
- faster_eth_abi/utils/string.py,sha256=fjsAR2C7Xlu5bHomxx5l4rlADFtByzGTQfugMTo8TQk,436
38
- faster_eth_abi/utils/padding.py,sha256=JBuFhdrvKWLrmmJBZ-a6pqbHWydAuiUBt2aBjCwVcVE,493
39
- faster_eth_abi/utils/validation.py,sha256=NA2wRacYEBdkpQnZfmeDvzF-sHyy6NT2QzCFuBnYJVI,521
40
- faster_eth_abi-5.2.9.dist-info/RECORD,,
41
- faster_eth_abi-5.2.9.dist-info/WHEEL,sha256=V1loQ6TpxABu1APUg0MoTRBOzSKT5xVc3skizX-ovCU,136
42
- faster_eth_abi-5.2.9.dist-info/top_level.txt,sha256=CO2FQwf61aFzjYze7Wywa5KQdJ6bbLkzDoGEjDF2g9o,43
43
- faster_eth_abi-5.2.9.dist-info/METADATA,sha256=vouxWfHEo8DDfaZLtiDp-RignQ0BGZsEXWOvr5y7Eo0,5386
44
- faster_eth_abi-5.2.9.dist-info/licenses/LICENSE,sha256=P_zrhVa0OXK-_XuA0RF3d3gwMLXRSBkn2fWraC4CFLo,1106
@@ -1,2 +0,0 @@
1
- 76f9a3652d4d2667c55c__mypyc
2
- faster_eth_abi