__init__.py 174 B

1234567891011
  1. from importlib.metadata import (
  2. version as __version,
  3. )
  4. from eth_account.account import (
  5. Account,
  6. )
  7. __all__ = ["Account"]
  8. __version__ = __version("eth-account")