Metadata-Version: 2.1
Name: ledgereth
Version: 0.7.1
Summary: Library to interface with ledger-app-eth on Ledger hardware wallets
Home-page: https://github.com/mikeshultz/ledger-eth-lib
Author: Mike Shultz
Author-email: mike@mikeshultz.com
License: UNKNOWN
Keywords: solidity ethereum development
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
Requires-Dist: eth-utils (<2.0.0)
Requires-Dist: ledgerblue (==0.1.41)
Requires-Dist: pysha3 (>=1.0.2)
Requires-Dist: rlp (~=2.0.1)
Provides-Extra: dev
Requires-Dist: autoflake (~=1.4) ; extra == 'dev'
Requires-Dist: black (>=21.11b1) ; extra == 'dev'
Requires-Dist: bump2version (~=1.0.1) ; extra == 'dev'
Requires-Dist: eth-account (<0.6.0) ; extra == 'dev'
Requires-Dist: isort (>=5.10.1) ; extra == 'dev'
Requires-Dist: mypy (>=0.910) ; extra == 'dev'
Requires-Dist: pytest (>=5.3.2) ; extra == 'dev'
Requires-Dist: setuptools (>=44.0.0) ; extra == 'dev'
Requires-Dist: twine (>=3.1.1) ; extra == 'dev'
Requires-Dist: web3[tester] (~=5.28.0) ; extra == 'dev'
Requires-Dist: wheel (>=0.33.6) ; extra == 'dev'
Provides-Extra: docs
Requires-Dist: sphinx-autobuild (~=2021.3.14) ; extra == 'docs'
Requires-Dist: sphinx-rtd-theme (~=1.0.0) ; extra == 'docs'
Requires-Dist: sphinx (~=4.5.0) ; extra == 'docs'

# ledgereth

[![Documentation Status](https://readthedocs.org/projects/ledgereth/badge/?version=latest)](https://ledgereth.readthedocs.io/en/latest/?badge=latest)

**This library is beta.  Please [report any bugs](https://github.com/mikeshultz/ledger-eth-lib/issues/new) you find.**

This is a library to interact with [ledger-app-eth](https://github.com/LedgerHQ/ledger-app-eth), the Ethereum app for the [Ledger hardware wallets](https://www.ledger.com/).  It's goal is to make interfacing with the Ledger nice and simple with well known Ethereum+Python tools.

## Quickstart

Here’s the quickest way to get started.

    pip install ledgereth

Please see [the ledgereth documentation](https://ledgereth.readthedocs.io/) for more detailed information.

## Compatability

### Ledger Devices

This lib has been tested to work on Ledger Nano S and Nano X.  It will probalby work with Ledger Blue and any devices the [`ledgerblue` library](https://github.com/LedgerHQ/blue-loader-python) and [ledger-app-eth](https://github.com/LedgerHQ/ledger-app-eth) supports.

### Ledger Account Derivations

The Ledger-provided desktop apps have changed the way accounts are derived with the release of Ledger Live.  If you created your Ledger account(s) with the older Chrome app and want to use those account(s) with this library, you will need to set the `LEDGER_LEGACY_ACCOUNTS` env var. You can only use one or the other at a time.  See [the notes in source for more information](https://github.com/mikeshultz/ledger-eth-lib/blob/master/ledgereth/web3.py#L8-L34).


