faster-eth-abi 5.2.11__cp312-cp312-macosx_11_0_arm64.whl → 5.2.13__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 (38) hide show
  1. benchmarks/__init__.py +1 -0
  2. benchmarks/batch.py +9 -0
  3. benchmarks/data.py +313 -0
  4. benchmarks/test_abi_benchmarks.py +82 -0
  5. benchmarks/test_decoding_benchmarks.py +109 -0
  6. benchmarks/test_encoding_benchmarks.py +99 -0
  7. benchmarks/test_grammar_benchmarks.py +38 -0
  8. benchmarks/test_io_benchmarks.py +99 -0
  9. benchmarks/test_packed_benchmarks.py +41 -0
  10. benchmarks/test_registry_benchmarks.py +42 -0
  11. benchmarks/type_strings.py +26 -0
  12. faster_eth_abi/_codec.cpython-312-darwin.so +0 -0
  13. faster_eth_abi/_decoding.cpython-312-darwin.so +0 -0
  14. faster_eth_abi/_decoding.py +136 -5
  15. faster_eth_abi/_encoding.cpython-312-darwin.so +0 -0
  16. faster_eth_abi/_grammar.cpython-312-darwin.so +0 -0
  17. faster_eth_abi/abi.cpython-312-darwin.so +0 -0
  18. faster_eth_abi/constants.cpython-312-darwin.so +0 -0
  19. faster_eth_abi/decoding.py +66 -80
  20. faster_eth_abi/exceptions.py +22 -13
  21. faster_eth_abi/from_type_str.cpython-312-darwin.so +0 -0
  22. faster_eth_abi/packed.cpython-312-darwin.so +0 -0
  23. faster_eth_abi/tools/__init__.cpython-312-darwin.so +0 -0
  24. faster_eth_abi/tools/_strategies.cpython-312-darwin.so +0 -0
  25. faster_eth_abi/utils/__init__.cpython-312-darwin.so +0 -0
  26. faster_eth_abi/utils/numeric.cpython-312-darwin.so +0 -0
  27. faster_eth_abi/utils/padding.cpython-312-darwin.so +0 -0
  28. faster_eth_abi/utils/string.cpython-312-darwin.so +0 -0
  29. faster_eth_abi/utils/validation.cpython-312-darwin.so +0 -0
  30. {faster_eth_abi-5.2.11.dist-info → faster_eth_abi-5.2.13.dist-info}/METADATA +23 -6
  31. faster_eth_abi-5.2.13.dist-info/RECORD +57 -0
  32. faster_eth_abi-5.2.13.dist-info/top_level.txt +3 -0
  33. faster_eth_abi__mypyc.cpython-312-darwin.so +0 -0
  34. 29859a9e7da9d19bb98c__mypyc.cpython-312-darwin.so +0 -0
  35. faster_eth_abi-5.2.11.dist-info/RECORD +0 -46
  36. faster_eth_abi-5.2.11.dist-info/top_level.txt +0 -2
  37. {faster_eth_abi-5.2.11.dist-info → faster_eth_abi-5.2.13.dist-info}/WHEEL +0 -0
  38. {faster_eth_abi-5.2.11.dist-info → faster_eth_abi-5.2.13.dist-info}/licenses/LICENSE +0 -0
@@ -1,20 +1,29 @@
1
+ # mypy: disable-error-code="misc"
2
+ # cannot subclass `Any`
3
+
4
+ """
5
+ faster-eth-abi exceptions always inherit from eth-abi exceptions, so porting to faster-eth-abi
6
+ does not require any change to your existing exception handlers. They will continue to work.
7
+ """
8
+
9
+ import eth_abi.exceptions
1
10
  import parsimonious
2
11
 
3
12
 
4
- class EncodingError(Exception):
13
+ class EncodingError(eth_abi.exceptions.EncodingError):
5
14
  """
6
15
  Base exception for any error that occurs during encoding.
7
16
  """
8
17
 
9
18
 
10
- class EncodingTypeError(EncodingError):
19
+ class EncodingTypeError(EncodingError, eth_abi.exceptions.EncodingTypeError):
11
20
  """
12
21
  Raised when trying to encode a python value whose type is not supported for
13
22
  the output ABI type.
14
23
  """
15
24
 
16
25
 
17
- class IllegalValue(EncodingError):
26
+ class IllegalValue(EncodingError, eth_abi.exceptions.IllegalValue):
18
27
  """
19
28
  Raised when trying to encode a python value with the correct type but with
20
29
  a value that is not considered legal for the output ABI type.
@@ -26,7 +35,7 @@ class IllegalValue(EncodingError):
26
35
  """
