BitMorphX/bitcoin_key_explorer
๐งช Educational Bitcoin key explorer โ convert integers to private keys, WIF, public keys, and addresses.
๐ BITCOIN KEY EXPLORER
bitcoin_key_explorer is a simple, offline Python tool that converts any integer into a Bitcoin private key and displays the corresponding public key, WIF, and address in both compressed and uncompressed formats.
It takes an integer and outputs:
- Bitcoin address (compressed & uncompressed)
- WIF format (compressed & uncompressed)
- Public key (HEX)
- Private key (HEX)
โ๏ธ Features
- ๐ Converts integer to private key
- ๐ฌ Generates Bitcoin addresses (compressed & uncompressed)
- ๐ Shows WIF formats
- ๐ Public + private key in HEX
- ๐ฅ๏ธ Terminal color output
- ๐ง Optional Base58 address decoder
๐ File Overview
bitcoin_key_explorer.pyโ Main key generation and address derivation toolbitcoin_key_explorer.batโ Windows launcher for quick use.vscode/settings.jsonโ Editor preferenceslaunch.jsonโ Debugging configurationtasks.jsonโ Task runner integrationextensions.jsonโ Recommended VS Code extensions
assets/banner.pngโ Project bannerdemo.gifโ Demo preview
README.mdโ This documentationLICENSEโ Apache 2.0 LicenseNOTICEโ Attribution and noticesETHICSโ Responsible use noticeRELEASE_v1.0.0.mdโ Version 1.0.0 changelogRELEASE_v2.0.0.mdโ Version 2.0.0 changelogrequirements.txtโ Python dependencies
๐ ๏ธ Dependencies
ecdsa
pycryptodome
base58
termcolor
Install with:
pip install -r requirements.txtPython 3.8+ is recommended.
๐ Usage
Option 1 โ via Python:
python bitcoin_key_explorer.pyOption 2 โ via .bat launcher (Windows):
bitcoin_key_explorer.bat๐ฆ Example Output
Bitcoin Address (Uncompressed): 1...
Bitcoin Address (Compressed): 1...
WIF (Uncompressed): 5...
WIF (Compressed): K...
Public Key (Uncompressed HEX): 04...
Public Key (Compressed HEX): 02...
Private Key (HEX): a3...
๐ Project Structure
bitcoin_key_explorer/
โโโ assets/
โ โโโ banner.png
โ โโโ demo.gif
โโโ .vscode/
โ โโโ settings.json
โ โโโ launch.json
โ โโโ tasks.json
โ โโโ extensions.json
โโโ bitcoin_key_explorer.py
โโโ bitcoin_key_explorer.bat
โโโ LICENSE
โโโ NOTICE
โโโ ETHICS
โโโ README.md
โโโ RELEASE_v1.0.0.md
โโโ RELEASE_v2.0.0.md
โโโ requirements.txt
๐ฌ DEMO
โ ๏ธ DISCLAIMER
This software is provided strictly for educational, analytical, and research purposes only.
The author does not promote or condone any unethical behavior, unauthorized access, or abuse of blockchain systems or cryptographic tools.
This project does not include or generate any real private keys linked to actual cryptocurrency holdings.
It is designed to operate in offline environments or for simulation/testing purposes.
The author accepts no liability for any damages, losses, or illegal use resulting from this software.
All responsibility lies solely with the end user.
Use responsibly. Learn ethically. Contribute honestly.
โ๏ธ Ethical Use
This tool is created strictly for research and educational purposes.
See ETHICS for the full statement.
๐ License
Licensed under the Apache 2.0 License
๐ฃ NOTICE
See NOTICE for important information about attribution, DMCA protection, and reuse permissions.
๐ฑ Support
โ
Bitcoin (BTC)
1MorphXyhHpgmYSfvwUpWojphfLTjrNXc7
โ
Monero (XMR)
86VAmEogaZF5WDwR3SKtEC6HSEUh6JPA1gVGcny68XmSJ1pYBbGLmdzEB1ZzGModLBXkG3WbRv12mSKv4KnD8i9w7VTg2uu
โ
Dash (DASH)
XtNuNfgaEXFKhtfxAKuDkdysxUqaZm7TDX
We also value early privacy coins such as:
โ
Bytecoin (BCN)
bcnZNMyrDrweQgoKH6zpWaE2kW1VZRsX3aDEqnxBVEQfjNnPK6vvNMNRPA4S7YxfhsStzyJeP16woK6G7cRBydZm2TvLFB2eeR
๐ Thank you for supporting independent research and ethical technology.
๐ค Author & Contact
๐ GitHub: https://github.com/BitMorphX
โ๏ธ Email: BitMorphX@proton.me
๐ฌ Telegram: https://t.me/BitMorphX
โI morph bits, not to break, but to understand.โ
โ BitMorphX
ยฉ BitMorphX โ All rights reserved.

