Gathering detailed insights and metrics for eosjs-keygen
Gathering detailed insights and metrics for eosjs-keygen
Gathering detailed insights and metrics for eosjs-keygen
Gathering detailed insights and metrics for eosjs-keygen
npm install eosjs-keygen
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
80,726
Last Day
8
Last Week
35
Last Month
1,622
Last Year
13,063
70 Stars
83 Commits
31 Forks
32 Watchers
16 Branches
2 Contributors
Updated on Apr 03, 2025
Minified
Minified + Gzipped
Latest Version
1.3.2
Package Id
eosjs-keygen@1.3.2
Unpacked Size
1.51 MB
Size
346.40 kB
File Count
25
NPM Version
5.3.0
Node Version
8.4.0
Cumulative downloads
Total Downloads
Last Day
100%
8
Compared to previous day
Last Week
-97.2%
35
Compared to previous week
Last Month
-52.2%
1,622
Compared to previous month
Last Year
462.3%
13,063
Compared to previous year
Provides hierarchical deterministic key generation, storage, and management.
General purpose cryptography is found in eosjs-ecc library.
1let {Keystore, Keygen} = require('eosjs-keygen') 2Eos = require('eosjs') 3 4sessionConfig = { 5 timeoutInMin: 30, 6 uriRules: { 7 'owner' : '/account_recovery', 8 'active': '/(transfer|contracts)', 9 'active/**': '/producers' 10 } 11} 12 13keystore = Keystore('myaccount', sessionConfig) 14eos = Eos.Testnet({keyProvider: keystore.keyProvider}) 15 16Keygen.generateMasterKeys().then(keys => { 17 // create blockchain account called 'myaccount' 18 console.log(keys) 19 20 eos.getAccount('myaccount').then(account => { 21 keystore.deriveKeys({ 22 parent: keys.masterPrivateKey, 23 accountPermissions: account.permissions 24 }) 25 }) 26 27})
See ./API
1let {Keystore, Keygen} = require('./src')
Use Node v8+ (updates package-lock.json
)
1git clone https://github.com/EOSIO/eosjs-keygen.git 2cd eosjs-keygen 3npm install 4npm run build 5# builds: ./dist/eosjs-keygen.js
1<script src="eosjs-keygen.js"></script> 2<script> 3//kos.Keystore 4//kos.Keygen 5//... 6</script>
Node 6+ and browser (browserify, webpack, etc)
Built with React Native in mind, create an issue if you find a bug.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/26 approved changesets -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
license file not detected
Details
Reason
project is not fuzzed
Details
Reason
security policy file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
71 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-05-05
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More