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

@balancednetwork/hw-app-icx

v1.0.6

Published

Ledger Hardware Wallet ICON Application API

Downloads

24

Readme

@balancednetwork/hw-app-icx

It is the javascript version of client library to communicatie with Ledger Nano S applications forked from LedgerHQ/app-icx.

License

Prerequisite

Build Environment

Test Environment

  • Ledger device with ICON application installed

Getting Started

Preparation

  1. Connect Ledger Nano S device on a USB port
  2. Make sure Ledger Nano S is initialized and unlocked, and ICON application is installed and started

Build and test

  1. Simply install dependencies, build, and start a simple web server with simple test-purpose ICON web app

    $ cd client-js
    $ yarn
    $ yarn build
  2. Access "https://[IP]:9966" on web browser and test

    It uses chrome built-in extension for U2F so use Chrome web browser

    Allow web browser to access site of untrusted certificate which a simple web server BUDO uses. U2F communication is only allowed on HTTPS

Build scripts

Install dependencies

yarn

Build

Build all packages

yarn build

Watch

Watch all packages change. Very useful during development to build only file that changes.

yarn watch

Clean

Clean all build output

yarn clean

API

Refer to API document.

Examples

import Transport from "@ledgerhq/hw-transport-u2f";
import Icx from "@ledgerhq/hw-app-icx";

const getIcxAddress = async () => {
  const transport = await TransportU2F.create();
  transport.setDebugMode(true);         // if you want to print log
  transport.setExchangeTimeout(60000);  // Set if you want to change U2F timeout. default: 30 sec

  const icx = new Icx(transport);
  // coin type: ICX(4801368), ICON testnet(1)
  const result = await icx.getAddress("44'/4801368'/0'", true, true);
  return result.address;
};
getIcxAddress().then(a => console.log(a));

Remarks

Integration with Chrome Extension

JS library uses chrome pre-built U2F extension "CryptTokenExtension" which allows https web page as the trusted origin, and chrome extension can't use directly U2F extension. Therefore chrome extension needs to create an iframe which pulls https web page integrating with this library and communicate through Message Channel.

Refer to https://bugs.chromium.org/p/chromium/issues/detail?id=823736 for the reason U2F extension doesn't allow chrome extension origin.