🔐
Blockthon
HomeGithubMmdrza
  • install
  • Private Key
    • Private Key To Address
    • Private Key To Bytes
    • Private Key To Mnemonic
    • Private Key To Binary
    • Private Key To Decimal
    • Private Key To Wif
    • Private Key To xprv
    • Private Key To UnCompress
    • Private Key To Compress
    • Private Key From Passphrase
    • Private Key From Root Key
    • Private Key From Binary
    • Public Key Hash Address
  • Mnemonic
    • Mnemonic To Private Key
    • Mnemonic To Bytes
    • Mnemonic To XPRV (Root Key)
  • Public Key
    • Public Key Hash Address
  • Bytes (seed)
    • Bytes To Mnemonic
    • Bytes To Private Key
    • Bytes To Public Key
    • Bytes To WIF
  • Address
Powered by GitBook
On this page
  1. Mnemonic

Mnemonic To Private Key

Generated Random Mnemonic And Convert To Private Key HEX

PreviousMnemonicNextMnemonic To Bytes

Last updated 1 year ago

for generated private key from mnemonic with blockthon

From Blockthon.Wallet import PrivateKey_From_RootKey, Mnemonic_To_RootKey, getMnemonic

# Generated Random Mnemonic With 12 word
mnemonicword = getMnemonic(12)
# convert to xprv (root key)
rootkey = Mnemonic_To_RootKey(mnemonicword)
# Convert root key to private key
privatekey = PrivateKey_From_RootKey(rootkey)
convert mnemonic to private key hex
Drawing