faster-eth-abi 5.2.11__cp310-cp310-musllinux_1_2_x86_64.whl → 5.2.12__cp310-cp310-musllinux_1_2_x86_64.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 (24) hide show
  1. faster_eth_abi/_codec.cpython-310-x86_64-linux-gnu.so +0 -0
  2. faster_eth_abi/_decoding.cpython-310-x86_64-linux-gnu.so +0 -0
  3. faster_eth_abi/_encoding.cpython-310-x86_64-linux-gnu.so +0 -0
  4. faster_eth_abi/_grammar.cpython-310-x86_64-linux-gnu.so +0 -0
  5. faster_eth_abi/abi.cpython-310-x86_64-linux-gnu.so +0 -0
  6. faster_eth_abi/constants.cpython-310-x86_64-linux-gnu.so +0 -0
  7. faster_eth_abi/exceptions.py +22 -13
  8. faster_eth_abi/from_type_str.cpython-310-x86_64-linux-gnu.so +0 -0
  9. faster_eth_abi/packed.cpython-310-x86_64-linux-gnu.so +0 -0
  10. faster_eth_abi/tools/__init__.cpython-310-x86_64-linux-gnu.so +0 -0
  11. faster_eth_abi/tools/_strategies.cpython-310-x86_64-linux-gnu.so +0 -0
  12. faster_eth_abi/utils/__init__.cpython-310-x86_64-linux-gnu.so +0 -0
  13. faster_eth_abi/utils/numeric.cpython-310-x86_64-linux-gnu.so +0 -0
  14. faster_eth_abi/utils/padding.cpython-310-x86_64-linux-gnu.so +0 -0
  15. faster_eth_abi/utils/string.cpython-310-x86_64-linux-gnu.so +0 -0
  16. faster_eth_abi/utils/validation.cpython-310-x86_64-linux-gnu.so +0 -0
  17. {faster_eth_abi-5.2.11.dist-info → faster_eth_abi-5.2.12.dist-info}/METADATA +10 -5
  18. {faster_eth_abi-5.2.11.dist-info → faster_eth_abi-5.2.12.dist-info}/RECORD +22 -22
  19. faster_eth_abi-5.2.12.dist-info/top_level.txt +2 -0
  20. faster_eth_abi__mypyc.cpython-310-x86_64-linux-gnu.so +0 -0
  21. 29859a9e7da9d19bb98c__mypyc.cpython-310-x86_64-linux-gnu.so +0 -0
  22. faster_eth_abi-5.2.11.dist-info/top_level.txt +0 -2
  23. {faster_eth_abi-5.2.11.dist-info → faster_eth_abi-5.2.12.dist-info}/WHEEL +0 -0
  24. {faster_eth_abi-5.2.11.dist-info → faster_eth_abi-5.2.12.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
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
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.18.2; 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"
@@ -85,10 +86,14 @@ Dynamic: summary
85
86
 
86
87
  ##### 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
88
 
88
- ##### You can find the compiled C code on faster-eth-abi [master](https://github.com/BobTheBuidler/eth-abi/tree/master) branch.
89
+ ##### 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
90
 
90
91
  ##### 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
92
 
93
+ ##### You can find the compiled C code and header files in the [build](https://github.com/BobTheBuidler/faster-eth-abi/tree/master/build) directory.
94
+
95
+ ###### 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/)
96
+
92
97
  ##### The original eth-abi readme is below:
93
98
 
94
99
  # Ethereum Contract Interface (ABI) Utility
@@ -1,46 +1,46 @@
1
- 29859a9e7da9d19bb98c__mypyc.cpython-310-x86_64-linux-gnu.so,sha256=iW_lPKMT6OrW5AXmZmFUMFL1yQAE0eSoa6UTcPjWWc4,723336
1
+ faster_eth_abi__mypyc.cpython-310-x86_64-linux-gnu.so,sha256=URlNE1Nw6dexDyz6J8S6uiaA_5yLYcmnGNMyu7_ohko,723536
2
2
  faster_eth_abi/__init__.py,sha256=55jGpiVbsTGNu-c_rr-wwyH3eqEv9MELSTWa4AMiKvU,205
3
- faster_eth_abi/_codec.cpython-310-x86_64-linux-gnu.so,sha256=DIN5hlaHpEq2KNnISu3H9cAqjCaCh-YPnJv65wvjxpc,17624
3
+ faster_eth_abi/_codec.cpython-310-x86_64-linux-gnu.so,sha256=oyeRxI0XRGLndPKo2Vs67Rug-vME6OWe02veMZyA278,17624
4
4
  faster_eth_abi/_codec.py,sha256=7TfO2ij2jBuUK54LuMdhC0YX8NEui3rnN2ZG1NnP3dA,2264
5
- faster_eth_abi/_decoding.cpython-310-x86_64-linux-gnu.so,sha256=BBlYtHf7hSM4rl0vDJbYuGZ-UDXCHXW9vzcdow2Z8KQ,17632
5
+ faster_eth_abi/_decoding.cpython-310-x86_64-linux-gnu.so,sha256=b1w1dtvjJplWb_NeMTPGlioBbPAS-BE9mgGDbltVoWo,17632
6
6
  faster_eth_abi/_decoding.py,sha256=TjTj4_uzkxN3opJfk4SxHHWn4r9T8ZztpPA-Uzic1Bg,4400
7
- faster_eth_abi/_encoding.cpython-310-x86_64-linux-gnu.so,sha256=XYySM0ju7SBb24Rqa6sjqVO3ibU1wb6FnquJr9ePWCk,17632
7
+ faster_eth_abi/_encoding.cpython-310-x86_64-linux-gnu.so,sha256=U8VMN_ck988bBe2cdW6CG0E1ZkHhjTpBT3kZ-mhJuqQ,17632
8
8
  faster_eth_abi/_encoding.py,sha256=nBIqwHbvT7loTmiYlcl7Z8HhnOGEY-jr-cpCZEU-1X8,3230
9
- faster_eth_abi/_grammar.cpython-310-x86_64-linux-gnu.so,sha256=ctC9mOsDxodW6zkZ80uSpP7fPbv4oGXSz6jtmpT7_AA,17624
9
+ faster_eth_abi/_grammar.cpython-310-x86_64-linux-gnu.so,sha256=ziP76qvlZs2_4q9iJ2mfzC6anqWfhR463-nBC1toeOc,17624
10
10
  faster_eth_abi/_grammar.py,sha256=6REsztEP6kJvWSB3DoLRGbl1whc-pLj5aEWrT6GxaN0,10142
11
- faster_eth_abi/abi.cpython-310-x86_64-linux-gnu.so,sha256=P5AI9NZ2xZDxZfVCl9a2L9VgW7pKrLsFc24Zy2mSQMU,17608
11
+ faster_eth_abi/abi.cpython-310-x86_64-linux-gnu.so,sha256=yS_nRdN0qkkojQG9l46U5fsMi5UtoPPLpVkRZvXlJg4,17608
12
12
  faster_eth_abi/abi.py,sha256=HzkXy0EjHraNbbC5l-EhVqVcx5vy8tcykiKIO4Fp1xw,366
13
13
  faster_eth_abi/base.py,sha256=eMpUM78FhJg5wHPj6glvJRpS1AmvQ_1ks9ENwyu68hc,1188
14
14
  faster_eth_abi/codec.py,sha256=2CtGd3SdNCF5mLqTrZ2FpMAyBtFt83IGu81T--Gevyc,4415
15
- faster_eth_abi/constants.cpython-310-x86_64-linux-gnu.so,sha256=zeoXN2vrsIMcDtSpWcXC0TuCVGoKFkJBpLsXe7iPhkM,17632
15
+ faster_eth_abi/constants.cpython-310-x86_64-linux-gnu.so,sha256=etBYLyk_6gF2UT247k6PCKe9Zwj9rZ0jEsSKfX-gzQ8,17632
16
16
  faster_eth_abi/constants.py,sha256=uJbuND1rFs_Pexuz58TKd-BJPuoA6hLqFEX6kkDS-dE,107
17
17
  faster_eth_abi/decoding.py,sha256=bfMhG-KvKa836JTHyql-HFm5Z37OEd0W8Y0rsaoFn4A,16498
18
18
  faster_eth_abi/encoding.py,sha256=lH6t_8rokfmg8M4JBjmIO3a3l9jGu_rbwoskb0PcH7M,19009
19
- faster_eth_abi/exceptions.py,sha256=Q_b62R-E0OtlxQGLQSyx6BXkBbLf259KQ1pT5Eb1oh8,2952
20
- faster_eth_abi/from_type_str.cpython-310-x86_64-linux-gnu.so,sha256=uXvRH_fvNVODRv535u7aGrt4z30AZ6xv_xTaZtbcD00,17648
19
+ faster_eth_abi/exceptions.py,sha256=pbwvH_WeAlSlwqA8w79e_RCt8_uaasLcGtRY7yT9LTQ,3577
20
+ faster_eth_abi/from_type_str.cpython-310-x86_64-linux-gnu.so,sha256=eO8NQ29Z8-bOcXjuSpCRL6oJLjiD08yi3c61qT85Vlk,17648
21
21
  faster_eth_abi/from_type_str.py,sha256=C3QNACXS-5lTtOx1kNAqfZLvky37wV7gqY3Cf9QoEkk,4337
22
22
  faster_eth_abi/grammar.py,sha256=JJ7QLGJVKmoWwx3J8O-5snrza-Si4NdCweUummqzjlo,4511
23
23
  faster_eth_abi/io.py,sha256=PjOnBChWh_-6ADkpJQONnxHVwsAfC_4bRiT6YQhlP6c,3728
24
- faster_eth_abi/packed.cpython-310-x86_64-linux-gnu.so,sha256=feRGuR9qEdWtliPJgQDd8eK2ydZ6bPczFTmsLXSnGCE,17624
24
+ faster_eth_abi/packed.cpython-310-x86_64-linux-gnu.so,sha256=mCCB53Jez34rA9tpQ9TlJ8ZxaauEZX7Tqkhjd8AZLw8,17624
25
25
  faster_eth_abi/packed.py,sha256=qDPBjish_0h26O7xGWopnlD4pRkphFuFq4izgIqT600,301
26
26
  faster_eth_abi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
27
  faster_eth_abi/registry.py,sha256=RqHQNDLzvQ6embdnOSxlpvPw7dn-jqUU9MshLe5JuuM,21082
28
- faster_eth_abi/tools/__init__.cpython-310-x86_64-linux-gnu.so,sha256=0cdlzAaUP9fzPdNfumaGLuOSizYzb7w2ddf_oKovxjk,17616
28
+ faster_eth_abi/tools/__init__.cpython-310-x86_64-linux-gnu.so,sha256=rqygAiquNaOscB6ajxQcGJEQQPJXSf5tpUaeo7bVceU,17616
29
29
  faster_eth_abi/tools/__init__.py,sha256=trtATEmgu4ctg04qkejbODDzvDSofgcVJ3rkzMP_hQE,51
30
- faster_eth_abi/tools/_strategies.cpython-310-x86_64-linux-gnu.so,sha256=NlceF8drIxeyVipVY0pY72MFFW0fZTbHC7uxqkBK8kg,17656
30
+ faster_eth_abi/tools/_strategies.cpython-310-x86_64-linux-gnu.so,sha256=ettxGKgyYsajmnOwtu15OMzLClmDPCh68U7eNhOAhrI,17656
31
31
  faster_eth_abi/tools/_strategies.py,sha256=XQhK8eG87W7LB5v6ibzEAB0BkhTr-oc7dIzPvZu6AE0,6089
32
- faster_eth_abi/utils/__init__.cpython-310-x86_64-linux-gnu.so,sha256=mUrJMiLDbHmfrAqcBiYz2zKZ3OzStYl-pNzu781VWXQ,17616
32
+ faster_eth_abi/utils/__init__.cpython-310-x86_64-linux-gnu.so,sha256=OO6EfH0RrWq50ZMsEUNdWyu5lvGNdcxQOtbHPeuwK2o,17616
33
33
  faster_eth_abi/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
- faster_eth_abi/utils/numeric.cpython-310-x86_64-linux-gnu.so,sha256=Ud1R6kVxnZOQz2Gr-I7YTwr2cWiTMVMEYqY35UAOOO0,17640
34
+ faster_eth_abi/utils/numeric.cpython-310-x86_64-linux-gnu.so,sha256=L_xW6dxWxylNYatJVa7zeHrvZZzv8RTO8dZZ_k4V5cI,17640
35
35
  faster_eth_abi/utils/numeric.py,sha256=fkdazLcgd7FN0JGSSyb6Jsx555QdgRf2N0mxrm6rGB4,3278
36
- faster_eth_abi/utils/padding.cpython-310-x86_64-linux-gnu.so,sha256=1Ckm35tz-mk31ICm8TbNPoQ0rd2oCBg2WbedmXTBPMI,17640
36
+ faster_eth_abi/utils/padding.cpython-310-x86_64-linux-gnu.so,sha256=YJjSKuLna4D5y2oNDwMVWIIw2NsgmvGGY08M_gtt0Ro,17640
37
37
  faster_eth_abi/utils/padding.py,sha256=JBuFhdrvKWLrmmJBZ-a6pqbHWydAuiUBt2aBjCwVcVE,493
38
- faster_eth_abi/utils/string.cpython-310-x86_64-linux-gnu.so,sha256=hHk5aWlSBZGs8cF_cIlMuheoUDM275IpfFbj3EQohnc,17632
38
+ faster_eth_abi/utils/string.cpython-310-x86_64-linux-gnu.so,sha256=T-s6jEhD47D7_dIkSQZC9US3V41rqTIQc3s-EBKHDh4,17632
39
39
  faster_eth_abi/utils/string.py,sha256=fjsAR2C7Xlu5bHomxx5l4rlADFtByzGTQfugMTo8TQk,436
40
- faster_eth_abi/utils/validation.cpython-310-x86_64-linux-gnu.so,sha256=zrHcMBuHVWWu1GJM-Uaw9owFdI2DkIjUlL-1_-uqqXE,17648
40
+ faster_eth_abi/utils/validation.cpython-310-x86_64-linux-gnu.so,sha256=s7mKclXX-7vuZg9oh2iNGYWSdqJf66DbLsd1QNFIcaU,17648
41
41
  faster_eth_abi/utils/validation.py,sha256=NA2wRacYEBdkpQnZfmeDvzF-sHyy6NT2QzCFuBnYJVI,521
42
- faster_eth_abi-5.2.11.dist-info/METADATA,sha256=UQZ2Vm2yY9XCOocj7RXuo0dW3uq6L1vjcoY6epS6XZY,5387
43
- faster_eth_abi-5.2.11.dist-info/WHEEL,sha256=YJPq7zroHSsdctrb_KymZ4ss41PkmaA9SD9TZzqKSX8,112
44
- faster_eth_abi-5.2.11.dist-info/top_level.txt,sha256=VAQVriOsRsqhSQlZZtJw0zN50hc93HkAqPqL70TVuRU,43
45
- faster_eth_abi-5.2.11.dist-info/RECORD,,
46
- faster_eth_abi-5.2.11.dist-info/licenses/LICENSE,sha256=P_zrhVa0OXK-_XuA0RF3d3gwMLXRSBkn2fWraC4CFLo,1106
42
+ faster_eth_abi-5.2.12.dist-info/METADATA,sha256=K3VxS87huMNp8qVU0CmhoLSujpwNBFHkoBJS5qqZxpY,6093
43
+ faster_eth_abi-5.2.12.dist-info/WHEEL,sha256=YJPq7zroHSsdctrb_KymZ4ss41PkmaA9SD9TZzqKSX8,112
44
+ faster_eth_abi-5.2.12.dist-info/top_level.txt,sha256=Y0kTTMPnPpssaR0jlmJwQ2XbkYXMEj_80Ewd7quo1Cg,37
45
+ faster_eth_abi-5.2.12.dist-info/RECORD,,
46
+ faster_eth_abi-5.2.12.dist-info/licenses/LICENSE,sha256=P_zrhVa0OXK-_XuA0RF3d3gwMLXRSBkn2fWraC4CFLo,1106
@@ -0,0 +1,2 @@
1
+ faster_eth_abi
2
+ faster_eth_abi__mypyc
@@ -1,2 +0,0 @@
1
- 29859a9e7da9d19bb98c__mypyc
2
- faster_eth_abi