faster-eth-abi 5.2.11__cp311-cp311-win32.whl → 5.2.13__cp311-cp311-win32.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.cp311-win32.pyd +0 -0
  13. faster_eth_abi/_decoding.cp311-win32.pyd +0 -0
  14. faster_eth_abi/_decoding.py +136 -5
  15. faster_eth_abi/_encoding.cp311-win32.pyd +0 -0
  16. faster_eth_abi/_grammar.cp311-win32.pyd +0 -0
  17. faster_eth_abi/abi.cp311-win32.pyd +0 -0
  18. faster_eth_abi/constants.cp311-win32.pyd +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.cp311-win32.pyd +0 -0
  22. faster_eth_abi/packed.cp311-win32.pyd +0 -0
  23. faster_eth_abi/tools/__init__.cp311-win32.pyd +0 -0
  24. faster_eth_abi/tools/_strategies.cp311-win32.pyd +0 -0
  25. faster_eth_abi/utils/__init__.cp311-win32.pyd +0 -0
  26. faster_eth_abi/utils/numeric.cp311-win32.pyd +0 -0
  27. faster_eth_abi/utils/padding.cp311-win32.pyd +0 -0
  28. faster_eth_abi/utils/string.cp311-win32.pyd +0 -0
  29. faster_eth_abi/utils/validation.cp311-win32.pyd +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.cp311-win32.pyd +0 -0
  34. 29859a9e7da9d19bb98c__mypyc.cp311-win32.pyd +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
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.cp311-win32.pyd,sha256=vonJ4z2iZdaoRcuYUWSKUmospzU1Qmy_FJOrJdbez_4,185856
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.cp311-win32.pyd,sha256=KZ7Mx9cmh2vfcuLhC_FvZeaWW1FYbNNN4hVg8g51A00,9216
15
+ faster_eth_abi/_codec.py,sha256=9l49XZv5CHdbSU_WShfvjCOGwrRhH75aFsh6eaZ-e0E,2341
16
+ faster_eth_abi/_decoding.cp311-win32.pyd,sha256=mSaqie1dj11K5IMFidgfolP8lKGzVXWkYCZxyDEZS1I,9216
17
+ faster_eth_abi/_decoding.py,sha256=NLY4Jpny7mfUHqMWSvh_xxywlTanO_6z5jw8mldJMbc,9899
18
+ faster_eth_abi/_encoding.cp311-win32.pyd,sha256=mJX_TlIKJYKBH5WNVq6gHjEp_UDUDme76yt8pSJ6Pgk,9216
19
+ faster_eth_abi/_encoding.py,sha256=rsZihtFUqYu80ANOsxP9QwpFJDH73VBVJSzOrllBm2k,3340
20
+ faster_eth_abi/_grammar.cp311-win32.pyd,sha256=w9rLKCT6rlhd3rsHKbtLeFPS1gGDzMHVl897JEqmlvI,9216
21
+ faster_eth_abi/_grammar.py,sha256=IyftL6Ayb-6C1jR2xAt4y_NRnqdGtH08gwoz5zrF3rc,10491
22
+ faster_eth_abi/abi.cp311-win32.pyd,sha256=TI0OCt2oSbdQRoNXhnQlUyMraMPV3xIV1SSaMvVVrGY,9216
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.cp311-win32.pyd,sha256=NWMjZaAe8MciJ1Uv3lrp3FN04FtYvgM6hidnyaesd7Y,9216
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.cp311-win32.pyd,sha256=RCB5rHKb9v3222E7gEG5orQhunjFjQQJvzyyEc_a1_k,9216
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.cp311-win32.pyd,sha256=IkD5bwLuagwZKYhKi6gMLFXekivVCBwKUa9GmNhpnIc,9216
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__.cp311-win32.pyd,sha256=yeybkk5KE5-EZyMqVZKXV_JDr6ra2WUwgWSsq-h-TY4,9216
40
+ faster_eth_abi/tools/__init__.py,sha256=jxyQnb34ldRjCTYi3Ajb5h5QlFQ6ODfKQNhOCVwR7Ao,54
41
+ faster_eth_abi/tools/_strategies.cp311-win32.pyd,sha256=MVwTtcNRF5mq9nZwVuV_L-k7eLy-o3leir48Io13f-8,9216
42
+ faster_eth_abi/tools/_strategies.py,sha256=02wmJpj336nOFu7pBVaH4ucj3FORweKkiGqlaRgy-8c,6330
43
+ faster_eth_abi/utils/__init__.cp311-win32.pyd,sha256=S3o1DPom1YvEpEGdaU3aXjdBEUNM4uE-BwZCBoHOSIo,9216
44
+ faster_eth_abi/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
45
+ faster_eth_abi/utils/numeric.cp311-win32.pyd,sha256=kn6LDQZNHXs9AiyrC9Ag3RTPic2QGKmeCuZvrZCiYSE,9216
46
+ faster_eth_abi/utils/numeric.py,sha256=saAVL12dfDrMXZeao3u2jar-U2y57YKVUqF6VOzoLxs,3395
47
+ faster_eth_abi/utils/padding.cp311-win32.pyd,sha256=BKracfb4Z3fqf4V_7vd1S8TKhGRdyJ6JTAOuz2Oq0nM,9216
48
+ faster_eth_abi/utils/padding.py,sha256=k6dkOiQ3k0OhQUZ6blCiL1VOQVYGyynucafbySjcFfY,515
49
+ faster_eth_abi/utils/string.cp311-win32.pyd,sha256=RLHGQGUYXXvMzX4EBnyQHaR9IzZLzHw_lU8xX4E2EXs,9216
50
+ faster_eth_abi/utils/string.py,sha256=wYcvWof4kuitrGGSe_NOduQaxE4HHYmpraCPXKcZxMs,455
51
+ faster_eth_abi/utils/validation.cp311-win32.pyd,sha256=MZJqVOr_pLAXL1favWcLUjoefgIF0sZespqJjITLVeA,9216
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=Ri8zddKrjGdgjlj1OpSsvpDnvHfnQhMQWi3E_v2pqng,97
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,,
@@ -0,0 +1,3 @@
1
+ benchmarks
2
+ faster_eth_abi
3
+ faster_eth_abi__mypyc
Binary file
Binary file
@@ -1,46 +0,0 @@
1
- 29859a9e7da9d19bb98c__mypyc.cp311-win32.pyd,sha256=Tpi-TW6gCUTgUeD723thQG9mMtY87Ws8pAGJu7dcQuI,175616
2
- faster_eth_abi/__init__.py,sha256=JpTfPTiusUGMmX8sEsGAxvILxFbvhh3MEyfiKOd5o9g,217
3
- faster_eth_abi/_codec.cp311-win32.pyd,sha256=BF2i3rQpBP1E2Xwq1lTevxZZprg89e7vo0G12gvO-ms,9216
4
- faster_eth_abi/_codec.py,sha256=9l49XZv5CHdbSU_WShfvjCOGwrRhH75aFsh6eaZ-e0E,2341
5
- faster_eth_abi/_decoding.cp311-win32.pyd,sha256=Pt3onSmlYpu9MhLrXkDn42dg3YbJ3J-LXYkOr3xHGx8,9216
6
- faster_eth_abi/_decoding.py,sha256=06ddzblp834cZ_6SA5Q3J3_XnQTa0gmWeM4gYRxrcSk,4555
7
- faster_eth_abi/_encoding.cp311-win32.pyd,sha256=W27xZwSsnlfzBsrQIG02INb_YMGD352wuSHxvh5KIQ0,9216
8
- faster_eth_abi/_encoding.py,sha256=rsZihtFUqYu80ANOsxP9QwpFJDH73VBVJSzOrllBm2k,3340
9
- faster_eth_abi/_grammar.cp311-win32.pyd,sha256=dTQe8gOGW_Zr3veWKHzzJ42hFxRyg-xx4YPHOo9arSo,9216
10
- faster_eth_abi/_grammar.py,sha256=IyftL6Ayb-6C1jR2xAt4y_NRnqdGtH08gwoz5zrF3rc,10491
11
- faster_eth_abi/abi.cp311-win32.pyd,sha256=kT4ckJ4C6Nb6h_Xa6OdUvJvPtFMJDa8PCvaN7161Bjk,9216
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.cp311-win32.pyd,sha256=zQ4hHxIoTV-2RrS4m1YaiuzNWfdzjsVPpjRa5P_GE8M,9216
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=KzNYRc9t0CvlkveozWvLeo1WC_GarcBkwzV67aY_5yI,3067
20
- faster_eth_abi/from_type_str.cp311-win32.pyd,sha256=GhVFcwR0G-Kf5ddcvTmetGypsIz-NO0I4dFwPRokg0Y,9216
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.cp311-win32.pyd,sha256=GWteD1-kIjpQbD1mMa75Fkr81wDbj2q4TJrkKRxolB0,9216
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__.cp311-win32.pyd,sha256=cRW-F2jwLV8dgScLlyNiLFu1OfMX5CyQKH45FDz_xcQ,9216
29
- faster_eth_abi/tools/__init__.py,sha256=jxyQnb34ldRjCTYi3Ajb5h5QlFQ6ODfKQNhOCVwR7Ao,54
30
- faster_eth_abi/tools/_strategies.cp311-win32.pyd,sha256=9gjWW3zvsG2G982K2R_KmibUsQ3xDqufhtqHFl-PUFU,9216
31
- faster_eth_abi/tools/_strategies.py,sha256=02wmJpj336nOFu7pBVaH4ucj3FORweKkiGqlaRgy-8c,6330
32
- faster_eth_abi/utils/__init__.cp311-win32.pyd,sha256=3V70AFEAb3QJalK4zKCbFnNVLWQ4or-i2R0AtmvvNqA,9216
33
- faster_eth_abi/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
- faster_eth_abi/utils/numeric.cp311-win32.pyd,sha256=b_nLmfpvm8ihmdni_b2ytGtJO8dzUDezzP00ugux4xI,9216
35
- faster_eth_abi/utils/numeric.py,sha256=saAVL12dfDrMXZeao3u2jar-U2y57YKVUqF6VOzoLxs,3395
36
- faster_eth_abi/utils/padding.cp311-win32.pyd,sha256=EMHQSHTKstoKZboRmgRCtbyllwVhatL4qHJ5q2yUduY,9216
37
- faster_eth_abi/utils/padding.py,sha256=k6dkOiQ3k0OhQUZ6blCiL1VOQVYGyynucafbySjcFfY,515
38
- faster_eth_abi/utils/string.cp311-win32.pyd,sha256=_IlEVoPsH_OkU41qFwKHtVhiKqdglt6BUW_IFWvLglk,9216
39
- faster_eth_abi/utils/string.py,sha256=wYcvWof4kuitrGGSe_NOduQaxE4HHYmpraCPXKcZxMs,455
40
- faster_eth_abi/utils/validation.cp311-win32.pyd,sha256=O5LdTj7adc7HDXCVxJlULjvyM7HSKEVHTVswKGkLwwY,9216
41
- faster_eth_abi/utils/validation.py,sha256=9veO7wyQsmcFgeaGrsKdSifjV1gaXfTDDKAt1EbKHYY,539
42
- faster_eth_abi-5.2.11.dist-info/licenses/LICENSE,sha256=Q1lDDWXR057JL2Y7HTAwclCF32_LCloN4sGUkXO1YeI,1127
43
- faster_eth_abi-5.2.11.dist-info/METADATA,sha256=j3DKZJnYww8-W3DBl84b4U2hSZwekKxcVstOreL-V_A,5499
44
- faster_eth_abi-5.2.11.dist-info/WHEEL,sha256=Ri8zddKrjGdgjlj1OpSsvpDnvHfnQhMQWi3E_v2pqng,97
45
- faster_eth_abi-5.2.11.dist-info/top_level.txt,sha256=VAQVriOsRsqhSQlZZtJw0zN50hc93HkAqPqL70TVuRU,43
46
- faster_eth_abi-5.2.11.dist-info/RECORD,,
@@ -1,2 +0,0 @@
1
- 29859a9e7da9d19bb98c__mypyc
2
- faster_eth_abi