const bipWallet = await libnemo.Bip44Wallet.create('test')
await bipWallet.unlock('test')
console.log(bipWallet.mnemonic)
+ let now = performance.now()
const bipAccounts = await bipWallet.accounts(0, 0x2000)
+ console.log(`bip44 done: ${performance.now() - now} ms`)
const bipAccount = bipAccounts[0]
console.log(bipAccount.privateKey)
console.log(bipAccount.publicKey)
const blakeWallet = await libnemo.Blake2bWallet.create('test')
await blakeWallet.unlock('test')
console.log(blakeWallet.mnemonic)
+ now = performance.now()
const blakeAccounts = await blakeWallet.accounts(0, 0x2000)
+ console.log(`blake2b done: ${performance.now() - now} ms`)
const blakeAccount = blakeAccounts[0]
console.log(blakeAccount.privateKey)
console.log(blakeAccount.publicKey)