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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@cosmic-plus/ledger-wallet

v2.8.0

Published

Easy Ledger Wallet support for Stellar applications and command line

Downloads

8

Readme

ledger-wallet / ReadmeExamplesContributingChangelog

Readme

Licence Dependencies Vulnerabilities Bundle Downloads

Easy Ledger Wallet support for Stellar applications and command line.

(Weekly updates: Reddit, Twitter, Keybase, Telegram)

Introduction

This library is a convenient wrapper around the official Ledger libraries for Stellar:

It provides a way to support Ledger Wallets with a few one-liners:

// Step 1: Connect
await ledgerWallet.connect()

// Step 2: Get public key
const pubkey = ledgerWallet.publicKey

// Step 3: Sign transaction
await ledgerWallet.sign(transaction)

// Extra: Event handlers
ledgerWallet.onConnect = connectionHandler
ledgerWallet.onDisconnect = disconnectionHandler

This library is compatible with both Node.js and browser environments.

Installation

NPM/Yarn

  • NPM: npm install @cosmic-plus/ledger-wallet
  • Yarn: yarn add @cosmic-plus/ledger-wallet

In your script: const ledgerWallet = require("@cosmic-plus/ledger-wallet")

Bower

bower install cosmic-plus-ledger-wallet

In your HTML page:

<script src="./bower_components/cosmic-plus-ledger-wallet/ledger-wallet.js"></script>

CDN

In your HTML page:

<script src="https://cdn.cosmic.plus/[email protected]"></script>

Note: For production release it is advised to serve your copy of the library.

Usage

Functions

await ledgerWallet.connect([account])

Waits for a connection with the Ledger Wallet application for Stellar. If account is not provided, account 1 is used. The library will stop listening for a connection if await ledgerWallet.disconnect() is called.

Once the connection is established, you can use await ledgerWallet.connect(account) again at any time to ensure the device is still connected.

When switching to another account, you can await ledgerWallet.connect(new_account) without prior disconnection.

Note: To stay consistent with the way Trezor numbers accounts, account starts at 1 (derivation path: m/44'/148'/0').

| Param | Type | Default | Description | | --------- | -------------------- | ------- | ----------------------------------------------------------------------------------- | | [account] | Number | String | 1 | Either an account number (starts at 1) or a derivation path (e.g: m/44'/148'/0'). |

await ledgerWallet.sign(transaction)

Prompts the user to accept transaction using the connected account of their Ledger Wallet.

If the user accepts, adds the signature to transaction. Else, throws an error.

| Param | Type | Description | | ----------- | ------------- | ------------------------ | | transaction | Transaction | A StellarSdk Transaction |

await ledgerWallet.disconnect()

Close the connection with the Ledger device, or stop waiting for one in case a connection has not been established yet.

ledgerWallet.newAccount([horizon])

Connects the first unused account.

Note: merged accounts are considered as used.

| Param | Type | Default | Description | | --------- | -------------------- | ----------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | | [horizon] | String | Server | &quot;https://horizon.stellar.org&quot; | The Horizon server where to check for account existence. It can be either an URL or a StellarSdk.Server object. |

ledgerWallet.scan([params]) ⇒ Array

Scans the ledger device for accounts that exist on params.horizon. The scanning stops after encountering params.attempts unused accounts.

Merged accounts are considered as existing accounts and will reset the params.attempts counter when encountered.

Returns an Array of Objects containing account number, publicKey, path, and state (either "open" or "merged").

| Param | Type | Default | Description | | ---------------------- | -------------------- | ----------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | | [params] | Object | | Optional parameters. | | [params.horizon] | String | Server | &quot;https://horizon.stellar.org&quot; | The Horizon server where to check for account existence. It can be either an URL or a StellarSdk.Server object. | | [params.attempts] | Number | 3 | The number of empty accounts before scanning stops. | | [params.includeMerged] | Boolean | false | List merged accounts as well. |

ledgerWallet.getPublicKeys([start], [length]) ⇒ Array

Request multiple public keys from the Ledger device. The request will return length accounts, starting by start (minimum 1).

Returns an Array of Objects with properties account, publicKey, and path.

| Param | Type | Default | Description | | -------- | -------- | ------- | ------------------------------- | | [start] | Number | 1 | Starting account number | | [length] | Number | 1 | Number of account to be listed. |

Events

ledgerWallet.onConnect : function

Function to execute on each connection.

ledgerWallet.onDisconnect : function

Function to execute on each disconnection.

Members

ledgerWallet.publicKey : String

Public key of the connected account.

ledgerWallet.path : String

Derivation path of the connected account (default: m/44'/148'/0').

ledgerWallet.version : String

Version of the Stellar application installed on the connected device.

ledgerWallet.multiOpsEnabled : Boolean

Whether or not the user accepts to sign transactions without checking them on the device first. This allows to sign long transactions (10+ ops) that could normally not be handled by the device memory, but this is insecure.

ledgerWallet.transport : Transport

The Ledger Transport instance. (internal component)

ledgerWallet.application : StellarApp

The Ledger Stellar application instance. (internal component)

Links

Organization: Cosmic.plus | @GitHub | @NPM

Follow: Reddit | Twitter | Medium | Codepen

Talk: Telegram | Keybase