27
36
 
28
37
 
29
- class ValueOutOfBounds(IllegalValue):
38
+ class ValueOutOfBounds(IllegalValue, eth_abi.exceptions.ValueOutOfBounds):
30
39
  """
31
40
  Raised when trying to encode a python value with the correct type but with
32
41
  a value that appears outside the range of valid values for the output ABI
@@ -39,31 +48,31 @@ class ValueOutOfBounds(IllegalValue):
39
48
  """
40
49
 
41
50
 
42
- class DecodingError(Exception):
51
+ class DecodingError(eth_abi.exceptions.DecodingError):
43
52
  """
44
53
  Base exception for any error that occurs during decoding.
45
54
  """
46
55
 
47
56
 
48
- class InsufficientDataBytes(DecodingError):
57
+ class InsufficientDataBytes(DecodingError, eth_abi.exceptions.InsufficientDataBytes):
49
58
  """
50
59
  Raised when there are insufficient data to decode a value for a given ABI type.
51
60
  """
52
61
 
53
62
 
54
- class NonEmptyPaddingBytes(DecodingError):
63
+ class NonEmptyPaddingBytes(DecodingError, eth_abi.exceptions.NonEmptyPaddingBytes):
55
64
  """
56
65
  Raised when the padding bytes of an ABI value are malformed.
57
66
  """
58
67
 
59
68
 
60
- class InvalidPointer(DecodingError):
69
+ class InvalidPointer(DecodingError, eth_abi.exceptions.InvalidPointer):
61
70
  """
62
71
  Raised when the pointer to a value in the ABI encoding is invalid.
63
72
  """
64
73
 
65
74
 
66
- class ParseError(parsimonious.ParseError): # type: ignore[misc] # subclasses Any
75
+ class ParseError(eth_abi.exceptions.ParseError):
67
76
  """
68
77
  Raised when an ABI type string cannot be parsed.
69
78
  """
@@ -75,7 +84,7 @@ class ParseError(parsimonious.ParseError): # type: ignore[misc] # subclasses An
75
84
  )
76
85
 
77
86
 
78
- class ABITypeError(ValueError):
87
+ class ABITypeError(eth_abi.exceptions.ABITypeError):
79
88
  """
80
89
  Raised when a parsed ABI type has inconsistent properties; for example,
81
90
  when trying to parse the type string ``'uint7'`` (which has a bit-width
@@ -83,13 +92,13 @@ class ABITypeError(ValueError):
83
92
  """
84
93
 
85
94
 
86
- class PredicateMappingError(Exception):
95
+ class PredicateMappingError(eth_abi.exceptions.PredicateMappingError):
87
96
  """
88
97
  Raised when an error occurs in a registry's internal mapping.
89
98
  """
90
99
 
91
100
 
92
- class NoEntriesFound(ValueError, PredicateMappingError):
101
+ class NoEntriesFound(PredicateMappingError, eth_abi.exceptions.NoEntriesFound):
93
102
  """
94
103
  Raised when no registration is found for a type string in a registry's
95
104
  internal mapping.
@@ -101,7 +110,7 @@ class NoEntriesFound(ValueError, PredicateMappingError):
101
110
  """
102
111
 
103
112
 
