npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

zymkey-js

v1.0.4

Published

Node.js module for interfacing with the Zymbit hardware wallet

Readme

zymkey-js

This repository is a Node.js wrapper of Zymbit's C++ API, intended to facilitate interactions between Node.js applications and Zymbit's hardware wallet.

Note: This is not an official Zymbit API, so it has not been robustly tested, and does not have a thorough documentation.

Table of Contents

Installation

Run the following command:

yarn add zymkey-js

or

npm i zymkey-js

Usage

const zkJS = require('zymkey-js/build/Release/zkAppUtilsJS.node')
const zymkey = new zkJS.zkObj()

zymkey.getTime()

Supported Functions

Here is the list of currently supported functions:

  1. getTime - Retrieve the current time from the secure RTC (Real-Time Clock) module.
  2. exportPubKey - Export the public key of a previously generated key pair.
  3. storeForeignPubKey - Store a foreign public key on the device.
  4. genKeyPair - Generate an asymmetric key pair (ECC or RSA) in the specified slot.
  5. genEphemeralKeyPair - Generate an ephemeral asymmetric key pair (ECC or RSA) in a specified slot.
  6. removeKey - Remove a key or key pair from the specified slot.
  7. invalidateEphemeralKey - Invalidate an ephemeral key pair, making it unusable.
  8. genECDSASigFromDigest - Generate an ECDSA signature for a given message digest using the specified private key.
  9. verifyECDSASigFromDigest - Verify an ECDSA signature for a given message digest using the specified public key.
  10. genWalletMasterSeedWithBIP39 - Generate a hierarchical deterministic wallet master seed using the BIP39 mnemonic scheme.
  11. genWalletMasterSeedWithSLIP39 - Generate a hierarchical deterministic wallet master seed using the SLIP39 mnemonic scheme.
  12. setGenSLIP39GroupInfo - Set the group information for generating SLIP39 mnemonics.
  13. addGenSLIP39Member - Add a member to a group for generating SLIP39 mnemonics.
  14. cancelSLIP39Session - Cancel an ongoing SLIP39 generation or restoration session.
  15. genOverSightWallet - Generate an oversight wallet for monitoring and controlling wallet functions.
  16. genWalletChildKey - Derive a child key from the wallet master seed using a specified derivation path.
  17. restoreWalletMasterSeedFromBIP39 - Restore a hierarchical deterministic wallet master seed from a BIP39 mnemonic.
  18. restoreWalletMasterSeedFromSLIP39 - Restore a hierarchical deterministic wallet master seed from a SLIP39 mnemonic.
  19. addRestoreSLIP39Mnemonic - Add a mnemonic to the restoration session for SLIP39-based wallets.
  20. getWalletNodeAddrFromKeySlot - Retrieve the wallet node address associated with a specific key slot.
  21. getWalletKeySlotFromNodeAddr - Retrieve the key slot associated with a specific wallet node address.
  22. getAllocSlotsList - Get a list of allocated key slots, showing their types and attributes.

Resources

In order to understand how to call these functions and the return values of each function, refer to Zymbit's C++ Documentation.