@ledgerhq/hw-transport-node-speculos-http 6.27.5 → 6.27.6
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 +2 -2
- package/CHANGELOG.md +22 -0
- package/README.md +6 -5
- package/package.json +4 -4
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
@ledgerhq/hw-transport-node-speculos-http:build: cache hit, replaying output
|
|
1
|
+
@ledgerhq/hw-transport-node-speculos-http:build: cache hit, replaying output 5254d54994d2a7e4
|
|
2
2
|
@ledgerhq/hw-transport-node-speculos-http:build:
|
|
3
|
-
@ledgerhq/hw-transport-node-speculos-http:build: > @ledgerhq/hw-transport-node-speculos-http@6.27.
|
|
3
|
+
@ledgerhq/hw-transport-node-speculos-http:build: > @ledgerhq/hw-transport-node-speculos-http@6.27.6 build /home/runner/work/ledger-live/ledger-live/libs/ledgerjs/packages/hw-transport-node-speculos-http
|
|
4
4
|
@ledgerhq/hw-transport-node-speculos-http:build: > tsc && tsc -m ES6 --outDir lib-es
|
|
5
5
|
@ledgerhq/hw-transport-node-speculos-http:build:
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @ledgerhq/hw-transport-node-speculos-http
|
|
2
2
|
|
|
3
|
+
## 6.27.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1356](https://github.com/LedgerHQ/ledger-live/pull/1356) [`ecac411d7a`](https://github.com/LedgerHQ/ledger-live/commit/ecac411d7aad6f4003503ba6259d7c25017ca7aa) Thanks [@juan-cortes](https://github.com/juan-cortes)! - Updated readme.md of packages
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`ecac411d7a`](https://github.com/LedgerHQ/ledger-live/commit/ecac411d7aad6f4003503ba6259d7c25017ca7aa)]:
|
|
10
|
+
- @ledgerhq/errors@6.11.1
|
|
11
|
+
- @ledgerhq/hw-transport@6.27.6
|
|
12
|
+
- @ledgerhq/logs@6.10.1
|
|
13
|
+
|
|
14
|
+
## 6.27.6-next.0
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- [#1356](https://github.com/LedgerHQ/ledger-live/pull/1356) [`ecac411d7a`](https://github.com/LedgerHQ/ledger-live/commit/ecac411d7aad6f4003503ba6259d7c25017ca7aa) Thanks [@juan-cortes](https://github.com/juan-cortes)! - Updated readme.md of packages
|
|
19
|
+
|
|
20
|
+
- Updated dependencies [[`ecac411d7a`](https://github.com/LedgerHQ/ledger-live/commit/ecac411d7aad6f4003503ba6259d7c25017ca7aa)]:
|
|
21
|
+
- @ledgerhq/errors@6.11.1-next.0
|
|
22
|
+
- @ledgerhq/hw-transport@6.27.6-next.0
|
|
23
|
+
- @ledgerhq/logs@6.10.1-next.0
|
|
24
|
+
|
|
3
25
|
## 6.27.5
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,16 +1,17 @@
|
|
|
1
|
-
<img src="https://user-images.githubusercontent.com/
|
|
1
|
+
<img src="https://user-images.githubusercontent.com/4631227/191834116-59cf590e-25cc-4956-ae5c-812ea464f324.png" height="100" />
|
|
2
2
|
|
|
3
3
|
## @ledgerhq/hw-transport-node-speculos-http
|
|
4
4
|
|
|
5
|
-
A transport for <https://github.com/LedgerHQ/speculos> Nano simulator using
|
|
5
|
+
A transport for <https://github.com/LedgerHQ/speculos> Nano simulator using its HTTP API.
|
|
6
6
|
|
|
7
|
-
[
|
|
8
|
-
[Ledger Devs
|
|
7
|
+
[GitHub](https://github.com/LedgerHQ/ledger-live/),
|
|
8
|
+
[Ledger Devs Discord](https://developers.ledger.com/discord-pro),
|
|
9
|
+
[Developer Portal](https://developers.ledger.com/)
|
|
9
10
|
|
|
10
11
|
### Getting started
|
|
11
12
|
|
|
12
13
|
* Install <https://github.com/LedgerHQ/speculos>
|
|
13
|
-
* Make sure to have a speculos running with an
|
|
14
|
+
* Make sure to have a speculos running with an API port (default port is 5000).
|
|
14
15
|
|
|
15
16
|
```js
|
|
16
17
|
import SpeculosTransport from "@ledgerhq/hw-transport-node-speculos-http";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ledgerhq/hw-transport-node-speculos-http",
|
|
3
|
-
"version": "6.27.
|
|
3
|
+
"version": "6.27.6",
|
|
4
4
|
"description": "Ledger Hardware Wallet communication layer with speculos Nano simulator using the http api",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Ledger",
|
|
@@ -28,9 +28,9 @@
|
|
|
28
28
|
"types": "lib/SpeculosHttpTransport.d.ts",
|
|
29
29
|
"license": "Apache-2.0",
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@ledgerhq/errors": "^6.11.
|
|
32
|
-
"@ledgerhq/hw-transport": "^6.27.
|
|
33
|
-
"@ledgerhq/logs": "^6.10.
|
|
31
|
+
"@ledgerhq/errors": "^6.11.1",
|
|
32
|
+
"@ledgerhq/hw-transport": "^6.27.6",
|
|
33
|
+
"@ledgerhq/logs": "^6.10.1",
|
|
34
34
|
"axios": "^0.26.1"
|
|
35
35
|
},
|
|
36
36
|
"gitHead": "dd0dea64b58e5a9125c8a422dcffd29e5ef6abec",
|