This project scans all .txt
files in the Wallets
folder and extracts unique Solana private keys (87 or 88 character base58 strings). The results are saved to Output/solana_private_keys.txt
.
- Install Node.js (if you don't have it):
- Download from https://nodejs.org/
- Install dependencies:
npm install
Run the script with:
npm start
- Scans all
.txt
files in theWallets
folder. - Extracts lines that are valid Solana private keys (87 or 88 base58 characters).
- Removes duplicates.
- Saves the result to
Output/solana_private_keys.txt
.
- Only private keys are extracted (not public keys or addresses).
- Make sure your
.txt
files are inside theWallets
folder.