I am planning to create my own HD wallet to support ERC 20 standard token, I am generating the seed using the javascript bitcore-mnemonics plugin. Now I want to generate a private key, public key and address from my generate 12 words mnemonics using javascript. How I can achieve this, I need help?
Asked
Active
Viewed 370 times
1 Answers
0
You can directly query your node, i.e., Parity with parity_newAccountFromPhrase
- it accepts seeds like bitcore-mnemonics:
curl --data '{"method":"parity_newAccountFromPhrase","params":["stylus outing overhand dime radial seducing harmless uselessly evasive tastiness eradicate imperfect","hunter2"],"id":1,"jsonrpc":"2.0"}' -H "Content-Type: application/json" -X POST localhost:8545
I give you the answer with curl
as you did not specify what exactly you are looking for, but JSONRPC wrappers should be available for all majore programming languages.

q9f
- 11,293
- 8
- 57
- 96
-
Thanks for your time,I am using JavaScript,and i just want to know,how i can check my generated private key,public key and address the format is valid – nagaraj manjuntha Apr 24 '18 at 01:29