English | 中文
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: Ethereum
、Tron
、Polkadot
.
- 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
Command: ./vanity {eth/tron/dot} --prefix=xxxx --suffix=xxx --concurrency=1
It is recommended to use with commands such as screen
or nohup
.
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
--prefix
: Specify prefix, ETH needs to start with0x
, Tron needs to start withT
.--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.