@ledgerhq/coin-cardano 0.4.5 → 0.5.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.
@@ -1,4 +1,4 @@
1
1
 
2
- > @ledgerhq/coin-cardano@0.4.5 build /home/runner/work/ledger-live/ledger-live/libs/coin-modules/coin-cardano
2
+ > @ledgerhq/coin-cardano@0.5.0 build /home/runner/work/ledger-live/ledger-live/libs/coin-modules/coin-cardano
3
3
  > tsc && tsc -m esnext --moduleResolution bundler --outDir lib-es
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # @ledgerhq/coin-cardano
2
2
 
3
+ ## 0.5.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#9319](https://github.com/LedgerHQ/ledger-live/pull/9319) [`c78d6bc`](https://github.com/LedgerHQ/ledger-live/commit/c78d6bc5a5f77e3b9c844c8f67dd205995ce309f) Thanks [@qperrot](https://github.com/qperrot)! - Setup Ledger by Figment two as the default validator
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [[`e4d9a5c`](https://github.com/LedgerHQ/ledger-live/commit/e4d9a5ce6c3e8f2b3829f8f5772e7ba712a4a50c)]:
12
+ - @ledgerhq/types-live@6.61.0
13
+ - @ledgerhq/coin-framework@2.1.1
14
+
15
+ ## 0.5.0-next.0
16
+
17
+ ### Minor Changes
18
+
19
+ - [#9319](https://github.com/LedgerHQ/ledger-live/pull/9319) [`c78d6bc`](https://github.com/LedgerHQ/ledger-live/commit/c78d6bc5a5f77e3b9c844c8f67dd205995ce309f) Thanks [@qperrot](https://github.com/qperrot)! - Setup Ledger by Figment two as the default validator
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies [[`e4d9a5c`](https://github.com/LedgerHQ/ledger-live/commit/e4d9a5ce6c3e8f2b3829f8f5772e7ba712a4a50c)]:
24
+ - @ledgerhq/types-live@6.61.0-next.0
25
+ - @ledgerhq/coin-framework@2.1.1-next.0
26
+
3
27
  ## 0.4.5
4
28
 
5
29
  ### Patch Changes
package/lib/utils.js CHANGED
@@ -3,6 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.LEDGER_POOL_IDS = void 0;
4
4
  // the IDs of ledger stake pools to shows in lld and llm
5
5
  exports.LEDGER_POOL_IDS = [
6
- "c726c9da5615d5f9f6858c25bb13f81c4741eccd08ce32f3414f323f",
6
+ "4a9c9902c9538da900b10b716d5d1b214487455fdb06028b32ffa180",
7
7
  ];
8
8
  //# sourceMappingURL=utils.js.map
package/lib-es/utils.js CHANGED
@@ -1,5 +1,5 @@
1
1
  // the IDs of ledger stake pools to shows in lld and llm
2
2
  export const LEDGER_POOL_IDS = [
3
- "c726c9da5615d5f9f6858c25bb13f81c4741eccd08ce32f3414f323f",
3
+ "4a9c9902c9538da900b10b716d5d1b214487455fdb06028b32ffa180",
4
4
  ];
5
5
  //# sourceMappingURL=utils.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ledgerhq/coin-cardano",
3
- "version": "0.4.5",
3
+ "version": "0.5.0",
4
4
  "description": "Ledger Cardano Coin integration",
5
5
  "keywords": [
6
6
  "Ledger",
@@ -59,7 +59,7 @@
59
59
  "invariant": "^2.2.2",
60
60
  "lodash": "^4.17.21",
61
61
  "rxjs": "^7.8.1",
62
- "@ledgerhq/coin-framework": "^2.1.0",
62
+ "@ledgerhq/coin-framework": "^2.1.1",
63
63
  "@ledgerhq/cryptoassets": "^13.12.0",
64
64
  "@ledgerhq/devices": "8.4.4",
65
65
  "@ledgerhq/errors": "^6.19.1",
@@ -67,7 +67,7 @@
67
67
  "@ledgerhq/live-network": "^2.0.4",
68
68
  "@ledgerhq/logs": "^6.12.0",
69
69
  "@ledgerhq/types-cryptoassets": "^7.19.0",
70
- "@ledgerhq/types-live": "^6.60.0"
70
+ "@ledgerhq/types-live": "^6.61.0"
71
71
  },
72
72
  "devDependencies": {
73
73
  "@types/invariant": "^2.2.2",
package/src/utils.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  // the IDs of ledger stake pools to shows in lld and llm
2
2
  export const LEDGER_POOL_IDS: Array<string> = [
3
- "c726c9da5615d5f9f6858c25bb13f81c4741eccd08ce32f3414f323f",
3
+ "4a9c9902c9538da900b10b716d5d1b214487455fdb06028b32ffa180",
4
4
  ];