Alternatively, pass a binary value as a nonce. Use the Binary class to convert a string to a binary value
const account4 = lto.account({ seed, nonce: new Binary('some value') });
Child accounts
Instead of specifying the seed, you can specify a parent account and a nonce to create a child account. Transactions signed by the child account will be co-signed by the parent so that the parent account will pay the transaction fee.
const child = lto.account({parent: account, nonce: new Binary('foo')});
Multi-chain accounts
LTO Networks supports 3 ciphers: ed25519, secp256k1, and secp256r1. To create an Ethereum-compatible key pair, use the secp256k1 key type and the Ethereum derivation path
For secp256k1, the seed phrase is generated according to bip32 with a length of 12 words. When creating the account from seed, also pass the derivation path.
Seed encryption
It's recommended to encrypt your seed when storing the account