candidates = [] for w in wordlist: candidate = parts.copy() candidate[4] = w phrase = " ".join(candidate) if mnemo.check(phrase): candidates.append(phrase)
print(len(candidates), "candidates found.")
Account.enable_unaudited_hdwallet_features() for phrase in candidates: acct = Account.from_mnemonic(phrase, account_path="m/44'/60'/0'/0/0") addr = acct.address print("phrase:", phrase) print("address:", addr)
if addr.lower().endswith("700f80"): print("address found:", addr) break