Skip to main content

Documentation Index

Fetch the complete documentation index at: https://hedera-0c6e0218-mintlify-enhance-hollow-account-docs-97196.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Generate a 12 or 24-word mnemonic phrase that can be used to recover the private keys that are associated with it.
MethodTypeDescription
Mnemonic.generate24()MnemonicGenerates a 24-word recovery phrase that can be used to recover a private key
Mnemonic.generate12()MnemonicGenerates a 12-word recovery phrase that can be used to recover a private key
// 24-word recovery phrase
Mnemonic mnemonic = Mnemonic.generate24();
System.out.println("mnemonic 24 word = " + mnemonic);


//12 word recovery phrase
Mnemonic mnemonic12 = Mnemonic.generate12();
System.out.println("mnemonic 12 word = " + mnemonic12);

//v2.0.0