Generate ethereum accounts that matches the specified regex pattern.
- prerequisite:
- run
docker buildx create --use
- run
- run
docker buildx build --platform linux/amd64,linux/arm64 -t bap2pecs/ethereum-account-generator -t bap2pecs/ethereum-account-generator:{VERSION TAG} .
within this repo to build images for different architecture- add option
--push
to push images into registry
- add option
- to push to docker hub (private repo):
docker login
docker push bap2pecs/monitor
- first create an
.env
file by copying the content from.env.example
and replacing the values- run
wget https://raw.githubusercontent.com/bap2pecs/ethereum-account-generator/main/.env.example -O .env
- run
- to do a quick test, run
docker run -it --rm --env-file=.env bap2pecs/ethereum-account-generator
- using
docker-compose
:- download
docker-compose.yml
to the same directory where you created the.env
file- run
wget https://raw.githubusercontent.com/bap2pecs/ethereum-account-generator/main/docker-compose.yml
- run
docker-compose up -d
to start searching
- run
- run
docker-compose logs -f
to see the search result - run
docker-compose stop
to stop searching- then run
docker-compose logs | grep "to continue"
to find out where the search is stopped at - then replace the value of
START_ACCOUNT
andSTART_INDEX
in.env
with the grepped values - then restart searching with
docker-compose up -d
- then run
- download
- first create an
.env
file by copying the content from.env.example
and replacing the values - run
cd src && make run
Thank you for considering contributing to the repo! Anyone is welcomed to submit pull request, even for the smallest fixes or typos.
If you'd like to contribute, please create a new branch and submit a pull request for review.