Skip to content

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

License

Notifications You must be signed in to change notification settings

raedon707/eos-bip44

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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)

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%