Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mrtenz/findeth
A tool to help you find your lost Ethereum address, Ether or tokens, by searching through a bunch of derivation paths
https://github.com/mrtenz/findeth
derivation-path erc-20 ethereum ledger mnemonic-phrase private-key search tokens tool trezor
Last synced: 2 days ago
JSON representation
A tool to help you find your lost Ethereum address, Ether or tokens, by searching through a bunch of derivation paths
- Host: GitHub
- URL: https://github.com/mrtenz/findeth
- Owner: Mrtenz
- License: mit
- Created: 2019-05-21T10:40:57.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-05-10T22:56:40.000Z (9 months ago)
- Last Synced: 2025-01-23T05:12:55.300Z (10 days ago)
- Topics: derivation-path, erc-20, ethereum, ledger, mnemonic-phrase, private-key, search, tokens, tool, trezor
- Language: TypeScript
- Homepage: https://findeth.io
- Size: 996 KB
- Stars: 166
- Watchers: 9
- Forks: 67
- Open Issues: 56
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FindETH
[![Build Status](https://travis-ci.com/Mrtenz/FindETH.svg?branch=master)](https://travis-ci.com/Mrtenz/FindETH) [![GitHub license](https://img.shields.io/github/license/Mrtenz/FindETH.svg)](https://github.com/Mrtenz/FindETH/blob/master/LICENSE) [![GitHub issues](https://img.shields.io/github/issues/Mrtenz/FindETH.svg)](https://github.com/Mrtenz/FindETH/issues) ![David](https://img.shields.io/david/Mrtenz/FindETH.svg)
A tool to help you find your lost Ethereum address, Ether or tokens, by searching through a bunch of derivation paths. It currently supports Ledger and Trezor devices and mnemonic phrases. It has experimental support for Ledger devices over Bluetooth.
## Running locally
If you want to use this tool with your mnemonic phrase, it's required to run it locally. The requirements for this are:
* [Node.js 10 or newer](https://nodejs.org/)
* [Yarn](https://yarnpkg.com/)Clone this repository with Git or download the ZIP file and extract it. In the project folder, run the following command to install the dependencies.
```
yarn
```Now you can run
```
yarn run serve
```to start the local production server. You can access it by navigating to in your browser. You will get an SSL warning because it's using a self-signed certificate, but it's safe to ignore this.
## Development
This tool is built on top of React and Redux, and uses tools like `yarn` and `webpack` to bundle everything. Install the dependencies with `yarn` as follows:
```
yarn
```### Run a local development server
To run a local development server, use:
```
yarn run start
```Head to in your browser to see the application.
### Bundle the files
Use the following command to bundle everything
```
yarn run build
```