Powered by AppSignal & Oban Pro
Would you like to see your link here? Contact us

Seed phrase checksums

livebooks/find_missing_words.livemd

Seed phrase checksums

Mix.install([
  {:bitcoinlib, "~> 0.2.4"}
])

alias BitcoinLib.Key.HD.{Entropy}
alias BitcoinLib.Key.HD.SeedPhrase
alias BitcoinLib.Key.PrivateKey
alias BitcoinLib.Key.HD.SeedPhrase.Wordlist

Find possible missing words

first_words = "work tenant tourist globe among cattle suggest fever begin boil undo "
last_words = "work tenant tourist globe among cattle suggest fever begin boil undo slogan"

valid_final_words = SeedPhrase.find_possible_missing_words(first_words, last_words)