This script generates thousands Solana wallets in fast and efficient way, outputting their public and private keys in a CSV file, while also creating individual JSON key files. It’s a useful tool for batch wallet generation.
Reach our 🧑💻 Tech support if you have any troubles with usage or payment.
https://www.youtube.com/embed/waHbVJxwWO4?si=qzz2ngNamHyLnLQ9
After successful payment, you will receive a download link for the script. Download and unzip the script into a folder of your choice. Here’s how to do it:
Install Python Packages (Dependencies)
In your terminal or command prompt, run the following commands to install the necessary packages:
pip3 install base58
Run the Script
To generate wallets, run the following command in the terminal:
python3 keygen.py --amount 2 --output folder_name
-amount: Number of wallets to generate.-output: The name of the folder and the CSV file where the keys will be stored.Example: python3 keygen.py --amount 10 --output pumpfun
By the end of generation you will get:
.csv file: contains both public and private keys for each wallet. Example structure of generation.csv:
PublicKey1, PrivateKey1
PublicKey2, PrivateKey2
...
.json files: each wallet’s keys are saved as individual .json files in the specified folder.