https://github.com/dannweeeee/svm-wallet-maker
Python script to bulk-create wallets for Solana and other SVM-based blockchains.
https://github.com/dannweeeee/svm-wallet-maker
python solana svm wallet
Last synced: 4 months ago
JSON representation
Python script to bulk-create wallets for Solana and other SVM-based blockchains.
- Host: GitHub
- URL: https://github.com/dannweeeee/svm-wallet-maker
- Owner: dannweeeee
- Created: 2024-12-05T18:17:59.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2024-12-07T04:05:03.000Z (11 months ago)
- Last Synced: 2025-03-28T17:17:34.138Z (7 months ago)
- Topics: python, solana, svm, wallet
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-svm - GitHub
README
# SVM Wallet Maker
## Features
- Generate any number of Solana wallets
- BIP-44 standard compliance
- Secure mnemonic generation (12 words)
- Export wallet details to CSV
- Optional password protection for mnemonics
## Prerequisites
- Python 3.x
- Required packages:
```txt
bip_utils
csv
os
```
## Installation
1. Clone the repository:
```bash
git clone https://github.com/dannweeeee/svm-wallet-maker.git
```
2. Create and activate a virtual environment:
```bash
python -m venv venv
source venv/bin/activate
```
3. Install dependencies:
```bash
pip install -r requirements.txt
```
## Usage
Run the script using Python:
```bash
python solana_wallet_maker.py
```
The script will:
1. Prompt you to enter the number of wallets you want to generate
2. Create the specified number of wallets
3. Save the wallet details to `output/solana_wallets.csv`
### Output Format
The generated CSV file contains the following columns:
- Public Key
- Private Key (Base58)
- Mnemonic
## Security Considerations
- Keep your private keys and mnemonics secure
- Never share your private keys or mnemonics with anyone
- The generated CSV file contains sensitive information - store it safely
- Consider encrypting the output file for additional security