{"id":24192714,"url":"https://github.com/apeworx/ape-ledger","last_synced_at":"2025-07-30T23:35:41.163Z","repository":{"id":37050018,"uuid":"348531992","full_name":"ApeWorX/ape-ledger","owner":"ApeWorX","description":"Ledger Nano S and X account plugin for the Ape Framework","archived":false,"fork":false,"pushed_at":"2025-02-11T18:48:02.000Z","size":269,"stargazers_count":7,"open_issues_count":5,"forks_count":8,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-07-18T05:55:20.148Z","etag":null,"topics":["ape","apeworx","ethereum","ledger","ledger-api-client","ledger-plugin","ledger-wallet","python","wallet","web3"],"latest_commit_sha":null,"homepage":"https://www.apeworx.io/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ApeWorX.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-03-17T00:30:17.000Z","updated_at":"2025-06-13T10:59:08.000Z","dependencies_parsed_at":"2023-12-19T05:00:34.538Z","dependency_job_id":"51835e05-80e1-4ac1-b6eb-6dc56a4d7cd1","html_url":"https://github.com/ApeWorX/ape-ledger","commit_stats":{"total_commits":35,"total_committers":7,"mean_commits":5.0,"dds":0.6571428571428571,"last_synced_commit":"fe4260093e17e3b24060f3b1fca5336e0e5b54e7"},"previous_names":[],"tags_count":19,"template":false,"template_full_name":"ApeWorX/project-template","purl":"pkg:github/ApeWorX/ape-ledger","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ApeWorX%2Fape-ledger","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ApeWorX%2Fape-ledger/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ApeWorX%2Fape-ledger/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ApeWorX%2Fape-ledger/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ApeWorX","download_url":"https://codeload.github.com/ApeWorX/ape-ledger/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ApeWorX%2Fape-ledger/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267960874,"owners_count":24172509,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-30T02:00:09.044Z","response_time":70,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ape","apeworx","ethereum","ledger","ledger-api-client","ledger-plugin","ledger-wallet","python","wallet","web3"],"created_at":"2025-01-13T16:19:59.463Z","updated_at":"2025-07-30T23:35:41.138Z","avatar_url":"https://github.com/ApeWorX.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Quick Start\n\nApe Ledger is a plugin for Ape Framework which integrates with Ledger devices\nto load and create accounts, sign messages, and sign transactions.\n\n## Dependencies\n\n- [python3](https://www.python.org/downloads) version 3.9 up to 3.12.\n\n## Installation\n\n### via `pip`\n\nYou can install the latest release via [`pip`](https://pypi.org/project/pip/):\n\n```bash\npip install ape-ledger\n```\n\n### via `setuptools`\n\nYou can clone the repository and use [`setuptools`](https://github.com/pypa/setuptools) for the most up-to-date version:\n\n```bash\ngit clone https://github.com/ApeWorX/ape-ledger.git\ncd ape-ledger\npython3 setup.py install\n```\n\n## Quick Usage\n\nYou must:\n\n- have the Ledger USB device connected\n- have the Ledger USB device unlocked (by entering the passcode)\n- and have the Ethereum app open.\n\nThen, add accounts:\n\n```bash\nape ledger add \u003calias\u003e\n```\n\nLedger accounts have the following capabilities in `ape`:\n\n1. Can sign transactions\n2. Can sign messages using the default EIP-191 specification\n3. Can sign messages using the EIP-712 specification\n\n### Adjust HD Path\n\nIf you need to adjust your HD path, use the `--hd-path` flag when adding the account.\n\n```bash\nape ledger add \u003calias\u003e --hd-path \"m/44'/60'/0'/0/{x}\"\n```\n\n`{x}` indicates the account node. Note that excluding `{x}` assumes the account node is at the end\nof the path.\n\nThe default HD path for the Ledger plugin is `m/44'/60'/{x}'/0/0`.\nSee https://github.com/MyCryptoHQ/MyCrypto/issues/2070 for more information.\n\n## List accounts\n\nTo list just your Ledger accounts in `ape`, do:\n\n```bash\nape ledger list\n```\n\n## Remove accounts\n\nYou can also remove accounts:\n\n```bash\nape ledger delete \u003calias\u003e\n```\n\n## Development\n\nPlease see the [contributing guide](CONTRIBUTING.md) to learn more how to contribute to this project.\nComments, questions, criticisms and pull requests are welcomed.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapeworx%2Fape-ledger","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapeworx%2Fape-ledger","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapeworx%2Fape-ledger/lists"}