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 .

____________________________________________________________________________________________________

作者

Bit Warrior

Blockchain enthusiast. Contact me at hello.bitwarrior@gmail.com

订阅后参与讨论。

请创建账户成为会员并参与讨论。

已有账号?登录

订阅 EtherWorld.co 新闻通讯。

获取我们精选热门文章的最新动态。

请检查您的邮箱并完成确认。 出现错误,请重试。