Files
app-ethereum/client/README.md

30 lines
736 B
Markdown
Raw Normal View History

2023-08-29 10:55:12 +02:00
# Python client for the Ledger Ethereum application
2023-08-29 10:55:12 +02:00
This package allows to communicate with the Ledger Ethereum application, either on a
real device, or emulated on Speculos.
## Installation
This package is deployed:
- on `pypi.org` for the stable version. This version will work with the
application available on the `master` branch.
2023-08-29 10:55:12 +02:00
```bash
2023-07-28 15:41:17 +02:00
pip install ledger_app_clients.ethereum
```
2023-07-28 15:41:17 +02:00
- on `test.pypi.org` for the rolling release. This version will work with the
2023-08-29 10:55:12 +02:00
application available on the `develop` branch.
```bash
2023-07-28 15:41:17 +02:00
pip install --extra-index-url https://test.pypi.org/simple/ ledger_app_clients.ethereum
```
### Installation from sources
You can install the client from this repo:
```bash
pip install .
```