We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support BIP39 for generating private keys. For ECDSA, BIP39 should be the only method available for seeding.
https://levelup.gitconnected.com/blockchain-series-how-metamask-creates-accounts-a8971b21a74b
The current keyPairFromSeed method should be removed. Create a new class Bip39ECDSA, specifically for seeding.
keyPairFromSeed
Bip39ECDSA
To test if the implementation is correct
You get a public address for your account by taking the last 20 bytes of the Keccak-256 hash of the public key and adding 0x to the beginning.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Support BIP39 for generating private keys. For ECDSA, BIP39 should be the only method available for seeding.
https://levelup.gitconnected.com/blockchain-series-how-metamask-creates-accounts-a8971b21a74b
The current
keyPairFromSeed
method should be removed. Create a new classBip39ECDSA
, specifically for seeding.To test if the implementation is correct
The text was updated successfully, but these errors were encountered: