-
Notifications
You must be signed in to change notification settings - Fork 120
New issue
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
Creating Address from my own Mnemonic/Seed #14
Comments
You should probably hash with something after the mnemonic seed to make sure it is both the correct size and unique to EOS.. This is more like a spec, you could just take part of this and use it: #7 (comment) |
Could use this one for EOS keys? const hdkey = require('hdkey') result: |
In my opinion, HD Keys are better suited for change addresses. EOS does not have change addresses. |
could use this one to generate EOS keys for EOSTM Token Distribution? |
Up, I have the same question. |
The above code creates a consistent Address & Private Key, but when passing my seed into the Buffer I get a warning message that my buffer is 64 bytes and the fromBuffer() is expecting 32. I can see from this post: #7 that I need to divide my seed into a chain code? but I don't see how that is possible.
The text was updated successfully, but these errors were encountered: