faster-eth-abi 5.2.8__cp314-cp314t-win_amd64.whl → 5.2.19__cp314-cp314t-win_amd64.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 (41) hide show
  1. faster_eth_abi/_codec.cp314t-win_amd64.pyd +0 -0
  2. faster_eth_abi/_codec.py +7 -5
  3. faster_eth_abi/_decoding.cp314t-win_amd64.pyd +0 -0
  4. faster_eth_abi/_decoding.py +212 -30
  5. faster_eth_abi/_encoding.cp314t-win_amd64.pyd +0 -0
  6. faster_eth_abi/_encoding.py +159 -11
  7. faster_eth_abi/_grammar.cp314t-win_amd64.pyd +0 -0
  8. faster_eth_abi/_grammar.py +375 -0
  9. faster_eth_abi/abi.cp314t-win_amd64.pyd +0 -0
  10. faster_eth_abi/base.py +5 -1
  11. faster_eth_abi/codec.py +2675 -9
  12. faster_eth_abi/constants.cp314t-win_amd64.pyd +0 -0
  13. faster_eth_abi/decoding.py +214 -176
  14. faster_eth_abi/encoding.py +112 -38
  15. faster_eth_abi/exceptions.py +26 -14
  16. faster_eth_abi/from_type_str.cp314t-win_amd64.pyd +0 -0
  17. faster_eth_abi/from_type_str.py +7 -1
  18. faster_eth_abi/grammar.py +30 -326
  19. faster_eth_abi/io.py +5 -1
  20. faster_eth_abi/packed.cp314t-win_amd64.pyd +0 -0
  21. faster_eth_abi/packed.py +4 -0
  22. faster_eth_abi/registry.py +186 -91
  23. faster_eth_abi/tools/__init__.cp314t-win_amd64.pyd +0 -0
  24. faster_eth_abi/tools/_strategies.cp314t-win_amd64.pyd +0 -0
  25. faster_eth_abi/tools/_strategies.py +12 -6
  26. faster_eth_abi/typing.py +4627 -0
  27. faster_eth_abi/utils/__init__.cp314t-win_amd64.pyd +0 -0
  28. faster_eth_abi/utils/numeric.cp314t-win_amd64.pyd +0 -0
  29. faster_eth_abi/utils/numeric.py +51 -20
  30. faster_eth_abi/utils/padding.cp314t-win_amd64.pyd +0 -0
  31. faster_eth_abi/utils/string.cp314t-win_amd64.pyd +0 -0
  32. faster_eth_abi/utils/validation.cp314t-win_amd64.pyd +0 -0
  33. {faster_eth_abi-5.2.8.dist-info → faster_eth_abi-5.2.19.dist-info}/METADATA +38 -14
  34. faster_eth_abi-5.2.19.dist-info/RECORD +46 -0
  35. faster_eth_abi-5.2.19.dist-info/top_level.txt +2 -0
  36. faster_eth_abi__mypyc.cp314t-win_amd64.pyd +0 -0
  37. 76f9a3652d4d2667c55c__mypyc.cp314t-win_amd64.pyd +0 -0
  38. faster_eth_abi-5.2.8.dist-info/RECORD +0 -44
  39. faster_eth_abi-5.2.8.dist-info/licenses/LICENSE +0 -21
  40. faster_eth_abi-5.2.8.dist-info/top_level.txt +0 -2
  41. {faster_eth_abi-5.2.8.dist-info → faster_eth_abi-5.2.19.dist-info}/WHEEL +0 -0
@@ -1,6 +1,7 @@
1
1
  import decimal
2
2
  from typing import (
3
3
  Callable,
4
+ Dict,
4
5
  Final,
5
6
  Tuple,
6
7
  )
