Something like convertMnemonice(mnemonicPhrase, addressIndex), which takes bip39 mnemonic, converts it to proper private key, according to index, and returns both private key and NAS wallet.
addressIndex is used in BIP32 path, used for generating private key from mnemonic entropy.
This standarts are widely used in all hardware wallets, so it will come handy, adding support for them, and building interfaces to manage private keys for users.
More information:
https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki
https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki
Something like convertMnemonice(mnemonicPhrase, addressIndex), which takes bip39 mnemonic, converts it to proper private key, according to index, and returns both private key and NAS wallet.
addressIndex is used in BIP32 path, used for generating private key from mnemonic entropy.
This standarts are widely used in all hardware wallets, so it will come handy, adding support for them, and building interfaces to manage private keys for users.
More information:
https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki
https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki