JSPM

@balancednetwork/hw-app-icx

1.0.6
    • ESM via JSPM
    • ES Module Entrypoint
    • Export Map
    • Keywords
    • License
    • Repository URL
    • TypeScript Types
    • README
    • Created
    • Published
    • Downloads 1
    • Score
      100M100P100Q43712F
    • License Apache-2.0

    Ledger Hardware Wallet ICON Application API

    Package Exports

    • @balancednetwork/hw-app-icx
    • @balancednetwork/hw-app-icx/lib/Icx.js

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@balancednetwork/hw-app-icx) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    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.