
Product
Introducing Data Exports
Export Socket alert data to your own cloud storage in JSON, CSV, or Parquet, with flexible snapshot or incremental delivery.
crypto-wallet-finder
Advanced tools
A Python package for finding cryptocurrency wallet seeds by generating and testing permutations of seed phrases. This tool uses parallel processing to efficiently search through possible combinations while providing a user-friendly GUI interface for monitoring progress.
You can install the package directly from PyPI:
pip install crypto-wallet-finder
Or install from source:
git clone https://github.com/RKInnovate/waller-finder-pkg.git
cd waller-finder-pkg
pip install -e .
Run the GUI application:
wallet-finder
Or use it in your Python code:
from wallet_finder import WalletFinderGUI
import tkinter as tk
def main():
root = tk.Tk()
app = WalletFinderGUI(root)
root.mainloop()
if __name__ == "__main__":
main()
Use the core functionality in your own code:
from wallet_finder import WalletFinder
# Initialize with your wordlist and target addresses
wordlist = ["word1", "word2", ...]
target_addresses = {"address1", "address2"}
# Define callback functions
def status_callback(message):
print(f"Status: {message}")
def result_callback(seed, address):
print(f"Found: {address} with seed: {seed}")
# Start the search
WalletFinder.start(
wordlist=wordlist,
target_address=target_addresses,
update_status_func=status_callback,
update_list_func=result_callback
)
The package creates a configuration directory at ~/.wallet_finder with:
config.json: Stores progress and settingsfound_wallets.csv: Stores found wallet addresseswallet_finder.log: Application logsContributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the MIT License - see the LICENSE file for details.
This tool is for educational purposes only. Always ensure you have the right to search for specific wallet addresses before using this tool.
FAQs
A tool for finding cryptocurrency wallet seeds using parallel processing
We found that crypto-wallet-finder demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Export Socket alert data to your own cloud storage in JSON, CSV, or Parquet, with flexible snapshot or incremental delivery.

Research
/Security News
Bitwarden CLI 2026.4.0 was compromised in the Checkmarx supply chain campaign after attackers abused a GitHub Action in Bitwarden’s CI/CD pipeline.

Research
/Security News
Docker and Socket have uncovered malicious Checkmarx KICS images and suspicious code extension releases in a broader supply chain compromise.