@@ -8,6 +9,7 @@ from typing import (
8
9
  ABI_DECIMAL_PREC: Final = 999
9
10
 
10
11
  abi_decimal_context: Final = decimal.Context(prec=ABI_DECIMAL_PREC)
12
+ decimal_localcontext: Final = decimal.localcontext
11
13
 
12
14
  ZERO: Final = decimal.Decimal(0)
13
15
  TEN: Final = decimal.Decimal(10)
@@ -16,47 +18,76 @@ Decimal: Final = decimal.Decimal
16
18
 
17
19
 
18
20
  def ceil32(x: int) -> int:
19
- return x if x % 32 == 0 else x + 32 - (x % 32)
21
+ remainder = x % 32
22
+ return x if remainder == 0 else x + 32 - remainder
23
+
24
+
25
+ _unsigned_integer_bounds_cache: Final[Dict[int, Tuple[int, int]]] = {}
20
26
 
21
27
 
22
28
  def compute_unsigned_integer_bounds(num_bits: int) -> Tuple[int, int]:
23
- return (
24
- 0,
25
- 2**num_bits - 1,
26
- )
29
+ bounds = _unsigned_integer_bounds_cache.get(num_bits)
30
+ if bounds is None:
31
+ bounds = 0, 2**num_bits - 1
32
+ _unsigned_integer_bounds_cache[num_bits] = bounds
33
+ return bounds
34
+
35
+
36
+ _signed_integer_bounds_cache: Final[Dict[int, Tuple[int, int]]] = {}
27
37
 
28
38
 
29
39
  def compute_signed_integer_bounds(num_bits: int) -> Tuple[int, int]:
30
- return (
31
- -1 * 2 ** (num_bits - 1),
32
- 2 ** (num_bits - 1) - 1,
33
- )
40
+ bounds = _signed_integer_bounds_cache.get(num_bits)
41
+ if bounds is None:
42
+ overflow_at = 2 ** (num_bits - 1)
43
+ min_value = -overflow_at
44
+ max_value = overflow_at - 1
45
+ bounds = min_value, max_value
46
+ _signed_integer_bounds_cache[num_bits] = bounds
47
+ return bounds
48
+
49
+
50
+ _unsigned_fixed_bounds_cache: Final[Dict[Tuple[int, int], decimal.Decimal]] = {}
34
51
 
35
52
 
36
53
  def compute_unsigned_fixed_bounds(
37
54
  num_bits: int,
38
55
  frac_places: int,
39
56
  ) -> Tuple[decimal.Decimal, decimal.Decimal]:
40
- int_upper = compute_unsigned_integer_bounds(num_bits)[1]
57
+ upper = _unsigned_fixed_bounds_cache.get((num_bits, frac_places))
58
+ if upper is None:
59
+ int_upper = 2**num_bits - 1
60
+
61
+ with decimal_localcontext(abi_decimal_context):
62
+ upper = Decimal(int_upper) * TEN**-frac_places
41
63
 
42
- with decimal.localcontext(abi_decimal_context):
43
- upper = Decimal(int_upper) * TEN**-frac_places
64
+ _unsigned_fixed_bounds_cache[(num_bits, frac_places)] = upper
44
65
 
45
66
  return ZERO, upper
46
67
 
47
68
 
69
+ _signed_fixed_bounds_cache: Final[
70
+ Dict[Tuple[int, int], Tuple[decimal.Decimal, decimal.Decimal]]
71
+ ] = {}
72
+
73
+
48
74
  def compute_signed_fixed_bounds(
49
75
  num_bits: int,
50
76
  frac_places: int,
51
77
  ) -> Tuple[decimal.Decimal, decimal.Decimal]:
52
- int_lower, int_upper = compute_signed_integer_bounds(num_bits)
78
+ bounds = _signed_fixed_bounds_cache.get((num_bits, frac_places))
79
+ if bounds is None:
80
+ int_lower, int_upper = compute_signed_integer_bounds(num_bits)
81
+
82
+ with decimal_localcontext(abi_decimal_context):
83
+ exp = TEN**-frac_places
84
+ lower = Decimal(int_lower) * exp
85
+ upper = Decimal(int_upper) * exp
53
86
 
54
- with decimal.localcontext(abi_decimal_context):
55
- exp = TEN**-frac_places
56
- lower = Decimal(int_lower) * exp
57
- upper = Decimal(int_upper) * exp
87
+ bounds = lower, upper
88
+ _signed_fixed_bounds_cache[(num_bits, frac_places)] = bounds
58
89
 
59
- return lower, upper
90
+ return bounds
60
91
 
61
92
 
62
93
  def scale_places(places: int) -> Callable[[decimal.Decimal], decimal.Decimal]:
@@ -70,11 +101,11 @@ def scale_places(places: int) -> Callable[[decimal.Decimal], decimal.Decimal]:
70
101
  f"of type {type(places)}.",
71
102
  )
