@ledgerhq/coin-module-framework 2.0.0 → 2.0.2

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 CHANGED
@@ -1,5 +1,19 @@
1
1
  # @ledgerhq/coin-module-framework
2
2
 
3
+ ## 2.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#494](https://github.com/LedgerHQ/alpaca-coin-module/pull/494) [`0e62280`](https://github.com/LedgerHQ/alpaca-coin-module/commit/0e62280e5e5e3c09e5781a94e333831ea6709249) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - ci: bump patch version to trigger a release
8
+
9
+ - [#496](https://github.com/LedgerHQ/alpaca-coin-module/pull/496) [`5541981`](https://github.com/LedgerHQ/alpaca-coin-module/commit/5541981297d26f9a619895e9d05c2bb2d56ab604) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - ci: bump version to test app token authentication
10
+
11
+ ## 2.0.1
12
+
13
+ ### Patch Changes
14
+
15
+ - [#492](https://github.com/LedgerHQ/alpaca-coin-module/pull/492) [`fb14c85`](https://github.com/LedgerHQ/alpaca-coin-module/commit/fb14c857eae51571cc1d6540503edd71c0259ed4) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - chore(coin-module-framework): update comment in `api/types.ts`
16
+
3
17
  ## 2.0.0
4
18
 
5
19
  ### Major Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ledgerhq/coin-module-framework",
3
- "version": "2.0.0",
3
+ "version": "2.0.2",
4
4
  "description": "Ledger framework for Coin integration",
5
5
  "keywords": [
6
6
  "Ledger",
package/src/api/types.ts CHANGED
@@ -181,7 +181,7 @@ export type Account = {
181
181
  address: string
182
182
  balance: bigint
183
183
  currencyUnit: Unit
184
- spendableBalance: bigint // NOTE:: check if we can get rid of this one
184
+ spendableBalance: bigint // NOTE: check if we can get rid of this one
185
185
  }
186
186
 
187
187
  /**