Skip to content

iSreyanshu/Wallets

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 

Repository files navigation

wallet-generator

Wallet Generator

Ethereum wallet generator written in Go

Go License Platform


Features

Feature Description
Multi-core generation 20 goroutines hammering ECDSA key-pairs in parallel
Vanity addresses Custom prefix search up to 10 hex characters
No-F filter Automatically skips any address containing f or F
Auto-save Every wallet is appended to wallets.txt instantly
Graceful shutdown Ctrl+C cleanly stops all workers mid-run

Preview

  Select mode:
  [1]  Normal wallets   - fast bulk generation, no-F filter
  [2]  Vanity wallets   - custom prefix + no-F filter

  ❯ 1

  Address   : 0x1a2b3c4d5e6a7b8c9d0e1a2b3c4d5e6a7b8c9d0e
  PrivateKey: 4f3e2d1c0b9a8f7e6d5c4b3a2918273645...
  Generated : 14:32:01

  ✔ Done! Generated 100 wallets in 1.23s (81 wallets/sec)
  💾 Saved to wallets.txt

Quick Start

1. Clone

git clone https://github.com/iSreyanshu/Wallets.git
cd Wallets

2. Install dependencies

go get github.com/ethereum/go-ethereum
go get github.com/schollz/progressbar/v3

3. Run

go run gen.go

Modes

Mode1 - Normal Wallets

Generates N wallets as fast as possible. All addresses are filtered to exclude any containing the letter F.

Mode2 - Vanity Wallets

Searches for addresses matching your custom prefix. Example: entering dead will find addresses starting with 0xdead…

Tip: Longer prefixes = exponentially more attempts. Keep it under 6 chars for reasonable speed.


Output

All wallets are saved to wallets.txt in the same directory:

Address: 0x1a2b... | PrivateKey: 4f3e... | Generated: 2026-05-02T14:32:01Z

Security Notice

Never share your private keys.
This tool is for educational and development purposes.
Store wallets.txt securely and delete it when no longer needed.


Configuration

Edit the Config struct in gen.go to tune performance:

cfg := Config{
    WorkerCount: 20, // Increase for more CPU cores
}

Made with ❤️ by iSreyanshu

About

Multi-threaded Ethereum wallet generator with vanity search

Topics

Resources

License

Stars

Watchers

Forks

Contributors

Languages