@ledgerhq/hw-transport-webhid 6.27.2 → 6.27.3-next.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.
- package/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +7 -0
- package/README.md +13 -0
- package/package.json +2 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@ledgerhq/hw-transport-webhid:build: cache hit, replaying output
|
|
1
|
+
@ledgerhq/hw-transport-webhid:build: cache hit, replaying output 25b7a878789665c8
|
|
2
2
|
@ledgerhq/hw-transport-webhid:build:
|
|
3
3
|
@ledgerhq/hw-transport-webhid:build: > @ledgerhq/hw-transport-webhid@6.27.2 build /home/runner/work/ledger-live/ledger-live/libs/ledgerjs/packages/hw-transport-webhid
|
|
4
4
|
@ledgerhq/hw-transport-webhid:build: > tsc && tsc -m ES6 --outDir lib-es
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @ledgerhq/hw-transport-webhid
|
|
2
2
|
|
|
3
|
+
## 6.27.3-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`ecfdd1ebd`](https://github.com/LedgerHQ/ledger-live/commit/ecfdd1ebd8cc7c4b5bc6315316ce662bb6241311)]:
|
|
8
|
+
- @ledgerhq/hw-transport@6.27.3-next.0
|
|
9
|
+
|
|
3
10
|
## 6.27.2
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -9,6 +9,19 @@ Allows to communicate with Ledger Hardware Wallets.
|
|
|
9
9
|
|
|
10
10
|
**\[Web]** **(WebHID)** – WebHID [check browser support](https://caniuse.com/webhid).
|
|
11
11
|
|
|
12
|
+
***
|
|
13
|
+
|
|
14
|
+
## Are you adding Ledger support to your software wallet?
|
|
15
|
+
|
|
16
|
+
You may be using this package to open a USB connexion between your web application and the device.
|
|
17
|
+
|
|
18
|
+
For a smooth and quick integration:
|
|
19
|
+
|
|
20
|
+
* See the developers’ documentation on the [Developer Portal](https://developers.ledger.com/docs/transport/overview/) and
|
|
21
|
+
* Go on [Discord](https://developers.ledger.com/discord-pro/) to chat with developer support and the developer community.
|
|
22
|
+
|
|
23
|
+
***
|
|
24
|
+
|
|
12
25
|
### FAQ: "DOM Exception" is triggered when creating the transport
|
|
13
26
|
|
|
14
27
|
The transport functions `create()` and `listen()` must be called in the context of an user interaction (like a **"click"** event), otherwise it fails with DOM Exception. This is by WebUSB design. You also must run on HTTPS.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ledgerhq/hw-transport-webhid",
|
|
3
|
-
"version": "6.27.
|
|
3
|
+
"version": "6.27.3-next.0",
|
|
4
4
|
"description": "Ledger Hardware Wallet WebHID implementation of the communication layer",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Ledger",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@ledgerhq/devices": "^7.0.0",
|
|
30
30
|
"@ledgerhq/errors": "^6.10.1",
|
|
31
|
-
"@ledgerhq/hw-transport": "^6.27.
|
|
31
|
+
"@ledgerhq/hw-transport": "^6.27.3-next.0",
|
|
32
32
|
"@ledgerhq/logs": "^6.10.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|