Skip to content

Instantly share code, notes, and snippets.

@yuzujin99
yuzujin99 / endingETH.py
Last active October 22, 2024 11:47
Generate seed of specific ending of ETH address
# 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)