faster-eth-utils 2.3.1__cp311-cp311-win32.whl → 5.3.23__cp311-cp311-win32.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-utils might be problematic. Click here for more details.

Files changed (54) hide show
  1. faster_eth_utils/__init__.py +54 -17
  2. faster_eth_utils/__json/eth_networks.json +1 -0
  3. faster_eth_utils/__main__.py +3 -1
  4. faster_eth_utils/abi.cp311-win32.pyd +0 -0
  5. faster_eth_utils/abi.py +840 -37
  6. faster_eth_utils/address.cp311-win32.pyd +0 -0
  7. faster_eth_utils/address.py +54 -66
  8. faster_eth_utils/applicators.cp311-win32.pyd +0 -0
  9. faster_eth_utils/applicators.py +126 -71
  10. faster_eth_utils/conversions.cp311-win32.pyd +0 -0
  11. faster_eth_utils/conversions.py +57 -30
  12. faster_eth_utils/crypto.cp311-win32.pyd +0 -0
  13. faster_eth_utils/crypto.py +11 -6
  14. faster_eth_utils/currency.cp311-win32.pyd +0 -0
  15. faster_eth_utils/currency.py +74 -33
  16. faster_eth_utils/curried/__init__.py +110 -89
  17. faster_eth_utils/debug.cp311-win32.pyd +0 -0
  18. faster_eth_utils/debug.py +3 -3
  19. faster_eth_utils/decorators.cp311-win32.pyd +0 -0
  20. faster_eth_utils/decorators.py +73 -24
  21. faster_eth_utils/encoding.cp311-win32.pyd +0 -0
  22. faster_eth_utils/encoding.py +1 -1
  23. faster_eth_utils/exceptions.cp311-win32.pyd +0 -0
  24. faster_eth_utils/exceptions.py +8 -3
  25. faster_eth_utils/functional.cp311-win32.pyd +0 -0
  26. faster_eth_utils/functional.py +42 -28
  27. faster_eth_utils/hexadecimal.cp311-win32.pyd +0 -0
  28. faster_eth_utils/hexadecimal.py +34 -26
  29. faster_eth_utils/humanize.cp311-win32.pyd +0 -0
  30. faster_eth_utils/humanize.py +55 -27
  31. faster_eth_utils/logging.py +65 -64
  32. faster_eth_utils/module_loading.cp311-win32.pyd +0 -0
  33. faster_eth_utils/module_loading.py +8 -7
  34. faster_eth_utils/network.cp311-win32.pyd +0 -0
  35. faster_eth_utils/network.py +25 -14
  36. faster_eth_utils/numeric.cp311-win32.pyd +0 -0
  37. faster_eth_utils/numeric.py +11 -4
  38. faster_eth_utils/pydantic.py +99 -0
  39. faster_eth_utils/toolz.cp311-win32.pyd +0 -0
  40. faster_eth_utils/toolz.py +82 -152
  41. faster_eth_utils/types.cp311-win32.pyd +0 -0
  42. faster_eth_utils/types.py +34 -21
  43. faster_eth_utils/typing/misc.py +3 -1
  44. faster_eth_utils/units.cp311-win32.pyd +0 -0
  45. faster_eth_utils-5.3.23.dist-info/METADATA +192 -0
  46. faster_eth_utils-5.3.23.dist-info/RECORD +53 -0
  47. {faster_eth_utils-2.3.1.dist-info → faster_eth_utils-5.3.23.dist-info}/licenses/LICENSE +1 -1
  48. faster_eth_utils-5.3.23.dist-info/top_level.txt +3 -0
  49. faster_eth_utils__mypyc.cp311-win32.pyd +0 -0
  50. bce0bfc64ce5e845ec4a__mypyc.cp311-win32.pyd +0 -0
  51. faster_eth_utils-2.3.1.dist-info/METADATA +0 -160
  52. faster_eth_utils-2.3.1.dist-info/RECORD +0 -45
  53. faster_eth_utils-2.3.1.dist-info/top_level.txt +0 -3
  54. {faster_eth_utils-2.3.1.dist-info → faster_eth_utils-5.3.23.dist-info}/WHEEL +0 -0
@@ -1,3 +1,5 @@
1
- from .debug import get_environment_summary
1
+ from .debug import (
2
+ get_environment_summary,
3
+ )
2
4
 
3
5
  print(get_environment_summary())
Binary file