Skip to content
This repository has been archived by the owner on Nov 30, 2022. It is now read-only.

Latest commit

 

History

History
25 lines (23 loc) · 831 Bytes

File metadata and controls

25 lines (23 loc) · 831 Bytes

You can create a beautiful address for your wallet by generating addresses and searching them for the parameters you need.

Libraries:

pip install eth_account

Customization:

CHAT_ID = "CHATID" - "Add your telegram id here (you can find out from the bot) @getmyid_bot"
BOT_TOKEN = "BOT TOKEN" - "Сan be created in a BotFather bot"

If the address you specified is found, it will come to you in the cart.

In the Fields below, we substitute your values, the fewer characters, the faster the address will be found.

if acct.address[:8] == "0x666666" and acct.address[-10:] == "6666666666":
"0x666666" - "The first digits in the address"
[:8] - "Number of characters"
"6666666666" - "The last digits in the address"
[-10:] - "Number of characters"