Direct Url: https://www.youtube.com/watch?v=X346wqB37vw&t=736s
Bread Cracker is a Python script designed to scan for cryptocurrency wallets derived from mnemonic seeds and check their balances. It supports both Bitcoin (BTC) and Ethereum (ETH) wallets. The script utilizes the BIP-39 standard for mnemonic generation and BIP-44 for wallet derivation.
- Mnemonic Generation: Generates BIP-39 compliant mnemonic seeds.
- Wallet Derivation: Derives BTC and ETH wallet addresses from mnemonic seeds.
- Balance Checking: Checks the balances of BTC and ETH wallets using blockchain APIs.
- Logging: Logs wallet information and balance checks.
- Command-Line Interface: Terminal-based interface for easy operation.
Before running the script, ensure you have the following dependencies installed:
- Python 3.x
- requests
- logging
- dotenv
- bip_utils
- pyfiglet
- curses You can install the dependencies using pip:
pip install requests logging python-dotenv bip-utils pyfiglet
- Clone this repository to your local machine:
git clone https://github.com/Cr0mb/BreadCracker.git
- Navigate to the directory where you cloned the repository:
cd BreadCracker
- Set up your environment variables by creating a file named breadcracker.env with your Etherscan API key:
ETHERSCAN_API_KEY=your_etherscan_api_key
- Run the script:
python BreadCracker.py
- The script will continuously scan for wallets and display information about found wallets and their balances.
- Ensure that you have a reliable internet connection for balance checking.
- Check the logs (breadcracker.log) for detailed information about scanned wallets and balance checks.