72
103
 
73
- with decimal.localcontext(abi_decimal_context):
104
+ with decimal_localcontext(abi_decimal_context):
74
105
  scaling_factor = TEN**-places
75
106
 
76
107
  def f(x: decimal.Decimal) -> decimal.Decimal:
77
- with decimal.localcontext(abi_decimal_context):
108
+ with decimal_localcontext(abi_decimal_context):
78
109
  return x * scaling_factor
79
110
 
80
111
  places_repr = f"Eneg{places}" if places > 0 else f"Epos{-places}"
@@ -1,11 +1,19 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: faster_eth_abi
3
- Version: 5.2.8
4
- Summary: A faster fork of eth_abi: Python utilities for working with Ethereum ABI definitions, especially encoding and decoding. Implemented in C.
3
+ Version: 5.2.19
4
+ Summary: A ~2-6x 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
@@ -22,47 +30,59 @@ Classifier: Programming Language :: Python :: 3.14
22
30
  Classifier: Programming Language :: Python :: Implementation :: CPython
23
31
  Requires-Python: >=3.8, <4
24
32
  Description-Content-Type: text/markdown
25
- License-File: LICENSE
26
33
  Requires-Dist: cchecksum<0.4,>=0.2.6
27
- Requires-Dist: faster-eth-utils>=2.0.0
28
- Requires-Dist: eth-typing>=3.0.0
34
+ Requires-Dist: faster-eth-utils==5.3.18
35
+ Requires-Dist: eth-abi==5.2.0
36
+ Requires-Dist: eth-typing==5.2.1
29
37
  Requires-Dist: mypy_extensions
30
38
  Requires-Dist: parsimonious<0.11.0,>=0.10.0
31
39
  Provides-Extra: dev
40
+ Requires-Dist: mypy<1.18.3,>=1.14.1; extra == "dev"
41
+ Requires-Dist: tqdm; extra == "dev"
32
42
  Requires-Dist: build>=0.9.0; extra == "dev"
33
43
  Requires-Dist: bump_my_version>=0.19.0; extra == "dev"
34
44
  Requires-Dist: ipython; extra == "dev"
35
- Requires-Dist: mypy==1.10.0; extra == "dev"
45
+ Requires-Dist: mypy<1.18.3,>=1.14.1; extra == "dev"
36
46
  Requires-Dist: pre-commit>=3.4.0; extra == "dev"
37
47
  Requires-Dist: tox>=4.0.0; extra == "dev"
38
48
  Requires-Dist: twine; extra == "dev"
39
49
  Requires-Dist: wheel; extra == "dev"
40
- Requires-Dist: pytest-codspeed; extra == "dev"
41
50
  Requires-Dist: pytest-benchmark; extra == "dev"
42
51
  Requires-Dist: sphinx>=6.0.0; extra == "dev"
43
52
  Requires-Dist: sphinx-autobuild>=2021.3.14; extra == "dev"
44
53
  Requires-Dist: sphinx_rtd_theme>=1.0.0; extra == "dev"
45
- Requires-Dist: towncrier<25,>=24; extra == "dev"
54
+ Requires-Dist: towncrier<26,>=24; extra == "dev"
46
55
  Requires-Dist: pytest>=7.0.0; extra == "dev"
56
+ Requires-Dist: hypothesis<6.108.7,>=6.22.0; extra == "dev"
47
57
  Requires-Dist: pytest-timeout>=2.0.0; extra == "dev"
48
58
  Requires-Dist: pytest-xdist>=2.4.0; extra == "dev"
49
59
  Requires-Dist: pytest-pythonpath>=0.7.1; extra == "dev"
