Create a Seed
If you want to send any type of transaction, you will need to use your seed to generate accounts and addresses.
Seed Mnemonics or Phrases
The client libraries use the BIP39 standard. This means that the libraries can derive the seed from a mnemonic or seed phrase, making it easier for you to write down or remember. The mnemonic itself is simply a random list of english words.
Related How-to Guides
- wallet.rs
- iota.rs
- iota.js
The wallet.rs library is secured by Stronghold by default. This
means that you can simply create an AccountManager
instance, and Stronghold will generate and store your seed securely.
You can still use the library to generate a mnemonic by calling the AccountManager.generateMnemonic()
function.