faster-eth-abi 5.2.12__cp314-cp314-macosx_11_0_arm64.whl → 5.2.14__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.

Files changed (39) 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 +45 -0
  11. benchmarks/type_strings.py +26 -0
  12. faster_eth_abi/_codec.cpython-314-darwin.so +0 -0
  13. faster_eth_abi/_codec.py +1 -1
  14. faster_eth_abi/_decoding.cpython-314-darwin.so +0 -0
  15. faster_eth_abi/_decoding.py +136 -5
  16. faster_eth_abi/_encoding.cpython-314-darwin.so +0 -0
  17. faster_eth_abi/_encoding.py +141 -6
  18. faster_eth_abi/_grammar.cpython-314-darwin.so +0 -0
  19. faster_eth_abi/abi.cpython-314-darwin.so +0 -0
  20. faster_eth_abi/constants.cpython-314-darwin.so +0 -0
  21. faster_eth_abi/decoding.py +107 -96
  22. faster_eth_abi/encoding.py +55 -27
  23. faster_eth_abi/from_type_str.cpython-314-darwin.so +0 -0
  24. faster_eth_abi/packed.cpython-314-darwin.so +0 -0
  25. faster_eth_abi/registry.py +47 -31
  26. faster_eth_abi/tools/__init__.cpython-314-darwin.so +0 -0
  27. faster_eth_abi/tools/_strategies.cpython-314-darwin.so +0 -0
  28. faster_eth_abi/utils/__init__.cpython-314-darwin.so +0 -0
  29. faster_eth_abi/utils/numeric.cpython-314-darwin.so +0 -0
  30. faster_eth_abi/utils/padding.cpython-314-darwin.so +0 -0
  31. faster_eth_abi/utils/string.cpython-314-darwin.so +0 -0
  32. faster_eth_abi/utils/validation.cpython-314-darwin.so +0 -0
  33. {faster_eth_abi-5.2.12.dist-info → faster_eth_abi-5.2.14.dist-info}/METADATA +14 -2
  34. faster_eth_abi-5.2.14.dist-info/RECORD +57 -0
  35. {faster_eth_abi-5.2.12.dist-info → faster_eth_abi-5.2.14.dist-info}/top_level.txt +1 -0
  36. faster_eth_abi__mypyc.cpython-314-darwin.so +0 -0
  37. faster_eth_abi-5.2.12.dist-info/RECORD +0 -46
  38. {faster_eth_abi-5.2.12.dist-info → faster_eth_abi-5.2.14.dist-info}/WHEEL +0 -0
  39. {faster_eth_abi-5.2.12.dist-info → faster_eth_abi-5.2.14.dist-info}/licenses/LICENSE +0 -0
@@ -1,12 +1,15 @@
1
1
  import abc
2
+ from copy import (
3
+ copy,
4
+ )
2
5
  import functools
