BlathanAevon / solana_wallets_generator

A simple python script to generate infinite amount of Solana blockchain wallets

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

solana_wallets_generator

A simple script to generate solana wallets using either Python or Golang

Static Badge Static Badge

Python Installation:

  1. Clone the repository
git clone https://github.com/BlathanAevon/solana_wallets_generator.git
  1. Go to directory
cd solana_wallets_generator/python

or (on Windows)

cd solana_wallets_generator\python
  1. Virtual Environment creation
python (or python3) -m venv venv
  1. Activate the virtual environment
    • Windows
      venv/Scripts/activate
    • Linux and MacOS
      source venv\bin\activate
  2. Install dependencies (modules)
pip install -r requirements.txt
  1. Set preferable amount of wallets in main.py
    WALLETS_AMOUNT = <number of wallets>

Run the program

python main.py

Golang Installation:

  1. Clone the repository
git clone https://github.com/BlathanAevon/solana_wallets_generator.git
  1. Go to directory
    • Windows
    cd solana_wallets_generator\golang
    • Linux and MacOS
      cd solana_wallets_generator/golang
  2. Install dependencies
go mod download
  1. Set the amount of wallets in gen.go
    const WALLETSAMOUNT int = <amount>

RUN

go run .

About

A simple python script to generate infinite amount of Solana blockchain wallets


Languages

Language:Go 58.6%Language:Python 41.4%