English | 简体中文
This is a simple BIP39 Ethereum address wallet generator, allowing for specifying the length and using regex (like ending in 888) to generate beautiful addresses.
-
Install NodeJs first, locally tested with v20+, lower versions not tested NodeJs
-
git clone this project
-
cd into the project directory
-
npm install
-
Modify the relevant configurations in wallet-generate.js
-
run
node ./wallet-generate.js
ornpm run start
and wait for the generation of output.txt
-
Provider_API: you need to apply it yourself, like this: https://mainnet.infura.io/v3/xxxxxx
-
Regex: for example, here it's ending with 88, adjust to your own preference, not recommended for too many digits.
return /88$/.test(input)
-
Number of generations:
numberOfSpecialData = 10;
Contributions are very welcome! PRs & STARs are welcomed
This project is licensed under the MIT License.