UNPKG

crypti-cli

Version:

Crypti DApps Command Line Interface

14 lines (12 loc) 272 B
var crypto = require('../lib/crypto.js'); module.exports = { account: function (secret) { var kp = crypto.keypair(secret); var address = crypto.getId(new Buffer(kp.publicKey, 'hex')) + "C"; return { keypair: kp, address: address, secret : secret } } }