UNPKG

@magickbase/hw-app-ckb

Version:

Ledger Hardware Wallet Nervos CKB API

234 lines (162 loc) 11.7 kB
[Github](https://github.com/LedgerHQ/ledgerjs/), [Ledger Devs Slack](https://ledger-dev.slack.com/) ## @magickbase/hw-app-ckb > This repository is a fork of [obsidiansystems/hw-app-ckb](https://github.com/obsidiansystems/hw-app-ckb) Ledger Hardware Wallet CKB JavaScript bindings. ## Maintainers and packagers Please see the [changelog](./ChangeLog.md) and [release docs](./Releasing.md) for this package. ## Using LedgerJS for CKB Here is a sample app for Node: let Transport = require("@ledgerhq/hw-transport-node-hid").default; let Ckb = require("@magickbase/hw-app-ckb").default; const getWalletId = async () => { const transport = await Transport.create(); const ckb = new Ckb(transport); const result = await ckb.getWalletId(); return result; }; const signTransaction = async () => { const transport = await Transport.create(); const ckb = new Ckb(transport); contexts = [ "010000000d0200001c000000200000006e00000092000000ee000000f10100000000000002000000a563884b3686078ec7e7677a5f86449b15cf2693f3c1241766c6996f206cc5410200000000ace5ea83c478bb866edf122ff862085789158f5cbff155b7bb5f13058555b708000000000101000000327f1fc62c53530c6c27018f1e8cee27c35c0370c3b4d3376daf8fe110e7d8cb020000000000000000000000c399495011b912999dbc72cf54982924e328ae170654ef76c8aba190ca376307000000000000000000000000c317d0b0b2a513ab1206e6d454c1960de7d7b4b80d0748a3e1f9cb197b74b8a501000000030100000c000000a20000009600000010000000180000006100000000e8764817000000490000001000000030000000310000009bd7e06f3ecf4be0f2fcd2188b23f1b9fcc88e5d4b65a8637b17723bbda3cce80114000000e5260d839a786ac2a909181df9a423f1efbe863d3500000010000000300000003100000082d76d1b75fe2fd9a27dfbaa65a039221a380d76c926f378d3f81cf3e7e13f2e01000000006100000010000000180000006100000064e5b27317000000490000001000000030000000310000009bd7e06f3ecf4be0f2fcd2188b23f1b9fcc88e5d4b65a8637b17723bbda3cce80114000000e5260d839a786ac2a909181df9a423f1efbe863d1c0000000c0000001800000008000000520700000000000000000000" , "00000000570100001c000000200000006e000000b2000000e20000004b0100000000000002000000a563884b3686078ec7e7677a5f86449b15cf2693f3c1241766c6996f206cc5410200000000ace5ea83c478bb866edf122ff862085789158f5cbff155b7bb5f13058555b708000000000102000000327f1fc62c53530c6c27018f1e8cee27c35c0370c3b4d3376daf8fe110e7d8cb4930ba433e606a53f4f283f02dddeb6d51b0dc3e463629b14a27995de9c71eca01000000ba08000000010020b1b547956a0dfb7ea618231563b3acd23607586e939f88e5a6db5f392b2e78d500000000690000000800000061000000100000001800000061000000c561436317000000490000001000000030000000310000009bd7e06f3ecf4be0f2fcd2188b23f1b9fcc88e5d4b65a8637b17723bbda3cce80114000000e5260d839a786ac2a909181df9a423f1efbe863d0c0000000800000000000000" ]; transaction = "d00100000c000000bc010000b00100001c000000200000006e00000072000000ce0000009c0100000000000002000000a563884b3686078ec7e7677a5f86449b15cf2693f3c1241766c6996f206cc5410200000000ace5ea83c478bb866edf122ff862085789158f5cbff155b7bb5f13058555b708000000000100000000020000000000000000000000b1b547956a0dfb7ea618231563b3acd23607586e939f88e5a6db5f392b2e78d5010000000000000000000000258e82bab2af21fd8899fc872742f4acea831f5e4c232297816b9bf4a19597a900000000ce0000000c0000006d0000006100000010000000180000006100000000e8764817000000490000001000000030000000310000009bd7e06f3ecf4be0f2fcd2188b23f1b9fcc88e5d4b65a8637b17723bbda3cce80114000000e5260d839a786ac2a909181df9a423f1efbe863d61000000100000001800000061000000e91c708e17000000490000001000000030000000310000009bd7e06f3ecf4be0f2fcd2188b23f1b9fcc88e5d4b65a8637b17723bbda3cce80114000000e5260d839a786ac2a909181df9a423f1efbe863d140000000c000000100000000000000000000000140000000c000000100000000000000000000000" const result = await ckb.signTransaction("44'/309'/0'/1/0", transaction, null, contexts, "44'/309'/0'/1/0"); return result; }; const getVersion = async () => { const transport = await Transport.create(); const ckb = new Ckb(transport); const versionInfo = await ckb.getAppConfiguration(); return versionInfo; }; const getAddress = async () => { const transport = await Transport.create(); const ckb = new Ckb(transport); const result = await ckb.getWalletPublicKey("44'/309'/0'/1/0"); return result; }; const doAll = async () => { walletId = await getWalletId(); console.log(walletId); version = await getVersion(); console.log(version); address = await getAddress();; console.log(address); signature = await signTransaction(); console.log(signature); }; doAll().catch(err => console.log(err)); ## API <!-- Generated by documentation.js. Update this documentation by updating the source code. --> #### Table of Contents - [Ckb](#ckb) - [Parameters](#parameters) - [Examples](#examples) - [getWalletPublicKey](#getwalletpublickey) - [Parameters](#parameters-1) - [Examples](#examples-1) - [getWalletExtendedPublicKey](#getwalletextendedpublickey) - [Parameters](#parameters-2) - [Examples](#examples-2) - [signTransaction](#signtransaction) - [Parameters](#parameters-3) - [Examples](#examples-3) - [buildAnnotatedTransaction](#buildannotatedtransaction) - [Parameters](#parameters-4) - [signAnnotatedTransaction](#signannotatedtransaction) - [Parameters](#parameters-5) - [defaultSighashWitness](#defaultsighashwitness) - [getAppConfiguration](#getappconfiguration) - [Examples](#examples-4) - [getWalletId](#getwalletid) - [Examples](#examples-5) ### Ckb Nervos API #### Parameters - `transport` **Transport&lt;any>** - `scrambleKey` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** (optional, default `"CKB"`) #### Examples ```javascript import Ckb from "@magickbase/hw-app-ckb"; const ckb = new Ckb(transport); ``` #### getWalletPublicKey get CKB address for a given BIP 32 path. ##### Parameters - `path` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** a path in BIP 32 format - `testnet` **[boolean](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean)** ##### Examples ```javascript const result = await ckb.getWalletPublicKey("44'/144'/0'/0/0"); const publicKey = result.publicKey; const lockArg = result.lockArg; const address = result.address; ``` Returns **[Promise](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise)&lt;[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)>** an object with a publicKey, lockArg, and (secp256k1+blake160) address. #### getWalletExtendedPublicKey get extended public key for a given BIP 32 path. ##### Parameters - `path` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** a path in BIP 32 format ##### Examples ```javascript const result = await ckb.getWalletPublicKey("44'/144'/0'/0/0"); const publicKey = result; ``` Returns **[Promise](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise)&lt;[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)>** an object with a publicKey #### signTransaction Sign a Nervos transaction with a given BIP 32 path ##### Parameters - `signPath` **([string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String) | BIPPath | \[[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)])** the path to sign with, in BIP 32 format - `rawTx` **([string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String) | blockchain.RawTransactionJSON)** - `groupWitnessesHex` **\[[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)]?** hex of in-group and extra witnesses to include in signature - `rawContextsTx` **\[([string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String) | blockchain.RawTransactionJSON)]** - `changePath` **([string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String) | BIPPath | \[[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)])** the path the transaction sends change to, in BIP 32 format (optional, defaults to signPath) - `rawTxHex` transaction to sign - `contextTransaction` list of transaction contexts for parsing ##### Examples ```javascript TODO ``` Returns **[Promise](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise)&lt;[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)>** a signature as hex string #### buildAnnotatedTransaction Construct an AnnotatedTransaction for a given collection of signing data Parameters are the same as for signTransaction, but no ledger interaction is attempted. AnnotatedTransaction is a type defined for the ledger app that collects all of the information needed to securely confirm a transaction on-screen and a few bits of duplicative information to allow it to be processed as a stream. ##### Parameters - `signPath` **([string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String) | BIPPath | \[[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)])** - `rawTx` **([string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String) | RawTransactionJSON)** - `groupWitnesses` **\[[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)]?** - `rawContextsTx` **\[([string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String) | RawTransactionJSON)]** - `changePath` **([string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String) | BIPPath | \[[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)])** Returns **AnnotatedTransactionJSON** #### signAnnotatedTransaction Sign an already constructed AnnotatedTransaction. ##### Parameters - `tx` **(AnnotatedTransaction | AnnotatedTransactionJSON)** Returns **[Promise](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise)&lt;[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)>** #### defaultSighashWitness An empty WitnessArgs with enough space to fit a sighash signature into. #### getAppConfiguration Get the version of the Nervos app installed on the hardware device ##### Examples ```javascript const result = await ckb.getAppConfiguration(); { "version": "1.0.3", "hash": "0000000000000000000000000000000000000000" } ``` Returns **[Promise](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise)&lt;{version: [string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String), hash: [string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)}>** an object with a version #### getWalletId Get the wallet identifier for the Ledger wallet ##### Examples ```javascript const id = await ckb.getWalletId(); "0x69c46b6dd072a2693378ef4f5f35dcd82f826dc1fdcc891255db5870f54b06e6" ``` Returns **[Promise](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise)&lt;[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)>** a byte string