Generate Ethereum Wallet from Private Key

Many times users have Private Key and they want to generate Ethereum compatible password protected wallet from that key. Here is a small utility program for Ethereum Blockchain in NodeJS that would help user to generate Ethereum compatible password protected wallet starting just with Private Key.

Generate Ethereum Wallet from Private Key

Having a digital asset wallet is the first step for users interested in blockchain space. A wallet is basically a pair of Public Key and Private key which is needed together to access any account. Those having reasonable understanding of Public Key and Private Key usually like to play around.

Many times users have Private Key and they want to generate Ethereum compatible password protected wallet from that key. Today, I am sharing a small utility program for Ethereum Blockchain in NodeJS that would help user to generate Ethereum compatible password protected wallet starting just with Private Key.

I will use a Javascript library ethereumjs-wallet to achieve this. This library provide a function to convert Private key to wallet protected by password.

How to generate Ethereum Wallet from Private Key

I have put together a small utility using above library . All you have to do is to clone this repo and run the utility.

Assumption: nodeJS is already installed on the system.

Screen-Shot-2019-07-08-at-10.51.38-AM

Pseudo code for better understanding

Make an instance of wallet form the private key

const Wallet = require('ethereumjs-wallet')
const util = require('ethereumjs-util')
let wl=new Wallet(util.toBuffer(PrivateKey))

And then you can password protect and generate the wallet..

wl.toV3(Password)

If you find this article helpful, please share. You may reach me at contact@etherworld.co with your comments, questions or suggestions of new topics that you would want to be covered.

Suggested articles:

____________________________________________________________________________________________________

Follow us at Twitter, Facebook, LinkedIn and Reddit.

For weekly round up on Ethereum and other blockchain news, technology and projects, subscribe EtherWorld's Blockchain Weekly .

____________________________________________________________________________________________________

Share Tweet Send
0 Comments
Loading...
You've successfully subscribed to EtherWorld.co
Great! Next, complete checkout for full access to EtherWorld.co
Welcome back! You've successfully signed in
Success! Your account is fully activated, you now have access to all content.