This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# pip install mnemonic bip44 | |
from mnemonic import Mnemonic | |
from bip44 import Wallet | |
from bip44.utils import get_eth_addr | |
import multiprocessing | |
# Numbers and letters from A to F only | |
target = "8964" | |
target_len = len(target) |