50
60
  Requires-Dist: eth-hash[pycryptodome]; extra == "dev"
51
- Requires-Dist: hypothesis<6.108.7,>=6.22.0; extra == "dev"
52
61
  Provides-Extra: docs
53
62
  Requires-Dist: sphinx>=6.0.0; extra == "docs"
54
63
  Requires-Dist: sphinx-autobuild>=2021.3.14; extra == "docs"
55
64
  Requires-Dist: sphinx_rtd_theme>=1.0.0; extra == "docs"
56
- Requires-Dist: towncrier<25,>=24; extra == "docs"
65
+ Requires-Dist: towncrier<26,>=24; extra == "docs"
57
66
  Provides-Extra: test
58
67
  Requires-Dist: pytest>=7.0.0; extra == "test"
68
+ Requires-Dist: hypothesis<6.108.7,>=6.22.0; extra == "test"
59
69
  Requires-Dist: pytest-timeout>=2.0.0; extra == "test"
60
70
  Requires-Dist: pytest-xdist>=2.4.0; extra == "test"
61
71
  Requires-Dist: pytest-pythonpath>=0.7.1; extra == "test"
62
72
  Requires-Dist: eth-hash[pycryptodome]; extra == "test"
63
- Requires-Dist: hypothesis<6.108.7,>=6.22.0; extra == "test"
64
73
  Provides-Extra: tools
65
74
  Requires-Dist: hypothesis<6.108.7,>=6.22.0; extra == "tools"
75
+ Provides-Extra: codspeed
76
+ Requires-Dist: pytest>=7.0.0; extra == "codspeed"
77
+ Requires-Dist: pytest-codspeed<4.3,>=4.2; extra == "codspeed"
78
+ Requires-Dist: pytest-test-groups; extra == "codspeed"
79
+ Provides-Extra: benchmark
80
+ Requires-Dist: pytest>=7.0.0; extra == "benchmark"
81
+ Requires-Dist: pytest-codspeed<4.3,>=4.2; extra == "benchmark"
82
+ Requires-Dist: pytest-test-groups; extra == "benchmark"
83
+ Provides-Extra: mypy
84
+ Requires-Dist: mypy<1.18.3,>=1.14.1; extra == "mypy"
85
+ Requires-Dist: tqdm; extra == "mypy"
66
86
  Dynamic: author
67
87
  Dynamic: author-email
68
88
  Dynamic: classifier
@@ -71,13 +91,13 @@ Dynamic: description-content-type
71
91
  Dynamic: home-page
72
92
  Dynamic: keywords
73
93
  Dynamic: license
74
- Dynamic: license-file
94
+ Dynamic: project-url
75
95
  Dynamic: provides-extra
76
96
  Dynamic: requires-dist
77
97
  Dynamic: requires-python
78
98
  Dynamic: summary
79
99
 
80
- ### I forked eth-abi and compiled it to C. It does the same stuff, now faster
100
+ ### I forked eth-abi, added comprehensive type annotations, and compiled it to C. It does the same stuff, now ~2-6x faster.
81
101
 
