Currently building a #Bitcoin wallet.
So far have a mnemonic seed phrase + validation and PIN for wallet login.
I’m using this to learn React-Native. If anyone knows anyone for an internship in front-end web development/ react / react-native let me know. https://nostr.build/av/0c645cccdb5755163c68b624dfadbe7d08b2b514c721d14c067fde9de4fd4972.mov
Login to reply
Replies (6)
What library underneath for the wallet stuff?
For the mnemonic seed phase I used bip39. To derive address and payments I’m going to use bitcoinjs-lib.
Is bip39 a library? How are you getting the entropy for seed generation with bip39?
Ya it’s a npm library. It defaults to 128 bits of entropy using the crypto.randomBytes library.
I recommend checking if BDK has language bindings for RN. JavaScript isn’t the most secure language…
Will do!