faster-eth-abi 5.2.11__cp38-cp38-macosx_11_0_arm64.whl → 5.2.12__cp38-cp38-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.

Binary file
Binary file
@@ -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,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: faster_eth_abi
3
- Version: 5.2.11
3
+ Version: 5.2.12
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
@@ -25,6 +25,7 @@ Description-Content-Type: text/markdown
25
25
  License-File: LICENSE
26
26
  Requires-Dist: cchecksum<0.4,>=0.2.6
27
27
  Requires-Dist: faster-eth-utils>=2.0.0
28
+ Requires-Dist: eth-abi<6,>=5.0.1
28
29
  Requires-Dist: eth-typing>=3.0.0
29
30
  Requires-Dist: mypy-extensions
30
31
  Requires-Dist: parsimonious<0.11.0,>=0.10.0
@@ -32,7 +33,7 @@ Provides-Extra: dev
32
33
  Requires-Dist: build>=0.9.0; extra == "dev"
33
34
  Requires-Dist: bump-my-version>=0.19.0; extra == "dev"
34
35
  Requires-Dist: ipython; extra == "dev"
35
- Requires-Dist: mypy==1.10.0; extra == "dev"
36
+ Requires-Dist: mypy==1.14.1; extra == "dev"
36
37
  Requires-Dist: pre-commit>=3.4.0; extra == "dev"
37
38
  Requires-Dist: tox>=4.0.0; extra == "dev"
38
39
  Requires-Dist: twine; extra == "dev"
@@ -42,7 +43,7 @@ Requires-Dist: pytest-benchmark; extra == "dev"
42
43
  Requires-Dist: sphinx>=6.0.0; extra == "dev"
43
44
  Requires-Dist: sphinx-autobuild>=2021.3.14; extra == "dev"
44
45
  Requires-Dist: sphinx-rtd-theme>=1.0.0; extra == "dev"
45
- Requires-Dist: towncrier<25,>=24; extra == "dev"
46
+ Requires-Dist: towncrier<26,>=25; extra == "dev"
46
47
  Requires-Dist: pytest>=7.0.0; extra == "dev"
47
48
  Requires-Dist: pytest-timeout>=2.0.0; extra == "dev"
48
49
  Requires-Dist: pytest-xdist>=2.4.0; extra == "dev"
@@ -53,7 +54,7 @@ Provides-Extra: docs
53
54
  Requires-Dist: sphinx>=6.0.0; extra == "docs"
54
55
  Requires-Dist: sphinx-autobuild>=2021.3.14; extra == "docs"
55
56
  Requires-Dist: sphinx-rtd-theme>=1.0.0; extra == "docs"
56
- Requires-Dist: towncrier<25,>=24; extra == "docs"
57
+ Requires-Dist: towncrier<26,>=25; extra == "docs"
57
58
  Provides-Extra: test
58
59
  Requires-Dist: pytest>=7.0.0; extra == "test"
59
60
  Requires-Dist: pytest-timeout>=2.0.0; extra == "test"
@@ -72,10 +73,14 @@ Requires-Dist: hypothesis<6.108.7,>=6.22.0; extra == "tools"
72
73
 
73
74
  ##### 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/).
74
75
 
75
- ##### You can find the compiled C code on faster-eth-abi [master](https://github.com/BobTheBuidler/eth-abi/tree/master) branch.
76
+ ##### 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.
76
77
 
77
78
  ##### 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).
78
79
 
80
+ ##### You can find the compiled C code and header files in the [build](https://github.com/BobTheBuidler/faster-eth-abi/tree/master/build) directory.
81
+
82
+ ###### 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/)
83
+
79
84
  ##### The original eth-abi readme is below:
80
85
 
81
86
  # Ethereum Contract Interface (ABI) Utility
