@ledgerhq/hw-app-tezos 6.6.1 → 6.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +10 -10
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -13,12 +13,12 @@ Ledger Hardware Wallet Tezos JavaScript bindings.
13
13
 
14
14
  #### Table of Contents
15
15
 
16
- - [Tezos](#tezos)
17
- - [Parameters](#parameters)
18
- - [Examples](#examples)
19
- - [getAddress](#getaddress)
20
- - [Parameters](#parameters-1)
21
- - [Examples](#examples-1)
16
+ * [Tezos](#tezos)
17
+ * [Parameters](#parameters)
18
+ * [Examples](#examples)
19
+ * [getAddress](#getaddress)
20
+ * [Parameters](#parameters-1)
21
+ * [Examples](#examples-1)
22
22
 
23
23
  ### Tezos
24
24
 
@@ -26,7 +26,7 @@ Tezos API
26
26
 
27
27
  #### Parameters
28
28
 
29
- - `transport` **Transport**
29
+ * `transport` **Transport**
30
30
 
31
31
  #### Examples
32
32
 
@@ -41,8 +41,8 @@ get Tezos address for a given BIP 32 path.
41
41
 
42
42
  ##### Parameters
43
43
 
44
- - `path` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** a path in BIP 32 format, must begin with 44'/1729'
45
- - `options` **{verify: [boolean](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean)?, curve: Curve?, ins: [number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)?}** (optional, default `{}`)
44
+ * `path` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** a path in BIP 32 format, must begin with 44'/1729'
45
+ * `options` **{verify: [boolean](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean)?, curve: Curve?, ins: [number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)?}** (optional, default `{}`)
46
46
 
47
47
  ##### Examples
48
48
 
@@ -51,4 +51,4 @@ tez.getAddress("44'/1729'/0'/0'").then(o => o.address)
51
51
  tez.getAddress("44'/1729'/0'/0'", { verify: true })
52
52
  ```
53
53
 
54
- Returns **[Promise](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise)<GetAddressResult>** an object with address, publicKey
54
+ Returns **[Promise](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise)\<GetAddressResult>** an object with address, publicKey
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ledgerhq/hw-app-tezos",
3
- "version": "6.6.1",
3
+ "version": "6.11.0",
4
4
  "description": "Ledger Hardware Wallet Tezos Application API",
5
5
  "keywords": [
6
6
  "Ledger",
@@ -27,7 +27,7 @@
27
27
  "types": "lib/Tezos.d.ts",
28
28
  "license": "Apache-2.0",
29
29
  "dependencies": {
30
- "@ledgerhq/hw-transport": "^6.3.0",
30
+ "@ledgerhq/hw-transport": "^6.11.0",
31
31
  "blake2b": "^2.1.3",
32
32
  "bs58check": "^2.1.2",
33
33
  "invariant": "^2.2.4"
@@ -38,5 +38,5 @@
38
38
  "watch": "bash ../../script/watch.sh",
39
39
  "doc": "bash ../../script/doc.sh"
40
40
  },
41
- "gitHead": "5465ed4d44f267d36b842959d366f97899c73753"
41
+ "gitHead": "12801b340a115759383d9afc4d5c73b1789722b6"
42
42
  }