Bip32-Hd-Wallets

bip39校驗和python

  • July 21, 2021

是否有任何 Python 包可以讓我驗證 bip39 助記符的校驗和是否有效?例如,我有一個 24 字的 bip39 助記符,我可能對其中一個詞犯了錯誤。我想看看哪些單詞會產生有效的校驗和。

我見過 javscript 版本,但在 Python 中什麼也沒有

從 Trezor複製/下載此程式碼(不要忘記單詞列表)。

然後像這樣檢查你的單詞列表:

from mnemonic import Mnemonic

code = "word1 word2 [...] word23 word24"
mnemo = Mnemonic("english")
isValid = mnemo.check(code) # returns a boolean
print('Checksum is valid: ' + str(isValid))

引用自:https://bitcoin.stackexchange.com/questions/92159