3
- from copy import copy
4
6
  from typing import (
5
7
  Any,
6
8
  Callable,
7
9
  Dict,
8
10
  Final,
9
11
  Generic,
12
+ Iterator,
10
13
  Optional,
11
14
  Type,
12
15
  TypeVar,
@@ -17,6 +20,8 @@ from eth_typing import (
17
20
  TypeStr,
18
21
  )
19
22
  from typing_extensions import (
23
+ Concatenate,
24
+ ParamSpec,
20
25
  Self,
21
26
  )
22
27
 
@@ -38,6 +43,7 @@ from .io import (
38
43
  )
39
44
 
40
45
  T = TypeVar("T")
46
+ P = ParamSpec("P")
41
47
 
42
48
  Lookup = Union[TypeStr, Callable[[TypeStr], bool]]
43
49
 
@@ -177,25 +183,25 @@ class Predicate:
177
183
  ``ABIRegistry``.
178
184
  """
179
185
 
180
- __slots__ = tuple()
186
+ __slots__ = ()
181
187
 
182
188
  def __call__(self, *args, **kwargs): # pragma: no cover
183
189
  raise NotImplementedError("Must implement `__call__`")
184
190
 
185
- def __str__(self): # pragma: no cover
191
+ def __str__(self) -> str:
186
192
  raise NotImplementedError("Must implement `__str__`")
187
193
 
188
- def __repr__(self):
194
+ def __repr__(self) -> str:
189
195
  return f"<{type(self).__name__} {self}>"
190
196
 
191
- def __iter__(self):
197
+ def __iter__(self) -> Iterator[Any]:
192
198
  for attr in self.__slots__:
193
199
  yield getattr(self, attr)
194
200
 
195
- def __hash__(self):
201
+ def __hash__(self) -> int:
196
202
  return hash(tuple(self))
197
203
 
198
- def __eq__(self, other):
204
+ def __eq__(self, other: Any) -> bool:
199
205
  return type(self) is type(other) and tuple(self) == tuple(other)
200
206
 
201
207
 
@@ -209,10 +215,10 @@ class Equals(Predicate):
209
215
  def __init__(self, value):
210
216
  self.value = value
211
217
 
212
- def __call__(self, other):
218
+ def __call__(self, other: Any) -> bool:
213
219
  return self.value == other
214
220
 
215
- def __str__(self):
221
+ def __str__(self) -> str:
216
222
  return f"(== {self.value!r})"
217
223
 
218
224
 
@@ -231,7 +237,7 @@ class BaseEquals(Predicate):
231
237
  self.base = base
232
238
  self.with_sub = with_sub
233
239
 
234
- def __call__(self, type_str):
240
+ def __call__(self, type_str: TypeStr) -> bool:
235
241
  try:
236
242
  abi_type = grammar.parse(type_str)
237
243
  except (exceptions.ParseError, ValueError):
@@ -253,7 +259,7 @@ class BaseEquals(Predicate):
253
259
  # e.g. if it contained a tuple type
254
260
  return False
255
261
 
256
- def __str__(self):
262
+ def __str__(self) -> str:
257
263
  return (
258
264
  f"(base == {self.base!r}"
259
265
  + (
@@ -265,7 +271,7 @@ class BaseEquals(Predicate):
265
271
  )
266
272
 
267
273
 
268
- def has_arrlist(type_str):
274
+ def has_arrlist(type_str: TypeStr) -> bool:
269
275
  """
270
276
  A predicate that matches a type string with an array dimension list.
271
277
  """
@@ -277,7 +283,7 @@ def has_arrlist(type_str):
277
283
  return abi_type.arrlist is not None
278
284
 
279
285
 
280
- def is_base_tuple(type_str):
286
+ def is_base_tuple(type_str: TypeStr) -> bool:
281
287
  """
282
288
  A predicate that matches a tuple type with no array dimension list.
283
289
  """
@@ -289,9 +295,11 @@ def is_base_tuple(type_str):
289
295
  return isinstance(abi_type, grammar.TupleType) and abi_type.arrlist is None
290
296
 
291
297
 
292
- def _clear_encoder_cache(old_method: Callable[..., None]) -> Callable[..., None]:
298
+ def _clear_encoder_cache(
299
+ old_method: Callable[Concatenate["ABIRegistry", P], T]
300
+ ) -> Callable[Concatenate["ABIRegistry", P], T]:
293
301
  @functools.wraps(old_method)
294
- def new_method(self: "ABIRegistry", *args: Any, **kwargs: Any) -> None:
302
+ def new_method(self: "ABIRegistry", *args: P.args, **kwargs: P.kwargs) -> T:
295
303
  self.get_encoder.cache_clear()
296
304
  self.get_tuple_encoder.cache_clear()
297
305
  return old_method(self, *args, **kwargs)
@@ -299,9 +307,11 @@ def _clear_encoder_cache(old_method: Callable[..., None]) -> Callable[..., None]
299
307
  return new_method
300
308
 
301
309
 
302
- def _clear_decoder_cache(old_method: Callable[..., None]) -> Callable[..., None]:
310
+ def _clear_decoder_cache(
311
+ old_method: Callable[Concatenate["ABIRegistry", P], T]
312
+ ) -> Callable[Concatenate["ABIRegistry", P], T]:
303
313
  @functools.wraps(old_method)
304
- def new_method(self: "ABIRegistry", *args: Any, **kwargs: Any) -> None:
314
+ def new_method(self: "ABIRegistry", *args: P.args, **kwargs: P.kwargs) -> T:
305
315
  self.get_decoder.cache_clear()
306
316
  self.get_tuple_decoder.cache_clear()
307
317
  return old_method(self, *args, **kwargs)
@@ -311,7 +321,12 @@ def _clear_decoder_cache(old_method: Callable[..., None]) -> Callable[..., None]
311
321
 
312
322
  class BaseRegistry:
313
323
  @staticmethod
314
- def _register(mapping, lookup, value, label=None):
324
+ def _register(
325
+ mapping: PredicateMapping[T],
326
+ lookup: Lookup,
327
+ value: T,
328
+ label: Optional[str] = None,
329
+ ) -> None:
315
330
  if callable(lookup):
316
331
  mapping.add(lookup, value, label)
317
332
  return
@@ -325,7 +340,7 @@ class BaseRegistry:
325
340
  )
326
341
 
327
342
  @staticmethod
328
- def _unregister(mapping, lookup_or_label):
343
+ def _unregister(mapping: PredicateMapping[Any], lookup_or_label: Lookup) -> None:
329
344
  if callable(lookup_or_label):
330
345
  mapping.remove_by_equality(lookup_or_label)
331
346
  return
@@ -340,7 +355,7 @@ class BaseRegistry:
340
355
  )
341
356
 
342
357
  @staticmethod
343
- def _get_registration(mapping, type_str):
358
+ def _get_registration(mapping: PredicateMapping[T], type_str: TypeStr) -> T:
344
359
  try:
345
360
  value = mapping.find(type_str)
346
361
  except ValueError as e:
@@ -473,16 +488,15 @@ class ABIRegistry(Copyable, BaseRegistry):
473
488
  self.unregister_encoder(label)
474
489
  self.unregister_decoder(label)
475
490
 
476
- def _get_encoder_uncached(self, type_str: TypeStr): # type: ignore [no-untyped-def]
491
+ def _get_encoder_uncached(self, type_str: TypeStr) -> Encoder:
477
492
  return self._get_registration(self._encoders, type_str)
478
493
 
479
494
  def _get_tuple_encoder_uncached(
480
- self,
495
+ self,
481
496
  *type_strs: TypeStr,
482
497
  ) -> encoding.TupleEncoder:
483
- return encoding.TupleEncoder(
484
- encoders=tuple(self.get_encoder(type_str) for type_str in type_strs)
485
- )
498
+ encoders = tuple(map(self.get_encoder, type_strs))
499
+ return encoding.TupleEncoder(encoders=encoders)
486
500
 
487
501
  def has_encoder(self, type_str: TypeStr) -> bool:
488
502
  """
@@ -500,7 +514,7 @@ class ABIRegistry(Copyable, BaseRegistry):
500
514
 
501
515
  return True
502
516
 
503
- def _get_decoder_uncached(self, type_str: TypeStr, strict: bool = True): # type: ignore [no-untyped-def]
517
+ def _get_decoder_uncached(self, type_str: TypeStr, strict: bool = True) -> Decoder:
504
518
  decoder = self._get_registration(self._decoders, type_str)
505
519
 
506
520
  if hasattr(decoder, "is_dynamic") and decoder.is_dynamic:
@@ -512,15 +526,17 @@ class ABIRegistry(Copyable, BaseRegistry):
512
526
  return decoder
513
527
 
514
528
  def _get_tuple_decoder_uncached(
515
- self,
516
- *type_strs: TypeStr,
529
+ self,
530
+ *type_strs: TypeStr,
517
531
  strict: bool = True,
518
532
  ) -> decoding.TupleDecoder:
519
- return decoding.TupleDecoder(
520
- decoders=tuple(self.get_decoder(type_str, strict) for type_str in type_strs)
533
+ decoders = tuple(
534
+ self.get_decoder(type_str, strict) # type: ignore [misc]
535
+ for type_str in type_strs
521
536
  )
537
+ return decoding.TupleDecoder(decoders=decoders)
522
538
 
523
- def copy(self):
539
+ def copy(self) -> Self:
524
540
  """
525
541
  Copies a registry such that new registrations can be made or existing
526
542
  registrations can be unregistered without affecting any instance from
@@ -1,11 +1,19 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: faster_eth_abi
3
- Version: 5.2.12
3
+ Version: 5.2.14
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
@@ -38,7 +46,6 @@ Requires-Dist: pre-commit>=3.4.0; extra == "dev"
38
46
  Requires-Dist: tox>=4.0.0; extra == "dev"
39
47
  Requires-Dist: twine; extra == "dev"
40
48
  Requires-Dist: wheel; extra == "dev"
41
- Requires-Dist: pytest-codspeed; extra == "dev"
42
49
  Requires-Dist: pytest-benchmark; extra == "dev"
43
50
  Requires-Dist: sphinx>=6.0.0; extra == "dev"
44
51
  Requires-Dist: sphinx-autobuild>=2021.3.14; extra == "dev"
@@ -64,6 +71,10 @@ Requires-Dist: eth-hash[pycryptodome]; extra == "test"
64
71
  Requires-Dist: hypothesis<6.108.7,>=6.22.0; extra == "test"
65
72
  Provides-Extra: tools
66
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"
67
78
  Dynamic: author
68
79
  Dynamic: author-email
69
80
  Dynamic: classifier
@@ -73,6 +84,7 @@ Dynamic: home-page
73
84
  Dynamic: keywords
74
85
  Dynamic: license
75
86
  Dynamic: license-file
87
+ Dynamic: project-url
76
88
  Dynamic: provides-extra
77
89
  Dynamic: requires-dist
78
90
  Dynamic: requires-python
@@ -0,0 +1,57 @@
1
+ faster_eth_abi__mypyc.cpython-314-darwin.so,sha256=oXXuySmw596Q9Yq2ZfsvRuIkucUUN0ZDE25kJpr1io4,693768
2
+ faster_eth_abi/_encoding.cpython-314-darwin.so,sha256=LpTbw9B9TgxFewfK1FTNwJI4BXmj1JiZCltuBoC4Vbo,50656
3
+ faster_eth_abi/_encoding.py,sha256=n3POAR1IAjQObaDTY_GyqgQPwmTIC2CT7VuAf5vBvyg,8540
4
+ faster_eth_abi/packed.py,sha256=qDPBjish_0h26O7xGWopnlD4pRkphFuFq4izgIqT600,301
5
+ faster_eth_abi/encoding.py,sha256=3-MNnZ7PUNZXUbu-HrmM_PDSVfAEZcdmrbMu8GHqYMQ,19685
6
+ faster_eth_abi/registry.py,sha256=HmspZBvwUrkeVjecCOQJUjXkYP5aDAGbkCx1CzASppk,21554
7
+ faster_eth_abi/_decoding.py,sha256=WbFy1GxPYGHduUNCjiTz4gLbNuDffbbJ6MFujjINTpw,9613
8
+ faster_eth_abi/_grammar.cpython-314-darwin.so,sha256=XAwoDYGLbUiYmzfmC3wUcIJxHnKb6Y129_bQVSWtJr0,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=O8wjiUozKHP7jJITSiD0JUBauyURRrj5eSp1sZlRWzo,50656
12
+ faster_eth_abi/__init__.py,sha256=55jGpiVbsTGNu-c_rr-wwyH3eqEv9MELSTWa4AMiKvU,205
13
+ faster_eth_abi/abi.cpython-314-darwin.so,sha256=cOvYd9I2HLIg0dP15lFgjnpySHeLXqKi6UIX_TwxJQY,50632
14
+ faster_eth_abi/_grammar.py,sha256=6REsztEP6kJvWSB3DoLRGbl1whc-pLj5aEWrT6GxaN0,10142
15
+ faster_eth_abi/_codec.cpython-314-darwin.so,sha256=2kUfEGqwPCsHTlAW48K-zfyWLzW3483sBhgaIRNM7Nk,50640
16
+ faster_eth_abi/decoding.py,sha256=vBrGAol7NC_7iA3j4V_rwtLwo2hzK1b60-o559iuHls,16227
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=HsC4HZ3BGzFU9xcln2XQNdC7iGDiiXx0aKS_mNOWokY,50656
20
+ faster_eth_abi/packed.cpython-314-darwin.so,sha256=F36uR_IBbKYS-s1JT98yRrg0UemceoQ1YBhwGeSjai0,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=qcK1Mfy_6tO48srobl-WyBBIkEFzwpMQrdGQ8H5TH-o,2271
25
+ faster_eth_abi/from_type_str.cpython-314-darwin.so,sha256=8w7dk7b9tYIZg2gdX2eaRrs_9xuYNYBG45B6MtPwGbI,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=nFU6YYdMN9gBBycWyDoYdjai9ULodUfgu5NVqgmf-Lg,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=Pt75YIN9u3fP4lX2XB6oGoZFC5EznbUhP1tA5JTqkic,50672
32
+ faster_eth_abi/utils/padding.cpython-314-darwin.so,sha256=6BioArcp8Wtuhkg3RDMR-kb0oEndoRaXc0NwaGoSsxs,50656
33
+ faster_eth_abi/utils/__init__.cpython-314-darwin.so,sha256=bOMCY57yUBP6KX65tQJWsVLVXanhxhFYVuDxrldWoYs,50640
34
+ faster_eth_abi/utils/numeric.cpython-314-darwin.so,sha256=TdHB8sA64Us5VonfKYeaqK3vRYNaiTpwdjTC148pUiE,50656
35
+ faster_eth_abi/utils/validation.cpython-314-darwin.so,sha256=Jxk09lb7YAQf5XJ00VVsT7VCAtCM1zjpNnR2EhNEV8s,50672
36
+ faster_eth_abi/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
37
+ faster_eth_abi/utils/string.cpython-314-darwin.so,sha256=PSlMkdWmlvFEYjAMk3m8AsmlLtxS4Mwdw-geTVKsU7c,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.14.dist-info/RECORD,,
43
+ faster_eth_abi-5.2.14.dist-info/WHEEL,sha256=2Id6qreet5t4wZv58bZfijJ58qrc2xkw6OVvWfeqxV0,136
44
+ faster_eth_abi-5.2.14.dist-info/top_level.txt,sha256=z3gorxabz8D2eg5A3YX2M3p3JMFRLLX3DRp0jAwNZOY,48
45
+ faster_eth_abi-5.2.14.dist-info/METADATA,sha256=9Y3LCTA4ytM8PUoj2EoYJ1QTfGfyli9EY-HQCu2ugx8,6978
46
+ faster_eth_abi-5.2.14.dist-info/licenses/LICENSE,sha256=P_zrhVa0OXK-_XuA0RF3d3gwMLXRSBkn2fWraC4CFLo,1106
47
+ benchmarks/test_registry_benchmarks.py,sha256=RQTkFsOk9pIDPd84bZqm3mfBuKSYhuQCCmSblYDzFOE,1262
48
+ benchmarks/type_strings.py,sha256=tC12IvA5TbJFQDvydi1lCxnCHUxWurBW69xLG9Xjywc,566
49
+ benchmarks/batch.py,sha256=8MkG1hAxZerEnPTtrESUAWXB6C-iNnCMQ5yJMz3HDIM,199
50
+ benchmarks/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
51
+ benchmarks/test_grammar_benchmarks.py,sha256=faL_y_fmdvEeULTmLj88OWEj4e1mAdzuZTYkLF47ZAA,1129
52
+ benchmarks/test_packed_benchmarks.py,sha256=KHi8aEKKWZw4lNNrpJtdr6l2cjI5RecyA8w4gJhDmm4,1395
53
+ benchmarks/test_abi_benchmarks.py,sha256=tTwhKGizr7hIu-QV-A1PAN-n3Bk8LnfaY3Dv5-dE3E0,2497
54
+ benchmarks/test_io_benchmarks.py,sha256=SkBGL0FijyVefSlL1VTQIaD1b2oruWjdo6WAck8rpQY,3065
55
+ benchmarks/test_encoding_benchmarks.py,sha256=sfVncm7BGIV0k_byD8HCjuwc8oGx4-KLnx8Jk8_9uD0,3212
56
+ benchmarks/data.py,sha256=YeU6gxSF2_XFVnwy7N2CuEiqiS8AFrc4ZQ4B3Z0HRw4,9205
57
+ benchmarks/test_decoding_benchmarks.py,sha256=MVZ4lN1V8OTvO-957joBBOgkHnsfSghF3d_GiBeEh1E,3904
@@ -1,2 +1,3 @@
1
+ benchmarks
1
2
  faster_eth_abi
2
3
  faster_eth_abi__mypyc
Binary file
@@ -1,46 +0,0 @@
1
- faster_eth_abi__mypyc.cpython-314-darwin.so,sha256=LoafCeg2RNdq-TbBCKLn-7AfLOpKnDUr564NzT9nqFw,600536
2
- faster_eth_abi/_encoding.cpython-314-darwin.so,sha256=Msk0hrC40H8BQNW7K8GmerrBFLTvlUvX7dxPfLK6_18,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=6AODPHfgJBDuAoMc29IXXWFMzjNoYFwe94_gcDhW8k4,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=YzTlSgPErT0zcVTURc9AeV--oYwRU73py14E0hAQ5A0,50656
12
- faster_eth_abi/__init__.py,sha256=55jGpiVbsTGNu-c_rr-wwyH3eqEv9MELSTWa4AMiKvU,205
13
- faster_eth_abi/abi.cpython-314-darwin.so,sha256=zoN73QmYfxEQqSHDZ3VjKy9jvLPsLx4Kx2aTLafqxc0,50632
14
- faster_eth_abi/_grammar.py,sha256=6REsztEP6kJvWSB3DoLRGbl1whc-pLj5aEWrT6GxaN0,10142
15
- faster_eth_abi/_codec.cpython-314-darwin.so,sha256=DIHbiaZ4AC8oViDi1vlvkDw-a4BYUUgouyaJavQmzfA,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=ashb0jYzh4xxQQ6PxI05qXs-OArtNU-iwszJrxV2_vE,50656
20
- faster_eth_abi/packed.cpython-314-darwin.so,sha256=h-9HLk3yAEXV3176e3IIMORrIBlRKezG_gDEYgyfBXs,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=AcaIyiIvFqzRAoLdAAWO8rpI1l-EyrB_4r42eg824D8,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=jUTXOf_-W2xgny9WRyvgc-ykzK5LrkAY1627SO04jAA,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=2KixUM0EHUb49fKKP9FTxTZP51bVdmaAHk8K9amRE70,50672
32
- faster_eth_abi/utils/padding.cpython-314-darwin.so,sha256=C0kLGORpWCo00ZhvSh-rGWoY6R5hJQBZAORmvoKyBFA,50656
33
- faster_eth_abi/utils/__init__.cpython-314-darwin.so,sha256=ZZklJmHTU_oOwuJuy1QCzzdjrpXD-EkJJOCftgdzocA,50640
34
- faster_eth_abi/utils/numeric.cpython-314-darwin.so,sha256=6V2xl5wj5svrR37agK87AdmDzJcjEol9GTe1BzW3CuM,50656
35
- faster_eth_abi/utils/validation.cpython-314-darwin.so,sha256=5KC2i2Mbps4tPnZGLLZaVAzutCCpgqvtXyjniJHGyPE,50672
36
- faster_eth_abi/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
37
- faster_eth_abi/utils/string.cpython-314-darwin.so,sha256=nPxeRTEalfxdlou9yxujmL0Jyh-qXQz5WVyDI-BgdhM,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.12.dist-info/RECORD,,
43
- faster_eth_abi-5.2.12.dist-info/WHEEL,sha256=2Id6qreet5t4wZv58bZfijJ58qrc2xkw6OVvWfeqxV0,136
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/METADATA,sha256=K3VxS87huMNp8qVU0CmhoLSujpwNBFHkoBJS5qqZxpY,6093
46
- faster_eth_abi-5.2.12.dist-info/licenses/LICENSE,sha256=P_zrhVa0OXK-_XuA0RF3d3gwMLXRSBkn2fWraC4CFLo,1106