Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 586 Bytes

README.md

File metadata and controls

28 lines (17 loc) · 586 Bytes

eos-bip44

Library to generate eos public key from a hierarchical deterministic wallet according to the BIP44 standard.

Get started

This library is distributed in both the npm packaging systems.

npm install eos-bip44

Example

var EOSBIP44 = require("eos-bip44")

var wordlist= "job wolf wave share jacket giant cruise hand year pistol brave flush"

var eos = EOSBIP44.fromMnemonic(wordlist)

var privateKey = eos.getPrivateKey(1)
var publicKey = eos.getPublickey(1)

console.log("privateKey:" + privateKey)
console.log("publicKey :" + publicKey)