104
- class MultipleEntriesFound(ValueError, PredicateMappingError):
113
+ class MultipleEntriesFound(PredicateMappingError, eth_abi.exceptions.MultipleEntriesFound):
105
114
  """
106
115
  Raised when multiple registrations are found for a type string in a
107
116
  registry's internal mapping. This error is non-recoverable and indicates
Binary file
@@ -1,11 +1,19 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: faster_eth_abi
3
- Version: 5.2.11
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
@@ -25,6 +33,7 @@ Description-Content-Type: text/markdown
25
33
  License-File: LICENSE
26
34
  Requires-Dist: cchecksum<0.4,>=0.2.6
27
35
  Requires-Dist: faster-eth-utils>=2.0.0
36
+ Requires-Dist: eth-abi<6,>=5.0.1
28
37
  Requires-Dist: eth-typing>=3.0.0
29
38
  Requires-Dist: mypy_extensions
30
39
  Requires-Dist: parsimonious<0.11.0,>=0.10.0
@@ -32,17 +41,16 @@ Provides-Extra: dev
32
41
  Requires-Dist: build>=0.9.0; extra == "dev"
33
42
  Requires-Dist: bump_my_version>=0.19.0; extra == "dev"
34
43
  Requires-Dist: ipython; extra == "dev"
35
- Requires-Dist: mypy==1.10.0; extra == "dev"
44
+ Requires-Dist: mypy==1.18.2; extra == "dev"
36
45
  Requires-Dist: pre-commit>=3.4.0; extra == "dev"
37
46
  Requires-Dist: tox>=4.0.0; extra == "dev"
38
47
  Requires-Dist: twine; extra == "dev"
39
48
  Requires-Dist: wheel; extra == "dev"
40
- Requires-Dist: pytest-codspeed; extra == "dev"
41
49
  Requires-Dist: pytest-benchmark; extra == "dev"
42
50
  Requires-Dist: sphinx>=6.0.0; extra == "dev"
43
51
  Requires-Dist: sphinx-autobuild>=2021.3.14; extra == "dev"
44
52
  Requires-Dist: sphinx_rtd_theme>=1.0.0; extra == "dev"
45
- Requires-Dist: towncrier<25,>=24; extra == "dev"
53
+ Requires-Dist: towncrier<26,>=25; extra == "dev"
46
54
  Requires-Dist: pytest>=7.0.0; extra == "dev"
47
55
  Requires-Dist: pytest-timeout>=2.0.0; extra == "dev"
48
56
  Requires-Dist: pytest-xdist>=2.4.0; extra == "dev"
@@ -53,7 +61,7 @@ Provides-Extra: docs
53
61
  Requires-Dist: sphinx>=6.0.0; extra == "docs"
54
62
  Requires-Dist: sphinx-autobuild>=2021.3.14; extra == "docs"
55
63
  Requires-Dist: sphinx_rtd_theme>=1.0.0; extra == "docs"
56
- Requires-Dist: towncrier<25,>=24; extra == "docs"
64
+ Requires-Dist: towncrier<26,>=25; extra == "docs"
57
65
  Provides-Extra: test
58
66
  Requires-Dist: pytest>=7.0.0; extra == "test"
59
67
  Requires-Dist: pytest-timeout>=2.0.0; extra == "test"
@@ -63,6 +71,10 @@ Requires-Dist: eth-hash[pycryptodome]; extra == "test"
63
71
  Requires-Dist: hypothesis<6.108.7,>=6.22.0; extra == "test"
64
72
  Provides-Extra: tools
65
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"
66
78
  Dynamic: author
67
79
  Dynamic: author-email
68
80
  Dynamic: classifier
@@ -72,6 +84,7 @@ Dynamic: home-page
72
84
  Dynamic: keywords
73
85
  Dynamic: license
74
86
  Dynamic: license-file
87
+ Dynamic: project-url
75
88
  Dynamic: provides-extra
76
89
  Dynamic: requires-dist
77
90
  Dynamic: requires-python
@@ -85,10 +98,14 @@ Dynamic: summary
85
98
 
86
99
  ##### This fork will be kept up-to-date with [eth-abi](https://github.com/ethereum/eth-abi). I will pull updates as they are released and push new [faster-eth-abi](https://github.com/BobTheBuidler/faster-eth-abi) releases to [PyPI](https://pypi.org/project/faster-eth-abi/).
87
100
 
88
- ##### You can find the compiled C code on faster-eth-abi [master](https://github.com/BobTheBuidler/eth-abi/tree/master) branch.
101
+ ##### Starting in [v5.2.12](https://github.com/BobTheBuidler/faster-eth-abi/releases/tag/v5.2.12), all `faster-eth-abi` Exception classes inherit from the matching Exception class in `eth-abi`, so porting to `faster-eth-abi` does not require any change to your existing exception handlers. All existing exception handling in your codebase will continue to work as it did when originaly implemented.
89
102
 
90
103
  ##### We benchmark `faster-eth-abi` against the original `eth-abi` for your convenience. [See results](https://github.com/BobTheBuidler/faster-eth-abi/tree/master/benchmarks/results).
91
104
 
105
+ ##### You can find the compiled C code and header files in the [build](https://github.com/BobTheBuidler/faster-eth-abi/tree/master/build) directory.
106
+
107
+ ###### You may also be interested in: [faster-web3.py](https://github.com/BobTheBuidler/faster-web3.py/), [faster-hexbytes](https://github.com/BobTheBuidler/faster-hexbytes/), and [faster-eth-utils](https://github.com/BobTheBuidler/faster-eth-utils/)
108
+
92
109
  ##### The original eth-abi readme is below:
93
110
 
94
111
  # Ethereum Contract Interface (ABI) Utility
@@ -0,0 +1,57 @@
1
+ faster_eth_abi__mypyc.cpython-312-darwin.so,sha256=fwstutT1TO5t9wnPB5KNLff9AeDE8Gd8gQSQiJeUMsE,629992
2
+ faster_eth_abi/_encoding.py,sha256=nBIqwHbvT7loTmiYlcl7Z8HhnOGEY-jr-cpCZEU-1X8,3230
3
+ faster_eth_abi/_encoding.cpython-312-darwin.so,sha256=gkvhI5ZnxvvFlE3dN39Fb69i3q-Q2mNnqXn78iztKHc,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=8xqugQBMyAqWERxivnXjzoz4ApnEwGZkTuincMAVyQI,50632
7
+ faster_eth_abi/registry.py,sha256=RqHQNDLzvQ6embdnOSxlpvPw7dn-jqUU9MshLe5JuuM,21082
8
+ faster_eth_abi/_decoding.py,sha256=WbFy1GxPYGHduUNCjiTz4gLbNuDffbbJ6MFujjINTpw,9613
9
+ faster_eth_abi/constants.cpython-312-darwin.so,sha256=F0RI44t78NLmK_Fxnk89eeHGoIpc16o1A7Q06MAMCxw,50656
10
+ faster_eth_abi/_codec.cpython-312-darwin.so,sha256=rlh976bRxm2-saUc6jEwybpYPMJxJ3k0sO0AF9KV5GQ,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=MYddNAyi3cUKnkV0KYSvff8SeJe3oXaw0GH--iujLzY,15350
16
+ faster_eth_abi/grammar.py,sha256=JJ7QLGJVKmoWwx3J8O-5snrza-Si4NdCweUummqzjlo,4511
17
+ faster_eth_abi/_grammar.cpython-312-darwin.so,sha256=EhQ9wE0Y_1tbV9AA9xbaUoZoQkds_3Hbb72eTY9K37E,50656
18
+ faster_eth_abi/from_type_str.py,sha256=C3QNACXS-5lTtOx1kNAqfZLvky37wV7gqY3Cf9QoEkk,4337
19
+ faster_eth_abi/_decoding.cpython-312-darwin.so,sha256=Ds5KaTgT6kIGgSfO44OpxLGeMr7sm34xJXnQB033d1g,50656
20
+ faster_eth_abi/packed.cpython-312-darwin.so,sha256=04AqcOuFmfOtYGiUZ5loGkuI-ALD704YHWlskWYVAzc,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=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/from_type_str.cpython-312-darwin.so,sha256=gsXDxcY7y59MqWsp0Th6kZ0vUuoONBIX90sDMsKxoXQ,50672
28
+ faster_eth_abi/tools/__init__.cpython-312-darwin.so,sha256=Z4rjpTxqfxRmneQ-cXJwfQ7BKJ5M_xEDP6LYag-uhs0,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=zrTrmgyfKVI11ueuKC89HP_aiYKtIe8eMnKlBBrcIds,50672
32
+ faster_eth_abi/utils/__init__.cpython-312-darwin.so,sha256=pP97yY8LR_aLu4WpyBXY92BHuQ0LwfE7nmEtowR2LMw,50640
33
+ faster_eth_abi/utils/numeric.cpython-312-darwin.so,sha256=PIwbzBawk4qqa70gO70m4kcqwmH7kVolTKj5u5W2Cbg,50656
34
+ faster_eth_abi/utils/padding.cpython-312-darwin.so,sha256=q5yB1BX_W_NEvTyDFzbfHS1ThGHWM58pCbBGr-uP_70,50656
35
+ faster_eth_abi/utils/validation.cpython-312-darwin.so,sha256=0jOUp_GVyWgCmkUSbwjDU9eky8FCjHhiVVz-Iya3S90,50672
36
+ faster_eth_abi/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
37
+ faster_eth_abi/utils/string.cpython-312-darwin.so,sha256=E6lImOLSjWcyn-yC_tvosaoUcKBspBdCVmPwvyV8Ut4,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
+ 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=V1loQ6TpxABu1APUg0MoTRBOzSKT5xVc3skizX-ovCU,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
@@ -0,0 +1,3 @@
1
+ benchmarks
2
+ faster_eth_abi
3
+ faster_eth_abi__mypyc
@@ -1,46 +0,0 @@
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
@@ -1,2 +0,0 @@
1
- 29859a9e7da9d19bb98c__mypyc
2
- faster_eth_abi