Skip to content

sanjaysudagani/solana-wallet-generator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Solana Wallet Generator (24 words -> .xlsx)

Generate Solana wallets and save them in an Excel file.

Columns in output sheet:

  • S.No
  • Base58 Private Key
  • Numeric Private Key
  • Wallet Address
  • Seed Phrase (24 words)

Header row has no colors.

Beginner Method (macOS / Linux)

  1. Open repo on GitHub.
  2. Click Code -> Download ZIP.
  3. Extract ZIP.
  4. Open terminal in extracted folder.
  5. Run:
chmod +x easy_start.sh
./easy_start.sh

What this does:

  • creates Python virtual environment (.venv)
  • installs dependencies from requirements.txt
  • starts wallet generator

When asked, enter wallet count like 10, 100, 1000, 100000.

Output file:

solana-wallets-YYYYMMDD-HHMMSS.xlsx

Manual Method (macOS / Linux)

python3 -m venv .venv
source .venv/bin/activate
pip3 install -r requirements.txt
python3 wallet_generator.py

Manual Method (Windows)

PowerShell

py -m venv .venv
.\.venv\Scripts\Activate.ps1
py -m pip install -r requirements.txt
py wallet_generator.py

Command Prompt (CMD)

py -m venv .venv
.\.venv\Scripts\activate.bat
py -m pip install -r requirements.txt
py wallet_generator.py

Run without prompt

macOS / Linux:

python3 wallet_generator.py --count 100 --output ./wallets.xlsx

Windows:

py wallet_generator.py --count 100 --output .\wallets.xlsx

Important

  • pip install.py is invalid.
  • Use pip3 for macOS/Linux.
  • Use py -m pip for Windows.
  • No custom environment variable is required.

Security

  • Run only on your own machine.
  • Prefer offline generation.
  • Never upload generated .xlsx files to GitHub.

License

MIT. See LICENSE.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors