Skip to main content

Library to interface with ledger-app-eth on Ledger hardware wallets

Project description

ledger-eth-lib

This is a WIP. Consider it alpha

This is a library to interact with ledger-app-eth, the Ethereum app for the Ledger hardware wallets. It's goal is to make interfacing with the Ledger nice and simple with well known Ethereum+Python tools.

NOTE: Tested to work on Ledger Nano S and Nano X. Will probalby work with Ledger Blue

WARNING: The Ledger 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.

Environment Configuration

There are a couple of environment variables that can affect the behavior of ledger-eth-lib, documented below:

  • MAX_ACCOUNTS_FETCH[default: 5]: The maximum accounts that will be fetched when looking up by address. If you created more than 5 accounts on your Ledger device, you may want to adjust this.
  • LEDGER_LEGACY_ACCOUNTS: If set (to anything), ledger-eth-lib will use the legacy Ledger bip32 derivation that was used to create accounts before Ledger Live.

CLI Usage

python -m ledgereth [command]

Get Accounts

To get the available accounts from your Ledger:

python -m ledgereth accounts

Create and Sign Transaction

You can use the CLI util to create and sign a transaction as well.

python -m ledgereth send FROM_ADDRESS TO_ADDRESS VALUE_WEI -n NONCE -p GAS_PRICE_WEI -c CHAIN_ID

Web3.py Integration

ledger-eth-lib provides a Web3.py middleware. It will automatically intercept the relevant JSON-RPC calls and respond with data from your Ledger device.

from web3.auto import w3
from ledgereth.web3 import LedgerSignerMiddleware
w3.middleware_onion.add(LedgerSignerMiddleware)

Intercepted JSON-RPC methods:

  • eth_sendTransaction
  • eth_accounts

Quickstart

Get Accounts

Fetch the availible accounts.

from ledgereth import get_accounts
accounts = get_accounts()
my_account = accounts[0].address

Create and Sign a Transaction

Create a transaction object and sign it with the default account.

from ledgereth import create_transaction
tx = create_transaction(
    '0xb78f53524ae9d465279e7c3495f71d5db2419e13',  # to
    int(1e18),  # value
    int(1e5),   # gas limit
    1,          # nonce
    int(1e9),   # gas price
)
signature = '0x{}{}{}'.format(
    hex(tx.v)[2:],
    hex(tx.r)[2:],
    hex(tx.s)[2:],
)

Sign an Existing Transaction Object

Sign a Transaction object from pyethereum(or similar RLP serializable):

from ledgereth import sign_transaction
tx = sign_transaction(tx)
signature = '0x{}{}{}'.format(
    hex(tx.v)[2:],
    hex(tx.r)[2:],
    hex(tx.s)[2:],
)

TODO

  • Add fake dongle support to pytest suite so tests can be run without a real Ledger and human interaction
  • Fill out tests
  • Add messaging signing support
  • Add ERC-712 messaging signing support
  • Add type 1 transactions (EIP-2930 access list)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ledgereth-0.3.0.tar.gz (13.6 kB view details)

Uploaded Source

Built Distribution

ledgereth-0.3.0-py3-none-any.whl (14.8 kB view details)

Uploaded Python 3

File details

Details for the file ledgereth-0.3.0.tar.gz.

File metadata

  • Download URL: ledgereth-0.3.0.tar.gz
  • Upload date:
  • Size: 13.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.1

File hashes

Hashes for ledgereth-0.3.0.tar.gz
Algorithm Hash digest
SHA256 857626fdf6a52e140ab718844af2cc0557a7b4b1d6eb0cb64c29c5dd4621cad3
MD5 545957339044ed4329fded6dbd5fcc87
BLAKE2b-256 ef4201b2fd98efeb494a8f3275ea00b6e3f5d81c7fe3fc7117a7a602fd82644e

See more details on using hashes here.

File details

Details for the file ledgereth-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: ledgereth-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 14.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.1

File hashes

Hashes for ledgereth-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a220acb7c7b1c1faeb68d1c0dfa91e4f00ef9b505073b6eb158961c535921cf4
MD5 5074a90b988410002826762d5d54f3f4
BLAKE2b-256 9a9eb264e3fe3001b078e80839fdaae4a54b4532cf6526b4427f09bf076d493f

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page