faster-eth-abi 5.2.11__cp314-cp314-macosx_11_0_arm64.whl → 5.2.13__cp314-cp314-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-314-darwin.so +0 -0
- faster_eth_abi/_decoding.cpython-314-darwin.so +0 -0
- faster_eth_abi/_decoding.py +136 -5
- faster_eth_abi/_encoding.cpython-314-darwin.so +0 -0
- faster_eth_abi/_grammar.cpython-314-darwin.so +0 -0
- faster_eth_abi/abi.cpython-314-darwin.so +0 -0
- faster_eth_abi/constants.cpython-314-darwin.so +0 -0
- faster_eth_abi/decoding.py +66 -80
- faster_eth_abi/exceptions.py +22 -13
- faster_eth_abi/from_type_str.cpython-314-darwin.so +0 -0
- faster_eth_abi/packed.cpython-314-darwin.so +0 -0
- faster_eth_abi/tools/__init__.cpython-314-darwin.so +0 -0
- faster_eth_abi/tools/_strategies.cpython-314-darwin.so +0 -0
- faster_eth_abi/utils/__init__.cpython-314-darwin.so +0 -0
- faster_eth_abi/utils/numeric.cpython-314-darwin.so +0 -0
- faster_eth_abi/utils/padding.cpython-314-darwin.so +0 -0
- faster_eth_abi/utils/string.cpython-314-darwin.so +0 -0
- faster_eth_abi/utils/validation.cpython-314-darwin.so +0 -0
- {faster_eth_abi-5.2.11.dist-info → faster_eth_abi-5.2.13.dist-info}/METADATA +23 -6
- faster_eth_abi-5.2.13.dist-info/RECORD +57 -0
- faster_eth_abi-5.2.13.dist-info/top_level.txt +3 -0
- faster_eth_abi__mypyc.cpython-314-darwin.so +0 -0
- 29859a9e7da9d19bb98c__mypyc.cpython-314-darwin.so +0 -0
- faster_eth_abi-5.2.11.dist-info/RECORD +0 -46
- faster_eth_abi-5.2.11.dist-info/top_level.txt +0 -2
- {faster_eth_abi-5.2.11.dist-info → faster_eth_abi-5.2.13.dist-info}/WHEEL +0 -0
- {faster_eth_abi-5.2.11.dist-info → faster_eth_abi-5.2.13.dist-info}/licenses/LICENSE +0 -0
faster_eth_abi/exceptions.py
CHANGED
|
@@ -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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
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
|
|
@@ -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.
|
|
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
|
|
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
|
|
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
|
-
#####
|
|
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-314-darwin.so,sha256=tiOKhHwLioTwo95gmjJSFle21qCuPaZlztc8ChwE3tg,630552
|
|
2
|
+
faster_eth_abi/_encoding.cpython-314-darwin.so,sha256=5FwC-2IhvNcrreRQIKS0TrVDo-gpnYzSGqOLOLavFqM,50656
|
|
3
|
+
faster_eth_abi/_encoding.py,sha256=nBIqwHbvT7loTmiYlcl7Z8HhnOGEY-jr-cpCZEU-1X8,3230
|
|
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/_grammar.cpython-314-darwin.so,sha256=dThXJz5AHhZrS1O0BtFooKz8ER3nGb7XqKzZYh4sGiY,50656
|
|
9
|
+
faster_eth_abi/constants.py,sha256=uJbuND1rFs_Pexuz58TKd-BJPuoA6hLqFEX6kkDS-dE,107
|
|
10
|
+
faster_eth_abi/io.py,sha256=PjOnBChWh_-6ADkpJQONnxHVwsAfC_4bRiT6YQhlP6c,3728
|
|
11
|
+
faster_eth_abi/constants.cpython-314-darwin.so,sha256=itCuH0vjVv21a2aom8_N2_AJ0wYV86VlPE-7DG1wmpI,50656
|
|
12
|
+
faster_eth_abi/__init__.py,sha256=55jGpiVbsTGNu-c_rr-wwyH3eqEv9MELSTWa4AMiKvU,205
|
|
13
|
+
faster_eth_abi/abi.cpython-314-darwin.so,sha256=frHSp5J3AWvNfjboDRtxVOP-P-K6QriYUhWXLQO6XeE,50632
|
|
14
|
+
faster_eth_abi/_grammar.py,sha256=6REsztEP6kJvWSB3DoLRGbl1whc-pLj5aEWrT6GxaN0,10142
|
|
15
|
+
faster_eth_abi/_codec.cpython-314-darwin.so,sha256=Fqw96Zr_HH1TZL8xRKL6MXcLQx7mxuNcDA1mMwT9yD8,50640
|
|
16
|
+
faster_eth_abi/decoding.py,sha256=MYddNAyi3cUKnkV0KYSvff8SeJe3oXaw0GH--iujLzY,15350
|
|
17
|
+
faster_eth_abi/grammar.py,sha256=JJ7QLGJVKmoWwx3J8O-5snrza-Si4NdCweUummqzjlo,4511
|
|
18
|
+
faster_eth_abi/from_type_str.py,sha256=C3QNACXS-5lTtOx1kNAqfZLvky37wV7gqY3Cf9QoEkk,4337
|
|
19
|
+
faster_eth_abi/_decoding.cpython-314-darwin.so,sha256=ixFL7D4G_sPJmfXVZjTAyFOCnZMU3NiulGtNL7SZhvg,50656
|
|
20
|
+
faster_eth_abi/packed.cpython-314-darwin.so,sha256=ekZroulzCdvGNg_BmZwc_aYoKLM_J7ShFGYtlwLkzew,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/from_type_str.cpython-314-darwin.so,sha256=NRqumoMzOd9-UzEMtOsIg53Axrj4PrVq6z4RVEWqsEA,50672
|
|
26
|
+
faster_eth_abi/codec.py,sha256=2CtGd3SdNCF5mLqTrZ2FpMAyBtFt83IGu81T--Gevyc,4415
|
|
27
|
+
faster_eth_abi/base.py,sha256=eMpUM78FhJg5wHPj6glvJRpS1AmvQ_1ks9ENwyu68hc,1188
|
|
28
|
+
faster_eth_abi/tools/__init__.cpython-314-darwin.so,sha256=EHJH-v6aUg-AlEW91xARKlnSqjti4g9D77w11KevjX8,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-314-darwin.so,sha256=AnpUYGs0jft1CL1U2kRft2JAsgOkdhMjV_YmgaqB_W0,50672
|
|
32
|
+
faster_eth_abi/utils/padding.cpython-314-darwin.so,sha256=jeRUJrid7PaMGwj9-IIvDGZTYkwm1JdwvZpZg3lLgUE,50656
|
|
33
|
+
faster_eth_abi/utils/__init__.cpython-314-darwin.so,sha256=rMq-udW4ptHAYbyt4ukxpqxR31DhKjrJbWnc_f9FVPI,50640
|
|
34
|
+
faster_eth_abi/utils/numeric.cpython-314-darwin.so,sha256=gCUlK7ilel0WjuFLal8lK0hLd_80SeZ5aaKRQEzQfc8,50656
|
|
35
|
+
faster_eth_abi/utils/validation.cpython-314-darwin.so,sha256=OgvRSC6XIN4eSeUIo6TYa0WkNKeeZejvcjvxLoH9xJ8,50672
|
|
36
|
+
faster_eth_abi/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
37
|
+
faster_eth_abi/utils/string.cpython-314-darwin.so,sha256=Z8fE0gEWG4tHrgHUr7v15sjw8L6OfFTnm1JmBFK2ZhU,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=2Id6qreet5t4wZv58bZfijJ58qrc2xkw6OVvWfeqxV0,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
|
|
Binary file
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
29859a9e7da9d19bb98c__mypyc.cpython-314-darwin.so,sha256=LBSeAyokOhMHBXpx3tcBW1zQ_BBbQcyJrX2HYFez5pE,600640
|
|
2
|
-
faster_eth_abi/_encoding.cpython-314-darwin.so,sha256=fgawdhesZM0AQEoK1HsmmEHbEKEmaRFiqSFkJUxHALU,50656
|
|
3
|
-
faster_eth_abi/_encoding.py,sha256=nBIqwHbvT7loTmiYlcl7Z8HhnOGEY-jr-cpCZEU-1X8,3230
|
|
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/_grammar.cpython-314-darwin.so,sha256=msc9BtkwWJxCWYmx69L3_rvKtGOc3gbmi9uQI85E8LQ,50656
|
|
9
|
-
faster_eth_abi/constants.py,sha256=uJbuND1rFs_Pexuz58TKd-BJPuoA6hLqFEX6kkDS-dE,107
|
|
10
|
-
faster_eth_abi/io.py,sha256=PjOnBChWh_-6ADkpJQONnxHVwsAfC_4bRiT6YQhlP6c,3728
|
|
11
|
-
faster_eth_abi/constants.cpython-314-darwin.so,sha256=p_PIxyAbgEJhHlv8xAIA_OuxlJPyAnpMwSkTOU0Euv4,50656
|
|
12
|
-
faster_eth_abi/__init__.py,sha256=55jGpiVbsTGNu-c_rr-wwyH3eqEv9MELSTWa4AMiKvU,205
|
|
13
|
-
faster_eth_abi/abi.cpython-314-darwin.so,sha256=Qr6metgvz-cJJPYW5BjZgNVXqIWyLnDr_bXGFev92i8,50632
|
|
14
|
-
faster_eth_abi/_grammar.py,sha256=6REsztEP6kJvWSB3DoLRGbl1whc-pLj5aEWrT6GxaN0,10142
|
|
15
|
-
faster_eth_abi/_codec.cpython-314-darwin.so,sha256=mgy4qE8UlOiRt9bVC7puR_WyfR9-ZZcxcFIyT_CUUgM,50640
|
|
16
|
-
faster_eth_abi/decoding.py,sha256=bfMhG-KvKa836JTHyql-HFm5Z37OEd0W8Y0rsaoFn4A,16498
|
|
17
|
-
faster_eth_abi/grammar.py,sha256=JJ7QLGJVKmoWwx3J8O-5snrza-Si4NdCweUummqzjlo,4511
|
|
18
|
-
faster_eth_abi/from_type_str.py,sha256=C3QNACXS-5lTtOx1kNAqfZLvky37wV7gqY3Cf9QoEkk,4337
|
|
19
|
-
faster_eth_abi/_decoding.cpython-314-darwin.so,sha256=nsSbltze8fkxIgBjjlsZyhvyUst_J0KvnipurbHKA2U,50656
|
|
20
|
-
faster_eth_abi/packed.cpython-314-darwin.so,sha256=vJpjlEXmPXsirPLKtdQ_8rFAUsxyM839lHzBWSjr0B8,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/from_type_str.cpython-314-darwin.so,sha256=wikTQe7-nUvU1DdGYBQOyZgsji6E1blq0ko0VzsCDaQ,50672
|
|
26
|
-
faster_eth_abi/codec.py,sha256=2CtGd3SdNCF5mLqTrZ2FpMAyBtFt83IGu81T--Gevyc,4415
|
|
27
|
-
faster_eth_abi/base.py,sha256=eMpUM78FhJg5wHPj6glvJRpS1AmvQ_1ks9ENwyu68hc,1188
|
|
28
|
-
faster_eth_abi/tools/__init__.cpython-314-darwin.so,sha256=qfdPbIJwmgXvwtGraxfn08X96bouZd2t_xB7XYUvbSs,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-314-darwin.so,sha256=XIyQL15rjIIPvvHlm-ReDHYS-rGdTxGuy7BEZZapPjE,50672
|
|
32
|
-
faster_eth_abi/utils/padding.cpython-314-darwin.so,sha256=CKKZynQmULPxLKqD9O85dTeA5GTjC0PyRmqVAQ7uKRw,50656
|
|
33
|
-
faster_eth_abi/utils/__init__.cpython-314-darwin.so,sha256=LA08OGjrSn9gL_03GeCh-zAlj940-nDdjqE5l9gJVak,50640
|
|
34
|
-
faster_eth_abi/utils/numeric.cpython-314-darwin.so,sha256=02Bj40eNivoImM-c3cvlQqkU-M83f7ubxC8cOKbg4vE,50656
|
|
35
|
-
faster_eth_abi/utils/validation.cpython-314-darwin.so,sha256=Bl5tyg29sNGnRIq2uXIBdy_u-Tm5nwCN0zf8i37pPdY,50672
|
|
36
|
-
faster_eth_abi/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
37
|
-
faster_eth_abi/utils/string.cpython-314-darwin.so,sha256=La_4NBSk7jiceIt_eqxHde0ENpKYuIDewvgNdUSMM1c,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=2Id6qreet5t4wZv58bZfijJ58qrc2xkw6OVvWfeqxV0,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
|
|
File without changes
|
|
File without changes
|