You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The app uses a single private key and re-uses the same address to send payments/double-spends. This is not a current best practice. Instead, the app should follow BIP32 to generate a master private key, BIP39 to generate the mnemonic seed phrase, and BIP44 to generate addresses in a deterministic way. Change should be sent to a newly generated change address for every transaction that is created and broadcast. The receiving address should also be a newly generated, un-used address.
The text was updated successfully, but these errors were encountered:
chill117
changed the title
Implement BIP32/39/44 for seed, hierarchy for deterministic wallet
Implement BIP32/39/44 for seed, hierarchical deterministic wallet
Mar 16, 2021
The app uses a single private key and re-uses the same address to send payments/double-spends. This is not a current best practice. Instead, the app should follow BIP32 to generate a master private key, BIP39 to generate the mnemonic seed phrase, and BIP44 to generate addresses in a deterministic way. Change should be sent to a newly generated change address for every transaction that is created and broadcast. The receiving address should also be a newly generated, un-used address.
The text was updated successfully, but these errors were encountered: