이더리움 keystore <-> PrivateKey 변환 Node
Private Key -> keystore (암호화)사용 노드 패키지 : fs , ethereumjs-wallet const Wallet = require("ethereumjs-wallet")const fs = require("fs") const pk = new Buffer.from('PK값', 'hex')const account = Wallet.fromPrivateKey(pk)const jsonContent = JSON.stringify(account.toV3('password값')) // keystore 암호화/복호화에 사용 될 패스워드 // 파일 생성const address = account.getAddress().toString('hex')const fileName = `UTC--${new Dat..
Block Chain/Ethereum
2019. 3. 15. 23:26