@ledgerhq/live-countervalues 0.6.1 → 0.7.0-nightly.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/CHANGELOG.md +15 -0
- package/package.json +6 -6
- package/src/mock.test.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @ledgerhq/live-countervalues
|
|
2
2
|
|
|
3
|
+
## 0.7.0-nightly.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#11313](https://github.com/LedgerHQ/ledger-live/pull/11313) [`d6a6a94`](https://github.com/LedgerHQ/ledger-live/commit/d6a6a949d45fdd2f97f15842c808bf6d1058403f) Thanks [@Moustafa-Koterba](https://github.com/Moustafa-Koterba)! - Update EVM createBridge function signature for CAL lazy loading
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [[`87617a9`](https://github.com/LedgerHQ/ledger-live/commit/87617a9930be43a6cdbc5cc5711cc24b00309184), [`d6a6a94`](https://github.com/LedgerHQ/ledger-live/commit/d6a6a949d45fdd2f97f15842c808bf6d1058403f)]:
|
|
12
|
+
- @ledgerhq/live-env@2.15.0-nightly.0
|
|
13
|
+
- @ledgerhq/types-live@6.82.0-nightly.0
|
|
14
|
+
- @ledgerhq/coin-framework@6.2.0-nightly.0
|
|
15
|
+
- @ledgerhq/cryptoassets@13.25.1-nightly.0
|
|
16
|
+
- @ledgerhq/live-network@2.0.16-nightly.0
|
|
17
|
+
|
|
3
18
|
## 0.6.1
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ledgerhq/live-countervalues",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0-nightly.0",
|
|
4
4
|
"description": "Ledger Live countervalues module",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Ledger"
|
|
@@ -21,14 +21,14 @@
|
|
|
21
21
|
"types": "lib/index.d.ts",
|
|
22
22
|
"license": "Apache-2.0",
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@ledgerhq/types-live": "6.
|
|
24
|
+
"@ledgerhq/types-live": "6.82.0-nightly.0",
|
|
25
25
|
"@ledgerhq/types-cryptoassets": "7.25.0",
|
|
26
|
-
"@ledgerhq/cryptoassets": "13.25.0",
|
|
27
|
-
"@ledgerhq/coin-framework": "6.
|
|
26
|
+
"@ledgerhq/cryptoassets": "13.25.1-nightly.0",
|
|
27
|
+
"@ledgerhq/coin-framework": "6.2.0-nightly.0",
|
|
28
28
|
"@ledgerhq/logs": "6.13.0",
|
|
29
|
-
"@ledgerhq/live-network": "2.0.
|
|
29
|
+
"@ledgerhq/live-network": "2.0.16-nightly.0",
|
|
30
30
|
"@ledgerhq/live-promise": "0.1.1",
|
|
31
|
-
"@ledgerhq/live-env": "2.
|
|
31
|
+
"@ledgerhq/live-env": "2.15.0-nightly.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@types/jest": "^29.5.10",
|
package/src/mock.test.ts
CHANGED
|
@@ -10,7 +10,7 @@ import {
|
|
|
10
10
|
import { formatCounterValueDay, formatCounterValueHour, parseFormattedDate } from "./helpers";
|
|
11
11
|
import api from "./api";
|
|
12
12
|
import * as cryptoAssets from "@ledgerhq/coin-framework/crypto-assets/index";
|
|
13
|
-
import { CryptoAssetsStore } from "@ledgerhq/
|
|
13
|
+
import type { CryptoAssetsStore } from "@ledgerhq/types-live";
|
|
14
14
|
|
|
15
15
|
setEnv("MOCK", "1");
|
|
16
16
|
setEnv("MOCK_COUNTERVALUES", "1");
|