Multiple Wallets per single user

How can I correctly implement multiple wallets per individual user?

Ex. user a is assigned 10 ETH wallets and 5 Solana wallets



Originally posted by: mrcfx

Check the discussion at: https://github.com/orgs/Web3Auth/discussions/628

Web3auth returns a app scoped private key which is 32 byte key and you can use this key as seed in bip39 lib to derive a seed phrase and use that seed phrase to derive n number of deterministic wallet keys using bip44.



Originally posted by: himanshuchawla009