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

@ledgerhq/hw-app-sui

v1.10.0

Published

Ledger Hardware Wallet Sui Application API

Readme

GitHub, Ledger Devs Discord, Developer Portal

@ledgerhq/hw-app-sui

Ledger Hardware Wallet Sui JavaScript bindings.


Are you adding Ledger support to your software wallet?

You may be using this package to communicate with the Sui Nano App.

For a smooth and quick integration:

  • See the developers’ documentation on the Developer Portal and
  • Go on Discord to chat with developer support and the developer community.

Dependecies

This package extends @mysten/ledgerjs-hw-app-sui

API

Table of Contents

Sui

Sui API

Parameters

  • transport Transport
  • scrambleKey (optional, default "default_sui_scramble_key")
  • verbose (optional, default false)

Examples

import Sui from "@mysten/ledgerjs-hw-app-sui";
const sui = new Sui(transport)

getPublicKey

Retrieves the public key associated with a particular BIP32 path from the Ledger app.

Parameters
  • path string the path to retrieve.
  • displayOnDevice whether or not the address should be displayed on the device. (optional, default false)

Returns Promise<GetPublicKeyResult>

signTransaction

Sign a transaction with the key at a BIP32 path.

Parameters
  • path string The path to use when signing the transaction.
  • txn Uint8Array The transaction bytes to sign.
  • options {bcsObjects: Array<Uint8Array>}? Additional options used for clear signing purposes.
  • resolution Resolution? Additional data for token clear signing purposes.

Returns Promise<SignTransactionResult>

getVersion

Retrieve the app version on the attached Ledger device.

Returns Promise<GetVersionResult>

checkAppVersion

Retrieve the app version on the attached Ledger device.

Parameters

  • minVersion string

  • $1 {throwOnOutdated: boolean}

    • $1.throwOnOutdated

provideTrustedDynamicDescriptor

Provides trusted dynamic and signed coin metadata

Parameters

  • data DescriptorInput An object containing the descriptor and its signature from the CAL

Returns Promise<boolean>

sendChunks

Convert a raw payload into what is essentially a singly-linked list of chunks, which allows the ledger to re-seek the data in a secure fashion.

Parameters

Returns Promise<Buffer>