82
102
  [![PyPI](https://img.shields.io/pypi/v/faster-eth-abi.svg?logo=Python&logoColor=white)](https://pypi.org/project/faster-eth-abi/)
83
103
  [![Monthly Downloads](https://img.shields.io/pypi/dm/faster-eth-abi)](https://pypistats.org/packages/faster-eth-abi)
@@ -85,10 +105,14 @@ Dynamic: summary
85
105
 
86
106
  ##### 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
107
 
88
- ##### You can find the compiled C code on faster-eth-abi [master](https://github.com/BobTheBuidler/eth-abi/tree/master) branch.
108
+ ##### 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
109
 
90
110
  ##### 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
111
 
112
+ ##### You can find the compiled C code and header files in the [build](https://github.com/BobTheBuidler/faster-eth-abi/tree/master/build) directory.
113
+
114
+ ###### 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/)
115
+
92
116
  ##### The original eth-abi readme is below:
93
117
 
94
118
  # Ethereum Contract Interface (ABI) Utility
@@ -0,0 +1,46 @@
1
+ faster_eth_abi__mypyc.cp314t-win_amd64.pyd,sha256=6LiW9vmX6SX67amPUgUU2chV18cz-jD72vSKHSNLs0Y,283136
2
+ faster_eth_abi/__init__.py,sha256=JpTfPTiusUGMmX8sEsGAxvILxFbvhh3MEyfiKOd5o9g,217
3
+ faster_eth_abi/_codec.cp314t-win_amd64.pyd,sha256=xZbaf4vg47W2R3CtWS5qQJxPXOFtU-jBPQJfaUdAJeo,10752
4
+ faster_eth_abi/_codec.py,sha256=hmNYkM1dRFyF97x6cA0Pg26EndRVX7KdwauK67IcUh8,2597
5
+ faster_eth_abi/_decoding.cp314t-win_amd64.pyd,sha256=_6AU0i9bHd4TLeSOxvSwVaBaSl-Kt32lLAJCMGSvJIw,10752
6
+ faster_eth_abi/_decoding.py,sha256=fWvWkgydpuVYy1TkUIPiTpeFiSdwIrR5Fqzm_ZEU0bU,10212
7
+ faster_eth_abi/_encoding.cp314t-win_amd64.pyd,sha256=c3kOkE4CdNPxfkI2HPfUm1grP8tix-c7ZdwADUQar30,10752
8
+ faster_eth_abi/_encoding.py,sha256=hAgf9ZUaD05dKpMbUifjWeaE-EXsbuXWOxdrtyoJgUU,9019
9
+ faster_eth_abi/_grammar.cp314t-win_amd64.pyd,sha256=6halsolSM3X5xfHaVOVUHm_PIOXNHNS8GQO0xoj5bYU,10752
10
+ faster_eth_abi/_grammar.py,sha256=tYDcVa9tsGzyfETpczvyPbAFZotCj29h_5WFW8sdqjI,11287
11
+ faster_eth_abi/abi.cp314t-win_amd64.pyd,sha256=3bxvHbxHQIRvIPUfWC6uWQCGFXBPkZwoW4T0ufyHoik,10752
12
+ faster_eth_abi/abi.py,sha256=-t9OVBSCxy6SuWpCu3cxHrCqkx8_svPIRb0MSFXEl5Q,383
13
+ faster_eth_abi/base.py,sha256=F8crTGdxqazfuXbm9KjDzB7mJcb_Nv9Z_fpUZcxYOfQ,1382
14
+ faster_eth_abi/codec.py,sha256=K5PQ1XpSuhT3VzEoEsdHDpsv7NEcY1u_EdT2XFF9EW0,69433
15
+ faster_eth_abi/constants.cp314t-win_amd64.pyd,sha256=-YBYRxkR8qxq2zcTTX3uRu7BXDCSa_nJgZ282yp0NrA,10752
16
+ faster_eth_abi/constants.py,sha256=q3FGynS-Eb78cnrL6mBoAvTDz16PF3tW2OylTMd6ajs,114
17
+ faster_eth_abi/decoding.py,sha256=3GJiO6Awxrbba32qNE6LNC-rYMHbX581cZYLKpsnL3g,18149
18
+ faster_eth_abi/encoding.py,sha256=Lo5V33aLTTUHoz6kVqc5CSVpLhnBd3ZSwOf7nfmWRAM,22127
19
+ faster_eth_abi/exceptions.py,sha256=wWsJJc_ip62fUVI_7CPlR-o37JWfv__ubYprEW0ZcYI,3773
20
+ faster_eth_abi/from_type_str.cp314t-win_amd64.pyd,sha256=NewX4FT9Mu2w9ExHl0xwRyKB3uyhNQkTy5J6Tfnbslw,10752
21
+ faster_eth_abi/from_type_str.py,sha256=qHJtLNNHF2BHtRtdemC6hU4eP5jAuorY8qunC7illJI,4631
22
+ faster_eth_abi/grammar.py,sha256=zroPKUmn76fw4CzopBUQqd2q5-aikM0QkGly_8corcU,4693
23
+ faster_eth_abi/io.py,sha256=qF6BPw4hOi_Xu-nyT4XAFhEL-5EQ83fUsQuqqNXqE7w,3992
24
+ faster_eth_abi/packed.cp314t-win_amd64.pyd,sha256=glg-_dvXcNsUMBRoymuLBFpvNrrZDaqPY4h3odPPO4c,10752
25
+ faster_eth_abi/packed.py,sha256=STlAhJQSm04B3keAOFGRh8jzk-aCCYAm61_9O9JUn68,437
26
+ faster_eth_abi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
+ faster_eth_abi/registry.py,sha256=TMepOMMqhoUkMkfXtylSFK8y2Dke2KRvvlyYDeAgsOM,24598
28
+ faster_eth_abi/typing.py,sha256=8npqU_Nvs-xRTnczC43eJSdaEbrsfERhNJhY9SwNEIg,109647
29
+ faster_eth_abi/tools/__init__.cp314t-win_amd64.pyd,sha256=QV4gRkxqEx5CbtdmPGn8iK7PqEfN1K62Kaw5rpd6RBQ,10752
30
+ faster_eth_abi/tools/__init__.py,sha256=jxyQnb34ldRjCTYi3Ajb5h5QlFQ6ODfKQNhOCVwR7Ao,54
31
+ faster_eth_abi/tools/_strategies.cp314t-win_amd64.pyd,sha256=tisBaP5a-2U0OWjQyk9F_Dm2Mri4078i5McYVxXF-Ak,10752
32
+ faster_eth_abi/tools/_strategies.py,sha256=iGCqfmzVPSIsPwCv21KVvUBWppUm0gdFjYN-AbmZnn4,6381
33
+ faster_eth_abi/utils/__init__.cp314t-win_amd64.pyd,sha256=fdJNLxgAxL0TRCuo9jxVP85yb2mhGs-V-fjN8uUig9w,10752
34
+ faster_eth_abi/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
+ faster_eth_abi/utils/numeric.cp314t-win_amd64.pyd,sha256=AsdeLoCsRDhCg112HCstmDgiazBCjol4muNRG9B6v2w,10752
36
+ faster_eth_abi/utils/numeric.py,sha256=saAVL12dfDrMXZeao3u2jar-U2y57YKVUqF6VOzoLxs,3395
37
+ faster_eth_abi/utils/padding.cp314t-win_amd64.pyd,sha256=WH0HWZyKqyZVjVN_GwrRtWwbsg5qujes5dZTwCGNQnw,10752
38
+ faster_eth_abi/utils/padding.py,sha256=k6dkOiQ3k0OhQUZ6blCiL1VOQVYGyynucafbySjcFfY,515
39
+ faster_eth_abi/utils/string.cp314t-win_amd64.pyd,sha256=SpTv7dmfLtyXHEdQTkM2Nklpmp7vzGD4FFsKC25h07w,10752
40
+ faster_eth_abi/utils/string.py,sha256=wYcvWof4kuitrGGSe_NOduQaxE4HHYmpraCPXKcZxMs,455
41
+ faster_eth_abi/utils/validation.cp314t-win_amd64.pyd,sha256=nZvBi6W6V4HMMPqt1yB9r-AO4v2mgZ3O3IiXQpXXqGQ,10752
42
+ faster_eth_abi/utils/validation.py,sha256=9veO7wyQsmcFgeaGrsKdSifjV1gaXfTDDKAt1EbKHYY,539
43
+ faster_eth_abi-5.2.19.dist-info/METADATA,sha256=a4KV6gV2Bb7tg1FObn5NJ8B6_TsgBivPFbgnNRd15oU,7533
44
+ faster_eth_abi-5.2.19.dist-info/WHEEL,sha256=IxxXYqBIlKEzFy9ulBJ928Gdqg6XQ3DHti4avqq3myk,102
45
+ faster_eth_abi-5.2.19.dist-info/top_level.txt,sha256=Y0kTTMPnPpssaR0jlmJwQ2XbkYXMEj_80Ewd7quo1Cg,37
46
+ faster_eth_abi-5.2.19.dist-info/RECORD,,
@@ -0,0 +1,2 @@
1
+ faster_eth_abi
2
+ faster_eth_abi__mypyc
@@ -1,44 +0,0 @@
1
- 76f9a3652d4d2667c55c__mypyc.cp314t-win_amd64.pyd,sha256=dr6Nm9jqQfeB_cchQage8Q_t8n3DcrLKNb0VmE64rbE,179200
2
- faster_eth_abi/__init__.py,sha256=JpTfPTiusUGMmX8sEsGAxvILxFbvhh3MEyfiKOd5o9g,217
3
- faster_eth_abi/_codec.cp314t-win_amd64.pyd,sha256=UJgQ0Gt9gO6z3nVjlyy24lfmdJntpv1rcLjlAp39GT4,10752
4
- faster_eth_abi/_codec.py,sha256=fLRvqvrD8F38U4m1wZztvx-7JJbZaPikwXS5u9BzY14,2509
5
- faster_eth_abi/_decoding.cp314t-win_amd64.pyd,sha256=vadRl4QEbN4auNlBOQxqml_Mp1MV6OeUK3zcejBD4-s,10752
6
- faster_eth_abi/_decoding.py,sha256=uhteNEJzs873MqIOxc68XuFnKOhsUH0CJcQFLbL0Q18,3264
7
- faster_eth_abi/_encoding.cp314t-win_amd64.pyd,sha256=XjN1eom3cGVBHhP8oPYbwhCmyIjhsWkRvDTCY5IjPPE,10752
8
- faster_eth_abi/_encoding.py,sha256=157A_MltVLCEwBmD7SB8UaKXkAOtIKC5MVupk6dk_yA,3217
9
- faster_eth_abi/abi.cp314t-win_amd64.pyd,sha256=qr8Z-ineCK6rynriYY0a8KlhIjtTHlnQGhFFM98EX64,10752
10
- faster_eth_abi/abi.py,sha256=-t9OVBSCxy6SuWpCu3cxHrCqkx8_svPIRb0MSFXEl5Q,383
11
- faster_eth_abi/base.py,sha256=y4IXpQJWGfUISl3xjCO420Grxido3tE2ebPV2rK-DvM,1229
12
- faster_eth_abi/codec.py,sha256=e1uO8BJrXRn0Ih70eUa5qipD2wcg2aZSR4fyVuGpFoY,4580
13
- faster_eth_abi/constants.cp314t-win_amd64.pyd,sha256=I7nQ5N3bZZo_TTiAHVsv2KmpkdSFhYHbIsSDQv2YhHM,10752
14
- faster_eth_abi/constants.py,sha256=q3FGynS-Eb78cnrL6mBoAvTDz16PF3tW2OylTMd6ajs,114
15
- faster_eth_abi/decoding.py,sha256=-2P8kAaHM1HFYS5b8QKstStO6PkWlugEaDUoujX1Uf0,17447
16
- faster_eth_abi/encoding.py,sha256=bKw8wCqpfv8U83I2xsmiI37wn2lQUIhn4bn1xS_l1Zc,19704
17
- faster_eth_abi/exceptions.py,sha256=KzNYRc9t0CvlkveozWvLeo1WC_GarcBkwzV67aY_5yI,3067
18
- faster_eth_abi/from_type_str.cp314t-win_amd64.pyd,sha256=QMefZA6QSiTPhyUw8_JRHs7SBiJLQDAfVh22mRAMaZo,10752
19
- faster_eth_abi/from_type_str.py,sha256=WLRP3OIyrJORgloX-7V0x2KdrZj0kLay-J9I8f-H36s,4446
20
- faster_eth_abi/grammar.py,sha256=lhEmp3ZwMTzm1-jJiMUVD4zrBgU4MEZCRiND4WxfOes,13839
21
- faster_eth_abi/io.py,sha256=E_QX7aYAjGYnkNAZmJMmSmx1lqvl_FDNmMFruTi9UX4,3831
22
- faster_eth_abi/packed.cp314t-win_amd64.pyd,sha256=1HGP3uK6IYfhraVdxekxGtDqEFlK7cGp9iG84qkAK8w,10752
23
- faster_eth_abi/packed.py,sha256=RZ2chvsx9_AL9OxY1ixHTsaUJHaR_tmrNdViOIp-xSg,316
24
- faster_eth_abi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
- faster_eth_abi/registry.py,sha256=gU5-k_1eYUjs7-NAKoH9nncCJ36tZZHM5ZXvwmXt0cw,21192
26
- faster_eth_abi/tools/__init__.cp314t-win_amd64.pyd,sha256=KK3MZUeexM6yHmzUFTkWKDVjWcboTlWkJ4srrWe2RUM,10752
27
- faster_eth_abi/tools/__init__.py,sha256=jxyQnb34ldRjCTYi3Ajb5h5QlFQ6ODfKQNhOCVwR7Ao,54
28
- faster_eth_abi/tools/_strategies.cp314t-win_amd64.pyd,sha256=yskxN_KjDREaVL5iUYcKFTc5_5ss_C1LrR6SJ3Y1G9M,10752
29
- faster_eth_abi/tools/_strategies.py,sha256=HCFdQFLa84SMf7Deui2-szTH34hxTfc0Rog_kmpTg_w,6197
30
- faster_eth_abi/utils/__init__.cp314t-win_amd64.pyd,sha256=o8B49bAlgsjSVph_2nhoErZsQ0LLL_UKFIspeBnPLhU,10752
31
- faster_eth_abi/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
32
- faster_eth_abi/utils/numeric.cp314t-win_amd64.pyd,sha256=9mw8Y5_r60Ue8zfyLVHGnR0AFB8133ygYlJaBES9UOw,10752
33
- faster_eth_abi/utils/numeric.py,sha256=hNGble1NA99_5hrAOnH0ZakCuHc6PFMC1p0olmpo_vM,2232
34
- faster_eth_abi/utils/padding.cp314t-win_amd64.pyd,sha256=YTzzW2nT__Qr-pYnYoc9CQHEvXP_dvsXXdocjJdf-aw,10752
35
- faster_eth_abi/utils/padding.py,sha256=k6dkOiQ3k0OhQUZ6blCiL1VOQVYGyynucafbySjcFfY,515
36
- faster_eth_abi/utils/string.cp314t-win_amd64.pyd,sha256=BWc8kFB1LWBIodm9klvqw-qrBIVSvEAxdDoV03K2kBs,10752
37
- faster_eth_abi/utils/string.py,sha256=wYcvWof4kuitrGGSe_NOduQaxE4HHYmpraCPXKcZxMs,455
38
- faster_eth_abi/utils/validation.cp314t-win_amd64.pyd,sha256=fK3FPTl9kyQ0w3EOqZfzlWZKEiwX0eVlzyOPG-MHmIo,10752
39
- faster_eth_abi/utils/validation.py,sha256=9veO7wyQsmcFgeaGrsKdSifjV1gaXfTDDKAt1EbKHYY,539
40
- faster_eth_abi-5.2.8.dist-info/licenses/LICENSE,sha256=Q1lDDWXR057JL2Y7HTAwclCF32_LCloN4sGUkXO1YeI,1127
41
- faster_eth_abi-5.2.8.dist-info/METADATA,sha256=agDHiYtBw2nohnY27Giw4FZyWqckmorKNR7uWalGkFg,5498
42
- faster_eth_abi-5.2.8.dist-info/WHEEL,sha256=IxxXYqBIlKEzFy9ulBJ928Gdqg6XQ3DHti4avqq3myk,102
43
- faster_eth_abi-5.2.8.dist-info/top_level.txt,sha256=CO2FQwf61aFzjYze7Wywa5KQdJ6bbLkzDoGEjDF2g9o,43
44
- faster_eth_abi-5.2.8.dist-info/RECORD,,
@@ -1,21 +0,0 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2016-2020, 2022-2025 The Ethereum Foundation
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
@@ -1,2 +0,0 @@
1
- 76f9a3652d4d2667c55c__mypyc
2
- faster_eth_abi