@@ -0,0 +1,46 @@
1
+ 29859a9e7da9d19bb98c__mypyc.cpython-38-darwin.so,sha256=hVzLxN6kzA1dm3KhccJ4p5cOc4M5mv7Mr_0JQYgARBw,595952
2
+ faster_eth_abi/_codec.cpython-38-darwin.so,sha256=GUlxyyS7wbJcClunT2EwMY-Pu1SfNPnoU07BZMtJYNk,50536
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/abi.cpython-38-darwin.so,sha256=H29tOY3joEoLlr5B-is4-Y9wEO-Z53USEnikGYiLqe4,50536
7
+ faster_eth_abi/packed.cpython-38-darwin.so,sha256=9SEKPTYGr7Ob0533x2N2IuZS5nnCmTRFpbwbuCGIN2o,50536
8
+ faster_eth_abi/from_type_str.cpython-38-darwin.so,sha256=uqK4-nRQ_CckWuY32CqZnM4TS_MTxK01vC06Hd2KD9o,50576
9
+ faster_eth_abi/registry.py,sha256=RqHQNDLzvQ6embdnOSxlpvPw7dn-jqUU9MshLe5JuuM,21082
10
+ faster_eth_abi/_decoding.py,sha256=TjTj4_uzkxN3opJfk4SxHHWn4r9T8ZztpPA-Uzic1Bg,4400
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/from_type_str.py,sha256=C3QNACXS-5lTtOx1kNAqfZLvky37wV7gqY3Cf9QoEkk,4337
18
+ faster_eth_abi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
+ faster_eth_abi/abi.py,sha256=HzkXy0EjHraNbbC5l-EhVqVcx5vy8tcykiKIO4Fp1xw,366
20
+ faster_eth_abi/_decoding.cpython-38-darwin.so,sha256=EEdRB-9vwdyYqt2tF6T9oLX327l-PkPWStoa7BQs3cw,50560
21
+ faster_eth_abi/exceptions.py,sha256=pbwvH_WeAlSlwqA8w79e_RCt8_uaasLcGtRY7yT9LTQ,3577
22
+ faster_eth_abi/_codec.py,sha256=7TfO2ij2jBuUK54LuMdhC0YX8NEui3rnN2ZG1NnP3dA,2264
23
+ faster_eth_abi/_grammar.cpython-38-darwin.so,sha256=IVMcv_E0dcE-s5tIJGfQT4Ph6QNC4mKVl5jSlDn61gQ,50560
24
+ faster_eth_abi/constants.cpython-38-darwin.so,sha256=jM5du4znw619yPM1gZmeqgfnORkhuEoU3xbrZXKlrU8,50560
25
+ faster_eth_abi/codec.py,sha256=2CtGd3SdNCF5mLqTrZ2FpMAyBtFt83IGu81T--Gevyc,4415
26
+ faster_eth_abi/_encoding.cpython-38-darwin.so,sha256=m0w3Pnc0lm-hzlN9ETYN3tMRdjX0aryNwMG_7ZYloBc,50560
27
+ faster_eth_abi/base.py,sha256=eMpUM78FhJg5wHPj6glvJRpS1AmvQ_1ks9ENwyu68hc,1188
28
+ faster_eth_abi/tools/__init__.cpython-38-darwin.so,sha256=o4S-EUctZ0XcWMlvv7K9QU8NMIQ_HhoJutomznGO7Z4,50544
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-38-darwin.so,sha256=ElCvGgyjcgrs4bTpOmLMG98LSe4qRVMBEQxofB4AMWo,50592
32
+ faster_eth_abi/utils/__init__.cpython-38-darwin.so,sha256=NGIzcc7V-mVNPAITc5dVcDzd83nKRGrj8oWzsYYQ55Y,50544
33
+ faster_eth_abi/utils/validation.cpython-38-darwin.so,sha256=PIRxSzw-4MqPPblJ1HHG8uyY-NJdO_TblqBngiJcXxk,50576
34
+ faster_eth_abi/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
+ faster_eth_abi/utils/padding.cpython-38-darwin.so,sha256=1rimkFnoJkLj0J90rJv5HwulC8UT1JlFtKBbpBlj0p4,50560
36
+ faster_eth_abi/utils/numeric.py,sha256=fkdazLcgd7FN0JGSSyb6Jsx555QdgRf2N0mxrm6rGB4,3278
37
+ faster_eth_abi/utils/string.cpython-38-darwin.so,sha256=0Qt5BW3DwD1UgFfSvhE4edzDJdKsLZmOGkoIdAcHsUM,50552
38
+ faster_eth_abi/utils/numeric.cpython-38-darwin.so,sha256=KuEJkDgN15w7ylShJdnP707BUd2CVERZSp1nn1m8oxo,50560
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.12.dist-info/RECORD,,
43
+ faster_eth_abi-5.2.12.dist-info/LICENSE,sha256=P_zrhVa0OXK-_XuA0RF3d3gwMLXRSBkn2fWraC4CFLo,1106
44
+ faster_eth_abi-5.2.12.dist-info/WHEEL,sha256=9FabR3Kab7Nb3lO5nBQWtZc544XJ0hYCmiQC2RH2bHM,107
45
+ faster_eth_abi-5.2.12.dist-info/top_level.txt,sha256=VAQVriOsRsqhSQlZZtJw0zN50hc93HkAqPqL70TVuRU,43
46
+ faster_eth_abi-5.2.12.dist-info/METADATA,sha256=K6yUlfT3H3TunWul31hgkiwOCTEUtAYJXT6AkOonnwk,5815
@@ -1,46 +0,0 @@
1
- 29859a9e7da9d19bb98c__mypyc.cpython-38-darwin.so,sha256=m8vmKBFnUcE2KdVAFUh72rOGHYgrhmauypKk3hw3vfg,596000
2
- faster_eth_abi/_codec.cpython-38-darwin.so,sha256=Ke6QKwtc-ePGy8o84Qa6CRfZeM5-G2QgvnffCzhKGZ8,50536
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/abi.cpython-38-darwin.so,sha256=Pi6IzX9MAkJAmDQ0QPk_xNWWNInQy8j2w-ALQXGD0dE,50536
7
- faster_eth_abi/packed.cpython-38-darwin.so,sha256=g3RGe7Vk2xh-NV8sSfL62mdwnHsb4EWaX5UiS1Xdeg8,50536
8
- faster_eth_abi/from_type_str.cpython-38-darwin.so,sha256=MzBSV3zt233l63XLy8_tx7JpjaZ6jyClQ2gK6ODWqMw,50576
9
- faster_eth_abi/registry.py,sha256=RqHQNDLzvQ6embdnOSxlpvPw7dn-jqUU9MshLe5JuuM,21082
10
- faster_eth_abi/_decoding.py,sha256=TjTj4_uzkxN3opJfk4SxHHWn4r9T8ZztpPA-Uzic1Bg,4400
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/from_type_str.py,sha256=C3QNACXS-5lTtOx1kNAqfZLvky37wV7gqY3Cf9QoEkk,4337
18
- faster_eth_abi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
- faster_eth_abi/abi.py,sha256=HzkXy0EjHraNbbC5l-EhVqVcx5vy8tcykiKIO4Fp1xw,366
20
- faster_eth_abi/_decoding.cpython-38-darwin.so,sha256=jrIVDkYRhBwY92JDDfjHlROugJpK7Tk6sjcF0-6P6Co,50560
21
- faster_eth_abi/exceptions.py,sha256=Q_b62R-E0OtlxQGLQSyx6BXkBbLf259KQ1pT5Eb1oh8,2952
22
- faster_eth_abi/_codec.py,sha256=7TfO2ij2jBuUK54LuMdhC0YX8NEui3rnN2ZG1NnP3dA,2264
23
- faster_eth_abi/_grammar.cpython-38-darwin.so,sha256=0mFtH-7ceBHLBjPnY4JL4QlAW_NTsHR2L0uI848DPtI,50560
24
- faster_eth_abi/constants.cpython-38-darwin.so,sha256=y6z83Hsoxaq5skiwe5_HVRuatGZV4KtNPX8hmGnbp6I,50560
25
- faster_eth_abi/codec.py,sha256=2CtGd3SdNCF5mLqTrZ2FpMAyBtFt83IGu81T--Gevyc,4415
26
- faster_eth_abi/_encoding.cpython-38-darwin.so,sha256=33eVAR2CvkA3ZZkixGTFisRHDF0iJx_k-r0ATlCrPxY,50560
27
- faster_eth_abi/base.py,sha256=eMpUM78FhJg5wHPj6glvJRpS1AmvQ_1ks9ENwyu68hc,1188
28
- faster_eth_abi/tools/__init__.cpython-38-darwin.so,sha256=Al7i1VbNg6P4Z8rWtnqiyDdEghAZx4IFvqMRhPUo3UU,50544
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-38-darwin.so,sha256=Y9RNyTnqQ8t-3Nr1ZWcgoOUacCJLpIafJRHBhv_U1yo,50592
32
- faster_eth_abi/utils/__init__.cpython-38-darwin.so,sha256=NeCX1SW2Oc-mJ2snA1f_h6741JxRFwk3Quj2lTJ3-qI,50544
33
- faster_eth_abi/utils/validation.cpython-38-darwin.so,sha256=30UI4vqpt_lhGveCEVv6ibAUJRHfvFigs1qIS0ugV8g,50576
34
- faster_eth_abi/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
- faster_eth_abi/utils/padding.cpython-38-darwin.so,sha256=cvRInmyxva2MCc2YcL9TKB6jg1lQmIYkuy_0y1enuaY,50560
36
- faster_eth_abi/utils/numeric.py,sha256=fkdazLcgd7FN0JGSSyb6Jsx555QdgRf2N0mxrm6rGB4,3278
37
- faster_eth_abi/utils/string.cpython-38-darwin.so,sha256=xpquqsG12p7DEUHnBMvCnhhhzq1Hl--NZhnRp7yGljE,50552
38
- faster_eth_abi/utils/numeric.cpython-38-darwin.so,sha256=n-Zl_pvL2OXpURil22TOJqx-4lr3goz_jFmF5hOpouI,50560
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/LICENSE,sha256=P_zrhVa0OXK-_XuA0RF3d3gwMLXRSBkn2fWraC4CFLo,1106
44
- faster_eth_abi-5.2.11.dist-info/WHEEL,sha256=9FabR3Kab7Nb3lO5nBQWtZc544XJ0hYCmiQC2RH2bHM,107
45
- faster_eth_abi-5.2.11.dist-info/top_level.txt,sha256=VAQVriOsRsqhSQlZZtJw0zN50hc93HkAqPqL70TVuRU,43
46
- faster_eth_abi-5.2.11.dist-info/METADATA,sha256=5d_7n5NSbKW4sqSuxiK_8w8pttgM1bi8oV5t2CY1yDw,5109