@ledgerhq/live-common 34.37.0-nightly.0 → 34.37.0-nightly.1
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/lib/e2e/speculosCI.js
CHANGED
@@ -43,7 +43,7 @@ async function githubApiRequest({ method = "POST", urlSuffix, data, params, }) {
|
|
43
43
|
throw error;
|
44
44
|
}
|
45
45
|
}
|
46
|
-
function waitForSpeculosReady(url, { interval = 2000, timeout =
|
46
|
+
function waitForSpeculosReady(url, { interval = 2000, timeout = 300_000 } = {}) {
|
47
47
|
return new Promise((resolve, reject) => {
|
48
48
|
const startTime = Date.now();
|
49
49
|
function check() {
|
package/lib-es/e2e/speculosCI.js
CHANGED
@@ -37,7 +37,7 @@ async function githubApiRequest({ method = "POST", urlSuffix, data, params, }) {
|
|
37
37
|
throw error;
|
38
38
|
}
|
39
39
|
}
|
40
|
-
function waitForSpeculosReady(url, { interval = 2000, timeout =
|
40
|
+
function waitForSpeculosReady(url, { interval = 2000, timeout = 300_000 } = {}) {
|
41
41
|
return new Promise((resolve, reject) => {
|
42
42
|
const startTime = Date.now();
|
43
43
|
function check() {
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ledgerhq/live-common",
|
3
3
|
"description": "Common ground for the Ledger Live apps",
|
4
|
-
"version": "34.37.0-nightly.
|
4
|
+
"version": "34.37.0-nightly.1",
|
5
5
|
"repository": {
|
6
6
|
"type": "git",
|
7
7
|
"url": "https://github.com/LedgerHQ/ledger-live.git"
|
@@ -139,7 +139,7 @@
|
|
139
139
|
"fuse.js": "^6.6.2",
|
140
140
|
"invariant": "^2.2.2",
|
141
141
|
"isomorphic-ws": "^4.0.1",
|
142
|
-
"jotai": "
|
142
|
+
"jotai": "2.12.4",
|
143
143
|
"json-rpc-2.0": "^0.2.19",
|
144
144
|
"lodash": "^4.17.21",
|
145
145
|
"minimatch": "^5.1.0",
|
@@ -185,10 +185,10 @@
|
|
185
185
|
"@ledgerhq/coin-sui": "^0.4.2-nightly.0",
|
186
186
|
"@ledgerhq/coin-tezos": "^5.2.2-nightly.0",
|
187
187
|
"@ledgerhq/coin-ton": "^0.12.1-nightly.0",
|
188
|
-
"@ledgerhq/coin-tron": "^4.
|
188
|
+
"@ledgerhq/coin-tron": "^4.2.0-nightly.1",
|
189
189
|
"@ledgerhq/coin-vechain": "^2.7.9-nightly.0",
|
190
190
|
"@ledgerhq/coin-xrp": "^6.1.4-nightly.0",
|
191
|
-
"@ledgerhq/crypto-icons-ui": "^1.
|
191
|
+
"@ledgerhq/crypto-icons-ui": "^1.15.0-nightly.0",
|
192
192
|
"@ledgerhq/cryptoassets": "^13.18.1-nightly.0",
|
193
193
|
"@ledgerhq/device-core": "^0.4.27-nightly.0",
|
194
194
|
"@ledgerhq/devices": "8.4.6",
|
@@ -239,7 +239,7 @@
|
|
239
239
|
"@tanstack/react-query": "^5.28.9",
|
240
240
|
"@testing-library/react": "^14.1.2",
|
241
241
|
"@types/bs58": "^4.0.1",
|
242
|
-
"@types/cbor": "
|
242
|
+
"@types/cbor": "6.0.0",
|
243
243
|
"@types/invariant": "^2.2.36",
|
244
244
|
"@types/jest": "^29.5.10",
|
245
245
|
"@types/lodash": "^4.14.179",
|
@@ -265,8 +265,8 @@
|
|
265
265
|
"nock": "^13.0.5",
|
266
266
|
"react": "18.3.1",
|
267
267
|
"react-dom": "18.3.1",
|
268
|
-
"react-native": "0.
|
269
|
-
"react-native-svg": "
|
268
|
+
"react-native": "0.77.2",
|
269
|
+
"react-native-svg": "15.11.2",
|
270
270
|
"react-redux": "^7.2.9",
|
271
271
|
"react-test-renderer": "^18.2.0",
|
272
272
|
"redux-actions": "2.6.5",
|
package/src/e2e/speculosCI.ts
CHANGED
@@ -58,7 +58,7 @@ async function githubApiRequest<T = unknown>({
|
|
58
58
|
}
|
59
59
|
}
|
60
60
|
|
61
|
-
function waitForSpeculosReady(url: string, { interval = 2000, timeout =
|
61
|
+
function waitForSpeculosReady(url: string, { interval = 2000, timeout = 300_000 } = {}) {
|
62
62
|
return new Promise((resolve, reject) => {
|
63
63
|
const startTime = Date.now();
|
64
64
|
|