mybot102 / vanity-generator

Generate crypto wallet address beauty address

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

English | 中文

vanity-generator

vanity-generator is a blockchain wallet vanity number generator implemented in Go. It is highly efficient, capable of generating over 200,000 vanity addresses per second on a single core and millions per second on multiple cores.

Wallet generation is currently supported for three networks: EthereumTronPolkadot.

preview

Features:

  • Purely local generation, no internet connection required, can be used as a cold wallet
  • 100% based on the official project code of go-ethereum, providing better security
  • Implemented in Go language, generating efficiency is several tens of times higher than the JS version
  • Supports specifying prefix and suffix, supports specifying both at the same time
  • Provides estimated time, default provides estimated time of 50%, 70%, 90% probability
  • Native high concurrency support, default uses all CPU cores

Native Usage:

Command: ./vanity {eth/tron/dot} --prefix=xxxx --suffix=xxx --concurrency=1

It is recommended to use with commands such as screen or nohup.

Usage with Docker:

Create a configuration file at /etc/vanity/config.json with the following format:

{
  "wallet": "eth",
  "prefix": "xxxx",
  "suffix": "xxxx",
  "concurrency": 1
}

Command:

docker pull feeeei/vanity-generator
docker run --name=vanity -v /etc/vanity:/etc/vanity feeeei/vanity-generator

Parameter Description:

  • --prefix: Specify prefix, ETH needs to start with 0x, Tron needs to start with T.
  • --suffix: Specify suffix, ETH needs to satisfy [0-9A-Fa-f], Tron needs to satisfy Base58.
  • --concurrency: Number of concurrent processes, if not specified, it is equal to the number of CPU cores by default.

About

Generate crypto wallet address beauty address

License:MIT License


Languages

Language:Go 97.8%Language:Makefile 1.1%Language:Dockerfile 1.0%