@ledgerhq/coin-tezos
Version:
2,866 lines • 269 kB
Markdown
# @ledgerhq/coin-tezos
## 10.1.1
### Patch Changes
- [#795](https://github.com/LedgerHQ/coin-modules/pull/795) [`21432f0`](https://github.com/LedgerHQ/coin-modules/commit/21432f01c0eb2f4ba432cb24ff357e96f8801278) Thanks [@shazzzam](https://github.com/shazzzam)! - Fix false "insufficient funds" error on FA1.2/FA2 fixed-amount token sends (LIVE-35976)
Token amounts are in token base units while fees are in XTZ mutez — adding them produced
a nonsense `totalSpent` that triggered a false balance error. Now `totalSpent` for token
sends only covers XTZ fees, and a separate token-balance check gates whether the user
can actually send the requested token amount.
## 10.1.0
### Minor Changes
- [#790](https://github.com/LedgerHQ/coin-modules/pull/790) [`2afe0b7`](https://github.com/LedgerHQ/coin-modules/commit/2afe0b7d7ae79ef63556dabf5c9bcaad8b55ee1e) Thanks [@Moustafa-Koterba](https://github.com/Moustafa-Koterba)! - chore(tezos): remove msw dependency
## 10.0.1
### Patch Changes
- [#787](https://github.com/LedgerHQ/coin-modules/pull/787) [`6b1135e`](https://github.com/LedgerHQ/coin-modules/commit/6b1135eac92bb27853d44229535e64c86908ad9b) Thanks [@shazzzam](https://github.com/shazzzam)! - Remove the local `TezosApi` type extension in favor of the framework's generic
`CoinModuleApi`. The override existed only because Tezos gained `getAccountInfo`
before the shared contract had it; now that ADR-045 (LIVE-33431) added an
optional `getAccountInfo?` to `CoinModuleApi`, `createApi()` satisfies the
generic contract directly. No runtime behavior change.
## 10.0.0
### Major Changes
- [#773](https://github.com/LedgerHQ/coin-modules/pull/773) [`a8d487f`](https://github.com/LedgerHQ/coin-modules/commit/a8d487fc10e13ac937b545a6bda55009d41a09b6) Thanks [@dilaouid](https://github.com/dilaouid)! - feat!: add `register` to the coin module API (ADR-046)
### Patch Changes
- Updated dependencies [[`a8d487f`](https://github.com/LedgerHQ/coin-modules/commit/a8d487fc10e13ac937b545a6bda55009d41a09b6)]:
- @ledgerhq/coin-module-framework@8.0.0
## 9.0.0
### Major Changes
- [#780](https://github.com/LedgerHQ/coin-modules/pull/780) [`2a4b35f`](https://github.com/LedgerHQ/coin-modules/commit/2a4b35fdb887cbe684f2e0862fd7123834b8718e) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - chore(framework): update `combine` method to take a signature list as parameter
### Patch Changes
- Updated dependencies [[`2a4b35f`](https://github.com/LedgerHQ/coin-modules/commit/2a4b35fdb887cbe684f2e0862fd7123834b8718e)]:
- @ledgerhq/coin-module-framework@7.0.0
## 8.0.0
### Major Changes
- [#770](https://github.com/LedgerHQ/coin-modules/pull/770) [`1367938`](https://github.com/LedgerHQ/coin-modules/commit/136793888c492f6bbb34cb0e90801268c55ef338) Thanks [@qperrot](https://github.com/qperrot)! - feat!: thread a mandatory `Context` (config + logger) through the coin module API (ADR-019)
Introduces `Context<T>` and `Logger` in `@ledgerhq/coin-module-framework/config`, where
`Context.config` is an async config accessor (`(currencyId?) => Promise<T>`). **Breaking changes:**
- Every `CoinModuleApi` method (including `getAccountInfo`) now takes a **mandatory `context` as its
first argument**, and all non-mandatory parameters are grouped into a single trailing `options`
object (e.g. `getBalance(context, address, options?)`, `craftTransaction(context, intent, { customFees })`,
`combine(context, tx, signature, { pubkey })`, `getStakes(context, address, { cursor })`).
- `CoinModuleApi` gains a **mandatory first type parameter `ConfigType`**
(`CoinModuleApi<ConfigType, MemoType?, TxDataType?>`).
- `createApi()` no longer takes a config argument; the caller builds the `Context` (config accessor
- logger) and passes it to each method.
Each coin module reads its coin config and logger from the provided context instead of the former
`getCoinConfig` singleton and the global `log`; internal layers receive the resolved config value
(not the context) unless they also need the logger. Providing the HTTP client through the context
remains out of scope.
### Patch Changes
- Updated dependencies [[`1367938`](https://github.com/LedgerHQ/coin-modules/commit/136793888c492f6bbb34cb0e90801268c55ef338)]:
- @ledgerhq/coin-module-framework@6.0.0
## 7.12.0
### Minor Changes
- [#779](https://github.com/LedgerHQ/coin-modules/pull/779) [`ba14356`](https://github.com/LedgerHQ/coin-modules/commit/ba14356551445398133c1c538d91367e078ce52c) Thanks [@Moustafa-Koterba](https://github.com/Moustafa-Koterba)! - Import coin-tezos module from ledger-live with full git history
## 7.11.0
### Minor Changes
- [#19979](https://github.com/LedgerHQ/ledger-live/pull/19979) [`24d60d7`](https://github.com/LedgerHQ/ledger-live/commit/24d60d7628696b58764f8fbd4495140a049b3fcc) Thanks [@gre-ledger](https://github.com/gre-ledger)! - Convert coin module errors from createCustomErrorClass to native ES6 classes as part of the @ledgerhq/errors sunset (LIVE-32915).
- [#19599](https://github.com/LedgerHQ/ledger-live/pull/19599) [`51e7153`](https://github.com/LedgerHQ/ledger-live/commit/51e715314f2f89fbe76db1b69d878b4b250872e1) Thanks [@shazzzam](https://github.com/shazzzam)! - Fix: handle registered baker (tzkt `type: "delegate"`) accounts. Previously only `user` accounts were recognized, so a baker address reported a zero balance, no staking positions, an incorrect reveal state and next-sequence, and failed transaction validation. Account reads and manager-key logic now gate on a shared `hasManagerKey` guard covering both `user` and `delegate`.
- [#19599](https://github.com/LedgerHQ/ledger-live/pull/19599) [`fb0f177`](https://github.com/LedgerHQ/ledger-live/commit/fb0f17772d553ebe985fd59240b24d9fdbf0e0db) Thanks [@shazzzam](https://github.com/shazzzam)! - Add `getAccountInfo` to the Tezos coin module API, exposing the account's on-chain reveal state (`{ type: "tezos", revealed: boolean }`). The reveal state was previously only computed internally inside `craftTransaction`/`estimateFees`; it is now a first-class API method.
### Patch Changes
- Updated dependencies [[`1070564`](https://github.com/LedgerHQ/ledger-live/commit/107056410174d3da2d45c468232a8d742aea021f), [`1af9ec9`](https://github.com/LedgerHQ/ledger-live/commit/1af9ec984928e0bf5fd23ce12edcc6131b0302a0)]:
- @ledgerhq/errors@7.0.0
- @ledgerhq/live-network@3.0.0
## 7.11.0-next.0
### Minor Changes
- [#19979](https://github.com/LedgerHQ/ledger-live/pull/19979) [`24d60d7`](https://github.com/LedgerHQ/ledger-live/commit/24d60d7628696b58764f8fbd4495140a049b3fcc) Thanks [@gre-ledger](https://github.com/gre-ledger)! - Convert coin module errors from createCustomErrorClass to native ES6 classes as part of the @ledgerhq/errors sunset (LIVE-32915).
- [#19599](https://github.com/LedgerHQ/ledger-live/pull/19599) [`51e7153`](https://github.com/LedgerHQ/ledger-live/commit/51e715314f2f89fbe76db1b69d878b4b250872e1) Thanks [@shazzzam](https://github.com/shazzzam)! - Fix: handle registered baker (tzkt `type: "delegate"`) accounts. Previously only `user` accounts were recognized, so a baker address reported a zero balance, no staking positions, an incorrect reveal state and next-sequence, and failed transaction validation. Account reads and manager-key logic now gate on a shared `hasManagerKey` guard covering both `user` and `delegate`.
- [#19599](https://github.com/LedgerHQ/ledger-live/pull/19599) [`fb0f177`](https://github.com/LedgerHQ/ledger-live/commit/fb0f17772d553ebe985fd59240b24d9fdbf0e0db) Thanks [@shazzzam](https://github.com/shazzzam)! - Add `getAccountInfo` to the Tezos coin module API, exposing the account's on-chain reveal state (`{ type: "tezos", revealed: boolean }`). The reveal state was previously only computed internally inside `craftTransaction`/`estimateFees`; it is now a first-class API method.
### Patch Changes
- Updated dependencies [[`1070564`](https://github.com/LedgerHQ/ledger-live/commit/107056410174d3da2d45c468232a8d742aea021f), [`1af9ec9`](https://github.com/LedgerHQ/ledger-live/commit/1af9ec984928e0bf5fd23ce12edcc6131b0302a0)]:
- @ledgerhq/errors@7.0.0-next.0
- @ledgerhq/live-network@3.0.0-next.0
## 7.10.0
### Minor Changes
- [#19540](https://github.com/LedgerHQ/ledger-live/pull/19540) [`a128521`](https://github.com/LedgerHQ/ledger-live/commit/a1285211f0482229e5011505fb9e8c9d473cb86a) Thanks [@adussarps](https://github.com/adussarps)! - Expose the read-only smart-contract call API on EVM external RPC nodes and explicitly reject it on unsupported coin modules.
### Patch Changes
- Updated dependencies [[`e7caf31`](https://github.com/LedgerHQ/ledger-live/commit/e7caf310efbbf82aa777a7e86ceafe60f11e7193)]:
- @ledgerhq/live-network@2.7.0
## 7.10.0-next.0
### Minor Changes
- [#19540](https://github.com/LedgerHQ/ledger-live/pull/19540) [`a128521`](https://github.com/LedgerHQ/ledger-live/commit/a1285211f0482229e5011505fb9e8c9d473cb86a) Thanks [@adussarps](https://github.com/adussarps)! - Expose the read-only smart-contract call API on EVM external RPC nodes and explicitly reject it on unsupported coin modules.
### Patch Changes
- Updated dependencies [[`e7caf31`](https://github.com/LedgerHQ/ledger-live/commit/e7caf310efbbf82aa777a7e86ceafe60f11e7193)]:
- @ledgerhq/live-network@2.7.0-next.0
## 7.9.0
### Minor Changes
- [#19372](https://github.com/LedgerHQ/ledger-live/pull/19372) [`cf45a7d`](https://github.com/LedgerHQ/ledger-live/commit/cf45a7d1d247596a2fbaf872ae3c981e685082fc) Thanks [@estrauser-ledger](https://github.com/estrauser-ledger)! - fix: emit getBlock operations for zero-amount fee-bearing transactions and include all FA2 token IDs
- [#19407](https://github.com/LedgerHQ/ledger-live/pull/19407) [`dd89180`](https://github.com/LedgerHQ/ledger-live/commit/dd891801f1829506b004c383fa230cf9507ff283) Thanks [@koda-apps](https://github.com/apps/koda-apps)! - Fix: batch id.in lookups in getAccountTokenTransfers into chunks of 100 to avoid oversized URLs that caused HTTP 520 errors on the Cloudflare proxy
- [#19440](https://github.com/LedgerHQ/ledger-live/pull/19440) [`417f23f`](https://github.com/LedgerHQ/ledger-live/commit/417f23f6f2933182a4466764b71c6f3443688ca9) Thanks [@estrauser-ledger](https://github.com/estrauser-ledger)! - tezos getblock: move stakedAmount and ledgerOpType at top level
- [#19536](https://github.com/LedgerHQ/ledger-live/pull/19536) [`f854c29`](https://github.com/LedgerHQ/ledger-live/commit/f854c29bf164948ff2a38c01a1dc88e8fb297bc1) Thanks [@amaslakov](https://github.com/amaslakov)! - Warn and explain when Tezos staking is blocked by an unfinalizable unstake to another validator: translate the raw fee-estimation error into a clear message, and show an inline warning on the change-validator summary while a pending unstake is still unfinalizable
- [#19510](https://github.com/LedgerHQ/ledger-live/pull/19510) [`c052fc7`](https://github.com/LedgerHQ/ledger-live/commit/c052fc707a359fefbda3acc6bea7200ede805f45) Thanks [@estrauser-ledger](https://github.com/estrauser-ledger)! - Tezos getBlock: align OtherBlockOperation fields with listOperations path
- [#19228](https://github.com/LedgerHQ/ledger-live/pull/19228) [`3fc5836`](https://github.com/LedgerHQ/ledger-live/commit/3fc583609116bcf40956ccafeaadc733e11040b0) Thanks [@lysyi3m](https://github.com/lysyi3m)! - Fix Tezos `account.getPublicKey` (Wallet API): resolve the account public key from `xpub` instead of `seedIdentifier`, which is derived from a different path (`44'/1729'/0'`) and returned the same wrong address for every Tezos account. When `xpub` does not contain a valid base58 Tezos public key (edpk/sppk/p2pk), the request is rejected with a dedicated `AccountPublicKeyUnavailable` error and Ledger Live surfaces it natively (error modal on desktop, bottom modal on mobile), prompting the user to re-add the account instead of failing silently. The per-family resolver map is retained for chains that need bespoke retrieval. Also stop seeding `xpub` with the address on Tezos QR import.
- [#19035](https://github.com/LedgerHQ/ledger-live/pull/19035) [`07bfc2c`](https://github.com/LedgerHQ/ledger-live/commit/07bfc2cbcf3c63b55224dec2aef1818d22c2315c) Thanks [@YazhuEth](https://github.com/YazhuEth)! - generic coin-framework bridge: compute the send-max (`useAllAmount`) amount once in `prepareTransaction` and reuse it in `signOperation`, instead of recomputing it via `validateIntent` in `prepareTransaction`, `signOperation` and `estimateMaxSpendable`. The amount is `parameters.amount` when the coin exposes it (Tezos), the token sub-account balance for token sends, otherwise `spendableBalance - max(reserve, fees)` (coin-evm now exposes `reserve`/`amountScale` for delegate). Pending operations are subtracted so the amount stays consistent with `getTransactionStatus` (LIVE-22227, LIVE-22228, LIVE-22229).
- [#19600](https://github.com/LedgerHQ/ledger-live/pull/19600) [`457d12c`](https://github.com/LedgerHQ/ledger-live/commit/457d12c949c317d495ba7c391a80fa4b8ee956ee) Thanks [@Moustafa-Koterba](https://github.com/Moustafa-Koterba)! - feat(tezos): use same node url for integration tests and app
### Patch Changes
- Updated dependencies []:
- @ledgerhq/live-network@2.6.8
## 7.9.0-next.0
### Minor Changes
- [#19372](https://github.com/LedgerHQ/ledger-live/pull/19372) [`cf45a7d`](https://github.com/LedgerHQ/ledger-live/commit/cf45a7d1d247596a2fbaf872ae3c981e685082fc) Thanks [@estrauser-ledger](https://github.com/estrauser-ledger)! - fix: emit getBlock operations for zero-amount fee-bearing transactions and include all FA2 token IDs
- [#19407](https://github.com/LedgerHQ/ledger-live/pull/19407) [`dd89180`](https://github.com/LedgerHQ/ledger-live/commit/dd891801f1829506b004c383fa230cf9507ff283) Thanks [@koda-apps](https://github.com/apps/koda-apps)! - Fix: batch id.in lookups in getAccountTokenTransfers into chunks of 100 to avoid oversized URLs that caused HTTP 520 errors on the Cloudflare proxy
- [#19440](https://github.com/LedgerHQ/ledger-live/pull/19440) [`417f23f`](https://github.com/LedgerHQ/ledger-live/commit/417f23f6f2933182a4466764b71c6f3443688ca9) Thanks [@estrauser-ledger](https://github.com/estrauser-ledger)! - tezos getblock: move stakedAmount and ledgerOpType at top level
- [#19536](https://github.com/LedgerHQ/ledger-live/pull/19536) [`f854c29`](https://github.com/LedgerHQ/ledger-live/commit/f854c29bf164948ff2a38c01a1dc88e8fb297bc1) Thanks [@amaslakov](https://github.com/amaslakov)! - Warn and explain when Tezos staking is blocked by an unfinalizable unstake to another validator: translate the raw fee-estimation error into a clear message, and show an inline warning on the change-validator summary while a pending unstake is still unfinalizable
- [#19510](https://github.com/LedgerHQ/ledger-live/pull/19510) [`c052fc7`](https://github.com/LedgerHQ/ledger-live/commit/c052fc707a359fefbda3acc6bea7200ede805f45) Thanks [@estrauser-ledger](https://github.com/estrauser-ledger)! - Tezos getBlock: align OtherBlockOperation fields with listOperations path
- [#19228](https://github.com/LedgerHQ/ledger-live/pull/19228) [`3fc5836`](https://github.com/LedgerHQ/ledger-live/commit/3fc583609116bcf40956ccafeaadc733e11040b0) Thanks [@lysyi3m](https://github.com/lysyi3m)! - Fix Tezos `account.getPublicKey` (Wallet API): resolve the account public key from `xpub` instead of `seedIdentifier`, which is derived from a different path (`44'/1729'/0'`) and returned the same wrong address for every Tezos account. When `xpub` does not contain a valid base58 Tezos public key (edpk/sppk/p2pk), the request is rejected with a dedicated `AccountPublicKeyUnavailable` error and Ledger Live surfaces it natively (error modal on desktop, bottom modal on mobile), prompting the user to re-add the account instead of failing silently. The per-family resolver map is retained for chains that need bespoke retrieval. Also stop seeding `xpub` with the address on Tezos QR import.
- [#19035](https://github.com/LedgerHQ/ledger-live/pull/19035) [`07bfc2c`](https://github.com/LedgerHQ/ledger-live/commit/07bfc2cbcf3c63b55224dec2aef1818d22c2315c) Thanks [@YazhuEth](https://github.com/YazhuEth)! - generic coin-framework bridge: compute the send-max (`useAllAmount`) amount once in `prepareTransaction` and reuse it in `signOperation`, instead of recomputing it via `validateIntent` in `prepareTransaction`, `signOperation` and `estimateMaxSpendable`. The amount is `parameters.amount` when the coin exposes it (Tezos), the token sub-account balance for token sends, otherwise `spendableBalance - max(reserve, fees)` (coin-evm now exposes `reserve`/`amountScale` for delegate). Pending operations are subtracted so the amount stays consistent with `getTransactionStatus` (LIVE-22227, LIVE-22228, LIVE-22229).
- [#19600](https://github.com/LedgerHQ/ledger-live/pull/19600) [`457d12c`](https://github.com/LedgerHQ/ledger-live/commit/457d12c949c317d495ba7c391a80fa4b8ee956ee) Thanks [@Moustafa-Koterba](https://github.com/Moustafa-Koterba)! - feat(tezos): use same node url for integration tests and app
### Patch Changes
- Updated dependencies []:
- @ledgerhq/live-network@2.6.8-next.0
## 7.8.0
### Minor Changes
- [#19013](https://github.com/LedgerHQ/ledger-live/pull/19013) [`7a11615`](https://github.com/LedgerHQ/ledger-live/commit/7a11615e8a37a35a0410e4f89f18f064e7ac2ee5) Thanks [@estrauser-ledger](https://github.com/estrauser-ledger)! - Fix: accumulate storage/baker fees from internal contract sub-transactions onto the initiating operation so that fee-only balance impacts are not silently dropped
- [#19266](https://github.com/LedgerHQ/ledger-live/pull/19266) [`94fcc69`](https://github.com/LedgerHQ/ledger-live/commit/94fcc69009b7e07aab43afdc7214b486b2c7811a) Thanks [@estrauser-ledger](https://github.com/estrauser-ledger)! - Remove extra delegate/originatedContract fields from getBlock details so reindexing produces identical event data as initial indexation
- [#19225](https://github.com/LedgerHQ/ledger-live/pull/19225) [`3973f11`](https://github.com/LedgerHQ/ledger-live/commit/3973f1109d66996b728ecb63489eced25b967838) Thanks [@estrauser-ledger](https://github.com/estrauser-ledger)! - Add origination and reveal operation support to tezos getBlock, fixing missing fees and operation events
- [#19120](https://github.com/LedgerHQ/ledger-live/pull/19120) [`73b6013`](https://github.com/LedgerHQ/ledger-live/commit/73b60134a199c19606a7d1be3d0fc41f15cf99c2) Thanks [@estrauser-ledger](https://github.com/estrauser-ledger)! - Fix getBlock to fetch originations, use correct FA2 token standard (fa2 instead of token), filter block token transfers to fa2/tokenId=0 (matching listOperations), and resolve cross-block origination hashes for token transfers.
- [#18915](https://github.com/LedgerHQ/ledger-live/pull/18915) [`dff6ecf`](https://github.com/LedgerHQ/ledger-live/commit/dff6ecff5201a942a9dc61a51c729c47b53052dc) Thanks [@estrauser-ledger](https://github.com/estrauser-ledger)! - Fix native balance double-counting in listOperations by filtering out internal contract sub-transactions and zeroing token op fees
- [#17890](https://github.com/LedgerHQ/ledger-live/pull/17890) [`df088d2`](https://github.com/LedgerHQ/ledger-live/commit/df088d26908b24e936bc8d6f508a438d151222f0) Thanks [@cted-ledger](https://github.com/cted-ledger)! - feat(coin-tezos): support multi-asset FA2 contracts (wrapped tokens)
Remove the tokenId=0 filter in TzKT queries so balances and operations
for all FA2 tokens are returned, including multi-asset contracts like
the Wrapped Tokens Contract (KT18fp5rc…).
Parse the assetReference (contract:tokenId) in the Tezos bridge to pass
tokenIdentifier to findTokenByAddressInCurrency, enabling correct CAL
token resolution for multi-asset contracts.
### Patch Changes
- Updated dependencies []:
- @ledgerhq/live-network@2.6.7
## 7.8.0-next.0
### Minor Changes
- [#19013](https://github.com/LedgerHQ/ledger-live/pull/19013) [`7a11615`](https://github.com/LedgerHQ/ledger-live/commit/7a11615e8a37a35a0410e4f89f18f064e7ac2ee5) Thanks [@estrauser-ledger](https://github.com/estrauser-ledger)! - Fix: accumulate storage/baker fees from internal contract sub-transactions onto the initiating operation so that fee-only balance impacts are not silently dropped
- [#19266](https://github.com/LedgerHQ/ledger-live/pull/19266) [`94fcc69`](https://github.com/LedgerHQ/ledger-live/commit/94fcc69009b7e07aab43afdc7214b486b2c7811a) Thanks [@estrauser-ledger](https://github.com/estrauser-ledger)! - Remove extra delegate/originatedContract fields from getBlock details so reindexing produces identical event data as initial indexation
- [#19225](https://github.com/LedgerHQ/ledger-live/pull/19225) [`3973f11`](https://github.com/LedgerHQ/ledger-live/commit/3973f1109d66996b728ecb63489eced25b967838) Thanks [@estrauser-ledger](https://github.com/estrauser-ledger)! - Add origination and reveal operation support to tezos getBlock, fixing missing fees and operation events
- [#19120](https://github.com/LedgerHQ/ledger-live/pull/19120) [`73b6013`](https://github.com/LedgerHQ/ledger-live/commit/73b60134a199c19606a7d1be3d0fc41f15cf99c2) Thanks [@estrauser-ledger](https://github.com/estrauser-ledger)! - Fix getBlock to fetch originations, use correct FA2 token standard (fa2 instead of token), filter block token transfers to fa2/tokenId=0 (matching listOperations), and resolve cross-block origination hashes for token transfers.
- [#18915](https://github.com/LedgerHQ/ledger-live/pull/18915) [`dff6ecf`](https://github.com/LedgerHQ/ledger-live/commit/dff6ecff5201a942a9dc61a51c729c47b53052dc) Thanks [@estrauser-ledger](https://github.com/estrauser-ledger)! - Fix native balance double-counting in listOperations by filtering out internal contract sub-transactions and zeroing token op fees
- [#17890](https://github.com/LedgerHQ/ledger-live/pull/17890) [`df088d2`](https://github.com/LedgerHQ/ledger-live/commit/df088d26908b24e936bc8d6f508a438d151222f0) Thanks [@cted-ledger](https://github.com/cted-ledger)! - feat(coin-tezos): support multi-asset FA2 contracts (wrapped tokens)
Remove the tokenId=0 filter in TzKT queries so balances and operations
for all FA2 tokens are returned, including multi-asset contracts like
the Wrapped Tokens Contract (KT18fp5rc…).
Parse the assetReference (contract:tokenId) in the Tezos bridge to pass
tokenIdentifier to findTokenByAddressInCurrency, enabling correct CAL
token resolution for multi-asset contracts.
### Patch Changes
- Updated dependencies []:
- @ledgerhq/live-network@2.6.7-next.0
## 7.7.0
### Minor Changes
- [#18678](https://github.com/LedgerHQ/ledger-live/pull/18678) [`246bb7d`](https://github.com/LedgerHQ/ledger-live/commit/246bb7def5224d552e9adba6322a473529a1a566) Thanks [@amaslakov](https://github.com/amaslakov)! - Fix Tezos send "Use Max" on delegated accounts: resolve the spendable max instead of blocking the transaction
- [#18761](https://github.com/LedgerHQ/ledger-live/pull/18761) [`8e3723b`](https://github.com/LedgerHQ/ledger-live/commit/8e3723bc2daf2f2a24ebfac4d30f47322b6e5186) Thanks [@estrauser-ledger](https://github.com/estrauser-ledger)! - coin-tezos: surface origination operations in listOperations so contract deployment fees are reflected in balance
- [#18520](https://github.com/LedgerHQ/ledger-live/pull/18520) [`4ace552`](https://github.com/LedgerHQ/ledger-live/commit/4ace55213a4f1869980aab5160683bb120c65292) Thanks [@gre-ledger](https://github.com/gre-ledger)! - Move the dummy fee-estimation recipient out of `@ledgerhq/cryptoassets` (`abandonseed.ts`, now deleted) into each coin family. Every account bridge now exposes a required `getEstimationRecipient(account)` returning a valid recipient (or throwing for an unmapped currency, like the former `getAbandonSeedAddress`), and the swap layer dispatches through it instead of the central address map.
### Patch Changes
- Updated dependencies [[`48dbd53`](https://github.com/LedgerHQ/ledger-live/commit/48dbd533a7a505cbb37989f8ce94f273f84bc7d2)]:
- @ledgerhq/errors@6.37.0
- @ledgerhq/live-network@2.6.6
## 7.7.0-next.0
### Minor Changes
- [#18678](https://github.com/LedgerHQ/ledger-live/pull/18678) [`246bb7d`](https://github.com/LedgerHQ/ledger-live/commit/246bb7def5224d552e9adba6322a473529a1a566) Thanks [@amaslakov](https://github.com/amaslakov)! - Fix Tezos send "Use Max" on delegated accounts: resolve the spendable max instead of blocking the transaction
- [#18761](https://github.com/LedgerHQ/ledger-live/pull/18761) [`8e3723b`](https://github.com/LedgerHQ/ledger-live/commit/8e3723bc2daf2f2a24ebfac4d30f47322b6e5186) Thanks [@estrauser-ledger](https://github.com/estrauser-ledger)! - coin-tezos: surface origination operations in listOperations so contract deployment fees are reflected in balance
- [#18520](https://github.com/LedgerHQ/ledger-live/pull/18520) [`4ace552`](https://github.com/LedgerHQ/ledger-live/commit/4ace55213a4f1869980aab5160683bb120c65292) Thanks [@gre-ledger](https://github.com/gre-ledger)! - Move the dummy fee-estimation recipient out of `@ledgerhq/cryptoassets` (`abandonseed.ts`, now deleted) into each coin family. Every account bridge now exposes a required `getEstimationRecipient(account)` returning a valid recipient (or throwing for an unmapped currency, like the former `getAbandonSeedAddress`), and the swap layer dispatches through it instead of the central address map.
### Patch Changes
- Updated dependencies [[`48dbd53`](https://github.com/LedgerHQ/ledger-live/commit/48dbd533a7a505cbb37989f8ce94f273f84bc7d2)]:
- @ledgerhq/errors@6.37.0-next.0
- @ledgerhq/live-network@2.6.6-next.0
## 7.6.0
### Minor Changes
- [#18344](https://github.com/LedgerHQ/ledger-live/pull/18344) [`597a15d`](https://github.com/LedgerHQ/ledger-live/commit/597a15dcda93e0c65ff0c2d4e95b8d8d807892dd) Thanks [@YazhuEth](https://github.com/YazhuEth)! - Prepare coin-tezos for migration to coin-modules (LIVE-32021, Step 1): move all wallet-related code that depends on `@ledgerhq/types-live` out of `coin-tezos` and into `ledger-live-common`'s `families/tezos` layer. Transaction, deviceTransactionConfig, serialization, CLI, bot specs/deviceActions, the wallet-facing types and the `TezosSigner` interface now live in `families/tezos`; the `AccountLike`-coupled delegation helpers move out of `network/bakers` into `families/tezos/bakers`. `coin-tezos/src` no longer imports `@ledgerhq/types-live`, `@ledgerhq/cryptoassets` or `@ledgerhq/types-cryptoassets`, and the corresponding entrypoints (`./transaction`, `./deviceTransactionConfig`, `./specs`) are removed from its package.json.
- [#18359](https://github.com/LedgerHQ/ledger-live/pull/18359) [`70c658e`](https://github.com/LedgerHQ/ledger-live/commit/70c658e2739c072313cc689ec626a9a73cd02f1c) Thanks [@lysyi3m](https://github.com/lysyi3m)! - Implement `craftRawTransaction`: forge arbitrary Tezos operations (transfers, contract calls, delegations, batches) from partial operation contents, with fee/gas/storage estimation and reveal handling.
- [#18361](https://github.com/LedgerHQ/ledger-live/pull/18361) [`3534656`](https://github.com/LedgerHQ/ledger-live/commit/3534656fccb01bed3c289ec08a07f8e3daa6fa9e) Thanks [@lysyi3m](https://github.com/lysyi3m)! - Add Tezos message signing: a `signMessage` that signs an already-watermarked payload verbatim (normalising the device signature to raw r||s), and wire it as the `tezos` family `messageSigner`.
### Patch Changes
- Updated dependencies []:
- @ledgerhq/live-network@2.6.5
## 7.6.0-next.0
### Minor Changes
- [#18344](https://github.com/LedgerHQ/ledger-live/pull/18344) [`597a15d`](https://github.com/LedgerHQ/ledger-live/commit/597a15dcda93e0c65ff0c2d4e95b8d8d807892dd) Thanks [@YazhuEth](https://github.com/YazhuEth)! - Prepare coin-tezos for migration to coin-modules (LIVE-32021, Step 1): move all wallet-related code that depends on `@ledgerhq/types-live` out of `coin-tezos` and into `ledger-live-common`'s `families/tezos` layer. Transaction, deviceTransactionConfig, serialization, CLI, bot specs/deviceActions, the wallet-facing types and the `TezosSigner` interface now live in `families/tezos`; the `AccountLike`-coupled delegation helpers move out of `network/bakers` into `families/tezos/bakers`. `coin-tezos/src` no longer imports `@ledgerhq/types-live`, `@ledgerhq/cryptoassets` or `@ledgerhq/types-cryptoassets`, and the corresponding entrypoints (`./transaction`, `./deviceTransactionConfig`, `./specs`) are removed from its package.json.
- [#18359](https://github.com/LedgerHQ/ledger-live/pull/18359) [`70c658e`](https://github.com/LedgerHQ/ledger-live/commit/70c658e2739c072313cc689ec626a9a73cd02f1c) Thanks [@lysyi3m](https://github.com/lysyi3m)! - Implement `craftRawTransaction`: forge arbitrary Tezos operations (transfers, contract calls, delegations, batches) from partial operation contents, with fee/gas/storage estimation and reveal handling.
- [#18361](https://github.com/LedgerHQ/ledger-live/pull/18361) [`3534656`](https://github.com/LedgerHQ/ledger-live/commit/3534656fccb01bed3c289ec08a07f8e3daa6fa9e) Thanks [@lysyi3m](https://github.com/lysyi3m)! - Add Tezos message signing: a `signMessage` that signs an already-watermarked payload verbatim (normalising the device signature to raw r||s), and wire it as the `tezos` family `messageSigner`.
### Patch Changes
- Updated dependencies []:
- @ledgerhq/live-network@2.6.5-next.0
## 7.5.0
### Minor Changes
- [#18006](https://github.com/LedgerHQ/ledger-live/pull/18006) [`27a6979`](https://github.com/LedgerHQ/ledger-live/commit/27a6979699dbb64e152cc8e4651ed78e3e73274f) Thanks [@amaslakov](https://github.com/amaslakov)! - Fix Tezos transaction validation to gate on the spendable (liquid) balance instead of the total balance. Delegate, undelegate, send, stake, unstake, and finalize now correctly block when staked or unstaked-frozen funds leave too little liquid XTZ to cover fees, instead of passing client-side and failing at broadcast. Also consolidate `useTezosStakingInfo`'s available balance onto the single source of truth (`account.spendableBalance`). On desktop, the staking flow's validator step now blocks before signing the initial delegation when the spendable balance can't cover the delegation fee, instead of letting it broadcast and fail. The displayed spendable/delegated balance now derives the unstaked-frozen total from the account-level field (the same source as the validation gate), so a failed `unstake_requests` fetch no longer transiently overstates spendable. The staking flow's "Use Max" / maximum-spendable amount now also excludes unstaked-frozen funds (not stakeable until finalized), matching the validation gate — previously it overstated the stakeable amount and produced an unsendable value.
Also on desktop: show the staking and unstaking panels before the delegation panel; show the staked principal instead of the fee for stake, unstake, and finalize operations in the operations list and details drawer; and reword the stake insufficient-funds error to reference the balance instead of delegation.
### Patch Changes
- Updated dependencies [[`c606898`](https://github.com/LedgerHQ/ledger-live/commit/c606898e4994768eadd99f2dea9575f92b3f9339), [`9901502`](https://github.com/LedgerHQ/ledger-live/commit/990150200e70bc3ea55c5cfc41e1c77f24cc315b), [`0ebf28c`](https://github.com/LedgerHQ/ledger-live/commit/0ebf28cac81f6f25f356d54c891fab62f328e411), [`d149f27`](https://github.com/LedgerHQ/ledger-live/commit/d149f271f18a1727558fa046aa6bc38c391c2649), [`d649cf3`](https://github.com/LedgerHQ/ledger-live/commit/d649cf31ecf8b2e18ab78109e6b201ff9766cc33), [`d081ef1`](https://github.com/LedgerHQ/ledger-live/commit/d081ef1892a34fa1751fba4d774867ff11bae20b), [`d19f9de`](https://github.com/LedgerHQ/ledger-live/commit/d19f9debb00e15edbaa7d2cedfcb0d2b5ced4f80), [`ddfb84c`](https://github.com/LedgerHQ/ledger-live/commit/ddfb84cf0caf68cfaba75aa7c015b2029051fe78), [`8c0f5f2`](https://github.com/LedgerHQ/ledger-live/commit/8c0f5f22e66aa6a34a3363a256d3da2d98d07dc9), [`cc4dd4d`](https://github.com/LedgerHQ/ledger-live/commit/cc4dd4db5e312da55966a6f0a8daa90e75e4dd94), [`bbc72fe`](https://github.com/LedgerHQ/ledger-live/commit/bbc72fe2ad0cee010349ab3b2e5a1e369dd9e840), [`8c9596d`](https://github.com/LedgerHQ/ledger-live/commit/8c9596de8eeec00f8d660a42448c6eb65c3aa9b2), [`5842a85`](https://github.com/LedgerHQ/ledger-live/commit/5842a85907c7418a393b0dffee756bff52370024)]:
- @ledgerhq/types-live@6.111.0
- @ledgerhq/cryptoassets@13.51.0
- @ledgerhq/ledger-wallet-framework@2.1.0
- @ledgerhq/errors@6.36.0
- @ledgerhq/live-network@2.6.4
- @ledgerhq/devices@8.15.1
## 7.5.0-next.0
### Minor Changes
- [#18006](https://github.com/LedgerHQ/ledger-live/pull/18006) [`27a6979`](https://github.com/LedgerHQ/ledger-live/commit/27a6979699dbb64e152cc8e4651ed78e3e73274f) Thanks [@amaslakov](https://github.com/amaslakov)! - Fix Tezos transaction validation to gate on the spendable (liquid) balance instead of the total balance. Delegate, undelegate, send, stake, unstake, and finalize now correctly block when staked or unstaked-frozen funds leave too little liquid XTZ to cover fees, instead of passing client-side and failing at broadcast. Also consolidate `useTezosStakingInfo`'s available balance onto the single source of truth (`account.spendableBalance`). On desktop, the staking flow's validator step now blocks before signing the initial delegation when the spendable balance can't cover the delegation fee, instead of letting it broadcast and fail. The displayed spendable/delegated balance now derives the unstaked-frozen total from the account-level field (the same source as the validation gate), so a failed `unstake_requests` fetch no longer transiently overstates spendable. The staking flow's "Use Max" / maximum-spendable amount now also excludes unstaked-frozen funds (not stakeable until finalized), matching the validation gate — previously it overstated the stakeable amount and produced an unsendable value.
Also on desktop: show the staking and unstaking panels before the delegation panel; show the staked principal instead of the fee for stake, unstake, and finalize operations in the operations list and details drawer; and reword the stake insufficient-funds error to reference the balance instead of delegation.
### Patch Changes
- Updated dependencies [[`c606898`](https://github.com/LedgerHQ/ledger-live/commit/c606898e4994768eadd99f2dea9575f92b3f9339), [`9901502`](https://github.com/LedgerHQ/ledger-live/commit/990150200e70bc3ea55c5cfc41e1c77f24cc315b), [`0ebf28c`](https://github.com/LedgerHQ/ledger-live/commit/0ebf28cac81f6f25f356d54c891fab62f328e411), [`d149f27`](https://github.com/LedgerHQ/ledger-live/commit/d149f271f18a1727558fa046aa6bc38c391c2649), [`d649cf3`](https://github.com/LedgerHQ/ledger-live/commit/d649cf31ecf8b2e18ab78109e6b201ff9766cc33), [`d081ef1`](https://github.com/LedgerHQ/ledger-live/commit/d081ef1892a34fa1751fba4d774867ff11bae20b), [`d19f9de`](https://github.com/LedgerHQ/ledger-live/commit/d19f9debb00e15edbaa7d2cedfcb0d2b5ced4f80), [`ddfb84c`](https://github.com/LedgerHQ/ledger-live/commit/ddfb84cf0caf68cfaba75aa7c015b2029051fe78), [`8c0f5f2`](https://github.com/LedgerHQ/ledger-live/commit/8c0f5f22e66aa6a34a3363a256d3da2d98d07dc9), [`cc4dd4d`](https://github.com/LedgerHQ/ledger-live/commit/cc4dd4db5e312da55966a6f0a8daa90e75e4dd94), [`bbc72fe`](https://github.com/LedgerHQ/ledger-live/commit/bbc72fe2ad0cee010349ab3b2e5a1e369dd9e840), [`8c9596d`](https://github.com/LedgerHQ/ledger-live/commit/8c9596de8eeec00f8d660a42448c6eb65c3aa9b2), [`5842a85`](https://github.com/LedgerHQ/ledger-live/commit/5842a85907c7418a393b0dffee756bff52370024)]:
- @ledgerhq/types-live@6.111.0-next.0
- @ledgerhq/cryptoassets@13.51.0-next.0
- @ledgerhq/ledger-wallet-framework@2.1.0-next.0
- @ledgerhq/errors@6.36.0-next.0
- @ledgerhq/live-network@2.6.4-next.0
- @ledgerhq/devices@8.15.1-next.0
## 7.4.0
### Minor Changes
- [#17706](https://github.com/LedgerHQ/ledger-live/pull/17706) [`6f00871`](https://github.com/LedgerHQ/ledger-live/commit/6f00871f7bbef39a98fb32b7695576f83458d588) Thanks [@amaslakov](https://github.com/amaslakov)! - feat(tezos): per-request unstaking positions with dates, surfaced through useTezosStakingInfo.unstakingPositions; LWD account page gains Staking + Unstaking sections (with 4-day countdown) and a unified Earn entry point that opens the delegate/stake choice modal, all gated by lldTezosStaking. Also unblocks the dashboard for Paris-upgrade accounts that lack tezosResources, propagates TzKT unstake endpoint errors instead of dropping unstaking positions silently, and makes TezosAccount.stakingPositions and TezosAccountRaw.tezosResources optional to match runtime shape (LIVE-29544). LWD stake-flow modal switches to the shared AmountField (Switch toggle for max, matching Solana/Cosmos), skips AmountRequired in validateStakeConstraints when useAllAmount is true so the bridge can resolve the stake max, gates StepDeviceDelegation/StepDeviceStaking on transaction.fees to avoid FeeNotLoaded after Continue, and suppresses bridge errors while the new delegation propagates so the first step doesn't flash red. LWD unstake-flow modal also adopts the shared AmountField (crypto + fiat fields, Use Max Switch); validateUnstakeConstraints + calculateAmounts resolve unstake useAllAmount to the full stakedBalance and estimateFees coerces a min amount for unstake-max so Taquito estimation succeeds.
- [#17888](https://github.com/LedgerHQ/ledger-live/pull/17888) [`b8494cf`](https://github.com/LedgerHQ/ledger-live/commit/b8494cff07e012cfd036c79d4a486b42c94922a2) Thanks [@amaslakov](https://github.com/amaslakov)! - Fix Tezos stake "Use Max" to exclude already-staked funds (was offering the full balance).
- [#17886](https://github.com/LedgerHQ/ledger-live/pull/17886) [`13060af`](https://github.com/LedgerHQ/ledger-live/commit/13060af9e6973aa6fd350a6257bea8544dc261be) Thanks [@amaslakov](https://github.com/amaslakov)! - Fix the Tezos "Earn" flow for accounts that are already delegated. Pressing Earn (from the account header or the delegation panel) on a delegated account now opens the staking flow instead of a delegation, which the node rejects as `delegate.unchanged`. When the staking feature is disabled and a re-delegation to the current baker is attempted, the error is now shown as "Your account is already delegated to this validator" instead of a missing translation key.
### Patch Changes
- Updated dependencies [[`812538e`](https://github.com/LedgerHQ/ledger-live/commit/812538e1788cf63aa3166d3842f0b27248400690), [`5fc817a`](https://github.com/LedgerHQ/ledger-live/commit/5fc817a5ee316396a327e5b10eccd8314bfb2df5), [`177e07f`](https://github.com/LedgerHQ/ledger-live/commit/177e07ffc6c733b4b9811d6f7dff6b75a106075c), [`44fd893`](https://github.com/LedgerHQ/ledger-live/commit/44fd8931435a52232cfd5abed3fec7a5b275a9be), [`5e2b764`](https://github.com/LedgerHQ/ledger-live/commit/5e2b76429c0b3024782dc179875a24c5f2655274), [`73afced`](https://github.com/LedgerHQ/ledger-live/commit/73afced223c37efeb24943ffb9cc1ee788b72a6f)]:
- @ledgerhq/types-live@6.110.0
- @ledgerhq/cryptoassets@13.50.0
- @ledgerhq/ledger-wallet-framework@2.0.0
- @ledgerhq/devices@8.15.0
- @ledgerhq/live-network@2.6.3
## 7.4.0-next.0
### Minor Changes
- [#17706](https://github.com/LedgerHQ/ledger-live/pull/17706) [`6f00871`](https://github.com/LedgerHQ/ledger-live/commit/6f00871f7bbef39a98fb32b7695576f83458d588) Thanks [@amaslakov](https://github.com/amaslakov)! - feat(tezos): per-request unstaking positions with dates, surfaced through useTezosStakingInfo.unstakingPositions; LWD account page gains Staking + Unstaking sections (with 4-day countdown) and a unified Earn entry point that opens the delegate/stake choice modal, all gated by lldTezosStaking. Also unblocks the dashboard for Paris-upgrade accounts that lack tezosResources, propagates TzKT unstake endpoint errors instead of dropping unstaking positions silently, and makes TezosAccount.stakingPositions and TezosAccountRaw.tezosResources optional to match runtime shape (LIVE-29544). LWD stake-flow modal switches to the shared AmountField (Switch toggle for max, matching Solana/Cosmos), skips AmountRequired in validateStakeConstraints when useAllAmount is true so the bridge can resolve the stake max, gates StepDeviceDelegation/StepDeviceStaking on transaction.fees to avoid FeeNotLoaded after Continue, and suppresses bridge errors while the new delegation propagates so the first step doesn't flash red. LWD unstake-flow modal also adopts the shared AmountField (crypto + fiat fields, Use Max Switch); validateUnstakeConstraints + calculateAmounts resolve unstake useAllAmount to the full stakedBalance and estimateFees coerces a min amount for unstake-max so Taquito estimation succeeds.
- [#17888](https://github.com/LedgerHQ/ledger-live/pull/17888) [`b8494cf`](https://github.com/LedgerHQ/ledger-live/commit/b8494cff07e012cfd036c79d4a486b42c94922a2) Thanks [@amaslakov](https://github.com/amaslakov)! - Fix Tezos stake "Use Max" to exclude already-staked funds (was offering the full balance).
- [#17886](https://github.com/LedgerHQ/ledger-live/pull/17886) [`13060af`](https://github.com/LedgerHQ/ledger-live/commit/13060af9e6973aa6fd350a6257bea8544dc261be) Thanks [@amaslakov](https://github.com/amaslakov)! - Fix the Tezos "Earn" flow for accounts that are already delegated. Pressing Earn (from the account header or the delegation panel) on a delegated account now opens the staking flow instead of a delegation, which the node rejects as `delegate.unchanged`. When the staking feature is disabled and a re-delegation to the current baker is attempted, the error is now shown as "Your account is already delegated to this validator" instead of a missing translation key.
### Patch Changes
- Updated dependencies [[`812538e`](https://github.com/LedgerHQ/ledger-live/commit/812538e1788cf63aa3166d3842f0b27248400690), [`5fc817a`](https://github.com/LedgerHQ/ledger-live/commit/5fc817a5ee316396a327e5b10eccd8314bfb2df5), [`177e07f`](https://github.com/LedgerHQ/ledger-live/commit/177e07ffc6c733b4b9811d6f7dff6b75a106075c), [`44fd893`](https://github.com/LedgerHQ/ledger-live/commit/44fd8931435a52232cfd5abed3fec7a5b275a9be), [`5e2b764`](https://github.com/LedgerHQ/ledger-live/commit/5e2b76429c0b3024782dc179875a24c5f2655274), [`73afced`](https://github.com/LedgerHQ/ledger-live/commit/73afced223c37efeb24943ffb9cc1ee788b72a6f)]:
- @ledgerhq/types-live@6.110.0-next.0
- @ledgerhq/cryptoassets@13.50.0-next.0
- @ledgerhq/ledger-wallet-framework@2.0.0-next.0
- @ledgerhq/devices@8.15.0-next.0
- @ledgerhq/live-network@2.6.3-next.0
## 7.3.0
### Minor Changes
- [#17253](https://github.com/LedgerHQ/ledger-live/pull/17253) [`fe04e44`](https://github.com/LedgerHQ/ledger-live/commit/fe04e44e0cd41ea9dd896defcea18c010fe36490) Thanks [@live-github-bot](https://github.com/apps/live-github-bot)! - chore(ADR-025): rename `AlpacaApi` -> `CoinModuleApi`
- [#17466](https://github.com/LedgerHQ/ledger-live/pull/17466) [`990438b`](https://github.com/LedgerHQ/ledger-live/commit/990438bee754d772fa7ca9cca1d083aaf3ac8ec9) Thanks [@amaslakov](https://github.com/amaslakov)! - Fall back to requestedAmount (or 0) when parsing failed staking operations from TzKT. Failed stake ops return only requestedAmount and no amount field;
BigInt(undefined) was throwing and stalling account sync on any account that has a failed staking operation in its history.
### Patch Changes
- Updated dependencies [[`839537d`](https://github.com/LedgerHQ/ledger-live/commit/839537d42f9c2bf87ad0faf64e51966250976055), [`ef47541`](https://github.com/LedgerHQ/ledger-live/commit/ef47541f67995474a82446c416e0825623b5d063), [`a04a4c0`](https://github.com/LedgerHQ/ledger-live/commit/a04a4c0a8bbee5140f685836014409e98af33d02), [`9b75461`](https://github.com/LedgerHQ/ledger-live/commit/9b754610e67e4d31d3d49b566ba1590194265c6f), [`822bc92`](https://github.com/LedgerHQ/ledger-live/commit/822bc92945248ddd31304aa7ca90854c849d217f), [`62ec3e5`](https://github.com/LedgerHQ/ledger-live/commit/62ec3e5917ceee80c0384eea6ee0901faa58b08a), [`9ccd154`](https://github.com/LedgerHQ/ledger-live/commit/9ccd1540f6ea912107d9651fa9b66ffd12948111), [`603f343`](https://github.com/LedgerHQ/ledger-live/commit/603f343d64c9b69a5708b419eb7ebfe7cec94554), [`a61f904`](https://github.com/LedgerHQ/ledger-live/commit/a61f90478795bff6956d2a9083ec47d44e6e9a46), [`5de991c`](https://github.com/LedgerHQ/ledger-live/commit/5de991c8686f473d2323b9c6536c53b7badf5f3d)]:
- @ledgerhq/cryptoassets@13.49.0
- @ledgerhq/types-live@6.109.0
- @ledgerhq/ledger-wallet-framework@1.6.0
- @ledgerhq/live-network@2.6.2
## 7.3.0-next.0
### Minor Changes
- [#17253](https://github.com/LedgerHQ/ledger-live/pull/17253) [`fe04e44`](https://github.com/LedgerHQ/ledger-live/commit/fe04e44e0cd41ea9dd896defcea18c010fe36490) Thanks [@live-github-bot](https://github.com/apps/live-github-bot)! - chore(ADR-025): rename `AlpacaApi` -> `CoinModuleApi`
- [#17466](https://github.com/LedgerHQ/ledger-live/pull/17466) [`990438b`](https://github.com/LedgerHQ/ledger-live/commit/990438bee754d772fa7ca9cca1d083aaf3ac8ec9) Thanks [@amaslakov](https://github.com/amaslakov)! - Fall back to requestedAmount (or 0) when parsing failed staking operations from TzKT. Failed stake ops return only requestedAmount and no amount field;
BigInt(undefined) was throwing and stalling account sync on any account that has a failed staking operation in its history.
### Patch Changes
- Updated dependencies [[`839537d`](https://github.com/LedgerHQ/ledger-live/commit/839537d42f9c2bf87ad0faf64e51966250976055), [`ef47541`](https://github.com/LedgerHQ/ledger-live/commit/ef47541f67995474a82446c416e0825623b5d063), [`a04a4c0`](https://github.com/LedgerHQ/ledger-live/commit/a04a4c0a8bbee5140f685836014409e98af33d02), [`9b75461`](https://github.com/LedgerHQ/ledger-live/commit/9b754610e67e4d31d3d49b566ba1590194265c6f), [`822bc92`](https://github.com/LedgerHQ/ledger-live/commit/822bc92945248ddd31304aa7ca90854c849d217f), [`62ec3e5`](https://github.com/LedgerHQ/ledger-live/commit/62ec3e5917ceee80c0384eea6ee0901faa58b08a), [`9ccd154`](https://github.com/LedgerHQ/ledger-live/commit/9ccd1540f6ea912107d9651fa9b66ffd12948111), [`603f343`](https://github.com/LedgerHQ/ledger-live/commit/603f343d64c9b69a5708b419eb7ebfe7cec94554), [`a61f904`](https://github.com/LedgerHQ/ledger-live/commit/a61f90478795bff6956d2a9083ec47d44e6e9a46), [`5de991c`](https://github.com/LedgerHQ/ledger-live/commit/5de991c8686f473d2323b9c6536c53b7badf5f3d)]:
- @ledgerhq/cryptoassets@13.49.0-next.0
- @ledgerhq/types-live@6.109.0-next.0
- @ledgerhq/ledger-wallet-framework@1.6.0-next.0
- @ledgerhq/live-network@2.6.2-next.0
## 7.2.0
### Minor Changes
- [#17354](https://github.com/LedgerHQ/ledger-live/pull/17354) [`8e80e39`](https://github.com/LedgerHQ/ledger-live/commit/8e80e39c2e1cf0edcd2ca3079d75b302604c4359) Thanks [@cted-ledger](https://github.com/cted-ledger)! - fix(coin-tezos): include tokenId in FA2 assetReference format (LIVE-30344)
- [#17213](https://github.com/LedgerHQ/ledger-live/pull/17213) [`df45280`](https://github.com/LedgerHQ/ledger-live/commit/df45280fc0a148d4138308b9ee1d7076c576f749) Thanks [@YazhuEth](https://github.com/YazhuEth)! - chore: remove @taquito/ledger-signer dependency, replace with direct hw-app-tezos calls
- [#17067](https://github.com/LedgerHQ/ledger-live/pull/17067) [`53ad83a`](https://github.com/LedgerHQ/ledger-live/commit/53ad83ada17bba367a841c55d5772ac844cc5923) Thanks [@UmbrellaHoodies](https://github.com/UmbrellaHoodies)! - validateIntent staking
- [#17298](https://github.com/LedgerHQ/ledger-live/pull/17298) [`d20d764`](https://github.com/LedgerHQ/ledger-live/commit/d20d764d3485572353b17690581ee59f8d029afe) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - fix(coin-tezos): move `computeIntentType` to `BridgeApi`
- [#17174](https://github.com/LedgerHQ/ledger-live/pull/17174) [`6e832a0`](https://github.com/LedgerHQ/ledger-live/commit/6e832a044bd7abb704f0a45ea782e55c1b25487c) Thanks [@amaslakov](https://github.com/amaslakov)! - Surface Tezos staking positions on the synced account: the generic alpaca `getAccountShape` now branches on a new opt-in `BridgeApi.usesStakingPositions` flag and emits per-position entries (with `delegation-*` / `stake-*` / `unstaking-*` / `finalizable-*` uid prefixes from the Paris upgrade) on `account.stakingPositions` instead of the EVM-shaped `stakingResources` aggregate. Amounts are exposed as `BigNumber` to match the Account-side convention used by `balance`, `spendableBalance`, and `stakingResources`. Adds `coin-tezos` `assignTo/FromAccountRaw` hooks to round-trip these positions through persistence.
- [#17067](https://github.com/LedgerHQ/ledger-live/pull/17067) [`88fc364`](https://github.com/LedgerHQ/ledger-live/commit/88fc364c5b33f2a3116dc9d79c9a078d4efa9c02) Thanks [@UmbrellaHoodies](https://github.com/UmbrellaHoodies)! - Add support for the `finalize_unstake` Tezos intent in transaction crafting, and fix stake-related amount handling so stake, unstake, and finalize_unstake intents are passed through correctly.
- [#17382](https://github.com/LedgerHQ/ledger-live/pull/17382) [`d3c63ef`](https://github.com/LedgerHQ/ledger-live/commit/d3c63ef360b4380487b560672098eb86c4600e11) Thanks [@ypolishchuk-ledger](https://github.com/ypolishchuk-ledger)! - Fix "Unable to normalize sender public key" on tz1 first-tx delegation/send
normalizePublicKeyForAddress did not strip the leading curve-prefix byte from
the 33-byte ED25519 payload returned by the Ledger Tezos app, producing a b58
string without the `edpk` prefix that craftTransaction rejected before any APDU
was sent. The function is now curve-aware and explicitly handles the 33-byte
ED25519 format (introduced when `@taquito/ledger-signer` was removed in favor
of `hw-app-tezos`), the 32-byte raw ED25519 form, and SEC1 33/65-byte shapes
for tz2/tz3. Malformed tz1 inputs now return undefined rather than emitting
a bogus key. Regression tests cover the production payload captured from CI.
- [#17319](https://github.com/LedgerHQ/ledger-live/pull/17319) [`eb13300`](https://github.com/LedgerHQ/ledger-live/commit/eb133007ea71c087b4707b5e7d5d83019e66d29c) Thanks [@cted-ledger](https://github.com/cted-ledger)! - Fix pagination when native and tokens pages are not full
### Patch Changes
- Updated dependencies [[`f39fede`](https://github.com/LedgerHQ/ledger-live/commit/f39fede0a6eb4e427a15219e5a3c8fbc3302815f), [`b812751`](https://github.com/LedgerHQ/ledger-live/commit/b8127519474e63c543b1b937a2d3b11ad162a78e), [`3b746ee`](https://github.com/LedgerHQ/ledger-live/commit/3b746eea7f3f2be633947e8e9112987457c864a5), [`1368afd`](https://github.com/LedgerHQ/ledger-live/commit/1368afdc7218a68c803672e6e412f8f9f6e62142), [`abdb866`](https://github.com/LedgerHQ/ledger-live/commit/abdb8662fba3784399a747ece63a11cc4f6e23bb), [`3cd7abb`](https://github.com/LedgerHQ/ledger-live/commit/3cd7abb4d6f6072bad62073108d797faf23f9e8c), [`c6170d7`](https://github.com/LedgerHQ/ledger-live/commit/c6170d7b61bc37ef80f8d3e5e608611f9b8ecd67), [`912e673`](https://github.com/LedgerHQ/ledger-live/commit/912e673368baa0342316c882653768d570b71262), [`6e832a0`](https://github.com/LedgerHQ/ledger-live/commit/6e832a044bd7abb704f0a45ea782e55c1b25487c), [`2257d43`](https://github.com/LedgerHQ/ledger-live/commit/2257d43630933127549300f39ade1e2b01f94cb8), [`08762c2`](https://github.com/LedgerHQ/ledger-live/commit/08762c286e38136293108c19efa72ae8fbd1286b)]:
- @ledgerhq/types-live@6.108.0
- @ledgerhq/ledger-wallet-framework@1.5.0
- @ledgerhq/cryptoassets@13.48.0
- @ledgerhq/live-network@2.6.1
## 7.2.0-next.0
### Minor Changes
- [#17354](https://github.com/LedgerHQ/ledger-live/pull/17354) [`8e80e39`](https://github.com/LedgerHQ/ledger-live/commit/8e80e39c2e1cf0edcd2ca3079d75b302604c4359) Thanks [@cted-ledger](https://github.com/cted-ledger)! - fix(coin-tezos): include tokenId in FA2 assetReference format (LIVE-30344)
- [#17213](https://github.com/LedgerHQ/ledger-live/pull/17213) [`df45280`](https://github.com/LedgerHQ/ledger-live/commit/df45280fc0a148d4138308b9ee1d7076c576f749) Thanks [@YazhuEth](https://github.com/YazhuEth)! - chore: remove @taquito/ledger-signer dependency, replace with direct hw-app-tezos calls
- [#17067](https://github.com/LedgerHQ/ledger-live/pull/17067) [`53ad83a`](https://github.com/LedgerHQ/ledger-live/commit/53ad83ada17bba367a841c55d5772ac844cc5923) Thanks [@UmbrellaHoodies](https://github.com/UmbrellaHoodies)! - validateIntent staking
- [#17298](https://github.com/LedgerHQ/ledger-live/pull/17298) [`d20d764`](https://github.com/LedgerHQ/ledger-live/commit/d20d764d3485572353b17690581ee59f8d029afe) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - fix(coin-tezos): move `computeIntentType` to `BridgeApi`
- [#17174](https://github.com/LedgerHQ/ledger-live/pull/17174) [`6e832a0`](https://github.com/LedgerHQ/ledger-live/commit/6e832a044bd7abb704f0a45ea782e55c1b25487c) Thanks [@amaslakov](https://github.com/amaslakov)! - Surface Tezos staking positions on the synced account: the generic alpaca `getAccountShape` now branches on a new opt-in `BridgeApi.usesStakingPositions` flag and emits per-position entries (with `delegation-*` / `stake-*` / `unstaking-*` / `finalizable-*` uid prefixes from the Paris upgrade) on `account.stakingPositions` instead of the EVM-shaped `stakingResources` aggregate. Amounts are exposed as `BigNumber` to match the Account-side convention used by `balance`, `spendableBalance`, and `stakingResources`. Adds `coin-tezos` `assignTo/FromAccountRaw` hooks to round-trip these positions through persistence.
- [#17067](https://github.com/LedgerHQ/ledger-live/pull/17067) [`88fc364`](https://github.com/LedgerHQ/ledger-live/commit/88fc364c5b33f2a3116dc9d79c9a078d4efa9c02) Thanks [@UmbrellaHoodies](https://github.com/UmbrellaHoodies)! - Add support for the `finalize_unstake` Tezos intent in transaction crafting, and fix stake-related amount handling so stake, unstake, and finalize_unstake intents are passed through correctly.
- [#17382](https://github.com/LedgerHQ/ledger-live/pull/17382) [`d3c63ef`](https://github.com/LedgerHQ/ledger-live/commit/d3c63ef360b4380487b560672098eb86c4600e11) Thanks [@ypolishchuk-ledger](https://github.com/ypolishchuk-ledger)! - Fix "Unable to normalize sender public key" on tz1 first-tx delegation/send
normalizePublicKeyForAddress did not strip the leading curve-prefix byte from
the 33-byte ED25519 payload returned by the Ledger Tezos app, producing a b58
string without the `edpk` prefix that craftTransaction rejected before any APDU
was sent. The function is now curve-aware and explicitly handles the 33-byte
ED25519 format (introduced when `@taquito/ledger-signer` was removed in favor
of `hw-app-tezos`), the 32-byte raw ED25519 form, and SEC1 33/65-byte shapes
for tz2/tz3. Malformed tz1 inputs now return undefined rather than emitting
a bogus key. Regression tests cover the production payload captured from CI.
- [#17319](https://github.com/LedgerHQ/ledger-live/pull/17319) [`eb13300`](https://github.com/LedgerHQ/ledger-live/commit/eb133007ea71c087b4707b5e7d5d83019e66d29c) Thanks [@cted-ledger](https://github.com/cted-ledger)! - Fix pagination when native and tokens pages are not full
### Patch Changes
- Updated dependencies [[`f39fede`](https://github.com/LedgerHQ/ledger-live/commit/f39fede0a6eb4e427a15219e5a3c8fbc3302815f), [`b812751`](https://github.com/LedgerHQ/ledger-live/commit/b8127519474e63c543b1b937a2d3b11ad162a78e), [`3b746ee`](https://github.com/LedgerHQ/ledger-live/commit/3b746eea7f3f2be633947e8e9112987457c864a5), [`1368afd`](https://github.com/LedgerHQ/ledger-live/commit/1368afdc7218a68c803672e6e412f8f9f6e62142), [`abdb866`](https://github.com/LedgerHQ/ledger-live/commit/abdb8662fba3784399a747ece63a11cc4f6e23bb), [`3cd7abb`](https://github.com/LedgerHQ/ledger-live/commit/3cd7abb4d6f6072bad62073108d797faf23f9e8c), [`c6170d7`](https://github.com/LedgerHQ/ledger-live/commit/c6170d7b61bc37ef80f8d3e5e608611f9b8ecd67), [`912e673`](https://github.com/LedgerHQ/ledger-live/commit/912e673368baa0342316c882653768d570b71262), [`6e832a0`](https://github.com/LedgerHQ/ledger-live/commit/6e832a044bd7abb704f0a45ea782e55c1b25487c), [`2257d43`](https://github.com/LedgerHQ/ledger-live/commit/2257d43630933127549300f39ade1e2b01f94cb8), [`08762c2`](https://github.com/LedgerHQ/ledger-live/commit/08762c286e38136293108c19efa72ae8fbd1286b)]:
- @ledgerhq/types-live@6.108.0-next.0
- @ledgerhq/ledger-wallet-framework@1.5.0-next.0
- @ledgerhq/cryptoassets@13.48.0-next.0
- @ledgerhq/live-network@2.6.1-next.0
## 7.1.0
### Minor Changes
- [#16850](https://github.com/LedgerHQ/ledger-live/pull/16850) [`e1f72f7`](https://github.com/LedgerHQ/ledger-live/commit/e1f72f7f22db6ffbf5cb12ef97a040cffc12628d) Thanks [@acewf](https://github.com/acewf)! - fix Tezos operation pagination so native and FA2 ops sharing the same tx hash stay on one page
- [#16824](https://github.com/LedgerHQ/ledger-live/pull/16824) [`8d53b53`](https://github.com/LedgerHQ/ledger-live/commit/8d53b53ea1fb9468c9fc8e4212283385c0588eb4) Thanks [@amaslakov](https://github.com/amaslakov)! - Declare stake, unstake, finalize_unstake intents in supportedFeatures.staking_txs
- [#16711](https://github.com/LedgerHQ/ledger-live/pull/16711) [`b26a2d4`](https://github.com/LedgerHQ/ledger-live/commit/b26a2d42ed85ab9acca1edd33e14543fa702c691) Thanks [@acewf](https://github.com/acewf)! - include only transactions with block and transfer hash
- [#16912](https://github.com/LedgerHQ/ledger-live/pull/16912) [`f5575f3`](https://github.com/LedgerHQ/ledger-live/commit/f5575f3a7ce0506454d0333a533232d945368f12) Thanks [@amaslakov](https://github.com/amaslakov)! - Reflect Paris staking positions in `getBalance` and `getStakes`. Both now expose up to three native staking entries per account: a delegation position (uid `delegation-{address}`, amount = `balance - stakedBalance`) when a delegate is set, an active staking position (uid `stake-{address}`, amount = `stakedBalance`) when `stakedBalance > 0`, and a deactivating unstake position (uid `unstaking-{address}`, amount = `unstakedBalance`, state `deactivating`) when `unstakedBalance > 0`. The native `Balance.value` continues to reflect `apiAccount.balance`.
- [#16966](https://github.com/LedgerHQ/ledger-live/pull/16966) [`422b893`](https://github.com/LedgerHQ/ledger-live/commit/422b8932c56c348828b508d5f808bdc8a1acc400) Thanks [@amaslakov](https://github.com/amaslakov)! - Surface Paris staking operations through `listOperations` and `getBlock`. TzKT `type: "staking"` ops are now parsed and emitted with operation types `STAKE`, `UNSTAKE`, and `FINALIZE_UNSTAKE`. `getBlock` additionally fetches `staking` ops via `fetchBlockStaking` and merges them into the block's `BlockTransaction` list with `details.operationType` set. `APIStakingType` was corrected to use `action` (the actual TzKT field name) rather than `kind`, with `staker`, `baker`, `requestedAmount`, `stakingUpdatesCount`, and `counter` typed as well.
- [#16534](https://github.com/LedgerHQ/ledger-live/pull/16534) [`6a5014d`](https://github.com/LedgerHQ/ledger-live/commit/6a5014dde4f6248d571c8d650ca4daac76038c8a) Thanks [@UmbrellaHoodies](https://github.com/UmbrellaHoodies)! - add support for fetching staking operations at block level
- [#16926](https://github.com/LedgerHQ/ledger-live/pull/16926) [`a66dc98`](https://github.com/LedgerHQ/ledger-live/commit/a66dc9868a6dbd977c2dcb392e61f412819dd5a2) Thanks [@amaslakov](https://github.com/amaslakov)! - Migrate Tezos integration tests off Ghostnet to Shadownet (Ghostnet was deprecated in early 2026, its TzKT and RPC endpoints stopped resolving). Pinned a persistent Shadownet test account (`tz1dKrT1...`) with reveal/delegation/stake/unstake history, plus a tz2 (`tz29GPjg...`) and a registered baker as a delegate target. `getBlock` and `getBlockInfo` integ tests now pin block 3113219. `craftTransaction.integ.test.ts` only had a stale Ghostnet docstring — updated to reflect that it actually runs against mainnet via the Ledger vault explorer.
- [#16868](https://github.com/LedgerHQ/ledger-live/pull/16868) [`c84fde4`](https://github.com/LedgerHQ/ledger-live/commit/c84fde4096549ce023b582618e862b1106333681) Thanks [@amaslakov](https://github.com/amaslakov)! - Support stake, unstake, finalize_unstake in craftTransaction
- [#16614](https://github.com/LedgerHQ/ledger-live/pull/16614) [`270dba5`](https://github.com/LedgerHQ/ledger-live/commit/270dba5f4a80dd66527bf2ebfe961710118141d1) Thanks [@UmbrellaHoodies](https://github.com/UmbrellaHoodies)! - Add stake/unstake/finalize_unstake support in fee estimation
### Patch Changes
- Updated dependencies [[`ed0dc8a`](https://github.com/LedgerHQ/ledger-live/commit/ed0dc8abc2c8f5054e655c4e12efe6fb433fbaca), [`4ddd97a`](https://github.com/LedgerHQ/ledger-live/commit/4ddd97a99bab5b581ad5ccfd36eb420ec4ee6352), [`7fafa10`](https://github.com/LedgerHQ/ledger-live/commit/7fafa10d8af581f4433a60ea908980a726d3a777), [`ac26c8b`](https://github.com/LedgerHQ/ledger-live/commit/ac26c8bffa9b5cc9f28bed5ce3d44e32982d655c), [`fb79639`](https://github.com/LedgerHQ/ledger-live/commit/fb79639eb81258bae4830ed6ffe375ae625054ad), [`0d11df6`](https://github.com/LedgerHQ/ledger-live/commit/0d11df6ef8dc781171071824ad1c39e3beed7730), [`321a0e2`](https://github.com/LedgerHQ/ledger-live/commit/321a0e2ce948fac11f7bdf0e106eb0af57168caa), [`d308b1a`](https://github.com/LedgerHQ/ledger-live/commit/d308b1a6b9c629839f051cf367a527f4232120c7), [`21e69fe`](https://github.com/LedgerHQ/ledger-live/commit/21e69fea49cffc0b1204903e539a64b83e4b28f0), [`e6dc658`](https://github.com/LedgerHQ/ledger-live/commit/e6dc658b83ebd2102e19a1fead021443457c05d9), [`fb4d165`](https://github.com/LedgerHQ/ledger-live/commit/fb4d1656be8dc8e933e55600970a2e991fbaeebb), [`5bd95a9`](https://github.com/LedgerHQ/ledger-live/commit/5bd95a9ceaac4d08c87d635f721265357368f8ee), [`73bfe05`](https://github.com/LedgerHQ/ledger-live/commit/73bfe055ec23e0d630f2da9f4dbc9731b6fe5190)]:
- @ledgerhq/types-live@6.107.0
- @ledgerhq/ledger-wallet-framework@1.4.0
- @ledgerhq/errors@6.35.0
- @ledgerhq/cryptoassets@13.47.0
- @ledgerhq/live-network@2.6.0
- @ledgerhq/devices@8.14.2
## 7.1.0-next.1
### Patch Changes
- Updated dependencies [[`e6dc658`](https://github.com/LedgerHQ/ledger-live/commit/e6dc658b83ebd2102e19a1fead021443457c05d9)]:
- @ledgerhq/cryptoassets@13.47.0-next.1
- @ledgerhq/ledger-wallet-framework@1.4.0-next.1
## 7.1.0-next.0
### Minor Changes
- [#16850](https://github.com/LedgerHQ/ledger-live/pull/16850) [`e1f72f7`](https://github.com/LedgerHQ/ledger-live/commit/e1f72f7f22db6ffbf5cb12ef97a040cffc12628d) Thanks [@acewf](https://github.com/acewf)! - fix Tezos operation pagination so native and FA2 ops sharing the same tx hash stay on one page
- [#16824](https://github.com/LedgerHQ/ledger-live/pull/16824) [`8d53b53`](https://github.com/LedgerHQ/ledger-live/commit/8d53b53ea1fb9468c9fc8e4212283385c0588eb4) Thanks [@amaslakov](https://github.com/amaslakov)! - Declare stake, unstake, finalize_unstake intents in supportedFeatures.staking_txs
- [#16711](https://github.com/LedgerHQ/ledger-live/pull/16711) [`b26a2d4`](https://github.com/LedgerHQ/ledger-live/commit/b26a2d42ed85ab9acca1edd33e14543fa702c691) Thanks [@acewf](https://github.com/acewf)! - include only transactions with block and transfer hash
- [#16912](https://github.com/LedgerHQ/ledger-live/pull/16912) [`f5575f3`](https://github.com/LedgerHQ/ledger-live/commit/f5575f3a7ce0506454d0333a533232d945368f12) Thanks [@amaslakov](https://github.com/amaslakov)! - Reflect Paris staking positions in `getBalance` and `getStakes`. Both now expose up to three native staking entries per account: a delegation position (uid `delegation-{address}`, amount = `balance - stakedBalance`) when a delegate is set, an active staking position (uid `stake-{address}`, amount = `stakedBalance`) when `stakedBalance > 0`, and a deactivating unstake position (uid `unstaking-{address}`, amount = `unstakedBalance`, state `deactivating`) when `unstakedBalance > 0`. The native `Balance.value` continues to reflect `apiAccount.balance`.
- [#16966](https://github.com/LedgerHQ/ledger-live/pull/16966) [`422b893`](https://github.com/LedgerHQ/ledger-live/commit/422b8932c56c348828b508d5f808bdc8a1acc400) Thanks [@amaslakov](https://github.com/amaslakov)! - Surface Paris staking operations through `listOperations` and `getBlock`. TzKT `type: "staking"` ops are now parsed and emitted with operation types `STAKE`, `UNSTAKE`, and `FINALIZE_UNSTAKE`. `getBlock` additionally fetches `staking` ops via `fetchBlockStaking` and merges them into the block's `BlockTransaction` list with `details.operationType` set. `APIStakingType` was corrected to use `action` (the actual TzKT field name) rather than `kind`, with `staker`, `baker`, `requestedAmount`, `stakingUpdatesCount`, and `counter` typed as well.
- [#16534](https://github.com/LedgerHQ/ledger-live/pull/16534) [`6a5014d`](https://github.com/LedgerHQ/ledger-live/commit/6a5014dde4f6248d571c8d650ca4daac76038c8a) Thanks [@UmbrellaHoodies](https://github.com/UmbrellaHoodies)! - add support for fetching staking operations at block level
- [#16926](https://github.com/LedgerHQ/ledger-live/pull/16926) [`a66dc98`](https://github.com/LedgerHQ/ledger-live/commit/a66dc9868a6dbd977c2dcb392e61f412819dd5a2) Thanks [@amaslakov](https://github.com/amaslakov)! - Migrate Tezos integration tests off Ghostnet to Shadownet (Ghostnet was deprecated in early 2026, its TzKT and RPC endpoints stopped resolving). Pinned a persistent Shadownet test account (`tz1dKrT1...`) with reveal/delegation/stake/unstake history, plus a tz2 (`tz29GPjg...`) and a registered baker as a delegate target. `getBlock` and `getBlockInfo` integ tests now pin block 3113219. `craftTransaction.integ.test.ts` only had a stale Ghostnet docstring — updated to reflect that it actually runs against mainnet via the Ledger vault explorer.
- [#16868](https://github.com/LedgerHQ/ledger-live/pull/16868) [`c84fde4`](https://github.com/LedgerHQ/ledger-live/commit/c84fde4096549ce023b582618e862b1106333681) Thanks [@amaslakov](https://github.com/amaslakov)! - Support stake, unstake, finalize_unstake in craftTransaction
- [#16614](https://github.com/LedgerHQ/ledger-live/pull/16614) [`270dba5`](https://github.com/LedgerHQ/ledger-live/commit/270dba5f4a80dd66527bf2ebfe961710118141d1) Thanks [@UmbrellaHoodies](https://github.com/UmbrellaHoodies)! - Add stake/unstake/finalize_unstake support in fee estimation
### Patch Changes
- Updated dependencies [[`ed0dc8a`](https://github.com/LedgerHQ/ledger-live/commit/ed0dc8abc2c8f5054e655c4e12efe6fb433fbaca), [`4ddd97a`](https://github.com/LedgerHQ/ledger-live/commit/4ddd97a99bab5b581ad5ccfd36eb420ec4ee6352), [`7fafa10`](https://github.com/LedgerHQ/ledger-live/commit/7fafa10d8af581f4433a60ea908980a726d3a777), [`ac26c8b`](https://github.com/LedgerHQ/ledger-live/commit/ac26c8bffa9b5cc9f28bed5ce3d44e32982d655c), [`fb79639`](https://github.com/LedgerHQ/ledger-live/commit/fb79639eb81258bae4830ed6ffe375ae625054ad), [`0d11df6`](https://github.com/LedgerHQ/ledger-live/commit/0d11df6ef8dc781171071824ad1c39e3beed7730), [`321a0e2`](https://github.com/LedgerHQ/ledger-live/commit/321a0e2ce948fac11f7bdf0e106eb0af57168caa), [`d308b1a`](https://github.com/LedgerHQ/ledger-live/commit/d308b1a6b9c629839f051cf367a527f4232120c7), [`21e69fe`](https://github.com/LedgerHQ/ledger-live/commit/21e69fea49cffc0b1204903e539a64b83e4b28f0), [`fb4d165`](https://github.com/LedgerHQ/ledger-live/commit/fb4d1656be8dc8e933e55600970a2e991fbaeebb), [`5bd95a9`](https://github.com/LedgerHQ/ledger-live/commit/5bd95a9ceaac4d08c87d635f721265357368f8ee), [`73bfe05`](https://github.com/LedgerHQ/ledger-live/commit/73bfe055ec23e0d630f2da9f4dbc9731b6fe5190)]:
- @ledgerhq/types-live@6.107.0-next.0
- @ledgerhq/ledger-wallet-framework@1.4.0-next.0
- @ledgerhq/errors@6.35.0-next.0
- @ledgerhq/cryptoassets@13.47.0-next.0
- @ledgerhq/live-network@2.6.0-next.0
- @ledgerhq/devices@8.14.2-next.0
## 7.0.1
### Patch Changes
- Updated dependencies [[`202cc42`](https://github.com/LedgerHQ/ledger-live/commit/202cc423b09662b5b25012b84124aecd4dc7245d)]:
- @ledgerhq/errors@6.34.1
- @ledgerhq/ledger-wallet-framework@1.3.2
- @ledgerhq/cryptoassets@13.46.2
- @ledgerhq/devices@8.14.2
- @ledgerhq/live-network@2.5.2
## 7.0.1-hotfix.0
### Patch Changes
- Updated dependencies [[`202cc42`](https://github.com/LedgerHQ/ledger-live/commit/202cc423b09662b5b25012b84124aecd4dc7245d)]:
- @ledgerhq/errors@6.34.1-hotfix.0
- @ledgerhq/ledger-wallet-framework@1.3.2-hotfix.0
- @ledgerhq/cryptoassets@13.46.2-hotfix.0
- @ledgerhq/devices@8.14.2-hotfix.0
- @ledgerhq/live-network@2.5.2-hotfix.0
## 7.0.0
### Major Changes
- [#16500](https://github.com/LedgerHQ/ledger-live/pull/16500) [`9b05536`](https://github.com/LedgerHQ/ledger-live/commit/9b05536cbd86ab15f4a54536bc273cfe9ea6875a) Thanks [@UmbrellaHoodies](https://github.com/UmbrellaHoodies)! - extend TzKT network types with staking account and operation fields
- [#16537](https://github.com/LedgerHQ/ledger-live/pull/16537) [`53a5fb1`](https://github.com/LedgerHQ/ledger-live/commit/53a5fb111b6a6ec4b2c9faa031ff034321b1e7a7) Thanks [@UmbrellaHoodies](https://github.com/UmbrellaHoodies)! - feat(coin-tezos): add new operation modes (stake, unstake, finalize_unstake)
### Patch Changes
- Updated dependencies [[`fbff5f4`](https://github.com/LedgerHQ/ledger-live/commit/fbff5f407027cb2b24834fea53ef21a3ef93bf95), [`e377079`](https://github.com/LedgerHQ/ledger-live/commit/e3770793670b73d4409bd5be2081ca922e8679ac), [`45e134c`](https://github.com/LedgerHQ/ledger-live/commit/45e134c63f204444a5997109f4807447f51469ee)]:
- @ledgerhq/types-live@6.106.0
- @ledgerhq/ledger-wallet-framework@1.3.1
- @ledgerhq/cryptoassets@13.46.1
## 7.0.0-next.0
### Major Changes
- [#16500](https://github.com/LedgerHQ/ledger-live/pull/16500) [`9b05536`](https://github.com/LedgerHQ/ledger-live/commit/9b05536cbd86ab15f4a54536bc273cfe9ea6875a) Thanks [@UmbrellaHoodies](https://github.com/UmbrellaHoodies)! - extend TzKT network types with staking account and operation fields
- [#16537](https://github.com/LedgerHQ/ledger-live/pull/16537) [`53a5fb1`](https://github.com/LedgerHQ/ledger-live/commit/53a5fb111b6a6ec4b2c9faa031ff034321b1e7a7) Thanks [@UmbrellaHoodies](https://github.com/UmbrellaHoodies)! - feat(coin-tezos): add new operation modes (stake, unstake, finalize_unstake)
### Patch Changes
- Updated dependencies [[`fbff5f4`](https://github.com/LedgerHQ/ledger-live/commit/fbff5f407027cb2b24834fea53ef21a3ef93bf95), [`e377079`](https://github.com/LedgerHQ/ledger-live/commit/e3770793670b73d4409bd5be2081ca922e8679ac), [`45e134c`](https://github.com/LedgerHQ/ledger-live/commit/45e134c63f204444a5997109f4807447f51469ee)]:
- @ledgerhq/types-live@6.106.0-next.0
- @ledgerhq/ledger-wallet-framework@1.3.1-next.0
- @ledgerhq/cryptoassets@13.46.1-next.0
## 6.22.0
### Minor Changes
- [#15887](https://github.com/LedgerHQ/ledger-live/pull/15887) [`5fefc2e`](https://github.com/LedgerHQ/ledger-live/commit/5fefc2e6a4c6e4fdcaae0139f2f8d6f9011b33c8) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - Remove @ledgerhq/types-cryptoassets dependency from coin-framework by replacing CryptoCurrency parameters with currencyId strings in CoinConfig and getCurrencyConfiguration
- [#15974](https://github.com/LedgerHQ/ledger-live/pull/15974) [`7aa0706`](https://github.com/LedgerHQ/ledger-live/commit/7aa070618866e7a4c70876e674f07fde9630ccfb) Thanks [@qperrot](https://github.com/qperrot)! - Feat: Add support for tz2 (secp256k1) Tezos accounts in add account and signing flows, while preserving tz1 (Ed25519) as the default new account type
- [#15823](https://github.com/LedgerHQ/ledger-live/pull/15823) [`24656de`](https://github.com/LedgerHQ/ledger-live/commit/24656dea461d4d99dcb5f5e2e4b4e949b0823eeb) Thanks [@Moustafa-Koterba](https://github.com/Moustafa-Koterba)! - Reduce redundant eth_call calls to node by implementing includeAssets from BalanceOptions
- [#15679](https://github.com/LedgerHQ/ledger-live/pull/15679) [`c353f29`](https://github.com/LedgerHQ/ledger-live/commit/c353f29b9174c20c708662c160f55c597020ee58) Thanks [@iqbalibrahim-ledger](https://github.com/iqbalibrahim-ledger)! - chore(coin-modules): add oxfmt with shared config (Prettier parity)
- Add libs/coin-modules/.oxfmtrc.json aligned with root .prettierrc and desktop/mobile oxfmt
- Add format, format:check, and run oxfmt before oxlint in lint:fix; add oxfmt devDependency
- Remove coin-ton prettier script; turbo format/format:check tasks
- Initial oxfmt pass on src
- [#16068](https://github.com/LedgerHQ/ledger-live/pull/16068) [`8a4b151`](https://github.com/LedgerHQ/ledger-live/commit/8a4b1511dcac3bbd6066996aecd4dedbaf1f24c0) Thanks [@acewf](https://github.com/acewf)! - add craft transaction support for FA2 tokens
- [#15983](https://github.com/LedgerHQ/ledger-live/pull/15983) [`cd59c95`](https://github.com/LedgerHQ/ledger-live/commit/cd59c95d04bd886114802ca887e1209d2191eaee) Thanks [@acewf](https://github.com/acewf)! - add FA2 Tokens support to list of operations
- [#16057](https://github.com/LedgerHQ/ledger-live/pull/16057) [`e05af51`](https://github.com/LedgerHQ/ledger-live/commit/e05af511ba503a763acde2eb1ecc0e29b5ba3991) Thanks [@estrauser-ledger](https://github.com/estrauser-ledger)! - add fields to delegate txs in tezos getBlock
- [#15798](https://github.com/LedgerHQ/ledger-live/pull/15798) [`fd2311d`](https://github.com/LedgerHQ/ledger-live/commit/fd2311d643f4002c1441bfa4fe79d7288df04c21) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - chore: use `coin-module-framework` from npmjs and remove the now migrated `coin-framework`
### Patch Changes
- Updated dependencies [[`ad5a37d`](https://github.com/LedgerHQ/ledger-live/commit/ad5a37d077dced734defcd464f120825e7bbf5e9), [`2d5c7e0`](https://github.com/LedgerHQ/ledger-live/commit/2d5c7e0cc27f45babe247b39b513d4e848707b01), [`7aa0706`](https://github.com/LedgerHQ/ledger-live/commit/7aa070618866e7a4c70876e674f07fde9630ccfb), [`3b83607`](https://github.com/LedgerHQ/ledger-live/commit/3b83607a045142a8408784c92b57d8bde01445df), [`24656de`](https://github.com/LedgerHQ/ledger-live/commit/24656dea461d4d99dcb5f5e2e4b4e949b0823eeb), [`c910c1b`](https://github.com/LedgerHQ/ledger-live/commit/c910c1bd9b4f7fbcc0e33fe19b33da44085ab7f9), [`139cdbf`](https://github.com/LedgerHQ/ledger-live/commit/139cdbfd48120247ff54f5f7863ce866a6a755d0), [`4cf9b8c`](https://github.com/LedgerHQ/ledger-live/commit/4cf9b8cde388aebfe04a894e9a35584856d1713d), [`97d7278`](https://github.com/LedgerHQ/ledger-live/commit/97d727824cef6a5b5a2d034d9b029e4f977f1754), [`63b5b9a`](https://github.com/LedgerHQ/ledger-live/commit/63b5b9a3f3b88fa41f02983350cdb6e73a887839), [`46e78cf`](https://github.com/LedgerHQ/ledger-live/commit/46e78cf3a057a9de39a5abbb49fe779655db6507), [`cd59c95`](https://github.com/LedgerHQ/ledger-live/commit/cd59c95d04bd886114802ca887e1209d2191eaee), [`fd2311d`](https://github.com/LedgerHQ/ledger-live/commit/fd2311d643f4002c1441bfa4fe79d7288df04c21)]:
- @ledgerhq/cryptoassets@13.46.0
- @ledgerhq/types-live@6.105.0
- @ledgerhq/ledger-wallet-framework@1.3.0
- @ledgerhq/errors@6.34.0
- @ledgerhq/live-network@2.5.1
- @ledgerhq/devices@8.14.1
## 6.22.0-next.0
### Minor Changes
- [#15887](https://github.com/LedgerHQ/ledger-live/pull/15887) [`5fefc2e`](https://github.com/LedgerHQ/ledger-live/commit/5fefc2e6a4c6e4fdcaae0139f2f8d6f9011b33c8) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - Remove @ledgerhq/types-cryptoassets dependency from coin-framework by replacing CryptoCurrency parameters with currencyId strings in CoinConfig and getCurrencyConfiguration
- [#15974](https://github.com/LedgerHQ/ledger-live/pull/15974) [`7aa0706`](https://github.com/LedgerHQ/ledger-live/commit/7aa070618866e7a4c70876e674f07fde9630ccfb) Thanks [@qperrot](https://github.com/qperrot)! - Feat: Add support for tz2 (secp256k1) Tezos accounts in add account and signing flows, while preserving tz1 (Ed25519) as the default new account type
- [#15823](https://github.com/LedgerHQ/ledger-live/pull/15823) [`24656de`](https://github.com/LedgerHQ/ledger-live/commit/24656dea461d4d99dcb5f5e2e4b4e949b0823eeb) Thanks [@Moustafa-Koterba](https://github.com/Moustafa-Koterba)! - Reduce redundant eth_call calls to node by implementing includeAssets from BalanceOptions
- [#15679](https://github.com/LedgerHQ/ledger-live/pull/15679) [`c353f29`](https://github.com/LedgerHQ/ledger-live/commit/c353f29b9174c20c708662c160f55c597020ee58) Thanks [@iqbalibrahim-ledger](https://github.com/iqbalibrahim-ledger)! - chore(coin-modules): add oxfmt with shared config (Prettier parity)
- Add libs/coin-modules/.oxfmtrc.json aligned with root .prettierrc and desktop/mobile oxfmt
- Add format, format:check, and run oxfmt before oxlint in lint:fix; add oxfmt devDependency
- Remove coin-ton prettier script; turbo format/format:check tasks
- Initial oxfmt pass on src
- [#16068](https://github.com/LedgerHQ/ledger-live/pull/16068) [`8a4b151`](https://github.com/LedgerHQ/ledger-live/commit/8a4b1511dcac3bbd6066996aecd4dedbaf1f24c0) Thanks [@acewf](https://github.com/acewf)! - add craft transaction support for FA2 tokens
- [#15983](https://github.com/LedgerHQ/ledger-live/pull/15983) [`cd59c95`](https://github.com/LedgerHQ/ledger-live/commit/cd59c95d04bd886114802ca887e1209d2191eaee) Thanks [@acewf](https://github.com/acewf)! - add FA2 Tokens support to list of operations
- [#16057](https://github.com/LedgerHQ/ledger-live/pull/16057) [`e05af51`](https://github.com/LedgerHQ/ledger-live/commit/e05af511ba503a763acde2eb1ecc0e29b5ba3991) Thanks [@estrauser-ledger](https://github.com/estrauser-ledger)! - add fields to delegate txs in tezos getBlock
- [#15798](https://github.com/LedgerHQ/ledger-live/pull/15798) [`fd2311d`](https://github.com/LedgerHQ/ledger-live/commit/fd2311d643f4002c1441bfa4fe79d7288df04c21) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - chore: use `coin-module-framework` from npmjs and remove the now migrated `coin-framework`
### Patch Changes
- Updated dependencies [[`ad5a37d`](https://github.com/LedgerHQ/ledger-live/commit/ad5a37d077dced734defcd464f120825e7bbf5e9), [`2d5c7e0`](https://github.com/LedgerHQ/ledger-live/commit/2d5c7e0cc27f45babe247b39b513d4e848707b01), [`7aa0706`](https://github.com/LedgerHQ/ledger-live/commit/7aa070618866e7a4c70876e674f07fde9630ccfb), [`3b83607`](https://github.com/LedgerHQ/ledger-live/commit/3b83607a045142a8408784c92b57d8bde01445df), [`24656de`](https://github.com/LedgerHQ/ledger-live/commit/24656dea461d4d99dcb5f5e2e4b4e949b0823eeb), [`c910c1b`](https://github.com/LedgerHQ/ledger-live/commit/c910c1bd9b4f7fbcc0e33fe19b33da44085ab7f9), [`139cdbf`](https://github.com/LedgerHQ/ledger-live/commit/139cdbfd48120247ff54f5f7863ce866a6a755d0), [`4cf9b8c`](https://github.com/LedgerHQ/ledger-live/commit/4cf9b8cde388aebfe04a894e9a35584856d1713d), [`97d7278`](https://github.com/LedgerHQ/ledger-live/commit/97d727824cef6a5b5a2d034d9b029e4f977f1754), [`63b5b9a`](https://github.com/LedgerHQ/ledger-live/commit/63b5b9a3f3b88fa41f02983350cdb6e73a887839), [`46e78cf`](https://github.com/LedgerHQ/ledger-live/commit/46e78cf3a057a9de39a5abbb49fe779655db6507), [`cd59c95`](https://github.com/LedgerHQ/ledger-live/commit/cd59c95d04bd886114802ca887e1209d2191eaee), [`fd2311d`](https://github.com/LedgerHQ/ledger-live/commit/fd2311d643f4002c1441bfa4fe79d7288df04c21)]:
- @ledgerhq/cryptoassets@13.46.0-next.0
- @ledgerhq/types-live@6.105.0-next.0
- @ledgerhq/ledger-wallet-framework@1.3.0-next.0
- @ledgerhq/errors@6.34.0-next.0
- @ledgerhq/live-network@2.5.1-next.0
- @ledgerhq/devices@8.14.1-next.0
## 6.21.0
### Minor Changes
- [#15887](https://github.com/LedgerHQ/ledger-live/pull/15887) [`5fefc2e`](https://github.com/LedgerHQ/ledger-live/commit/5fefc2e6a4c6e4fdcaae0139f2f8d6f9011b33c8) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - Remove @ledgerhq/types-cryptoassets dependency from coin-framework by replacing CryptoCurrency parameters with currencyId strings in CoinConfig and getCurrencyConfiguration
- [#15850](https://github.com/LedgerHQ/ledger-live/pull/15850) [`46ea96a`](https://github.com/LedgerHQ/ledger-live/commit/46ea96aa050468d2d1b7aea8d03af47b8933e3a1) Thanks [@estrauser-ledger](https://github.com/estrauser-ledger)! - Add delegates in tezos getBlock for alpaca
- [#15861](https://github.com/LedgerHQ/ledger-live/pull/15861) [`ea43cc3`](https://github.com/LedgerHQ/ledger-live/commit/ea43cc3bcd85e0592fea91a671cb396f4c784d17) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - chore(llc): align Tezos signer in `generic-alpaca`
- [#15733](https://github.com/LedgerHQ/ledger-live/pull/15733) [`aecdaf7`](https://github.com/LedgerHQ/ledger-live/commit/aecdaf7b2c659da87cfbc19efed4a6e392f9ac34) Thanks [@acewf](https://github.com/acewf)! - Update getBalance to include FA2 token balances
- [#15679](https://github.com/LedgerHQ/ledger-live/pull/15679) [`c353f29`](https://github.com/LedgerHQ/ledger-live/commit/c353f29b9174c20c708662c160f55c597020ee58) Thanks [@iqbalibrahim-ledger](https://github.com/iqbalibrahim-ledger)! - chore(coin-modules): add oxfmt with shared config (Prettier parity)
- Add libs/coin-modules/.oxfmtrc.json aligned with root .prettierrc and desktop/mobile oxfmt
- Add format, format:check, and run oxfmt before oxlint in lint:fix; add oxfmt devDependency
- Remove coin-ton prettier script; turbo format/format:check tasks
- Initial oxfmt pass on src
- [#15798](https://github.com/LedgerHQ/ledger-live/pull/15798) [`fd2311d`](https://github.com/LedgerHQ/ledger-live/commit/fd2311d643f4002c1441bfa4fe79d7288df04c21) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - chore: use `coin-module-framework` from npmjs and remove the now migrated `coin-framework`
### Patch Changes
- Updated dependencies [[`24e8f80`](https://github.com/LedgerHQ/ledger-live/commit/24e8f80dc314619f954e6966aff8698591d6e05e), [`ea34195`](https://github.com/LedgerHQ/ledger-live/commit/ea34195c1115aaa40c69259ee2d2ee581e0349ab), [`7ffc0c5`](https://github.com/LedgerHQ/ledger-live/commit/7ffc0c5a7623aea32cdff2e093c14fae87352e71), [`53df748`](https://github.com/LedgerHQ/ledger-live/commit/53df74819753f084ed3df4a2ab9082d398b54920), [`9413def`](https://github.com/LedgerHQ/ledger-live/commit/9413def2fb1eccfc0ec8ce38bbcaf982981a0dd9), [`008a4bd`](https://github.com/LedgerHQ/ledger-live/commit/008a4bdb87f0e65fa23de3a29818a4d02f28f4f8), [`2ece647`](https://github.com/LedgerHQ/ledger-live/commit/2ece647f386e40f261662fc6e4e6624f302ee34f), [`55c01bc`](https://github.com/LedgerHQ/ledger-live/commit/55c01bcd8e43f9a54e93a41bb383d6d5c633b35f), [`fd2311d`](https://github.com/LedgerHQ/ledger-live/commit/fd2311d643f4002c1441bfa4fe79d7288df04c21)]:
- @ledgerhq/types-live@6.104.0
- @ledgerhq/errors@6.33.0
- @ledgerhq/ledger-wallet-framework@1.2.0
- @ledgerhq/cryptoassets@13.45.0
- @ledgerhq/devices@8.14.0
- @ledgerhq/logs@6.17.0
- @ledgerhq/live-network@2.5.0
## 6.21.0-next.0
### Minor Changes
- [#15887](https://github.com/LedgerHQ/ledger-live/pull/15887) [`5fefc2e`](https://github.com/LedgerHQ/ledger-live/commit/5fefc2e6a4c6e4fdcaae0139f2f8d6f9011b33c8) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - Remove @ledgerhq/types-cryptoassets dependency from coin-framework by replacing CryptoCurrency parameters with currencyId strings in CoinConfig and getCurrencyConfiguration
- [#15850](https://github.com/LedgerHQ/ledger-live/pull/15850) [`46ea96a`](https://github.com/LedgerHQ/ledger-live/commit/46ea96aa050468d2d1b7aea8d03af47b8933e3a1) Thanks [@estrauser-ledger](https://github.com/estrauser-ledger)! - Add delegates in tezos getBlock for alpaca
- [#15861](https://github.com/LedgerHQ/ledger-live/pull/15861) [`ea43cc3`](https://github.com/LedgerHQ/ledger-live/commit/ea43cc3bcd85e0592fea91a671cb396f4c784d17) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - chore(llc): align Tezos signer in `generic-alpaca`
- [#15733](https://github.com/LedgerHQ/ledger-live/pull/15733) [`aecdaf7`](https://github.com/LedgerHQ/ledger-live/commit/aecdaf7b2c659da87cfbc19efed4a6e392f9ac34) Thanks [@acewf](https://github.com/acewf)! - Update getBalance to include FA2 token balances
- [#15679](https://github.com/LedgerHQ/ledger-live/pull/15679) [`c353f29`](https://github.com/LedgerHQ/ledger-live/commit/c353f29b9174c20c708662c160f55c597020ee58) Thanks [@iqbalibrahim-ledger](https://github.com/iqbalibrahim-ledger)! - chore(coin-modules): add oxfmt with shared config (Prettier parity)
- Add libs/coin-modules/.oxfmtrc.json aligned with root .prettierrc and desktop/mobile oxfmt
- Add format, format:check, and run oxfmt before oxlint in lint:fix; add oxfmt devDependency
- Remove coin-ton prettier script; turbo format/format:check tasks
- Initial oxfmt pass on src
- [#15798](https://github.com/LedgerHQ/ledger-live/pull/15798) [`fd2311d`](https://github.com/LedgerHQ/ledger-live/commit/fd2311d643f4002c1441bfa4fe79d7288df04c21) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - chore: use `coin-module-framework` from npmjs and remove the now migrated `coin-framework`
### Patch Changes
- Updated dependencies [[`24e8f80`](https://github.com/LedgerHQ/ledger-live/commit/24e8f80dc314619f954e6966aff8698591d6e05e), [`ea34195`](https://github.com/LedgerHQ/ledger-live/commit/ea34195c1115aaa40c69259ee2d2ee581e0349ab), [`7ffc0c5`](https://github.com/LedgerHQ/ledger-live/commit/7ffc0c5a7623aea32cdff2e093c14fae87352e71), [`53df748`](https://github.com/LedgerHQ/ledger-live/commit/53df74819753f084ed3df4a2ab9082d398b54920), [`9413def`](https://github.com/LedgerHQ/ledger-live/commit/9413def2fb1eccfc0ec8ce38bbcaf982981a0dd9), [`008a4bd`](https://github.com/LedgerHQ/ledger-live/commit/008a4bdb87f0e65fa23de3a29818a4d02f28f4f8), [`2ece647`](https://github.com/LedgerHQ/ledger-live/commit/2ece647f386e40f261662fc6e4e6624f302ee34f), [`55c01bc`](https://github.com/LedgerHQ/ledger-live/commit/55c01bcd8e43f9a54e93a41bb383d6d5c633b35f), [`fd2311d`](https://github.com/LedgerHQ/ledger-live/commit/fd2311d643f4002c1441bfa4fe79d7288df04c21)]:
- @ledgerhq/types-live@6.104.0-next.0
- @ledgerhq/errors@6.33.0-next.0
- @ledgerhq/ledger-wallet-framework@1.2.0-next.0
- @ledgerhq/cryptoassets@13.45.0-next.0
- @ledgerhq/devices@8.14.0-next.0
- @ledgerhq/logs@6.17.0-next.0
- @ledgerhq/live-network@2.5.0-next.0
## 6.20.1
### Patch Changes
- Updated dependencies [[`4af828d`](https://github.com/LedgerHQ/ledger-live/commit/4af828d0790bb3568dd095f89dd9f239f7565e84), [`1bf4e7e`](https://github.com/LedgerHQ/ledger-live/commit/1bf4e7efa2fbb310f9c3db8f5d72e68294f0f3fe), [`d0559d8`](https://github.com/LedgerHQ/ledger-live/commit/d0559d84e119c844d92dc82c7648d0d9dc6c6e20), [`deec161`](https://github.com/LedgerHQ/ledger-live/commit/deec16153656d444336f067970dcda5fff016d95), [`e0de96e`](https://github.com/LedgerHQ/ledger-live/commit/e0de96e6311de7e34715784da5941e60ed5c51cc), [`41d172e`](https://github.com/LedgerHQ/ledger-live/commit/41d172e74bc074995b7290c4bb6d129276a484ff), [`c5c58e4`](https://github.com/LedgerHQ/ledger-live/commit/c5c58e4efab303a5b6bccc463f91241f4e0f72bc)]:
- @ledgerhq/coin-framework@7.1.0
- @ledgerhq/types-live@6.103.0
- @ledgerhq/cryptoassets@13.44.0
- @ledgerhq/ledger-wallet-framework@1.1.0
- @ledgerhq/live-network@2.4.3
## 6.20.1-next.0
### Patch Changes
- Updated dependencies [[`4af828d`](https://github.com/LedgerHQ/ledger-live/commit/4af828d0790bb3568dd095f89dd9f239f7565e84), [`1bf4e7e`](https://github.com/LedgerHQ/ledger-live/commit/1bf4e7efa2fbb310f9c3db8f5d72e68294f0f3fe), [`d0559d8`](https://github.com/LedgerHQ/ledger-live/commit/d0559d84e119c844d92dc82c7648d0d9dc6c6e20), [`deec161`](https://github.com/LedgerHQ/ledger-live/commit/deec16153656d444336f067970dcda5fff016d95), [`e0de96e`](https://github.com/LedgerHQ/ledger-live/commit/e0de96e6311de7e34715784da5941e60ed5c51cc), [`41d172e`](https://github.com/LedgerHQ/ledger-live/commit/41d172e74bc074995b7290c4bb6d129276a484ff), [`c5c58e4`](https://github.com/LedgerHQ/ledger-live/commit/c5c58e4efab303a5b6bccc463f91241f4e0f72bc)]:
- @ledgerhq/coin-framework@7.1.0-next.0
- @ledgerhq/types-live@6.103.0-next.0
- @ledgerhq/cryptoassets@13.44.0-next.0
- @ledgerhq/ledger-wallet-framework@1.1.0-next.0
- @ledgerhq/live-network@2.4.3-next.0
## 6.20.0
### Minor Changes
- [#15291](https://github.com/LedgerHQ/ledger-live/pull/15291) [`a221ae8`](https://github.com/LedgerHQ/ledger-live/commit/a221ae85b846c6d5dc6efb55ed873942d7720b05) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - feat: add `ledger-wallet-framework`
- [#15332](https://github.com/LedgerHQ/ledger-live/pull/15332) [`99f1965`](https://github.com/LedgerHQ/ledger-live/commit/99f19651e5c3ada3c77ee84daf7ca7d26f3bb897) Thanks [@scavassa-yld](https://github.com/scavassa-yld)! - adding getblock to tezos
### Patch Changes
- Updated dependencies [[`a221ae8`](https://github.com/LedgerHQ/ledger-live/commit/a221ae85b846c6d5dc6efb55ed873942d7720b05), [`a270b43`](https://github.com/LedgerHQ/ledger-live/commit/a270b438bf8aca99b795679fecce1b55dc249c12), [`982d4af`](https://github.com/LedgerHQ/ledger-live/commit/982d4afbeb7faf3814c3e96ffb6e3e88b58dfe73), [`6dac7f9`](https://github.com/LedgerHQ/ledger-live/commit/6dac7f974c28dcae409c110a60061996490c5088), [`8ce1cb7`](https://github.com/LedgerHQ/ledger-live/commit/8ce1cb755b3e68c8688f9e828596d3c2605ef3cb), [`01c81b1`](https://github.com/LedgerHQ/ledger-live/commit/01c81b112ab326eff436f0f3279a1225c073f897), [`3ede91a`](https://github.com/LedgerHQ/ledger-live/commit/3ede91a3674a80c9309d305b871ec3b6e9849b41)]:
- @ledgerhq/coin-framework@7.0.0
- @ledgerhq/types-live@6.102.0
- @ledgerhq/devices@8.13.0
- @ledgerhq/errors@6.32.0
- @ledgerhq/cryptoassets@13.43.0
- @ledgerhq/ledger-wallet-framework@1.0.1
- @ledgerhq/live-network@2.4.2
## 6.20.0-next.0
### Minor Changes
- [#15291](https://github.com/LedgerHQ/ledger-live/pull/15291) [`a221ae8`](https://github.com/LedgerHQ/ledger-live/commit/a221ae85b846c6d5dc6efb55ed873942d7720b05) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - feat: add `ledger-wallet-framework`
- [#15332](https://github.com/LedgerHQ/ledger-live/pull/15332) [`99f1965`](https://github.com/LedgerHQ/ledger-live/commit/99f19651e5c3ada3c77ee84daf7ca7d26f3bb897) Thanks [@scavassa-yld](https://github.com/scavassa-yld)! - adding getblock to tezos
### Patch Changes
- Updated dependencies [[`a221ae8`](https://github.com/LedgerHQ/ledger-live/commit/a221ae85b846c6d5dc6efb55ed873942d7720b05), [`a270b43`](https://github.com/LedgerHQ/ledger-live/commit/a270b438bf8aca99b795679fecce1b55dc249c12), [`982d4af`](https://github.com/LedgerHQ/ledger-live/commit/982d4afbeb7faf3814c3e96ffb6e3e88b58dfe73), [`6dac7f9`](https://github.com/LedgerHQ/ledger-live/commit/6dac7f974c28dcae409c110a60061996490c5088), [`8ce1cb7`](https://github.com/LedgerHQ/ledger-live/commit/8ce1cb755b3e68c8688f9e828596d3c2605ef3cb), [`01c81b1`](https://github.com/LedgerHQ/ledger-live/commit/01c81b112ab326eff436f0f3279a1225c073f897), [`3ede91a`](https://github.com/LedgerHQ/ledger-live/commit/3ede91a3674a80c9309d305b871ec3b6e9849b41)]:
- @ledgerhq/coin-framework@7.0.0-next.0
- @ledgerhq/types-live@6.102.0-next.0
- @ledgerhq/devices@8.13.0-next.0
- @ledgerhq/errors@6.32.0-next.0
- @ledgerhq/cryptoassets@13.43.0-next.0
- @ledgerhq/ledger-wallet-framework@1.0.1-next.0
- @ledgerhq/live-network@2.4.2-next.0
## 6.19.0
### Minor Changes
- [#15304](https://github.com/LedgerHQ/ledger-live/pull/15304) [`c8d7be6`](https://github.com/LedgerHQ/ledger-live/commit/c8d7be6964aa9d8defd77de0b77ba7d42f472025) Thanks [@gre-ledger](https://github.com/gre-ledger)! - Bump Node.js runtime to 24. Proto/toolchain and pnpm catalog use Node 24 and @types/node 24; engines and .nvmrc updated. TSConfig lib set to ES2022 where needed; Jest configs updated for ESM (imports, \_\_dirname, createRequire). CI: Linux build deps in setup-caches/setup-build-desktop; optional native deps (cpu-features, node-hid, usb, unrs-resolver) removed from onlyBuiltDependencies so install succeeds.
- [#15274](https://github.com/LedgerHQ/ledger-live/pull/15274) [`cc5742f`](https://github.com/LedgerHQ/ledger-live/commit/cc5742f2da4a52b549bd127284a90d865b7565a0) Thanks [@qperrot](https://github.com/qperrot)! - Fix: remove some dead code
- [#15242](https://github.com/LedgerHQ/ledger-live/pull/15242) [`7038137`](https://github.com/LedgerHQ/ledger-live/commit/703813747349288325fdc661637644d980073b9d) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - refactor(coin-framework): move functions to `AlpacaApi`
- [#15237](https://github.com/LedgerHQ/ledger-live/pull/15237) [`312d92d`](https://github.com/LedgerHQ/ledger-live/commit/312d92dbd9d115a2ec6ad6628445c31d45806aea) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - refactor(coin-framework): duplicate `BroadcastConfig` inside coin framework
### Patch Changes
- Updated dependencies [[`c8d7be6`](https://github.com/LedgerHQ/ledger-live/commit/c8d7be6964aa9d8defd77de0b77ba7d42f472025), [`ffb3c46`](https://github.com/LedgerHQ/ledger-live/commit/ffb3c46acd292b9ac0f46a2b84509d02775a5f20), [`7cbfb7d`](https://github.com/LedgerHQ/ledger-live/commit/7cbfb7dd2d52ad8380ab4d37b02f63292699cd68), [`bfa4315`](https://github.com/LedgerHQ/ledger-live/commit/bfa4315d2f3b4b95c5a742ffd6e05272662f4550), [`17e1fb3`](https://github.com/LedgerHQ/ledger-live/commit/17e1fb3fdb92d6dab9af72adcbcde62bdd772a71), [`75dfb86`](https://github.com/LedgerHQ/ledger-live/commit/75dfb86c871a026aa90136d0184637878d484484), [`7038137`](https://github.com/LedgerHQ/ledger-live/commit/703813747349288325fdc661637644d980073b9d), [`e6f26e0`](https://github.com/LedgerHQ/ledger-live/commit/e6f26e0f475763aaf3271e2d4ed6cf36fb1f5060), [`42bf9b7`](https://github.com/LedgerHQ/ledger-live/commit/42bf9b7c40c04c7d2eeffba30b778be0b123bfd0), [`164788e`](https://github.com/LedgerHQ/ledger-live/commit/164788e4a7e9c063d7769d44393708632854cb0a), [`9f559e9`](https://github.com/LedgerHQ/ledger-live/commit/9f559e98a1af37073e0e79ee5bb54b4aaecfb8c4), [`312d92d`](https://github.com/LedgerHQ/ledger-live/commit/312d92dbd9d115a2ec6ad6628445c31d45806aea), [`08ee941`](https://github.com/LedgerHQ/ledger-live/commit/08ee9414908ec1f7489493c98b9a823a20cce550), [`173946c`](https://github.com/LedgerHQ/ledger-live/commit/173946ce652ffef216f04d82b680b14f5686500e), [`70f6288`](https://github.com/LedgerHQ/ledger-live/commit/70f6288597722a1e8fd6b5884d843f27be87e9d8), [`ad66568`](https://github.com/LedgerHQ/ledger-live/commit/ad66568fd9c96cfa08d11123a711e3fa79705f65), [`79f2f0e`](https://github.com/LedgerHQ/ledger-live/commit/79f2f0e3e8b8089664d2aee7c3dd25c7685aec2c), [`4cc02f3`](https://github.com/LedgerHQ/ledger-live/commit/4cc02f3c1ba0bdb93917b5427a375ab44cd5d208), [`37bc15e`](https://github.com/LedgerHQ/ledger-live/commit/37bc15e245107ce1044f36b57d191552a77329e6)]:
- @ledgerhq/cryptoassets@13.42.0
- @ledgerhq/devices@8.12.0
- @ledgerhq/errors@6.31.0
- @ledgerhq/logs@6.16.0
- @ledgerhq/types-live@6.101.0
- @ledgerhq/coin-framework@6.20.0
- @ledgerhq/live-network@2.4.1
## 6.19.0-next.0
### Minor Changes
- [#15304](https://github.com/LedgerHQ/ledger-live/pull/15304) [`c8d7be6`](https://github.com/LedgerHQ/ledger-live/commit/c8d7be6964aa9d8defd77de0b77ba7d42f472025) Thanks [@gre-ledger](https://github.com/gre-ledger)! - Bump Node.js runtime to 24. Proto/toolchain and pnpm catalog use Node 24 and @types/node 24; engines and .nvmrc updated. TSConfig lib set to ES2022 where needed; Jest configs updated for ESM (imports, \_\_dirname, createRequire). CI: Linux build deps in setup-caches/setup-build-desktop; optional native deps (cpu-features, node-hid, usb, unrs-resolver) removed from onlyBuiltDependencies so install succeeds.
- [#15274](https://github.com/LedgerHQ/ledger-live/pull/15274) [`cc5742f`](https://github.com/LedgerHQ/ledger-live/commit/cc5742f2da4a52b549bd127284a90d865b7565a0) Thanks [@qperrot](https://github.com/qperrot)! - Fix: remove some dead code
- [#15242](https://github.com/LedgerHQ/ledger-live/pull/15242) [`7038137`](https://github.com/LedgerHQ/ledger-live/commit/703813747349288325fdc661637644d980073b9d) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - refactor(coin-framework): move functions to `AlpacaApi`
- [#15237](https://github.com/LedgerHQ/ledger-live/pull/15237) [`312d92d`](https://github.com/LedgerHQ/ledger-live/commit/312d92dbd9d115a2ec6ad6628445c31d45806aea) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - refactor(coin-framework): duplicate `BroadcastConfig` inside coin framework
### Patch Changes
- Updated dependencies [[`c8d7be6`](https://github.com/LedgerHQ/ledger-live/commit/c8d7be6964aa9d8defd77de0b77ba7d42f472025), [`ffb3c46`](https://github.com/LedgerHQ/ledger-live/commit/ffb3c46acd292b9ac0f46a2b84509d02775a5f20), [`7cbfb7d`](https://github.com/LedgerHQ/ledger-live/commit/7cbfb7dd2d52ad8380ab4d37b02f63292699cd68), [`bfa4315`](https://github.com/LedgerHQ/ledger-live/commit/bfa4315d2f3b4b95c5a742ffd6e05272662f4550), [`17e1fb3`](https://github.com/LedgerHQ/ledger-live/commit/17e1fb3fdb92d6dab9af72adcbcde62bdd772a71), [`75dfb86`](https://github.com/LedgerHQ/ledger-live/commit/75dfb86c871a026aa90136d0184637878d484484), [`7038137`](https://github.com/LedgerHQ/ledger-live/commit/703813747349288325fdc661637644d980073b9d), [`e6f26e0`](https://github.com/LedgerHQ/ledger-live/commit/e6f26e0f475763aaf3271e2d4ed6cf36fb1f5060), [`42bf9b7`](https://github.com/LedgerHQ/ledger-live/commit/42bf9b7c40c04c7d2eeffba30b778be0b123bfd0), [`164788e`](https://github.com/LedgerHQ/ledger-live/commit/164788e4a7e9c063d7769d44393708632854cb0a), [`9f559e9`](https://github.com/LedgerHQ/ledger-live/commit/9f559e98a1af37073e0e79ee5bb54b4aaecfb8c4), [`312d92d`](https://github.com/LedgerHQ/ledger-live/commit/312d92dbd9d115a2ec6ad6628445c31d45806aea), [`08ee941`](https://github.com/LedgerHQ/ledger-live/commit/08ee9414908ec1f7489493c98b9a823a20cce550), [`173946c`](https://github.com/LedgerHQ/ledger-live/commit/173946ce652ffef216f04d82b680b14f5686500e), [`70f6288`](https://github.com/LedgerHQ/ledger-live/commit/70f6288597722a1e8fd6b5884d843f27be87e9d8), [`ad66568`](https://github.com/LedgerHQ/ledger-live/commit/ad66568fd9c96cfa08d11123a711e3fa79705f65), [`79f2f0e`](https://github.com/LedgerHQ/ledger-live/commit/79f2f0e3e8b8089664d2aee7c3dd25c7685aec2c), [`4cc02f3`](https://github.com/LedgerHQ/ledger-live/commit/4cc02f3c1ba0bdb93917b5427a375ab44cd5d208), [`37bc15e`](https://github.com/LedgerHQ/ledger-live/commit/37bc15e245107ce1044f36b57d191552a77329e6)]:
- @ledgerhq/cryptoassets@13.42.0-next.0
- @ledgerhq/devices@8.12.0-next.0
- @ledgerhq/errors@6.31.0-next.0
- @ledgerhq/logs@6.16.0-next.0
- @ledgerhq/types-live@6.101.0-next.0
- @ledgerhq/coin-framework@6.20.0-next.0
- @ledgerhq/live-network@2.4.1-next.0
## 6.18.0
### Minor Changes
- [#14455](https://github.com/LedgerHQ/ledger-live/pull/14455) [`9f9ae16`](https://github.com/LedgerHQ/ledger-live/commit/9f9ae16843e5db339c1d40c844a66f75fff498fb) Thanks [@jprudent](https://github.com/jprudent)! - Implement feePayer on operations for sui, hedera, xrp, tezos, stellar, tron
- [#14913](https://github.com/LedgerHQ/ledger-live/pull/14913) [`dceb492`](https://github.com/LedgerHQ/ledger-live/commit/dceb4921a811ffc3cba96ff532ffcb5d1205431f) Thanks [@gre-ledger](https://github.com/gre-ledger)! - Update TypeScript to latest 5.8.x
### Patch Changes
- Updated dependencies [[`748b933`](https://github.com/LedgerHQ/ledger-live/commit/748b933f3786e48ec9dd434c76263c2c9a642c99), [`0dbbca3`](https://github.com/LedgerHQ/ledger-live/commit/0dbbca3f0226347b5abc034a066fe4ad89bfe462), [`9f9ae16`](https://github.com/LedgerHQ/ledger-live/commit/9f9ae16843e5db339c1d40c844a66f75fff498fb), [`ba4d56f`](https://github.com/LedgerHQ/ledger-live/commit/ba4d56fa223b87b89d621de2d1885c5a55922ef4), [`697f2e6`](https://github.com/LedgerHQ/ledger-live/commit/697f2e6f5b24ff023a46cbbbf5c9f85bac90a4c4), [`dceb492`](https://github.com/LedgerHQ/ledger-live/commit/dceb4921a811ffc3cba96ff532ffcb5d1205431f)]:
- @ledgerhq/types-live@6.100.0
- @ledgerhq/errors@6.30.0
- @ledgerhq/coin-framework@6.19.0
- @ledgerhq/cryptoassets@13.41.0
- @ledgerhq/devices@8.11.0
- @ledgerhq/logs@6.15.0
- @ledgerhq/live-network@2.4.0
## 6.18.0-next.0
### Minor Changes
- [#14455](https://github.com/LedgerHQ/ledger-live/pull/14455) [`9f9ae16`](https://github.com/LedgerHQ/ledger-live/commit/9f9ae16843e5db339c1d40c844a66f75fff498fb) Thanks [@jprudent](https://github.com/jprudent)! - Implement feePayer on operations for sui, hedera, xrp, tezos, stellar, tron
- [#14913](https://github.com/LedgerHQ/ledger-live/pull/14913) [`dceb492`](https://github.com/LedgerHQ/ledger-live/commit/dceb4921a811ffc3cba96ff532ffcb5d1205431f) Thanks [@gre-ledger](https://github.com/gre-ledger)! - Update TypeScript to latest 5.8.x
### Patch Changes
- Updated dependencies [[`748b933`](https://github.com/LedgerHQ/ledger-live/commit/748b933f3786e48ec9dd434c76263c2c9a642c99), [`0dbbca3`](https://github.com/LedgerHQ/ledger-live/commit/0dbbca3f0226347b5abc034a066fe4ad89bfe462), [`9f9ae16`](https://github.com/LedgerHQ/ledger-live/commit/9f9ae16843e5db339c1d40c844a66f75fff498fb), [`ba4d56f`](https://github.com/LedgerHQ/ledger-live/commit/ba4d56fa223b87b89d621de2d1885c5a55922ef4), [`697f2e6`](https://github.com/LedgerHQ/ledger-live/commit/697f2e6f5b24ff023a46cbbbf5c9f85bac90a4c4), [`dceb492`](https://github.com/LedgerHQ/ledger-live/commit/dceb4921a811ffc3cba96ff532ffcb5d1205431f)]:
- @ledgerhq/types-live@6.100.0-next.0
- @ledgerhq/errors@6.30.0-next.0
- @ledgerhq/coin-framework@6.19.0-next.0
- @ledgerhq/cryptoassets@13.41.0-next.0
- @ledgerhq/devices@8.11.0-next.0
- @ledgerhq/logs@6.15.0-next.0
- @ledgerhq/live-network@2.4.0-next.0
## 6.17.0
### Minor Changes
- [#14693](https://github.com/LedgerHQ/ledger-live/pull/14693) [`f784ce4`](https://github.com/LedgerHQ/ledger-live/commit/f784ce4728dc467be64880ae110fe26ff459dab2) Thanks [@acewf](https://github.com/acewf)! - Change limit size for tzkt api request
- [#13986](https://github.com/LedgerHQ/ledger-live/pull/13986) [`07fdf5a`](https://github.com/LedgerHQ/ledger-live/commit/07fdf5a4bcd12cb0cc5100389c8e355800d3aec0) Thanks [@jnicoulaud-ledger](https://github.com/jnicoulaud-ledger)! - Alpaca API cleanup and documentation
### Patch Changes
- Updated dependencies [[`a96dc83`](https://github.com/LedgerHQ/ledger-live/commit/a96dc83916684e22c041904c479c615a3095303b), [`e954c1e`](https://github.com/LedgerHQ/ledger-live/commit/e954c1e0f0e45efe3b0e8c3fda9e6d5b22b5bc01), [`e292df3`](https://github.com/LedgerHQ/ledger-live/commit/e292df30514168181545d7a572f723e31df78e77), [`17149ee`](https://github.com/LedgerHQ/ledger-live/commit/17149ee26eeef8a600d650a6f4903c52320a0d8d), [`07fdf5a`](https://github.com/LedgerHQ/ledger-live/commit/07fdf5a4bcd12cb0cc5100389c8e355800d3aec0), [`b7dec5c`](https://github.com/LedgerHQ/ledger-live/commit/b7dec5c2a41520114593701c82192ff8ae8ce06f), [`f51402e`](https://github.com/LedgerHQ/ledger-live/commit/f51402ebb8a4f05a933df3c3ef499756fbde5cc8), [`5f1c644`](https://github.com/LedgerHQ/ledger-live/commit/5f1c644fd5f757f48618b62e976faac274ced40d), [`c7ed360`](https://github.com/LedgerHQ/ledger-live/commit/c7ed36086280d60631e235d375cc2db5f60e8aab), [`cc4c8f5`](https://github.com/LedgerHQ/ledger-live/commit/cc4c8f57e38586d77b89f32d359e65cc700912af)]:
- @ledgerhq/types-live@6.99.0
- @ledgerhq/cryptoassets@13.40.0
- @ledgerhq/coin-framework@6.18.0
- @ledgerhq/live-network@2.3.0
## 6.17.0-next.0
### Minor Changes
- [#14693](https://github.com/LedgerHQ/ledger-live/pull/14693) [`f784ce4`](https://github.com/LedgerHQ/ledger-live/commit/f784ce4728dc467be64880ae110fe26ff459dab2) Thanks [@acewf](https://github.com/acewf)! - Change limit size for tzkt api request
- [#13986](https://github.com/LedgerHQ/ledger-live/pull/13986) [`07fdf5a`](https://github.com/LedgerHQ/ledger-live/commit/07fdf5a4bcd12cb0cc5100389c8e355800d3aec0) Thanks [@jnicoulaud-ledger](https://github.com/jnicoulaud-ledger)! - Alpaca API cleanup and documentation
### Patch Changes
- Updated dependencies [[`a96dc83`](https://github.com/LedgerHQ/ledger-live/commit/a96dc83916684e22c041904c479c615a3095303b), [`e954c1e`](https://github.com/LedgerHQ/ledger-live/commit/e954c1e0f0e45efe3b0e8c3fda9e6d5b22b5bc01), [`e292df3`](https://github.com/LedgerHQ/ledger-live/commit/e292df30514168181545d7a572f723e31df78e77), [`17149ee`](https://github.com/LedgerHQ/ledger-live/commit/17149ee26eeef8a600d650a6f4903c52320a0d8d), [`07fdf5a`](https://github.com/LedgerHQ/ledger-live/commit/07fdf5a4bcd12cb0cc5100389c8e355800d3aec0), [`b7dec5c`](https://github.com/LedgerHQ/ledger-live/commit/b7dec5c2a41520114593701c82192ff8ae8ce06f), [`f51402e`](https://github.com/LedgerHQ/ledger-live/commit/f51402ebb8a4f05a933df3c3ef499756fbde5cc8), [`5f1c644`](https://github.com/LedgerHQ/ledger-live/commit/5f1c644fd5f757f48618b62e976faac274ced40d), [`c7ed360`](https://github.com/LedgerHQ/ledger-live/commit/c7ed36086280d60631e235d375cc2db5f60e8aab), [`cc4c8f5`](https://github.com/LedgerHQ/ledger-live/commit/cc4c8f57e38586d77b89f32d359e65cc700912af)]:
- @ledgerhq/types-live@6.99.0-next.0
- @ledgerhq/cryptoassets@13.40.0-next.0
- @ledgerhq/coin-framework@6.18.0-next.0
- @ledgerhq/live-network@2.3.0-next.0
## 6.16.1
### Patch Changes
- Updated dependencies [[`e08c1be`](https://github.com/LedgerHQ/ledger-live/commit/e08c1be127e6a9c246c285ba818530e6756033e0), [`d02f203`](https://github.com/LedgerHQ/ledger-live/commit/d02f2035e4f2ac6c3b446cf4107cd017ea4faf43), [`e12fd1e`](https://github.com/LedgerHQ/ledger-live/commit/e12fd1eb27189a668cd8e61798256a0c20c0f078)]:
- @ledgerhq/types-live@6.98.0
- @ledgerhq/coin-framework@6.17.0
- @ledgerhq/cryptoassets@13.39.1
- @ledgerhq/live-network@2.2.3
## 6.16.1-next.0
### Patch Changes
- Updated dependencies [[`e08c1be`](https://github.com/LedgerHQ/ledger-live/commit/e08c1be127e6a9c246c285ba818530e6756033e0), [`d02f203`](https://github.com/LedgerHQ/ledger-live/commit/d02f2035e4f2ac6c3b446cf4107cd017ea4faf43), [`e12fd1e`](https://github.com/LedgerHQ/ledger-live/commit/e12fd1eb27189a668cd8e61798256a0c20c0f078)]:
- @ledgerhq/types-live@6.98.0-next.0
- @ledgerhq/coin-framework@6.17.0-next.0
- @ledgerhq/cryptoassets@13.39.1-next.0
- @ledgerhq/live-network@2.2.3-next.0
## 6.16.0
### Minor Changes
- [#14215](https://github.com/LedgerHQ/ledger-live/pull/14215) [`c4e7d20`](https://github.com/LedgerHQ/ledger-live/commit/c4e7d20ce631d43d7c8847d3f56187f68140fbab) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - chore(coin-modules): align `tsconfig` and `eslint` with quality standards
- [#14285](https://github.com/LedgerHQ/ledger-live/pull/14285) [`610ed7c`](https://github.com/LedgerHQ/ledger-live/commit/610ed7c689d3179fc24296ace8eec508c93e72f6) Thanks [@jnicoulaud-ledger](https://github.com/jnicoulaud-ledger)! - fix(TSD-8995): fix tezos fee estimation minimums not respected
- [#14262](https://github.com/LedgerHQ/ledger-live/pull/14262) [`6654cdf`](https://github.com/LedgerHQ/ledger-live/commit/6654cdf42d9c5d048a95128d43ce10ae4ca267d8) Thanks [@jnicoulaud-ledger](https://github.com/jnicoulaud-ledger)! - fix(TSD-8985): fix tezos fees underestimated for a reveal+delegate transaction
### Patch Changes
- Updated dependencies [[`03b3105`](https://github.com/LedgerHQ/ledger-live/commit/03b3105efe8094b79ba70432e475fdc5d945c2c4), [`d5da9e0`](https://github.com/LedgerHQ/ledger-live/commit/d5da9e04d7a92b3f7f9df9d462bdd101cadbd300), [`7896aa2`](https://github.com/LedgerHQ/ledger-live/commit/7896aa2dacc12e6781267fa3ca2965aa6fb018d2), [`8a258aa`](https://github.com/LedgerHQ/ledger-live/commit/8a258aa0655123d22f955067acffaf9f74661165), [`c61dc02`](https://github.com/LedgerHQ/ledger-live/commit/c61dc0268072ca43cf726efd17dc11f21eb37ce8), [`8006565`](https://github.com/LedgerHQ/ledger-live/commit/8006565f77487fa0e38bf5f8d7bb4cda4cdba1f5), [`2ec4196`](https://github.com/LedgerHQ/ledger-live/commit/2ec419630bceab7a9600711742a18034ba9ff3cc), [`fe678a1`](https://github.com/LedgerHQ/ledger-live/commit/fe678a1d16eeda84cf8d802eee53026ea677be58), [`de9d068`](https://github.com/LedgerHQ/ledger-live/commit/de9d068800ed2ae72aca0126855480d3eeb12989)]:
- @ledgerhq/coin-framework@6.16.0
- @ledgerhq/cryptoassets@13.39.0
- @ledgerhq/types-live@6.97.0
## 6.16.0-next.0
### Minor Changes
- [#14215](https://github.com/LedgerHQ/ledger-live/pull/14215) [`c4e7d20`](https://github.com/LedgerHQ/ledger-live/commit/c4e7d20ce631d43d7c8847d3f56187f68140fbab) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - chore(coin-modules): align `tsconfig` and `eslint` with quality standards
- [#14285](https://github.com/LedgerHQ/ledger-live/pull/14285) [`610ed7c`](https://github.com/LedgerHQ/ledger-live/commit/610ed7c689d3179fc24296ace8eec508c93e72f6) Thanks [@jnicoulaud-ledger](https://github.com/jnicoulaud-ledger)! - fix(TSD-8995): fix tezos fee estimation minimums not respected
- [#14262](https://github.com/LedgerHQ/ledger-live/pull/14262) [`6654cdf`](https://github.com/LedgerHQ/ledger-live/commit/6654cdf42d9c5d048a95128d43ce10ae4ca267d8) Thanks [@jnicoulaud-ledger](https://github.com/jnicoulaud-ledger)! - fix(TSD-8985): fix tezos fees underestimated for a reveal+delegate transaction
### Patch Changes
- Updated dependencies [[`03b3105`](https://github.com/LedgerHQ/ledger-live/commit/03b3105efe8094b79ba70432e475fdc5d945c2c4), [`d5da9e0`](https://github.com/LedgerHQ/ledger-live/commit/d5da9e04d7a92b3f7f9df9d462bdd101cadbd300), [`7896aa2`](https://github.com/LedgerHQ/ledger-live/commit/7896aa2dacc12e6781267fa3ca2965aa6fb018d2), [`8a258aa`](https://github.com/LedgerHQ/ledger-live/commit/8a258aa0655123d22f955067acffaf9f74661165), [`c61dc02`](https://github.com/LedgerHQ/ledger-live/commit/c61dc0268072ca43cf726efd17dc11f21eb37ce8), [`8006565`](https://github.com/LedgerHQ/ledger-live/commit/8006565f77487fa0e38bf5f8d7bb4cda4cdba1f5), [`2ec4196`](https://github.com/LedgerHQ/ledger-live/commit/2ec419630bceab7a9600711742a18034ba9ff3cc), [`fe678a1`](https://github.com/LedgerHQ/ledger-live/commit/fe678a1d16eeda84cf8d802eee53026ea677be58), [`de9d068`](https://github.com/LedgerHQ/ledger-live/commit/de9d068800ed2ae72aca0126855480d3eeb12989)]:
- @ledgerhq/coin-framework@6.16.0-next.0
- @ledgerhq/cryptoassets@13.39.0-next.0
- @ledgerhq/types-live@6.97.0-next.0
## 6.15.0
### Minor Changes
- [#14132](https://github.com/LedgerHQ/ledger-live/pull/14132) [`982a7e9`](https://github.com/LedgerHQ/ledger-live/commit/982a7e9c73867b7c7b90ccae6df575d59c06806c) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - chore(coin-modules): promote compiler options for tracking unused vars$
### Patch Changes
- Updated dependencies [[`d7b6d27`](https://github.com/LedgerHQ/ledger-live/commit/d7b6d27d86cade7fcae8013ae66df72532aec3df), [`da660cc`](https://github.com/LedgerHQ/ledger-live/commit/da660ccccf87d97bfdff2b2a066c8b3b422b2d93), [`2d750da`](https://github.com/LedgerHQ/ledger-live/commit/2d750da3bcda547e8c4639e655c5129580baeaad), [`96acd67`](https://github.com/LedgerHQ/ledger-live/commit/96acd679f345729cddcdf73191d4b2a0f948ad5a), [`bf34cf5`](https://github.com/LedgerHQ/ledger-live/commit/bf34cf516a26081ddd493bb01042b1a0e462b029)]:
- @ledgerhq/types-live@6.96.0
- @ledgerhq/coin-framework@6.15.0
- @ledgerhq/cryptoassets@13.38.1
- @ledgerhq/live-network@2.2.2
## 6.15.0-next.0
### Minor Changes
- [#14132](https://github.com/LedgerHQ/ledger-live/pull/14132) [`982a7e9`](https://github.com/LedgerHQ/ledger-live/commit/982a7e9c73867b7c7b90ccae6df575d59c06806c) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - chore(coin-modules): promote compiler options for tracking unused vars$
### Patch Changes
- Updated dependencies [[`d7b6d27`](https://github.com/LedgerHQ/ledger-live/commit/d7b6d27d86cade7fcae8013ae66df72532aec3df), [`da660cc`](https://github.com/LedgerHQ/ledger-live/commit/da660ccccf87d97bfdff2b2a066c8b3b422b2d93), [`2d750da`](https://github.com/LedgerHQ/ledger-live/commit/2d750da3bcda547e8c4639e655c5129580baeaad), [`96acd67`](https://github.com/LedgerHQ/ledger-live/commit/96acd679f345729cddcdf73191d4b2a0f948ad5a), [`bf34cf5`](https://github.com/LedgerHQ/ledger-live/commit/bf34cf516a26081ddd493bb01042b1a0e462b029)]:
- @ledgerhq/types-live@6.96.0-next.0
- @ledgerhq/coin-framework@6.15.0-next.0
- @ledgerhq/cryptoassets@13.38.1-next.0
- @ledgerhq/live-network@2.2.2-next.0
## 6.14.1
### Patch Changes
- Updated dependencies [[`dd1122e`](https://github.com/LedgerHQ/ledger-live/commit/dd1122eeb6e9c582541446ff82a488928fa340c2), [`363b630`](https://github.com/LedgerHQ/ledger-live/commit/363b63050ab007266d2c1158a27e4fce79081983), [`cb69f67`](https://github.com/LedgerHQ/ledger-live/commit/cb69f67326834079695935103530d0b24ad3772d), [`1d2d196`](https://github.com/LedgerHQ/ledger-live/commit/1d2d19635c28db69adb04dcd21219b51836186f5), [`9a99ae9`](https://github.com/LedgerHQ/ledger-live/commit/9a99ae9c6b4a99cdda500ae0e216037799de5cd5), [`556dd22`](https://github.com/LedgerHQ/ledger-live/commit/556dd22dd505b4b5ae865ffe36fc5b5aa22a4f81)]:
- @ledgerhq/coin-framework@6.14.0
- @ledgerhq/cryptoassets@13.38.0
- @ledgerhq/types-live@6.95.0
## 6.14.1-next.0
### Patch Changes
- Updated dependencies [[`dd1122e`](https://github.com/LedgerHQ/ledger-live/commit/dd1122eeb6e9c582541446ff82a488928fa340c2), [`363b630`](https://github.com/LedgerHQ/ledger-live/commit/363b63050ab007266d2c1158a27e4fce79081983), [`cb69f67`](https://github.com/LedgerHQ/ledger-live/commit/cb69f67326834079695935103530d0b24ad3772d), [`1d2d196`](https://github.com/LedgerHQ/ledger-live/commit/1d2d19635c28db69adb04dcd21219b51836186f5), [`9a99ae9`](https://github.com/LedgerHQ/ledger-live/commit/9a99ae9c6b4a99cdda500ae0e216037799de5cd5), [`556dd22`](https://github.com/LedgerHQ/ledger-live/commit/556dd22dd505b4b5ae865ffe36fc5b5aa22a4f81)]:
- @ledgerhq/coin-framework@6.14.0-next.0
- @ledgerhq/cryptoassets@13.38.0-next.0
- @ledgerhq/types-live@6.95.0-next.0
## 6.14.0
### Minor Changes
- [#13710](https://github.com/LedgerHQ/ledger-live/pull/13710) [`36aaf48`](https://github.com/LedgerHQ/ledger-live/commit/36aaf487c15da117a23332de376257ce8e6582a9) Thanks [@hedi-edelbloute](https://github.com/hedi-edelbloute)! - Returns native empty balance when account is pristine
### Patch Changes
- Updated dependencies [[`c84be03`](https://github.com/LedgerHQ/ledger-live/commit/c84be039f162fd3af72861fd1605f4141c8f0792), [`819d969`](https://github.com/LedgerHQ/ledger-live/commit/819d96907febd9a68a6407c1bad06f475d044a4d), [`069d298`](https://github.com/LedgerHQ/ledger-live/commit/069d2982cd36c9525addf9d1f9df762a8799b3bb)]:
- @ledgerhq/types-live@6.94.0
- @ledgerhq/coin-framework@6.13.1
- @ledgerhq/cryptoassets@13.37.1
- @ledgerhq/live-network@2.2.1
## 6.14.0-next.0
### Minor Changes
- [#13710](https://github.com/LedgerHQ/ledger-live/pull/13710) [`36aaf48`](https://github.com/LedgerHQ/ledger-live/commit/36aaf487c15da117a23332de376257ce8e6582a9) Thanks [@hedi-edelbloute](https://github.com/hedi-edelbloute)! - Returns native empty balance when account is pristine
### Patch Changes
- Updated dependencies [[`c84be03`](https://github.com/LedgerHQ/ledger-live/commit/c84be039f162fd3af72861fd1605f4141c8f0792), [`819d969`](https://github.com/LedgerHQ/ledger-live/commit/819d96907febd9a68a6407c1bad06f475d044a4d), [`069d298`](https://github.com/LedgerHQ/ledger-live/commit/069d2982cd36c9525addf9d1f9df762a8799b3bb)]:
- @ledgerhq/types-live@6.94.0-next.0
- @ledgerhq/coin-framework@6.13.1-next.0
- @ledgerhq/cryptoassets@13.37.1-next.0
- @ledgerhq/live-network@2.2.1-next.0
## 6.13.0
### Minor Changes
- [#13396](https://github.com/LedgerHQ/ledger-live/pull/13396) [`b9a3e43`](https://github.com/LedgerHQ/ledger-live/commit/b9a3e431be33943ab4feb4294d6a7f27b966e61b) Thanks [@gre-ledger](https://github.com/gre-ledger)! - Update Jest to v30
### Patch Changes
- Updated dependencies [[`537a975`](https://github.com/LedgerHQ/ledger-live/commit/537a975536ca3669d3b88371e1e1f651c4cb9a1b), [`cbcae7c`](https://github.com/LedgerHQ/ledger-live/commit/cbcae7c0ba9b54b1167d26e4227bd2b847207cb9), [`8754614`](https://github.com/LedgerHQ/ledger-live/commit/87546149a62b81f8a25bb6222626592ead629f62), [`cf08174`](https://github.com/LedgerHQ/ledger-live/commit/cf0817462e9f0210fceff29ec60b0699e4e69b71), [`b9a3e43`](https://github.com/LedgerHQ/ledger-live/commit/b9a3e431be33943ab4feb4294d6a7f27b966e61b), [`3ac5f26`](https://github.com/LedgerHQ/ledger-live/commit/3ac5f26111f8596327fa7e588e514509de3f8a59), [`7f05536`](https://github.com/LedgerHQ/ledger-live/commit/7f0553665e9c8721f263825cc79994bfc6729d9b)]:
- @ledgerhq/cryptoassets@13.37.0
- @ledgerhq/coin-framework@6.13.0
- @ledgerhq/types-live@6.93.0
- @ledgerhq/devices@8.10.0
- @ledgerhq/errors@6.29.0
- @ledgerhq/logs@6.14.0
- @ledgerhq/live-network@2.2.0
## 6.13.0-next.0
### Minor Changes
- [#13396](https://github.com/LedgerHQ/ledger-live/pull/13396) [`b9a3e43`](https://github.com/LedgerHQ/ledger-live/commit/b9a3e431be33943ab4feb4294d6a7f27b966e61b) Thanks [@gre-ledger](https://github.com/gre-ledger)! - Update Jest to v30
### Patch Changes
- Updated dependencies [[`537a975`](https://github.com/LedgerHQ/ledger-live/commit/537a975536ca3669d3b88371e1e1f651c4cb9a1b), [`cbcae7c`](https://github.com/LedgerHQ/ledger-live/commit/cbcae7c0ba9b54b1167d26e4227bd2b847207cb9), [`8754614`](https://github.com/LedgerHQ/ledger-live/commit/87546149a62b81f8a25bb6222626592ead629f62), [`cf08174`](https://github.com/LedgerHQ/ledger-live/commit/cf0817462e9f0210fceff29ec60b0699e4e69b71), [`b9a3e43`](https://github.com/LedgerHQ/ledger-live/commit/b9a3e431be33943ab4feb4294d6a7f27b966e61b), [`3ac5f26`](https://github.com/LedgerHQ/ledger-live/commit/3ac5f26111f8596327fa7e588e514509de3f8a59), [`7f05536`](https://github.com/LedgerHQ/ledger-live/commit/7f0553665e9c8721f263825cc79994bfc6729d9b)]:
- @ledgerhq/cryptoassets@13.37.0-next.0
- @ledgerhq/coin-framework@6.13.0-next.0
- @ledgerhq/types-live@6.93.0-next.0
- @ledgerhq/devices@8.10.0-next.0
- @ledgerhq/errors@6.29.0-next.0
- @ledgerhq/logs@6.14.0-next.0
- @ledgerhq/live-network@2.2.0-next.0
## 6.12.0
### Minor Changes
- [#13468](https://github.com/LedgerHQ/ledger-live/pull/13468) [`9874905`](https://github.com/LedgerHQ/ledger-live/commit/98749050026e6b19a207065b312dc99770af639d) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Dedup MSW lib inside monorepo
### Patch Changes
- Updated dependencies [[`6e6a12c`](https://github.com/LedgerHQ/ledger-live/commit/6e6a12cdfd79b752839bf664bab5156cea9c9e23), [`398b3d8`](https://github.com/LedgerHQ/ledger-live/commit/398b3d85d2de4a520d5ae78a18135f8d163aad5b), [`7e12cd3`](https://github.com/LedgerHQ/ledger-live/commit/7e12cd30f47d42cd8dac35cfa475abdd9ad44e19), [`a8c59da`](https://github.com/LedgerHQ/ledger-live/commit/a8c59da888c8cb3c200a9f62869ca54aba706cae), [`4455451`](https://github.com/LedgerHQ/ledger-live/commit/445545117cf0196d7c5a303df21041c23b91844c), [`8cb7d40`](https://github.com/LedgerHQ/ledger-live/commit/8cb7d40e0a55e47f42adc5cd522740cab1fd4de4), [`e57fa40`](https://github.com/LedgerHQ/ledger-live/commit/e57fa40a1bb480ebcc03120a1aab3b02e249bf8d), [`e844b3b`](https://github.com/LedgerHQ/ledger-live/commit/e844b3bd5f8a4b21cf94e0a598c22a2a42791490), [`c2d4259`](https://github.com/LedgerHQ/ledger-live/commit/c2d425989b600732f4fb0a88993e2673e93698a7), [`9e80ecc`](https://github.com/LedgerHQ/ledger-live/commit/9e80ecc5ef6da4f39a184d3c555c8d7c439754a8), [`ffa9e7e`](https://github.com/LedgerHQ/ledger-live/commit/ffa9e7e58dd60d0f568362a95e14ba5d130c2d07), [`4caf2ef`](https://github.com/LedgerHQ/ledger-live/commit/4caf2eff2aff2a6f1048ccf8e94295c954554ae1), [`c4045c7`](https://github.com/LedgerHQ/ledger-live/commit/c4045c714ee0fb1f02f6e75cae04e99cdea01ae4)]:
- @ledgerhq/cryptoassets@13.36.0
- @ledgerhq/coin-framework@6.12.0
- @ledgerhq/types-live@6.92.0
- @ledgerhq/devices@8.9.0
- @ledgerhq/live-network@2.1.5
## 6.12.0-next.1
### Patch Changes
- Updated dependencies [[`398b3d8`](https://github.com/LedgerHQ/ledger-live/commit/398b3d85d2de4a520d5ae78a18135f8d163aad5b)]:
- @ledgerhq/coin-framework@6.12.0-next.1
## 6.12.0-next.0
### Minor Changes
- [#13468](https://github.com/LedgerHQ/ledger-live/pull/13468) [`9874905`](https://github.com/LedgerHQ/ledger-live/commit/98749050026e6b19a207065b312dc99770af639d) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Dedup MSW lib inside monorepo
### Patch Changes
- Updated dependencies [[`6e6a12c`](https://github.com/LedgerHQ/ledger-live/commit/6e6a12cdfd79b752839bf664bab5156cea9c9e23), [`7e12cd3`](https://github.com/LedgerHQ/ledger-live/commit/7e12cd30f47d42cd8dac35cfa475abdd9ad44e19), [`a8c59da`](https://github.com/LedgerHQ/ledger-live/commit/a8c59da888c8cb3c200a9f62869ca54aba706cae), [`4455451`](https://github.com/LedgerHQ/ledger-live/commit/445545117cf0196d7c5a303df21041c23b91844c), [`8cb7d40`](https://github.com/LedgerHQ/ledger-live/commit/8cb7d40e0a55e47f42adc5cd522740cab1fd4de4), [`e57fa40`](https://github.com/LedgerHQ/ledger-live/commit/e57fa40a1bb480ebcc03120a1aab3b02e249bf8d), [`e844b3b`](https://github.com/LedgerHQ/ledger-live/commit/e844b3bd5f8a4b21cf94e0a598c22a2a42791490), [`c2d4259`](https://github.com/LedgerHQ/ledger-live/commit/c2d425989b600732f4fb0a88993e2673e93698a7), [`9e80ecc`](https://github.com/LedgerHQ/ledger-live/commit/9e80ecc5ef6da4f39a184d3c555c8d7c439754a8), [`ffa9e7e`](https://github.com/LedgerHQ/ledger-live/commit/ffa9e7e58dd60d0f568362a95e14ba5d130c2d07), [`4caf2ef`](https://github.com/LedgerHQ/ledger-live/commit/4caf2eff2aff2a6f1048ccf8e94295c954554ae1), [`c4045c7`](https://github.com/LedgerHQ/ledger-live/commit/c4045c714ee0fb1f02f6e75cae04e99cdea01ae4)]:
- @ledgerhq/cryptoassets@13.36.0-next.0
- @ledgerhq/types-live@6.92.0-next.0
- @ledgerhq/devices@8.9.0-next.0
- @ledgerhq/coin-framework@6.11.2-next.0
- @ledgerhq/live-network@2.1.5-next.0
## 6.11.1
### Patch Changes
- Updated dependencies []:
- @ledgerhq/types-live@6.91.1
- @ledgerhq/coin-framework@6.11.1
- @ledgerhq/cryptoassets@13.35.1
## 6.11.1-hotfix.0
### Patch Changes
- Updated dependencies []:
- @ledgerhq/types-live@6.91.1-hotfix.0
- @ledgerhq/coin-framework@6.11.1-hotfix.0
- @ledgerhq/cryptoassets@13.35.1-hotfix.0
## 6.11.0
### Minor Changes
- [#12967](https://github.com/LedgerHQ/ledger-live/pull/12967) [`5e8d6be`](https://github.com/LedgerHQ/ledger-live/commit/5e8d6be609dd37c48d747890e56189e0716d5273) Thanks [@Moustafa-Koterba](https://github.com/Moustafa-Koterba)! - Validate address implementation on all currencies
- [#13155](https://github.com/LedgerHQ/ledger-live/pull/13155) [`aadb3d5`](https://github.com/LedgerHQ/ledger-live/commit/aadb3d57f5719cc2cc397975eafec8094b160afe) Thanks [@gre-ledger](https://github.com/gre-ledger)! - rxjs@7.8.2 everywhere
- [#13091](https://github.com/LedgerHQ/ledger-live/pull/13091) [`34248c3`](https://github.com/LedgerHQ/ledger-live/commit/34248c306479dafe6335b2c176daf25064c85b3b) Thanks [@dilaouid](https://github.com/dilaouid)! - feat: add descriptors (+supported features) and helpers for each coins
### Patch Changes
- Updated dependencies [[`480a08a`](https://github.com/LedgerHQ/ledger-live/commit/480a08ae190119829910b46ecc6d2a9fb11bb7c2), [`19a54fd`](https://github.com/LedgerHQ/ledger-live/commit/19a54fd89a2d3c7481aebc28817870875f9d44dc), [`e63194f`](https://github.com/LedgerHQ/ledger-live/commit/e63194f7dbd5ff2b0135c26aac3842a2be676b0a), [`bc76d51`](https://github.com/LedgerHQ/ledger-live/commit/bc76d5154d35f8340b6b282c4909cd26920b8d40), [`4be69a7`](https://github.com/LedgerHQ/ledger-live/commit/4be69a71dcd7624a1cba8dd1b1847ef009eb2d83), [`7ae71b6`](https://github.com/LedgerHQ/ledger-live/commit/7ae71b64161424b398b63f77da5127085143fcdc), [`5fa83e4`](https://github.com/LedgerHQ/ledger-live/commit/5fa83e49c5fb103da7ecf0777b7e75bb35d5ed61), [`c5da2ce`](https://github.com/LedgerHQ/ledger-live/commit/c5da2cef7cded2b53c1af9aa3174cd27e5c92e0a), [`450f518`](https://github.com/LedgerHQ/ledger-live/commit/450f518d4cedb828c5fe1e7ccffaabd483f53226), [`30be235`](https://github.com/LedgerHQ/ledger-live/commit/30be2354822b3497c69322294ff1dab43375be50), [`bdacedf`](https://github.com/LedgerHQ/ledger-live/commit/bdacedfe32bea8ffce96ab675a44c0d7cf395143), [`0924eed`](https://github.com/LedgerHQ/ledger-live/commit/0924eed6a633793999e8657076140523e30ae40b), [`5e8d6be`](https://github.com/LedgerHQ/ledger-live/commit/5e8d6be609dd37c48d747890e56189e0716d5273), [`768718d`](https://github.com/LedgerHQ/ledger-live/commit/768718df029bc8799b88c0299925dc56302b0c53), [`a5ad7d4`](https://github.com/LedgerHQ/ledger-live/commit/a5ad7d4578c06db3e40f260451b644c27e20cb62), [`aadb3d5`](https://github.com/LedgerHQ/ledger-live/commit/aadb3d57f5719cc2cc397975eafec8094b160afe), [`e44d216`](https://github.com/LedgerHQ/ledger-live/commit/e44d216d516df87e13f033ed64fedc1ce96380f4), [`d4bad44`](https://github.com/LedgerHQ/ledger-live/commit/d4bad4433c3fb083d95820d2927a9e8beeaf244f), [`8d8e1b7`](https://github.com/LedgerHQ/ledger-live/commit/8d8e1b7bb26305af326ea21710248223d1e8653b), [`07de7a8`](https://github.com/LedgerHQ/ledger-live/commit/07de7a87415ae4d1126e751d6a4d521ced3065e3), [`d37fa4b`](https://github.com/LedgerHQ/ledger-live/commit/d37fa4baf4534161bffe5033ce44fc7780c79d89), [`5e0556a`](https://github.com/LedgerHQ/ledger-live/commit/5e0556a3bd0ea60277462eed10c997b17b09d299), [`bce6610`](https://github.com/LedgerHQ/ledger-live/commit/bce6610ca8554a85f8f17b6014e921fdecd3fa4f), [`ddd40b4`](https://github.com/LedgerHQ/ledger-live/commit/ddd40b4cae93ecf3139fd33dc0f4dd1c8366d628), [`2a60165`](https://github.com/LedgerHQ/ledger-live/commit/2a601656b7a23a424a29f006ec53090648fdae4f), [`34248c3`](https://github.com/LedgerHQ/ledger-live/commit/34248c306479dafe6335b2c176daf25064c85b3b), [`2d9f320`](https://github.com/LedgerHQ/ledger-live/commit/2d9f32087eea12ae9d5ea2347b277b8bf4e60f55), [`c56ab86`](https://github.com/LedgerHQ/ledger-live/commit/c56ab86ab65597caf87a09b7596faa54f3104bd4)]:
- @ledgerhq/coin-framework@6.11.0
- @ledgerhq/types-live@6.91.0
- @ledgerhq/cryptoassets@13.35.0
- @ledgerhq/errors@6.28.0
- @ledgerhq/devices@8.8.0
- @ledgerhq/live-network@2.1.4
## 6.11.0-next.0
### Minor Changes
- [#12967](https://github.com/LedgerHQ/ledger-live/pull/12967) [`5e8d6be`](https://github.com/LedgerHQ/ledger-live/commit/5e8d6be609dd37c48d747890e56189e0716d5273) Thanks [@Moustafa-Koterba](https://github.com/Moustafa-Koterba)! - Validate address implementation on all currencies
- [#13155](https://github.com/LedgerHQ/ledger-live/pull/13155) [`aadb3d5`](https://github.com/LedgerHQ/ledger-live/commit/aadb3d57f5719cc2cc397975eafec8094b160afe) Thanks [@gre-ledger](https://github.com/gre-ledger)! - rxjs@7.8.2 everywhere
- [#13091](https://github.com/LedgerHQ/ledger-live/pull/13091) [`34248c3`](https://github.com/LedgerHQ/ledger-live/commit/34248c306479dafe6335b2c176daf25064c85b3b) Thanks [@dilaouid](https://github.com/dilaouid)! - feat: add descriptors (+supported features) and helpers for each coins
### Patch Changes
- Updated dependencies [[`480a08a`](https://github.com/LedgerHQ/ledger-live/commit/480a08ae190119829910b46ecc6d2a9fb11bb7c2), [`19a54fd`](https://github.com/LedgerHQ/ledger-live/commit/19a54fd89a2d3c7481aebc28817870875f9d44dc), [`e63194f`](https://github.com/LedgerHQ/ledger-live/commit/e63194f7dbd5ff2b0135c26aac3842a2be676b0a), [`bc76d51`](https://github.com/LedgerHQ/ledger-live/commit/bc76d5154d35f8340b6b282c4909cd26920b8d40), [`4be69a7`](https://github.com/LedgerHQ/ledger-live/commit/4be69a71dcd7624a1cba8dd1b1847ef009eb2d83), [`7ae71b6`](https://github.com/LedgerHQ/ledger-live/commit/7ae71b64161424b398b63f77da5127085143fcdc), [`5fa83e4`](https://github.com/LedgerHQ/ledger-live/commit/5fa83e49c5fb103da7ecf0777b7e75bb35d5ed61), [`c5da2ce`](https://github.com/LedgerHQ/ledger-live/commit/c5da2cef7cded2b53c1af9aa3174cd27e5c92e0a), [`450f518`](https://github.com/LedgerHQ/ledger-live/commit/450f518d4cedb828c5fe1e7ccffaabd483f53226), [`30be235`](https://github.com/LedgerHQ/ledger-live/commit/30be2354822b3497c69322294ff1dab43375be50), [`bdacedf`](https://github.com/LedgerHQ/ledger-live/commit/bdacedfe32bea8ffce96ab675a44c0d7cf395143), [`0924eed`](https://github.com/LedgerHQ/ledger-live/commit/0924eed6a633793999e8657076140523e30ae40b), [`5e8d6be`](https://github.com/LedgerHQ/ledger-live/commit/5e8d6be609dd37c48d747890e56189e0716d5273), [`768718d`](https://github.com/LedgerHQ/ledger-live/commit/768718df029bc8799b88c0299925dc56302b0c53), [`a5ad7d4`](https://github.com/LedgerHQ/ledger-live/commit/a5ad7d4578c06db3e40f260451b644c27e20cb62), [`aadb3d5`](https://github.com/LedgerHQ/ledger-live/commit/aadb3d57f5719cc2cc397975eafec8094b160afe), [`e44d216`](https://github.com/LedgerHQ/ledger-live/commit/e44d216d516df87e13f033ed64fedc1ce96380f4), [`d4bad44`](https://github.com/LedgerHQ/ledger-live/commit/d4bad4433c3fb083d95820d2927a9e8beeaf244f), [`8d8e1b7`](https://github.com/LedgerHQ/ledger-live/commit/8d8e1b7bb26305af326ea21710248223d1e8653b), [`07de7a8`](https://github.com/LedgerHQ/ledger-live/commit/07de7a87415ae4d1126e751d6a4d521ced3065e3), [`d37fa4b`](https://github.com/LedgerHQ/ledger-live/commit/d37fa4baf4534161bffe5033ce44fc7780c79d89), [`5e0556a`](https://github.com/LedgerHQ/ledger-live/commit/5e0556a3bd0ea60277462eed10c997b17b09d299), [`bce6610`](https://github.com/LedgerHQ/ledger-live/commit/bce6610ca8554a85f8f17b6014e921fdecd3fa4f), [`ddd40b4`](https://github.com/LedgerHQ/ledger-live/commit/ddd40b4cae93ecf3139fd33dc0f4dd1c8366d628), [`2a60165`](https://github.com/LedgerHQ/ledger-live/commit/2a601656b7a23a424a29f006ec53090648fdae4f), [`34248c3`](https://github.com/LedgerHQ/ledger-live/commit/34248c306479dafe6335b2c176daf25064c85b3b), [`2d9f320`](https://github.com/LedgerHQ/ledger-live/commit/2d9f32087eea12ae9d5ea2347b277b8bf4e60f55), [`c56ab86`](https://github.com/LedgerHQ/ledger-live/commit/c56ab86ab65597caf87a09b7596faa54f3104bd4)]:
- @ledgerhq/coin-framework@6.11.0-next.0
- @ledgerhq/types-live@6.91.0-next.0
- @ledgerhq/cryptoassets@13.35.0-next.0
- @ledgerhq/errors@6.28.0-next.0
- @ledgerhq/devices@8.8.0-next.0
- @ledgerhq/live-network@2.1.4-next.0
## 6.10.1
### Patch Changes
- Updated dependencies [[`b68b749`](https://github.com/LedgerHQ/ledger-live/commit/b68b749b53c9583dd983ab057faa89fced1e541e)]:
- @ledgerhq/errors@6.27.1
- @ledgerhq/coin-framework@6.10.1
- @ledgerhq/cryptoassets@13.34.1
- @ledgerhq/devices@8.7.1
- @ledgerhq/live-network@2.1.3
## 6.10.1-hotfix.0
### Patch Changes
- Updated dependencies [[`b68b749`](https://github.com/LedgerHQ/ledger-live/commit/b68b749b53c9583dd983ab057faa89fced1e541e)]:
- @ledgerhq/errors@6.27.1-hotfix.0
- @ledgerhq/coin-framework@6.10.1-hotfix.0
- @ledgerhq/cryptoassets@13.34.1-hotfix.0
- @ledgerhq/devices@8.7.1-hotfix.0
- @ledgerhq/live-network@2.1.3-hotfix.0
## 6.10.0
### Minor Changes
- [#12907](https://github.com/LedgerHQ/ledger-live/pull/12907) [`bf75159`](https://github.com/LedgerHQ/ledger-live/commit/bf75159516d5dcd56711d3ba87176b1267622e9a) Thanks [@jnicoulaud-ledger](https://github.com/jnicoulaud-ledger)! - fix(TSD-7534): coin-modules/tezos: workaround reveal fees estimation failure
- [#12697](https://github.com/LedgerHQ/ledger-live/pull/12697) [`5c6e847`](https://github.com/LedgerHQ/ledger-live/commit/5c6e8475857bd01037255ce2cc642941fd7b7e6e) Thanks [@jprudent](https://github.com/jprudent)! - fix: some estimation fails with "proto.023-PtSeouLo.contract.manager.inconsistent_hash"
- [#13000](https://github.com/LedgerHQ/ledger-live/pull/13000) [`8d666e3`](https://github.com/LedgerHQ/ledger-live/commit/8d666e36cfc9d8ae99d2de29f0c4eff83b974e7f) Thanks [@jprudent](https://github.com/jprudent)! - fix(back-10144,tezos): do not compress already compressed public keys
- [#12889](https://github.com/LedgerHQ/ledger-live/pull/12889) [`bf6f5d3`](https://github.com/LedgerHQ/ledger-live/commit/bf6f5d39cf752138741d16b246d1bc322426f9e5) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - refactor(llc): use core operation `tx.failed` property
### Patch Changes
- Updated dependencies [[`50aeea1`](https://github.com/LedgerHQ/ledger-live/commit/50aeea1233056e9abff9568eb928927f39e76cff), [`fd031d7`](https://github.com/LedgerHQ/ledger-live/commit/fd031d77ca7ed011ec492700fd4d7bc86c518907), [`a2ecb55`](https://github.com/LedgerHQ/ledger-live/commit/a2ecb55df9d383dc282f5fe489cb14386208215e), [`fe81926`](https://github.com/LedgerHQ/ledger-live/commit/fe81926afeb2df8e917e6bd1e4cbab13f09647fd), [`67137eb`](https://github.com/LedgerHQ/ledger-live/commit/67137eb5d7f04dd5f3610fdaa4e463d292654105), [`49ef24c`](https://github.com/LedgerHQ/ledger-live/commit/49ef24cbd1948bfd146af0b20f2128951b2dc170), [`b4a4e16`](https://github.com/LedgerHQ/ledger-live/commit/b4a4e160aae6fd64f944ab25633f6931dc4358d3), [`927ae64`](https://github.com/LedgerHQ/ledger-live/commit/927ae64db0bb04af54e25623655a001a68e0f2d3), [`903ea9c`](https://github.com/LedgerHQ/ledger-live/commit/903ea9cdacf704a0119de2803a4f409b775391a5), [`9251b77`](https://github.com/LedgerHQ/ledger-live/commit/9251b77fcb01709723842f19220a2a41a6fc8f3b), [`02ef98f`](https://github.com/LedgerHQ/ledger-live/commit/02ef98faeb13c182ef255e06a43c39abeb55ecc7), [`6d0c6b2`](https://github.com/LedgerHQ/ledger-live/commit/6d0c6b2eda60049d8eebda5de2c54e8f0be7d009), [`38d5880`](https://github.com/LedgerHQ/ledger-live/commit/38d5880ca6c3cc8808182e9d0f046b204914d34a), [`0d33751`](https://github.com/LedgerHQ/ledger-live/commit/0d33751bb2ae599d0d26ce6a8efdbe01757f12fb), [`aadcec6`](https://github.com/LedgerHQ/ledger-live/commit/aadcec66847b800f79452ba1df09149e0a1cb9e8), [`b113920`](https://github.com/LedgerHQ/ledger-live/commit/b11392056bc334fc1813c473569ad3ae7be08045), [`ed8532b`](https://github.com/LedgerHQ/ledger-live/commit/ed8532bad754ca2b5f1788c6e92f4646b775ec79), [`88a5018`](https://github.com/LedgerHQ/ledger-live/commit/88a501871d58c980f18495b5b32012a3eaa9ab2c), [`9659a34`](https://github.com/LedgerHQ/ledger-live/commit/9659a34d9998d5c4dff8618bf6cef7d16403680d)]:
- @ledgerhq/cryptoassets@13.34.0
- @ledgerhq/types-live@6.90.0
- @ledgerhq/coin-framework@6.10.0
- @ledgerhq/live-network@2.1.2
## 6.10.0-next.0
### Minor Changes
- [#12907](https://github.com/LedgerHQ/ledger-live/pull/12907) [`bf75159`](https://github.com/LedgerHQ/ledger-live/commit/bf75159516d5dcd56711d3ba87176b1267622e9a) Thanks [@jnicoulaud-ledger](https://github.com/jnicoulaud-ledger)! - fix(TSD-7534): coin-modules/tezos: workaround reveal fees estimation failure
- [#12697](https://github.com/LedgerHQ/ledger-live/pull/12697) [`5c6e847`](https://github.com/LedgerHQ/ledger-live/commit/5c6e8475857bd01037255ce2cc642941fd7b7e6e) Thanks [@jprudent](https://github.com/jprudent)! - fix: some estimation fails with "proto.023-PtSeouLo.contract.manager.inconsistent_hash"
- [#13000](https://github.com/LedgerHQ/ledger-live/pull/13000) [`8d666e3`](https://github.com/LedgerHQ/ledger-live/commit/8d666e36cfc9d8ae99d2de29f0c4eff83b974e7f) Thanks [@jprudent](https://github.com/jprudent)! - fix(back-10144,tezos): do not compress already compressed public keys
- [#12889](https://github.com/LedgerHQ/ledger-live/pull/12889) [`bf6f5d3`](https://github.com/LedgerHQ/ledger-live/commit/bf6f5d39cf752138741d16b246d1bc322426f9e5) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - refactor(llc): use core operation `tx.failed` property
### Patch Changes
- Updated dependencies [[`50aeea1`](https://github.com/LedgerHQ/ledger-live/commit/50aeea1233056e9abff9568eb928927f39e76cff), [`fd031d7`](https://github.com/LedgerHQ/ledger-live/commit/fd031d77ca7ed011ec492700fd4d7bc86c518907), [`a2ecb55`](https://github.com/LedgerHQ/ledger-live/commit/a2ecb55df9d383dc282f5fe489cb14386208215e), [`fe81926`](https://github.com/LedgerHQ/ledger-live/commit/fe81926afeb2df8e917e6bd1e4cbab13f09647fd), [`67137eb`](https://github.com/LedgerHQ/ledger-live/commit/67137eb5d7f04dd5f3610fdaa4e463d292654105), [`49ef24c`](https://github.com/LedgerHQ/ledger-live/commit/49ef24cbd1948bfd146af0b20f2128951b2dc170), [`b4a4e16`](https://github.com/LedgerHQ/ledger-live/commit/b4a4e160aae6fd64f944ab25633f6931dc4358d3), [`927ae64`](https://github.com/LedgerHQ/ledger-live/commit/927ae64db0bb04af54e25623655a001a68e0f2d3), [`903ea9c`](https://github.com/LedgerHQ/ledger-live/commit/903ea9cdacf704a0119de2803a4f409b775391a5), [`9251b77`](https://github.com/LedgerHQ/ledger-live/commit/9251b77fcb01709723842f19220a2a41a6fc8f3b), [`02ef98f`](https://github.com/LedgerHQ/ledger-live/commit/02ef98faeb13c182ef255e06a43c39abeb55ecc7), [`6d0c6b2`](https://github.com/LedgerHQ/ledger-live/commit/6d0c6b2eda60049d8eebda5de2c54e8f0be7d009), [`38d5880`](https://github.com/LedgerHQ/ledger-live/commit/38d5880ca6c3cc8808182e9d0f046b204914d34a), [`0d33751`](https://github.com/LedgerHQ/ledger-live/commit/0d33751bb2ae599d0d26ce6a8efdbe01757f12fb), [`aadcec6`](https://github.com/LedgerHQ/ledger-live/commit/aadcec66847b800f79452ba1df09149e0a1cb9e8), [`b113920`](https://github.com/LedgerHQ/ledger-live/commit/b11392056bc334fc1813c473569ad3ae7be08045), [`ed8532b`](https://github.com/LedgerHQ/ledger-live/commit/ed8532bad754ca2b5f1788c6e92f4646b775ec79), [`88a5018`](https://github.com/LedgerHQ/ledger-live/commit/88a501871d58c980f18495b5b32012a3eaa9ab2c), [`9659a34`](https://github.com/LedgerHQ/ledger-live/commit/9659a34d9998d5c4dff8618bf6cef7d16403680d)]:
- @ledgerhq/cryptoassets@13.34.0-next.0
- @ledgerhq/types-live@6.90.0-next.0
- @ledgerhq/coin-framework@6.10.0-next.0
- @ledgerhq/live-network@2.1.2-next.0
## 6.9.0
### Minor Changes
- [#12402](https://github.com/LedgerHQ/ledger-live/pull/12402) [`544721d`](https://github.com/LedgerHQ/ledger-live/commit/544721d198454526ef83516619d59c881ba34eb9) Thanks [@qperrot](https://github.com/qperrot)! - Fix transactionSequenceNumber type
- [#12604](https://github.com/LedgerHQ/ledger-live/pull/12604) [`eb5a17e`](https://github.com/LedgerHQ/ledger-live/commit/eb5a17e4db336eaa871eaeb52ffa5248e0f78bec) Thanks [@jnicoulaud-ledger](https://github.com/jnicoulaud-ledger)! - coin-modules/alpaca: add transaction status to operations
### Patch Changes
- Updated dependencies [[`74a340b`](https://github.com/LedgerHQ/ledger-live/commit/74a340b258589c9c37476103029eb036b930616c), [`a6bc24e`](https://github.com/LedgerHQ/ledger-live/commit/a6bc24ee988b98bf82f807ac5ce731ba79813901), [`b69c97d`](https://github.com/LedgerHQ/ledger-live/commit/b69c97d979ba97154c9abfda6abfc2a36becee4f), [`544721d`](https://github.com/LedgerHQ/ledger-live/commit/544721d198454526ef83516619d59c881ba34eb9), [`1c6f5f5`](https://github.com/LedgerHQ/ledger-live/commit/1c6f5f5843349b1955f7ca466f98cbe4ffcdaddf), [`d5d838a`](https://github.com/LedgerHQ/ledger-live/commit/d5d838a23e00edd53293843781c559c41db4e854), [`9f61dcf`](https://github.com/LedgerHQ/ledger-live/commit/9f61dcf6163fd66657e5be732c28bea623a40515), [`938b970`](https://github.com/LedgerHQ/ledger-live/commit/938b970e15118dc706c759a3bec27dc01c3dd268), [`c40e9da`](https://github.com/LedgerHQ/ledger-live/commit/c40e9da68452fe9827b9435ff2d162291186be73), [`c0b5b9f`](https://github.com/LedgerHQ/ledger-live/commit/c0b5b9f4cdcb2ea3e15419cbf3d1a14f725c3e6a), [`70049be`](https://github.com/LedgerHQ/ledger-live/commit/70049bed0cd0a8c7a9e4947a63af82061dad46c0), [`5b41dd5`](https://github.com/LedgerHQ/ledger-live/commit/5b41dd56e024a5d03ba0e49084113c04887395db), [`eb5a17e`](https://github.com/LedgerHQ/ledger-live/commit/eb5a17e4db336eaa871eaeb52ffa5248e0f78bec), [`c70f6a8`](https://github.com/LedgerHQ/ledger-live/commit/c70f6a8370056b6fd8f236205471359d6f9b846f)]:
- @ledgerhq/types-live@6.89.0
- @ledgerhq/cryptoassets@13.33.0
- @ledgerhq/coin-framework@6.9.0
- @ledgerhq/live-network@2.1.1
## 6.9.0-next.0
### Minor Changes
- [#12402](https://github.com/LedgerHQ/ledger-live/pull/12402) [`544721d`](https://github.com/LedgerHQ/ledger-live/commit/544721d198454526ef83516619d59c881ba34eb9) Thanks [@qperrot](https://github.com/qperrot)! - Fix transactionSequenceNumber type
- [#12604](https://github.com/LedgerHQ/ledger-live/pull/12604) [`eb5a17e`](https://github.com/LedgerHQ/ledger-live/commit/eb5a17e4db336eaa871eaeb52ffa5248e0f78bec) Thanks [@jnicoulaud-ledger](https://github.com/jnicoulaud-ledger)! - coin-modules/alpaca: add transaction status to operations
### Patch Changes
- Updated dependencies [[`74a340b`](https://github.com/LedgerHQ/ledger-live/commit/74a340b258589c9c37476103029eb036b930616c), [`a6bc24e`](https://github.com/LedgerHQ/ledger-live/commit/a6bc24ee988b98bf82f807ac5ce731ba79813901), [`b69c97d`](https://github.com/LedgerHQ/ledger-live/commit/b69c97d979ba97154c9abfda6abfc2a36becee4f), [`544721d`](https://github.com/LedgerHQ/ledger-live/commit/544721d198454526ef83516619d59c881ba34eb9), [`1c6f5f5`](https://github.com/LedgerHQ/ledger-live/commit/1c6f5f5843349b1955f7ca466f98cbe4ffcdaddf), [`d5d838a`](https://github.com/LedgerHQ/ledger-live/commit/d5d838a23e00edd53293843781c559c41db4e854), [`9f61dcf`](https://github.com/LedgerHQ/ledger-live/commit/9f61dcf6163fd66657e5be732c28bea623a40515), [`938b970`](https://github.com/LedgerHQ/ledger-live/commit/938b970e15118dc706c759a3bec27dc01c3dd268), [`c40e9da`](https://github.com/LedgerHQ/ledger-live/commit/c40e9da68452fe9827b9435ff2d162291186be73), [`c0b5b9f`](https://github.com/LedgerHQ/ledger-live/commit/c0b5b9f4cdcb2ea3e15419cbf3d1a14f725c3e6a), [`70049be`](https://github.com/LedgerHQ/ledger-live/commit/70049bed0cd0a8c7a9e4947a63af82061dad46c0), [`5b41dd5`](https://github.com/LedgerHQ/ledger-live/commit/5b41dd56e024a5d03ba0e49084113c04887395db), [`eb5a17e`](https://github.com/LedgerHQ/ledger-live/commit/eb5a17e4db336eaa871eaeb52ffa5248e0f78bec), [`c70f6a8`](https://github.com/LedgerHQ/ledger-live/commit/c70f6a8370056b6fd8f236205471359d6f9b846f)]:
- @ledgerhq/types-live@6.89.0-next.0
- @ledgerhq/cryptoassets@13.33.0-next.0
- @ledgerhq/coin-framework@6.9.0-next.0
- @ledgerhq/live-network@2.1.1-next.0
## 6.8.0
### Minor Changes
- [#12340](https://github.com/LedgerHQ/ledger-live/pull/12340) [`8d7c1f7`](https://github.com/LedgerHQ/ledger-live/commit/8d7c1f7a92489647399b0e780d4bb926508e8554) Thanks [@gre-ledger](https://github.com/gre-ledger)! - migrate getDeviceTransactionConfig to async
- [#12372](https://github.com/LedgerHQ/ledger-live/pull/12372) [`a731c4c`](https://github.com/LedgerHQ/ledger-live/commit/a731c4cd492a968eb7baa981fdd8aaddedd21f25) Thanks [@jprudent](https://github.com/jprudent)! - Add AlpacaApi.getValidators and implementation for SUI
### Patch Changes
- Updated dependencies [[`b4ceaff`](https://github.com/LedgerHQ/ledger-live/commit/b4ceaff2ecf68d8a14e09801c76ab0b014c45286), [`da750a1`](https://github.com/LedgerHQ/ledger-live/commit/da750a16ee5f2c083114569b8ae3c708cceba06c), [`63e8f34`](https://github.com/LedgerHQ/ledger-live/commit/63e8f342f6b951ab77bb710b9971f033c05e579e), [`ccf788d`](https://github.com/LedgerHQ/ledger-live/commit/ccf788d7c0239ca95e76c3cc340f9a6bd09ea726), [`34b28dd`](https://github.com/LedgerHQ/ledger-live/commit/34b28dd5e819906daaa79db5fe6064674def5e7d), [`607e4be`](https://github.com/LedgerHQ/ledger-live/commit/607e4be33145c102debce1606224b08579888aa8), [`c96d73f`](https://github.com/LedgerHQ/ledger-live/commit/c96d73fed0a75a9c208f78d51c34b742703a7dda), [`7744980`](https://github.com/LedgerHQ/ledger-live/commit/774498090411f1a6d6c06395dda1fc7cd24adf24), [`77566c5`](https://github.com/LedgerHQ/ledger-live/commit/77566c5a3b5795f5938bd5daaa5f8d65934c56b8), [`c1a4bfd`](https://github.com/LedgerHQ/ledger-live/commit/c1a4bfd34b46c6b6587d247673cadb3c078deb1d), [`f8d904d`](https://github.com/LedgerHQ/ledger-live/commit/f8d904de5607c103549f247428b5a4079f28c1c0), [`eb176c2`](https://github.com/LedgerHQ/ledger-live/commit/eb176c201d711f1d28f74de831c4a6cd0c2d4a50), [`a731c4c`](https://github.com/LedgerHQ/ledger-live/commit/a731c4cd492a968eb7baa981fdd8aaddedd21f25), [`b962966`](https://github.com/LedgerHQ/ledger-live/commit/b962966525517c5cfa7f1f8826f8f2b9162189e4), [`759064d`](https://github.com/LedgerHQ/ledger-live/commit/759064d4815c636af2d73ba548a85b4f53e7b491), [`f392f69`](https://github.com/LedgerHQ/ledger-live/commit/f392f6912f445cc2f7cf4dfcfd030fa3da76f736), [`36e5168`](https://github.com/LedgerHQ/ledger-live/commit/36e5168397eaec2a5f425038392a4400f60571d0), [`6ccabef`](https://github.com/LedgerHQ/ledger-live/commit/6ccabef8f3c4e8cc042299d531684595ebadcc55), [`3d4188a`](https://github.com/LedgerHQ/ledger-live/commit/3d4188a26021d33b950129d82cb55d2c2e8d4358), [`d9305e8`](https://github.com/LedgerHQ/ledger-live/commit/d9305e8a4d8364366aaba05dd698396d28b539dc), [`2c6a198`](https://github.com/LedgerHQ/ledger-live/commit/2c6a198ba28391695202a0787ce168c53768ff37)]:
- @ledgerhq/cryptoassets@13.32.0
- @ledgerhq/coin-framework@6.8.0
- @ledgerhq/live-network@2.1.0
- @ledgerhq/types-live@6.88.0
- @ledgerhq/devices@8.7.0
- @ledgerhq/errors@6.27.0
## 6.8.0-next.0
### Minor Changes
- [#12340](https://github.com/LedgerHQ/ledger-live/pull/12340) [`8d7c1f7`](https://github.com/LedgerHQ/ledger-live/commit/8d7c1f7a92489647399b0e780d4bb926508e8554) Thanks [@gre-ledger](https://github.com/gre-ledger)! - migrate getDeviceTransactionConfig to async
- [#12372](https://github.com/LedgerHQ/ledger-live/pull/12372) [`a731c4c`](https://github.com/LedgerHQ/ledger-live/commit/a731c4cd492a968eb7baa981fdd8aaddedd21f25) Thanks [@jprudent](https://github.com/jprudent)! - Add AlpacaApi.getValidators and implementation for SUI
### Patch Changes
- Updated dependencies [[`b4ceaff`](https://github.com/LedgerHQ/ledger-live/commit/b4ceaff2ecf68d8a14e09801c76ab0b014c45286), [`da750a1`](https://github.com/LedgerHQ/ledger-live/commit/da750a16ee5f2c083114569b8ae3c708cceba06c), [`63e8f34`](https://github.com/LedgerHQ/ledger-live/commit/63e8f342f6b951ab77bb710b9971f033c05e579e), [`ccf788d`](https://github.com/LedgerHQ/ledger-live/commit/ccf788d7c0239ca95e76c3cc340f9a6bd09ea726), [`34b28dd`](https://github.com/LedgerHQ/ledger-live/commit/34b28dd5e819906daaa79db5fe6064674def5e7d), [`607e4be`](https://github.com/LedgerHQ/ledger-live/commit/607e4be33145c102debce1606224b08579888aa8), [`c96d73f`](https://github.com/LedgerHQ/ledger-live/commit/c96d73fed0a75a9c208f78d51c34b742703a7dda), [`7744980`](https://github.com/LedgerHQ/ledger-live/commit/774498090411f1a6d6c06395dda1fc7cd24adf24), [`77566c5`](https://github.com/LedgerHQ/ledger-live/commit/77566c5a3b5795f5938bd5daaa5f8d65934c56b8), [`c1a4bfd`](https://github.com/LedgerHQ/ledger-live/commit/c1a4bfd34b46c6b6587d247673cadb3c078deb1d), [`f8d904d`](https://github.com/LedgerHQ/ledger-live/commit/f8d904de5607c103549f247428b5a4079f28c1c0), [`eb176c2`](https://github.com/LedgerHQ/ledger-live/commit/eb176c201d711f1d28f74de831c4a6cd0c2d4a50), [`a731c4c`](https://github.com/LedgerHQ/ledger-live/commit/a731c4cd492a968eb7baa981fdd8aaddedd21f25), [`b962966`](https://github.com/LedgerHQ/ledger-live/commit/b962966525517c5cfa7f1f8826f8f2b9162189e4), [`759064d`](https://github.com/LedgerHQ/ledger-live/commit/759064d4815c636af2d73ba548a85b4f53e7b491), [`f392f69`](https://github.com/LedgerHQ/ledger-live/commit/f392f6912f445cc2f7cf4dfcfd030fa3da76f736), [`36e5168`](https://github.com/LedgerHQ/ledger-live/commit/36e5168397eaec2a5f425038392a4400f60571d0), [`6ccabef`](https://github.com/LedgerHQ/ledger-live/commit/6ccabef8f3c4e8cc042299d531684595ebadcc55), [`3d4188a`](https://github.com/LedgerHQ/ledger-live/commit/3d4188a26021d33b950129d82cb55d2c2e8d4358), [`d9305e8`](https://github.com/LedgerHQ/ledger-live/commit/d9305e8a4d8364366aaba05dd698396d28b539dc), [`2c6a198`](https://github.com/LedgerHQ/ledger-live/commit/2c6a198ba28391695202a0787ce168c53768ff37)]:
- @ledgerhq/cryptoassets@13.32.0-next.0
- @ledgerhq/coin-framework@6.8.0-next.0
- @ledgerhq/live-network@2.1.0-next.0
- @ledgerhq/types-live@6.88.0-next.0
- @ledgerhq/devices@8.7.0-next.0
- @ledgerhq/errors@6.27.0-next.0
## 6.7.0
### Minor Changes
- [#12291](https://github.com/LedgerHQ/ledger-live/pull/12291) [`5098fd4`](https://github.com/LedgerHQ/ledger-live/commit/5098fd44f8c8aa883cabefe691c090f83ca936d5) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - fix(coin-tezos): use 0 amount within delegate and undelegate operations
- [#12091](https://github.com/LedgerHQ/ledger-live/pull/12091) [`04fc7da`](https://github.com/LedgerHQ/ledger-live/commit/04fc7daed03fde65ac8c1ec4c0e28d784e16337a) Thanks [@dilaouid](https://github.com/dilaouid)! - fix: shows "delegate/undelegate" instead of "sent" in the drawer
- [#12015](https://github.com/LedgerHQ/ledger-live/pull/12015) [`03af552`](https://github.com/LedgerHQ/ledger-live/commit/03af552b621e19e31747a65b1870dfe8d3bb005b) Thanks [@Justkant](https://github.com/Justkant)! - feat: new signRawTransaction to support any XRP transaction with wallet-api
- [#12062](https://github.com/LedgerHQ/ledger-live/pull/12062) [`d2b12e7`](https://github.com/LedgerHQ/ledger-live/commit/d2b12e70bba9e772d078d1fe4d9c537b8d316a87) Thanks [@qperrot](https://github.com/qperrot)! - feat: estimateFees and craftTransaction for evm staking and new Intent type
- [#12139](https://github.com/LedgerHQ/ledger-live/pull/12139) [`246b070`](https://github.com/LedgerHQ/ledger-live/commit/246b0701c1f375f3cdd847c5d2a8fe3c2060ef28) Thanks [@dilaouid](https://github.com/dilaouid)! - feat: staking generic bridge support (tezos)
### Patch Changes
- Updated dependencies [[`ea16f59`](https://github.com/LedgerHQ/ledger-live/commit/ea16f592e85019a1b77287a7f2b975c6fcffc74c), [`b88faa1`](https://github.com/LedgerHQ/ledger-live/commit/b88faa18e2f5cd309b54fc3157a44db606846cc5), [`cfe65ca`](https://github.com/LedgerHQ/ledger-live/commit/cfe65cafa268be4e53197ee163ce78f28ed72592), [`a9aacdb`](https://github.com/LedgerHQ/ledger-live/commit/a9aacdb330700f0a294833f7d77de17f179229b2), [`3979c07`](https://github.com/LedgerHQ/ledger-live/commit/3979c0715e4f54165c89d00ebe1441e064e1a110), [`c6a676f`](https://github.com/LedgerHQ/ledger-live/commit/c6a676ff80581ac19b896adf44d54812983b72da), [`b5fc1bd`](https://github.com/LedgerHQ/ledger-live/commit/b5fc1bd28fff091241905fec5ff8dc8af4c99b79), [`03af552`](https://github.com/LedgerHQ/ledger-live/commit/03af552b621e19e31747a65b1870dfe8d3bb005b), [`89ac0ed`](https://github.com/LedgerHQ/ledger-live/commit/89ac0eddc145dcf5c7cf240aa8be4301372c8f33), [`565da80`](https://github.com/LedgerHQ/ledger-live/commit/565da807b1ebbfc830fd0e47b3d8856f88d410a6), [`8645f01`](https://github.com/LedgerHQ/ledger-live/commit/8645f016191d29a55f6b0ca6e4b1d1909fd35445), [`1d9860c`](https://github.com/LedgerHQ/ledger-live/commit/1d9860cd1688131d391579955b40c6710b667db8), [`d2b12e7`](https://github.com/LedgerHQ/ledger-live/commit/d2b12e70bba9e772d078d1fe4d9c537b8d316a87), [`db25e21`](https://github.com/LedgerHQ/ledger-live/commit/db25e212b87dea426b153c6f1d988cead63c8c46), [`c8dbf40`](https://github.com/LedgerHQ/ledger-live/commit/c8dbf402268359e225a94782420111e786f875fa), [`cab7d97`](https://github.com/LedgerHQ/ledger-live/commit/cab7d9794e7babb8220c6d339fb08e618e3d4202)]:
- @ledgerhq/cryptoassets@13.31.0
- @ledgerhq/types-live@6.87.0
- @ledgerhq/coin-framework@6.7.0
- @ledgerhq/live-network@2.0.20
## 6.7.0-next.2
### Minor Changes
- [#12291](https://github.com/LedgerHQ/ledger-live/pull/12291) [`5098fd4`](https://github.com/LedgerHQ/ledger-live/commit/5098fd44f8c8aa883cabefe691c090f83ca936d5) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - fix(coin-tezos): use 0 amount within delegate and undelegate operations
## 6.7.0-next.1
### Patch Changes
- Updated dependencies [[`b88faa1`](https://github.com/LedgerHQ/ledger-live/commit/b88faa18e2f5cd309b54fc3157a44db606846cc5)]:
- @ledgerhq/types-live@6.87.0-next.1
- @ledgerhq/coin-framework@6.7.0-next.1
- @ledgerhq/cryptoassets@13.31.0-next.1
## 6.7.0-next.0
### Minor Changes
- [#12091](https://github.com/LedgerHQ/ledger-live/pull/12091) [`04fc7da`](https://github.com/LedgerHQ/ledger-live/commit/04fc7daed03fde65ac8c1ec4c0e28d784e16337a) Thanks [@dilaouid](https://github.com/dilaouid)! - fix: shows "delegate/undelegate" instead of "sent" in the drawer
- [#12015](https://github.com/LedgerHQ/ledger-live/pull/12015) [`03af552`](https://github.com/LedgerHQ/ledger-live/commit/03af552b621e19e31747a65b1870dfe8d3bb005b) Thanks [@Justkant](https://github.com/Justkant)! - feat: new signRawTransaction to support any XRP transaction with wallet-api
- [#12062](https://github.com/LedgerHQ/ledger-live/pull/12062) [`d2b12e7`](https://github.com/LedgerHQ/ledger-live/commit/d2b12e70bba9e772d078d1fe4d9c537b8d316a87) Thanks [@qperrot](https://github.com/qperrot)! - feat: estimateFees and craftTransaction for evm staking and new Intent type
- [#12139](https://github.com/LedgerHQ/ledger-live/pull/12139) [`246b070`](https://github.com/LedgerHQ/ledger-live/commit/246b0701c1f375f3cdd847c5d2a8fe3c2060ef28) Thanks [@dilaouid](https://github.com/dilaouid)! - feat: staking generic bridge support (tezos)
### Patch Changes
- Updated dependencies [[`ea16f59`](https://github.com/LedgerHQ/ledger-live/commit/ea16f592e85019a1b77287a7f2b975c6fcffc74c), [`cfe65ca`](https://github.com/LedgerHQ/ledger-live/commit/cfe65cafa268be4e53197ee163ce78f28ed72592), [`a9aacdb`](https://github.com/LedgerHQ/ledger-live/commit/a9aacdb330700f0a294833f7d77de17f179229b2), [`3979c07`](https://github.com/LedgerHQ/ledger-live/commit/3979c0715e4f54165c89d00ebe1441e064e1a110), [`c6a676f`](https://github.com/LedgerHQ/ledger-live/commit/c6a676ff80581ac19b896adf44d54812983b72da), [`b5fc1bd`](https://github.com/LedgerHQ/ledger-live/commit/b5fc1bd28fff091241905fec5ff8dc8af4c99b79), [`03af552`](https://github.com/LedgerHQ/ledger-live/commit/03af552b621e19e31747a65b1870dfe8d3bb005b), [`89ac0ed`](https://github.com/LedgerHQ/ledger-live/commit/89ac0eddc145dcf5c7cf240aa8be4301372c8f33), [`565da80`](https://github.com/LedgerHQ/ledger-live/commit/565da807b1ebbfc830fd0e47b3d8856f88d410a6), [`8645f01`](https://github.com/LedgerHQ/ledger-live/commit/8645f016191d29a55f6b0ca6e4b1d1909fd35445), [`1d9860c`](https://github.com/LedgerHQ/ledger-live/commit/1d9860cd1688131d391579955b40c6710b667db8), [`d2b12e7`](https://github.com/LedgerHQ/ledger-live/commit/d2b12e70bba9e772d078d1fe4d9c537b8d316a87), [`db25e21`](https://github.com/LedgerHQ/ledger-live/commit/db25e212b87dea426b153c6f1d988cead63c8c46), [`c8dbf40`](https://github.com/LedgerHQ/ledger-live/commit/c8dbf402268359e225a94782420111e786f875fa), [`cab7d97`](https://github.com/LedgerHQ/ledger-live/commit/cab7d9794e7babb8220c6d339fb08e618e3d4202)]:
- @ledgerhq/cryptoassets@13.31.0-next.0
- @ledgerhq/types-live@6.87.0-next.0
- @ledgerhq/coin-framework@6.7.0-next.0
- @ledgerhq/live-network@2.0.20-next.0
## 6.6.0
### Patch Changes
- Updated dependencies [[`e04d493`](https://github.com/LedgerHQ/ledger-live/commit/e04d49340c65c8b4608a37bb726d21350fdd32f1), [`a37c06f`](https://github.com/LedgerHQ/ledger-live/commit/a37c06f97b061a5db0dad3632bb5c3e8f293677c), [`ab0e1bc`](https://github.com/LedgerHQ/ledger-live/commit/ab0e1bcc97b66b750b6c29e618eb03ce6f25bb7b), [`c2d8d86`](https://github.com/LedgerHQ/ledger-live/commit/c2d8d8670f848989836c46ea08ae88c88086fdd6), [`4d60b7e`](https://github.com/LedgerHQ/ledger-live/commit/4d60b7e0984f0f8ef75c1483e0cfaf5784fbc5ed), [`e3b568d`](https://github.com/LedgerHQ/ledger-live/commit/e3b568d2cbeee6dcf19a7047ce9fa11a04b0ae2a), [`0d368f0`](https://github.com/LedgerHQ/ledger-live/commit/0d368f0e682b3bd3daafa6af5b396648a95b1488), [`f015ef3`](https://github.com/LedgerHQ/ledger-live/commit/f015ef32660905d00f55a45f451f38bc12aec9ba), [`fe1abf6`](https://github.com/LedgerHQ/ledger-live/commit/fe1abf640cc1a30b2e78bf7aa4a12e983a068f2e), [`e3bcefb`](https://github.com/LedgerHQ/ledger-live/commit/e3bcefbf8a46c91388d6f936fd31d6ffcdc24756)]:
- @ledgerhq/types-live@6.86.0
- @ledgerhq/cryptoassets@13.30.0
- @ledgerhq/types-cryptoassets@7.28.0
- @ledgerhq/errors@6.26.0
- @ledgerhq/coin-framework@6.6.0
- @ledgerhq/devices@8.6.1
- @ledgerhq/live-network@2.0.19
## 6.6.0-next.0
### Minor Changes
- [#11340](https://github.com/LedgerHQ/ledger-live/pull/11340) [`77ffab2`](https://github.com/LedgerHQ/ledger-live/commit/77ffab2f5d08fb45449b6b8316b0947dd46286b1) Thanks [@dilaouid](https://github.com/dilaouid)! - feat: staking generic bridge support (tezos)
### Patch Changes
- Updated dependencies [[`e04d493`](https://github.com/LedgerHQ/ledger-live/commit/e04d49340c65c8b4608a37bb726d21350fdd32f1), [`a37c06f`](https://github.com/LedgerHQ/ledger-live/commit/a37c06f97b061a5db0dad3632bb5c3e8f293677c), [`ab0e1bc`](https://github.com/LedgerHQ/ledger-live/commit/ab0e1bcc97b66b750b6c29e618eb03ce6f25bb7b), [`c2d8d86`](https://github.com/LedgerHQ/ledger-live/commit/c2d8d8670f848989836c46ea08ae88c88086fdd6), [`4d60b7e`](https://github.com/LedgerHQ/ledger-live/commit/4d60b7e0984f0f8ef75c1483e0cfaf5784fbc5ed), [`e3b568d`](https://github.com/LedgerHQ/ledger-live/commit/e3b568d2cbeee6dcf19a7047ce9fa11a04b0ae2a), [`0d368f0`](https://github.com/LedgerHQ/ledger-live/commit/0d368f0e682b3bd3daafa6af5b396648a95b1488), [`f015ef3`](https://github.com/LedgerHQ/ledger-live/commit/f015ef32660905d00f55a45f451f38bc12aec9ba), [`fe1abf6`](https://github.com/LedgerHQ/ledger-live/commit/fe1abf640cc1a30b2e78bf7aa4a12e983a068f2e), [`e3bcefb`](https://github.com/LedgerHQ/ledger-live/commit/e3bcefbf8a46c91388d6f936fd31d6ffcdc24756)]:
- @ledgerhq/types-live@6.86.0-next.0
- @ledgerhq/cryptoassets@13.30.0-next.0
- @ledgerhq/errors@6.26.0-next.0
- @ledgerhq/coin-framework@6.6.0-next.0
- @ledgerhq/devices@8.6.1-next.0
- @ledgerhq/live-network@2.0.19-next.0
## 6.5.0
### Minor Changes
- [#11846](https://github.com/LedgerHQ/ledger-live/pull/11846) [`4b7f90c`](https://github.com/LedgerHQ/ledger-live/commit/4b7f90cdfe730e40f43f53359ece99127b93c310) Thanks [@jnicoulaud-ledger](https://github.com/jnicoulaud-ledger)! - Make tezos fee estimation less strict
### Patch Changes
- Updated dependencies [[`38a172c`](https://github.com/LedgerHQ/ledger-live/commit/38a172c23035040d077433c7f4fce60f72962ae0), [`9b8689a`](https://github.com/LedgerHQ/ledger-live/commit/9b8689ae2c44bdeccae26378e05cbf6899b83aec), [`d56bebe`](https://github.com/LedgerHQ/ledger-live/commit/d56bebe672a1ed825697b371662dbff19dcc63d8), [`c8fe586`](https://github.com/LedgerHQ/ledger-live/commit/c8fe586f1427d4d7a9fad092b51221ec8221399d), [`af64263`](https://github.com/LedgerHQ/ledger-live/commit/af642634bd4536183f766323d0ec5b9b99841dc6), [`0108eaf`](https://github.com/LedgerHQ/ledger-live/commit/0108eafb64e36ce68f44e03cc3f66ccdb5ee5a92), [`65c128a`](https://github.com/LedgerHQ/ledger-live/commit/65c128a93f07857b421bed3696bc9984f860ada9), [`3b5576e`](https://github.com/LedgerHQ/ledger-live/commit/3b5576e0b67fedad0f5dbbd6b9546281af4e6111), [`6941aac`](https://github.com/LedgerHQ/ledger-live/commit/6941aac638dcc8d4fb03aa92f42d2a71d4089202), [`13ac4d7`](https://github.com/LedgerHQ/ledger-live/commit/13ac4d7ed05f0fc448cc0a013688c917cb73e0f5), [`ed4c073`](https://github.com/LedgerHQ/ledger-live/commit/ed4c073b304d85355cf510551bcb225de4a3391c)]:
- @ledgerhq/devices@8.6.0
- @ledgerhq/types-live@6.85.0
- @ledgerhq/types-cryptoassets@7.27.0
- @ledgerhq/cryptoassets@13.29.0
- @ledgerhq/coin-framework@6.5.0
- @ledgerhq/live-network@2.0.18
## 6.5.0-next.0
### Minor Changes
- [#11846](https://github.com/LedgerHQ/ledger-live/pull/11846) [`4b7f90c`](https://github.com/LedgerHQ/ledger-live/commit/4b7f90cdfe730e40f43f53359ece99127b93c310) Thanks [@jnicoulaud-ledger](https://github.com/jnicoulaud-ledger)! - Make tezos fee estimation less strict
### Patch Changes
- Updated dependencies [[`38a172c`](https://github.com/LedgerHQ/ledger-live/commit/38a172c23035040d077433c7f4fce60f72962ae0), [`9b8689a`](https://github.com/LedgerHQ/ledger-live/commit/9b8689ae2c44bdeccae26378e05cbf6899b83aec), [`d56bebe`](https://github.com/LedgerHQ/ledger-live/commit/d56bebe672a1ed825697b371662dbff19dcc63d8), [`c8fe586`](https://github.com/LedgerHQ/ledger-live/commit/c8fe586f1427d4d7a9fad092b51221ec8221399d), [`af64263`](https://github.com/LedgerHQ/ledger-live/commit/af642634bd4536183f766323d0ec5b9b99841dc6), [`0108eaf`](https://github.com/LedgerHQ/ledger-live/commit/0108eafb64e36ce68f44e03cc3f66ccdb5ee5a92), [`65c128a`](https://github.com/LedgerHQ/ledger-live/commit/65c128a93f07857b421bed3696bc9984f860ada9), [`3b5576e`](https://github.com/LedgerHQ/ledger-live/commit/3b5576e0b67fedad0f5dbbd6b9546281af4e6111), [`6941aac`](https://github.com/LedgerHQ/ledger-live/commit/6941aac638dcc8d4fb03aa92f42d2a71d4089202), [`13ac4d7`](https://github.com/LedgerHQ/ledger-live/commit/13ac4d7ed05f0fc448cc0a013688c917cb73e0f5), [`ed4c073`](https://github.com/LedgerHQ/ledger-live/commit/ed4c073b304d85355cf510551bcb225de4a3391c)]:
- @ledgerhq/devices@8.6.0-next.0
- @ledgerhq/types-live@6.85.0-next.0
- @ledgerhq/types-cryptoassets@7.27.0-next.0
- @ledgerhq/cryptoassets@13.29.0-next.0
- @ledgerhq/coin-framework@6.5.0-next.0
- @ledgerhq/live-network@2.0.18-next.0
## 6.4.0
### Minor Changes
- [#11699](https://github.com/LedgerHQ/ledger-live/pull/11699) [`2b896f9`](https://github.com/LedgerHQ/ledger-live/commit/2b896f94d6fc53ef965ed567489ad96d913466d4) Thanks [@jnicoulaud-ledger](https://github.com/jnicoulaud-ledger)! - feat(BACK-9645): add support for returning details in AlpacaApi.craftTransaction
- [#11273](https://github.com/LedgerHQ/ledger-live/pull/11273) [`2482195`](https://github.com/LedgerHQ/ledger-live/commit/24821957c838a304be60ff6e16798ef3cac987cd) Thanks [@estrauser-ledger](https://github.com/estrauser-ledger)! - add cursor to pagintion api
- [#11595](https://github.com/LedgerHQ/ledger-live/pull/11595) [`c852de4`](https://github.com/LedgerHQ/ledger-live/commit/c852de40f63948ded6fb0abe6fc8104408391c5b) Thanks [@qperrot](https://github.com/qperrot)! - upgraded Taquito to v23.0.0-beta.0 to support new tezos protocol seoul
### Patch Changes
- Updated dependencies [[`2b896f9`](https://github.com/LedgerHQ/ledger-live/commit/2b896f94d6fc53ef965ed567489ad96d913466d4), [`338d979`](https://github.com/LedgerHQ/ledger-live/commit/338d979bae349b185c52b1d8c9f6718a3d142526), [`2482195`](https://github.com/LedgerHQ/ledger-live/commit/24821957c838a304be60ff6e16798ef3cac987cd), [`228ed30`](https://github.com/LedgerHQ/ledger-live/commit/228ed3030601644e807e85a1693276b788b5cd2a), [`89fc31e`](https://github.com/LedgerHQ/ledger-live/commit/89fc31e8ecfc5e2fd679a2694b3514f8fb19d7b7), [`ff22728`](https://github.com/LedgerHQ/ledger-live/commit/ff22728a61ab2cde6835991bf8ed115d4a39a1d0), [`c190e2b`](https://github.com/LedgerHQ/ledger-live/commit/c190e2b104a9dd0dd693c2d72433b98115f4089f), [`a87922d`](https://github.com/LedgerHQ/ledger-live/commit/a87922dc99e4f2e4b40a46fd52ad08a71012fe94), [`80a109a`](https://github.com/LedgerHQ/ledger-live/commit/80a109a5f8ecdbb22cf6fb3ec084398a7e54dcfb), [`3489203`](https://github.com/LedgerHQ/ledger-live/commit/34892030dcfbd1a19a0eb0a8fcae9f8f01d3d2a9)]:
- @ledgerhq/coin-framework@6.4.0
- @ledgerhq/cryptoassets@13.28.0
- @ledgerhq/types-live@6.84.0
- @ledgerhq/live-network@2.0.17
## 6.4.0-next.0
### Minor Changes
- [#11699](https://github.com/LedgerHQ/ledger-live/pull/11699) [`2b896f9`](https://github.com/LedgerHQ/ledger-live/commit/2b896f94d6fc53ef965ed567489ad96d913466d4) Thanks [@jnicoulaud-ledger](https://github.com/jnicoulaud-ledger)! - feat(BACK-9645): add support for returning details in AlpacaApi.craftTransaction
- [#11273](https://github.com/LedgerHQ/ledger-live/pull/11273) [`2482195`](https://github.com/LedgerHQ/ledger-live/commit/24821957c838a304be60ff6e16798ef3cac987cd) Thanks [@estrauser-ledger](https://github.com/estrauser-ledger)! - add cursor to pagintion api
- [#11595](https://github.com/LedgerHQ/ledger-live/pull/11595) [`c852de4`](https://github.com/LedgerHQ/ledger-live/commit/c852de40f63948ded6fb0abe6fc8104408391c5b) Thanks [@qperrot](https://github.com/qperrot)! - upgraded Taquito to v23.0.0-beta.0 to support new tezos protocol seoul
### Patch Changes
- Updated dependencies [[`2b896f9`](https://github.com/LedgerHQ/ledger-live/commit/2b896f94d6fc53ef965ed567489ad96d913466d4), [`338d979`](https://github.com/LedgerHQ/ledger-live/commit/338d979bae349b185c52b1d8c9f6718a3d142526), [`2482195`](https://github.com/LedgerHQ/ledger-live/commit/24821957c838a304be60ff6e16798ef3cac987cd), [`228ed30`](https://github.com/LedgerHQ/ledger-live/commit/228ed3030601644e807e85a1693276b788b5cd2a), [`89fc31e`](https://github.com/LedgerHQ/ledger-live/commit/89fc31e8ecfc5e2fd679a2694b3514f8fb19d7b7), [`ff22728`](https://github.com/LedgerHQ/ledger-live/commit/ff22728a61ab2cde6835991bf8ed115d4a39a1d0), [`c190e2b`](https://github.com/LedgerHQ/ledger-live/commit/c190e2b104a9dd0dd693c2d72433b98115f4089f), [`a87922d`](https://github.com/LedgerHQ/ledger-live/commit/a87922dc99e4f2e4b40a46fd52ad08a71012fe94), [`80a109a`](https://github.com/LedgerHQ/ledger-live/commit/80a109a5f8ecdbb22cf6fb3ec084398a7e54dcfb), [`3489203`](https://github.com/LedgerHQ/ledger-live/commit/34892030dcfbd1a19a0eb0a8fcae9f8f01d3d2a9)]:
- @ledgerhq/coin-framework@6.4.0-next.0
- @ledgerhq/cryptoassets@13.28.0-next.0
- @ledgerhq/types-live@6.84.0-next.0
- @ledgerhq/live-network@2.0.17-next.0
## 6.3.0
### Minor Changes
- [#11454](https://github.com/LedgerHQ/ledger-live/pull/11454) [`212f772`](https://github.com/LedgerHQ/ledger-live/commit/212f772b17dc3db97009ebe62912f8f183c1ef2e) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - chore(coin-modules): add `eqeqeq` ESLint rule
### Patch Changes
- Updated dependencies [[`12277dc`](https://github.com/LedgerHQ/ledger-live/commit/12277dcb478f24152060e3e11e2eb37d650b5b60), [`acdc089`](https://github.com/LedgerHQ/ledger-live/commit/acdc089f934461dd2fdfdfd61aa907f1520a5d7b), [`9fcc4eb`](https://github.com/LedgerHQ/ledger-live/commit/9fcc4eb5cd6e96e772daa154bd87ae374f925ddc), [`e9fa7aa`](https://github.com/LedgerHQ/ledger-live/commit/e9fa7aa8c8d0414416ec7c12acf30b7623b2eda3), [`d6a6a94`](https://github.com/LedgerHQ/ledger-live/commit/d6a6a949d45fdd2f97f15842c808bf6d1058403f), [`8936f39`](https://github.com/LedgerHQ/ledger-live/commit/8936f390edbe9cbc36ac6590b01562daf5c580e1), [`0356d19`](https://github.com/LedgerHQ/ledger-live/commit/0356d1904dbb5e856970fa7e7ebb206eed7b4c5d), [`516176d`](https://github.com/LedgerHQ/ledger-live/commit/516176d18c7f53961799e92e8804c4a756684266)]:
- @ledgerhq/types-cryptoassets@7.26.0
- @ledgerhq/cryptoassets@13.27.0
- @ledgerhq/coin-framework@6.3.0
- @ledgerhq/types-live@6.83.0
- @ledgerhq/errors@6.25.0
- @ledgerhq/live-network@2.0.16
- @ledgerhq/devices@8.5.1
## 6.3.0-next.0
### Minor Changes
- [#11454](https://github.com/LedgerHQ/ledger-live/pull/11454) [`212f772`](https://github.com/LedgerHQ/ledger-live/commit/212f772b17dc3db97009ebe62912f8f183c1ef2e) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - chore(coin-modules): add `eqeqeq` ESLint rule
### Patch Changes
- Updated dependencies [[`12277dc`](https://github.com/LedgerHQ/ledger-live/commit/12277dcb478f24152060e3e11e2eb37d650b5b60), [`acdc089`](https://github.com/LedgerHQ/ledger-live/commit/acdc089f934461dd2fdfdfd61aa907f1520a5d7b), [`9fcc4eb`](https://github.com/LedgerHQ/ledger-live/commit/9fcc4eb5cd6e96e772daa154bd87ae374f925ddc), [`e9fa7aa`](https://github.com/LedgerHQ/ledger-live/commit/e9fa7aa8c8d0414416ec7c12acf30b7623b2eda3), [`d6a6a94`](https://github.com/LedgerHQ/ledger-live/commit/d6a6a949d45fdd2f97f15842c808bf6d1058403f), [`8936f39`](https://github.com/LedgerHQ/ledger-live/commit/8936f390edbe9cbc36ac6590b01562daf5c580e1), [`0356d19`](https://github.com/LedgerHQ/ledger-live/commit/0356d1904dbb5e856970fa7e7ebb206eed7b4c5d), [`516176d`](https://github.com/LedgerHQ/ledger-live/commit/516176d18c7f53961799e92e8804c4a756684266)]:
- @ledgerhq/types-cryptoassets@7.26.0-next.0
- @ledgerhq/cryptoassets@13.27.0-next.0
- @ledgerhq/coin-framework@6.3.0-next.0
- @ledgerhq/types-live@6.83.0-next.0
- @ledgerhq/errors@6.25.0-next.0
- @ledgerhq/live-network@2.0.16-next.0
- @ledgerhq/devices@8.5.1-next.0
## 6.2.0
### Minor Changes
- [#10420](https://github.com/LedgerHQ/ledger-live/pull/10420) [`80f8f1e`](https://github.com/LedgerHQ/ledger-live/commit/80f8f1eaef8a7bc84ba5441790296dec6cbfa199) Thanks [@Wozacosta](https://github.com/Wozacosta)! - Stellar Generic Adaptor
### Patch Changes
- Updated dependencies [[`1f1cbeb`](https://github.com/LedgerHQ/ledger-live/commit/1f1cbeb4485fb4b85b76ffe040c632d049f4e0c4), [`80f8f1e`](https://github.com/LedgerHQ/ledger-live/commit/80f8f1eaef8a7bc84ba5441790296dec6cbfa199), [`d41fc9c`](https://github.com/LedgerHQ/ledger-live/commit/d41fc9c458050ef1234c04af9642321c41cecda1), [`67ec10b`](https://github.com/LedgerHQ/ledger-live/commit/67ec10b773b4a6b512a8a6485940fa0abd41c3ef), [`31dceca`](https://github.com/LedgerHQ/ledger-live/commit/31dcecad24abdaa8a77208e82532c47728c11180)]:
- @ledgerhq/cryptoassets@13.26.0
- @ledgerhq/coin-framework@6.2.0
- @ledgerhq/types-live@6.82.0
## 6.2.0-next.0
### Minor Changes
- [#10420](https://github.com/LedgerHQ/ledger-live/pull/10420) [`80f8f1e`](https://github.com/LedgerHQ/ledger-live/commit/80f8f1eaef8a7bc84ba5441790296dec6cbfa199) Thanks [@Wozacosta](https://github.com/Wozacosta)! - Stellar Generic Adaptor
### Patch Changes
- Updated dependencies [[`1f1cbeb`](https://github.com/LedgerHQ/ledger-live/commit/1f1cbeb4485fb4b85b76ffe040c632d049f4e0c4), [`80f8f1e`](https://github.com/LedgerHQ/ledger-live/commit/80f8f1eaef8a7bc84ba5441790296dec6cbfa199), [`d41fc9c`](https://github.com/LedgerHQ/ledger-live/commit/d41fc9c458050ef1234c04af9642321c41cecda1), [`67ec10b`](https://github.com/LedgerHQ/ledger-live/commit/67ec10b773b4a6b512a8a6485940fa0abd41c3ef), [`31dceca`](https://github.com/LedgerHQ/ledger-live/commit/31dcecad24abdaa8a77208e82532c47728c11180)]:
- @ledgerhq/cryptoassets@13.26.0-next.0
- @ledgerhq/coin-framework@6.2.0-next.0
- @ledgerhq/types-live@6.82.0-next.0
## 6.1.0
### Minor Changes
- [#11016](https://github.com/LedgerHQ/ledger-live/pull/11016) [`a8b4f57`](https://github.com/LedgerHQ/ledger-live/commit/a8b4f57bf7d82e6c2444a65901e927c3c3d64412) Thanks [@jnicoulaud-ledger](https://github.com/jnicoulaud-ledger)! - [coin-modules] add coin-framework staking API + SUI implementation
- [#11183](https://github.com/LedgerHQ/ledger-live/pull/11183) [`8189aaf`](https://github.com/LedgerHQ/ledger-live/commit/8189aaf419d383158185ae3182a1b61fabd61e11) Thanks [@dilaouid](https://github.com/dilaouid)! - feat(coin-monitoring): monitor tier two adresses
### Patch Changes
- Updated dependencies [[`0c8486e`](https://github.com/LedgerHQ/ledger-live/commit/0c8486ea830e9e2abf1dfc5d108117e1db733072), [`354fa83`](https://github.com/LedgerHQ/ledger-live/commit/354fa83c8107cf8e6b56a8b306569ee65980e10c), [`a8b4f57`](https://github.com/LedgerHQ/ledger-live/commit/a8b4f57bf7d82e6c2444a65901e927c3c3d64412), [`67e2a7c`](https://github.com/LedgerHQ/ledger-live/commit/67e2a7c5a74d000f22684254778dfec5b8b5163d)]:
- @ledgerhq/cryptoassets@13.25.0
- @ledgerhq/errors@6.24.0
- @ledgerhq/coin-framework@6.1.0
- @ledgerhq/types-live@6.81.0
- @ledgerhq/devices@8.5.0
- @ledgerhq/live-network@2.0.15
## 6.1.0-next.0
### Minor Changes
- [#11016](https://github.com/LedgerHQ/ledger-live/pull/11016) [`a8b4f57`](https://github.com/LedgerHQ/ledger-live/commit/a8b4f57bf7d82e6c2444a65901e927c3c3d64412) Thanks [@jnicoulaud-ledger](https://github.com/jnicoulaud-ledger)! - [coin-modules] add coin-framework staking API + SUI implementation
- [#11183](https://github.com/LedgerHQ/ledger-live/pull/11183) [`8189aaf`](https://github.com/LedgerHQ/ledger-live/commit/8189aaf419d383158185ae3182a1b61fabd61e11) Thanks [@dilaouid](https://github.com/dilaouid)! - feat(coin-monitoring): monitor tier two adresses
### Patch Changes
- Updated dependencies [[`0c8486e`](https://github.com/LedgerHQ/ledger-live/commit/0c8486ea830e9e2abf1dfc5d108117e1db733072), [`354fa83`](https://github.com/LedgerHQ/ledger-live/commit/354fa83c8107cf8e6b56a8b306569ee65980e10c), [`a8b4f57`](https://github.com/LedgerHQ/ledger-live/commit/a8b4f57bf7d82e6c2444a65901e927c3c3d64412), [`67e2a7c`](https://github.com/LedgerHQ/ledger-live/commit/67e2a7c5a74d000f22684254778dfec5b8b5163d)]:
- @ledgerhq/cryptoassets@13.25.0-next.0
- @ledgerhq/errors@6.24.0-next.0
- @ledgerhq/coin-framework@6.1.0-next.0
- @ledgerhq/types-live@6.81.0-next.0
- @ledgerhq/devices@8.5.0-next.0
- @ledgerhq/live-network@2.0.15-next.0
## 6.0.0
### Major Changes
- [#11138](https://github.com/LedgerHQ/ledger-live/pull/11138) [`417e4fc`](https://github.com/LedgerHQ/ledger-live/commit/417e4fc8b92ebc95542ca915e14023fdb62497bb) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - core(coin-framework): pass `FeeEstimation` to `craftTransaction`
### Minor Changes
- [#11154](https://github.com/LedgerHQ/ledger-live/pull/11154) [`5bb2111`](https://github.com/LedgerHQ/ledger-live/commit/5bb2111d6a0c84cd0d6508bbf33d184bc89f9da3) Thanks [@qperrot](https://github.com/qperrot)! - Remove generic type for token assets
### Patch Changes
- Updated dependencies [[`b5cbffa`](https://github.com/LedgerHQ/ledger-live/commit/b5cbffac207569027e241db761a6aa70b3b1b636), [`2da9b4a`](https://github.com/LedgerHQ/ledger-live/commit/2da9b4a5dd9fec3fea188fc9fa107b2c3479d1be), [`5bb2111`](https://github.com/LedgerHQ/ledger-live/commit/5bb2111d6a0c84cd0d6508bbf33d184bc89f9da3), [`417e4fc`](https://github.com/LedgerHQ/ledger-live/commit/417e4fc8b92ebc95542ca915e14023fdb62497bb), [`9c63d6b`](https://github.com/LedgerHQ/ledger-live/commit/9c63d6b8d5fb629a19514ec36396c35eeefb96aa), [`8b0b4ef`](https://github.com/LedgerHQ/ledger-live/commit/8b0b4efaf2c0968cfb60c0cecebca9c575b00748)]:
- @ledgerhq/cryptoassets@13.24.0
- @ledgerhq/types-cryptoassets@7.25.0
- @ledgerhq/types-live@6.80.0
- @ledgerhq/coin-framework@6.0.0
- @ledgerhq/live-network@2.0.14
## 6.0.0-next.0
### Major Changes
- [#11138](https://github.com/LedgerHQ/ledger-live/pull/11138) [`417e4fc`](https://github.com/LedgerHQ/ledger-live/commit/417e4fc8b92ebc95542ca915e14023fdb62497bb) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - core(coin-framework): pass `FeeEstimation` to `craftTransaction`
### Minor Changes
- [#11154](https://github.com/LedgerHQ/ledger-live/pull/11154) [`5bb2111`](https://github.com/LedgerHQ/ledger-live/commit/5bb2111d6a0c84cd0d6508bbf33d184bc89f9da3) Thanks [@qperrot](https://github.com/qperrot)! - Remove generic type for token assets
### Patch Changes
- Updated dependencies [[`b5cbffa`](https://github.com/LedgerHQ/ledger-live/commit/b5cbffac207569027e241db761a6aa70b3b1b636), [`2da9b4a`](https://github.com/LedgerHQ/ledger-live/commit/2da9b4a5dd9fec3fea188fc9fa107b2c3479d1be), [`5bb2111`](https://github.com/LedgerHQ/ledger-live/commit/5bb2111d6a0c84cd0d6508bbf33d184bc89f9da3), [`417e4fc`](https://github.com/LedgerHQ/ledger-live/commit/417e4fc8b92ebc95542ca915e14023fdb62497bb), [`9c63d6b`](https://github.com/LedgerHQ/ledger-live/commit/9c63d6b8d5fb629a19514ec36396c35eeefb96aa), [`8b0b4ef`](https://github.com/LedgerHQ/ledger-live/commit/8b0b4efaf2c0968cfb60c0cecebca9c575b00748)]:
- @ledgerhq/cryptoassets@13.24.0-next.0
- @ledgerhq/types-cryptoassets@7.25.0-next.0
- @ledgerhq/types-live@6.80.0-next.0
- @ledgerhq/coin-framework@6.0.0-next.0
- @ledgerhq/live-network@2.0.14-next.0
## 5.7.0
### Minor Changes
- [#10838](https://github.com/LedgerHQ/ledger-live/pull/10838) [`d5f6793`](https://github.com/LedgerHQ/ledger-live/commit/d5f6793c6ae52178e93a19efc75931994bf930a8) Thanks [@jnicoulaud-ledger](https://github.com/jnicoulaud-ledger)! - [coin-modules][ALPACA] add getBlock to coin-framework API, implement it for SUI
### Patch Changes
- Updated dependencies [[`4eee376`](https://github.com/LedgerHQ/ledger-live/commit/4eee3767b513dfb58a156cf2ce8086e31a7d55bf), [`72c2a6c`](https://github.com/LedgerHQ/ledger-live/commit/72c2a6c91cfee66fac3505774ba16049fba1c0cf), [`6312f3a`](https://github.com/LedgerHQ/ledger-live/commit/6312f3a039e3018dfd78d231fa91ecf8fc82a118), [`8423a9f`](https://github.com/LedgerHQ/ledger-live/commit/8423a9fbba0d54d18ff35c0519a82829fc8042e0), [`6792990`](https://github.com/LedgerHQ/ledger-live/commit/6792990d8130ec297192bb7d6b98aef024e81dfa), [`d5f6793`](https://github.com/LedgerHQ/ledger-live/commit/d5f6793c6ae52178e93a19efc75931994bf930a8), [`132af3d`](https://github.com/LedgerHQ/ledger-live/commit/132af3db5863fb6e54587dd53d4db7b0ec19259e)]:
- @ledgerhq/types-live@6.79.0
- @ledgerhq/cryptoassets@13.23.0
- @ledgerhq/types-cryptoassets@7.24.0
- @ledgerhq/coin-framework@5.8.0
## 5.7.0-next.1
### Patch Changes
- Updated dependencies [[`8423a9f`](https://github.com/LedgerHQ/ledger-live/commit/8423a9fbba0d54d18ff35c0519a82829fc8042e0)]:
- @ledgerhq/types-live@6.79.0-next.1
- @ledgerhq/coin-framework@5.8.0-next.1
## 5.7.0-next.0
### Minor Changes
- [#10838](https://github.com/LedgerHQ/ledger-live/pull/10838) [`d5f6793`](https://github.com/LedgerHQ/ledger-live/commit/d5f6793c6ae52178e93a19efc75931994bf930a8) Thanks [@jnicoulaud-ledger](https://github.com/jnicoulaud-ledger)! - [coin-modules][ALPACA] add getBlock to coin-framework API, implement it for SUI
### Patch Changes
- Updated dependencies [[`4eee376`](https://github.com/LedgerHQ/ledger-live/commit/4eee3767b513dfb58a156cf2ce8086e31a7d55bf), [`72c2a6c`](https://github.com/LedgerHQ/ledger-live/commit/72c2a6c91cfee66fac3505774ba16049fba1c0cf), [`6312f3a`](https://github.com/LedgerHQ/ledger-live/commit/6312f3a039e3018dfd78d231fa91ecf8fc82a118), [`6792990`](https://github.com/LedgerHQ/ledger-live/commit/6792990d8130ec297192bb7d6b98aef024e81dfa), [`d5f6793`](https://github.com/LedgerHQ/ledger-live/commit/d5f6793c6ae52178e93a19efc75931994bf930a8), [`132af3d`](https://github.com/LedgerHQ/ledger-live/commit/132af3db5863fb6e54587dd53d4db7b0ec19259e)]:
- @ledgerhq/types-live@6.79.0-next.0
- @ledgerhq/cryptoassets@13.23.0-next.0
- @ledgerhq/types-cryptoassets@7.24.0-next.0
- @ledgerhq/coin-framework@5.8.0-next.0
## 5.6.1
### Patch Changes
- Updated dependencies [[`6ece1b8`](https://github.com/LedgerHQ/ledger-live/commit/6ece1b80ed05f9dab6541702e40a43b51887f958), [`bb7e311`](https://github.com/LedgerHQ/ledger-live/commit/bb7e31139763b9fd943bf237d2c6260d6aef24ab), [`0e32a4e`](https://github.com/LedgerHQ/ledger-live/commit/0e32a4e5482ad2d3002483632770a2d7981b7a5a), [`9fd5b54`](https://github.com/LedgerHQ/ledger-live/commit/9fd5b5449f1d15fc559e966e9d71e2ad6573547c), [`63cdeb1`](https://github.com/LedgerHQ/ledger-live/commit/63cdeb1ea20fe0c16b623546ce00f3fe26b7ec80), [`20406e5`](https://github.com/LedgerHQ/ledger-live/commit/20406e52b4167289fced610c6ca9824a6d68cdac)]:
- @ledgerhq/cryptoassets@13.22.0
- @ledgerhq/coin-framework@5.7.0
- @ledgerhq/types-live@6.78.0
- @ledgerhq/errors@6.23.0
- @ledgerhq/live-network@2.0.13
- @ledgerhq/devices@8.4.8
## 5.6.1-next.0
### Patch Changes
- Updated dependencies [[`6ece1b8`](https://github.com/LedgerHQ/ledger-live/commit/6ece1b80ed05f9dab6541702e40a43b51887f958), [`bb7e311`](https://github.com/LedgerHQ/ledger-live/commit/bb7e31139763b9fd943bf237d2c6260d6aef24ab), [`0e32a4e`](https://github.com/LedgerHQ/ledger-live/commit/0e32a4e5482ad2d3002483632770a2d7981b7a5a), [`9fd5b54`](https://github.com/LedgerHQ/ledger-live/commit/9fd5b5449f1d15fc559e966e9d71e2ad6573547c), [`63cdeb1`](https://github.com/LedgerHQ/ledger-live/commit/63cdeb1ea20fe0c16b623546ce00f3fe26b7ec80), [`20406e5`](https://github.com/LedgerHQ/ledger-live/commit/20406e52b4167289fced610c6ca9824a6d68cdac)]:
- @ledgerhq/cryptoassets@13.22.0-next.0
- @ledgerhq/coin-framework@5.7.0-next.0
- @ledgerhq/types-live@6.78.0-next.0
- @ledgerhq/errors@6.23.0-next.0
- @ledgerhq/live-network@2.0.13-next.0
- @ledgerhq/devices@8.4.8-next.0
## 5.6.0
### Minor Changes
- [#10792](https://github.com/LedgerHQ/ledger-live/pull/10792) [`c91510b`](https://github.com/LedgerHQ/ledger-live/commit/c91510b67fa598f7fbe7b4495415c737171ae41a) Thanks [@Canestin](https://github.com/Canestin)! - fix: Error handling when trying to stake XTZ with a low amount
### Patch Changes
- Updated dependencies [[`d053a79`](https://github.com/LedgerHQ/ledger-live/commit/d053a7969ac7976ea6d10955c3cfa47621be1b32), [`90b023d`](https://github.com/LedgerHQ/ledger-live/commit/90b023d9a6db34fef865abf96ab31a5e0bcef42a), [`2f38d03`](https://github.com/LedgerHQ/ledger-live/commit/2f38d032ec8e8481e4ff3b37f33aa4eb3872b542), [`0232f73`](https://github.com/LedgerHQ/ledger-live/commit/0232f73efa73eb3a16c306f25dd110e12b9c1fb7)]:
- @ledgerhq/types-live@6.77.0
- @ledgerhq/coin-framework@5.6.0
## 5.6.0-next.0
### Minor Changes
- [#10792](https://github.com/LedgerHQ/ledger-live/pull/10792) [`c91510b`](https://github.com/LedgerHQ/ledger-live/commit/c91510b67fa598f7fbe7b4495415c737171ae41a) Thanks [@Canestin](https://github.com/Canestin)! - fix: Error handling when trying to stake XTZ with a low amount
### Patch Changes
- Updated dependencies [[`d053a79`](https://github.com/LedgerHQ/ledger-live/commit/d053a7969ac7976ea6d10955c3cfa47621be1b32), [`90b023d`](https://github.com/LedgerHQ/ledger-live/commit/90b023d9a6db34fef865abf96ab31a5e0bcef42a), [`2f38d03`](https://github.com/LedgerHQ/ledger-live/commit/2f38d032ec8e8481e4ff3b37f33aa4eb3872b542), [`0232f73`](https://github.com/LedgerHQ/ledger-live/commit/0232f73efa73eb3a16c306f25dd110e12b9c1fb7)]:
- @ledgerhq/types-live@6.77.0-next.0
- @ledgerhq/coin-framework@5.6.0-next.0
## 5.5.0
### Minor Changes
- [#10593](https://github.com/LedgerHQ/ledger-live/pull/10593) [`9d646eb`](https://github.com/LedgerHQ/ledger-live/commit/9d646eb6ca28b41af950b264c7d799a7ad536207) Thanks [@Wozacosta](https://github.com/Wozacosta)! - feat: update transactionintent generic types + remove xrp bridge and introduce the generic alpaca bridge in LLC
### Patch Changes
- Updated dependencies [[`c6005ce`](https://github.com/LedgerHQ/ledger-live/commit/c6005ce8545acb596c2ff7770a0df848378ee83b), [`264316c`](https://github.com/LedgerHQ/ledger-live/commit/264316c9524f13b760460c2f1a2bc822767cff95), [`c3c2069`](https://github.com/LedgerHQ/ledger-live/commit/c3c2069976c43ebca2bce7896036efd071a22814), [`264316c`](https://github.com/LedgerHQ/ledger-live/commit/264316c9524f13b760460c2f1a2bc822767cff95), [`9d646eb`](https://github.com/LedgerHQ/ledger-live/commit/9d646eb6ca28b41af950b264c7d799a7ad536207)]:
- @ledgerhq/cryptoassets@13.21.0
- @ledgerhq/types-live@6.76.0
- @ledgerhq/coin-framework@5.5.0
## 5.5.0-next.0
### Minor Changes
- [#10593](https://github.com/LedgerHQ/ledger-live/pull/10593) [`9d646eb`](https://github.com/LedgerHQ/ledger-live/commit/9d646eb6ca28b41af950b264c7d799a7ad536207) Thanks [@Wozacosta](https://github.com/Wozacosta)! - feat: update transactionintent generic types + remove xrp bridge and introduce the generic alpaca bridge in LLC
### Patch Changes
- Updated dependencies [[`c6005ce`](https://github.com/LedgerHQ/ledger-live/commit/c6005ce8545acb596c2ff7770a0df848378ee83b), [`264316c`](https://github.com/LedgerHQ/ledger-live/commit/264316c9524f13b760460c2f1a2bc822767cff95), [`c3c2069`](https://github.com/LedgerHQ/ledger-live/commit/c3c2069976c43ebca2bce7896036efd071a22814), [`264316c`](https://github.com/LedgerHQ/ledger-live/commit/264316c9524f13b760460c2f1a2bc822767cff95), [`9d646eb`](https://github.com/LedgerHQ/ledger-live/commit/9d646eb6ca28b41af950b264c7d799a7ad536207)]:
- @ledgerhq/cryptoassets@13.21.0-next.0
- @ledgerhq/types-live@6.76.0-next.0
- @ledgerhq/coin-framework@5.5.0-next.0
## 5.4.0
### Minor Changes
- [#10318](https://github.com/LedgerHQ/ledger-live/pull/10318) [`013db08`](https://github.com/LedgerHQ/ledger-live/commit/013db0821557db55b83757df54d00f33eb86f9eb) Thanks [@dmirgaleev](https://github.com/dmirgaleev)! - Upgrade Baking Bad API to the latest version
### Patch Changes
- Updated dependencies [[`2274597`](https://github.com/LedgerHQ/ledger-live/commit/227459709ec157b7e49db4e75c52525e15acd8d2), [`7a1b8c8`](https://github.com/LedgerHQ/ledger-live/commit/7a1b8c8e59383efb02676cfe647c5889a31372bc), [`95bcad3`](https://github.com/LedgerHQ/ledger-live/commit/95bcad3cc17aa7b4139a8ae3b08ecfb15a2fbcdc), [`5735489`](https://github.com/LedgerHQ/ledger-live/commit/5735489ddcee66110fc0cccc6bdd696876b8be4d)]:
- @ledgerhq/types-live@6.75.0
- @ledgerhq/cryptoassets@13.20.0
- @ledgerhq/coin-framework@5.4.1
- @ledgerhq/live-network@2.0.12
## 5.4.0-next.0
### Minor Changes
- [#10318](https://github.com/LedgerHQ/ledger-live/pull/10318) [`013db08`](https://github.com/LedgerHQ/ledger-live/commit/013db0821557db55b83757df54d00f33eb86f9eb) Thanks [@dmirgaleev](https://github.com/dmirgaleev)! - Upgrade Baking Bad API to the latest version
### Patch Changes
- Updated dependencies [[`2274597`](https://github.com/LedgerHQ/ledger-live/commit/227459709ec157b7e49db4e75c52525e15acd8d2), [`7a1b8c8`](https://github.com/LedgerHQ/ledger-live/commit/7a1b8c8e59383efb02676cfe647c5889a31372bc), [`95bcad3`](https://github.com/LedgerHQ/ledger-live/commit/95bcad3cc17aa7b4139a8ae3b08ecfb15a2fbcdc), [`5735489`](https://github.com/LedgerHQ/ledger-live/commit/5735489ddcee66110fc0cccc6bdd696876b8be4d)]:
- @ledgerhq/types-live@6.75.0-next.0
- @ledgerhq/cryptoassets@13.20.0-next.0
- @ledgerhq/coin-framework@5.4.1-next.0
- @ledgerhq/live-network@2.0.12-next.0
## 5.3.1
### Patch Changes
- Updated dependencies [[`9ceee03`](https://github.com/LedgerHQ/ledger-live/commit/9ceee03c33c41bb035fe64f9303acd36872536b6), [`98eb2eb`](https://github.com/LedgerHQ/ledger-live/commit/98eb2ebce8e12742a68b8f54ba625d63c4958087), [`b5e3217`](https://github.com/LedgerHQ/ledger-live/commit/b5e321789d3a6f9cb1916067790590640db0876f), [`4d9aaf5`](https://github.com/LedgerHQ/ledger-live/commit/4d9aaf583060a22cd1343b23d9b5c1ee3c02abb4), [`5739a67`](https://github.com/LedgerHQ/ledger-live/commit/5739a67975dfc2509d5abd4ff13ea36af010f93e), [`e9739d1`](https://github.com/LedgerHQ/ledger-live/commit/e9739d19946376dd7a8a5f10471594f267f3a95f)]:
- @ledgerhq/types-live@6.74.0
- @ledgerhq/errors@6.22.0
- @ledgerhq/coin-framework@5.4.0
- @ledgerhq/cryptoassets@13.19.0
- @ledgerhq/devices@8.4.7
- @ledgerhq/live-network@2.0.11
## 5.3.1-next.0
### Patch Changes
- Updated dependencies [[`9ceee03`](https://github.com/LedgerHQ/ledger-live/commit/9ceee03c33c41bb035fe64f9303acd36872536b6), [`98eb2eb`](https://github.com/LedgerHQ/ledger-live/commit/98eb2ebce8e12742a68b8f54ba625d63c4958087), [`b5e3217`](https://github.com/LedgerHQ/ledger-live/commit/b5e321789d3a6f9cb1916067790590640db0876f), [`4d9aaf5`](https://github.com/LedgerHQ/ledger-live/commit/4d9aaf583060a22cd1343b23d9b5c1ee3c02abb4), [`5739a67`](https://github.com/LedgerHQ/ledger-live/commit/5739a67975dfc2509d5abd4ff13ea36af010f93e), [`e9739d1`](https://github.com/LedgerHQ/ledger-live/commit/e9739d19946376dd7a8a5f10471594f267f3a95f)]:
- @ledgerhq/types-live@6.74.0-next.0
- @ledgerhq/errors@6.22.0-next.0
- @ledgerhq/coin-framework@5.4.0-next.0
- @ledgerhq/cryptoassets@13.19.0-next.0
- @ledgerhq/devices@8.4.7-next.0
- @ledgerhq/live-network@2.0.11-next.0
## 5.3.0
### Minor Changes
- [#10427](https://github.com/LedgerHQ/ledger-live/pull/10427) [`2fccd46`](https://github.com/LedgerHQ/ledger-live/commit/2fccd460dc1bae0b0ade388d73c3f3556353714a) Thanks [@jnicoulaud-ledger](https://github.com/jnicoulaud-ledger)! - [coin-modules][tezos] ALPACA tezos craft is missing leading `0x03` byte in raw transaction
- [#10551](https://github.com/LedgerHQ/ledger-live/pull/10551) [`99385c9`](https://github.com/LedgerHQ/ledger-live/commit/99385c9a7ecac9328ffa29c039e8c0cf2317c431) Thanks [@Wozacosta](https://github.com/Wozacosta)! - fix: revert generic bridge xrp
- [#10217](https://github.com/LedgerHQ/ledger-live/pull/10217) [`e04d215`](https://github.com/LedgerHQ/ledger-live/commit/e04d21576919fa21cb3ab6e1c4e8e50fb6c17eca) Thanks [@Wozacosta](https://github.com/Wozacosta)! - feat: update transactionintent generic types + remove xrp bridge and introduce the generic alpaca bridge in LLC
### Patch Changes
- Updated dependencies [[`18bc0d4`](https://github.com/LedgerHQ/ledger-live/commit/18bc0d4a27696491400df6ce26b915a88b56792f), [`99385c9`](https://github.com/LedgerHQ/ledger-live/commit/99385c9a7ecac9328ffa29c039e8c0cf2317c431), [`b7d3d59`](https://github.com/LedgerHQ/ledger-live/commit/b7d3d59d299c3d3541d598536651b9047fda4526), [`e04d215`](https://github.com/LedgerHQ/ledger-live/commit/e04d21576919fa21cb3ab6e1c4e8e50fb6c17eca), [`1535307`](https://github.com/LedgerHQ/ledger-live/commit/1535307f78d345d7f652ac2c91c8a67e62fedef2)]:
- @ledgerhq/coin-framework@5.3.0
- @ledgerhq/types-live@6.73.0
- @ledgerhq/cryptoassets@13.18.1
- @ledgerhq/live-network@2.0.10
## 5.3.0-next.1
### Minor Changes
- [#10551](https://github.com/LedgerHQ/ledger-live/pull/10551) [`99385c9`](https://github.com/LedgerHQ/ledger-live/commit/99385c9a7ecac9328ffa29c039e8c0cf2317c431) Thanks [@Wozacosta](https://github.com/Wozacosta)! - fix: revert generic bridge xrp
### Patch Changes
- Updated dependencies [[`99385c9`](https://github.com/LedgerHQ/ledger-live/commit/99385c9a7ecac9328ffa29c039e8c0cf2317c431)]:
- @ledgerhq/coin-framework@5.3.0-next.1
## 5.3.0-next.0
### Minor Changes
- [#10427](https://github.com/LedgerHQ/ledger-live/pull/10427) [`2fccd46`](https://github.com/LedgerHQ/ledger-live/commit/2fccd460dc1bae0b0ade388d73c3f3556353714a) Thanks [@jnicoulaud-ledger](https://github.com/jnicoulaud-ledger)! - [coin-modules][tezos] ALPACA tezos craft is missing leading `0x03` byte in raw transaction
- [#10217](https://github.com/LedgerHQ/ledger-live/pull/10217) [`e04d215`](https://github.com/LedgerHQ/ledger-live/commit/e04d21576919fa21cb3ab6e1c4e8e50fb6c17eca) Thanks [@Wozacosta](https://github.com/Wozacosta)! - feat: update transactionintent generic types + remove xrp bridge and introduce the generic alpaca bridge in LLC
### Patch Changes
- Updated dependencies [[`18bc0d4`](https://github.com/LedgerHQ/ledger-live/commit/18bc0d4a27696491400df6ce26b915a88b56792f), [`b7d3d59`](https://github.com/LedgerHQ/ledger-live/commit/b7d3d59d299c3d3541d598536651b9047fda4526), [`e04d215`](https://github.com/LedgerHQ/ledger-live/commit/e04d21576919fa21cb3ab6e1c4e8e50fb6c17eca), [`1535307`](https://github.com/LedgerHQ/ledger-live/commit/1535307f78d345d7f652ac2c91c8a67e62fedef2)]:
- @ledgerhq/coin-framework@5.3.0-next.0
- @ledgerhq/types-live@6.73.0-next.0
- @ledgerhq/cryptoassets@13.18.1-next.0
- @ledgerhq/live-network@2.0.10-next.0
## 5.2.1
### Patch Changes
- Updated dependencies [[`4ddfe60`](https://github.com/LedgerHQ/ledger-live/commit/4ddfe6060ab8e4e5c0bb89da91e08a02d8ca50e6), [`f42f353`](https://github.com/LedgerHQ/ledger-live/commit/f42f353a593d0a1cd0a237648765080c85d0eea7), [`ebbbd47`](https://github.com/LedgerHQ/ledger-live/commit/ebbbd47efe76d82047a956cb5849be5831f58772), [`f29e4ba`](https://github.com/LedgerHQ/ledger-live/commit/f29e4bae00a4bf470a0c1ca143e505b731543f95), [`1a4e5e5`](https://github.com/LedgerHQ/ledger-live/commit/1a4e5e5913fe5e12d6127b36f3849e4c81e5e50e)]:
- @ledgerhq/types-live@6.72.0
- @ledgerhq/coin-framework@5.2.0
- @ledgerhq/logs@6.13.0
- @ledgerhq/devices@8.4.6
- @ledgerhq/live-network@2.0.9
## 5.2.1-next.2
### Patch Changes
- Updated dependencies [[`ebbbd47`](https://github.com/LedgerHQ/ledger-live/commit/ebbbd47efe76d82047a956cb5849be5831f58772)]:
- @ledgerhq/logs@6.13.0-next.1
- @ledgerhq/coin-framework@5.2.0-next.2
- @ledgerhq/devices@8.4.6-next.1
- @ledgerhq/live-network@2.0.9-next.1
## 5.2.1-next.1
### Patch Changes
- Updated dependencies [[`f29e4ba`](https://github.com/LedgerHQ/ledger-live/commit/f29e4bae00a4bf470a0c1ca143e505b731543f95)]:
- @ledgerhq/logs@6.13.0-next.0
- @ledgerhq/coin-framework@5.2.0-next.1
- @ledgerhq/devices@8.4.6-next.0
- @ledgerhq/live-network@2.0.9-next.0
## 5.2.1-next.0
### Patch Changes
- Updated dependencies [[`4ddfe60`](https://github.com/LedgerHQ/ledger-live/commit/4ddfe6060ab8e4e5c0bb89da91e08a02d8ca50e6), [`f42f353`](https://github.com/LedgerHQ/ledger-live/commit/f42f353a593d0a1cd0a237648765080c85d0eea7), [`1a4e5e5`](https://github.com/LedgerHQ/ledger-live/commit/1a4e5e5913fe5e12d6127b36f3849e4c81e5e50e)]:
- @ledgerhq/types-live@6.72.0-next.0
- @ledgerhq/coin-framework@5.2.0-next.0
## 5.2.0
### Minor Changes
- [#10282](https://github.com/LedgerHQ/ledger-live/pull/10282) [`04f80e3`](https://github.com/LedgerHQ/ledger-live/commit/04f80e344159cc9729512ad36b502a339e30dfb8) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - upgraded Taquito to v22.0.0 to support new tezos protocol rio
### Patch Changes
- Updated dependencies [[`107f35a`](https://github.com/LedgerHQ/ledger-live/commit/107f35a0650412716b088a3503b86435e6d9cf47), [`6253e0e`](https://github.com/LedgerHQ/ledger-live/commit/6253e0e3efcd1a29543cda55c9a5269f97aa770f), [`9081c26`](https://github.com/LedgerHQ/ledger-live/commit/9081c2648490f977469a33762a3c67bb2c2a0be5), [`eff3c94`](https://github.com/LedgerHQ/ledger-live/commit/eff3c94c1eded61518097a4544c3f5b25db1e28a)]:
- @ledgerhq/cryptoassets@13.18.0
- @ledgerhq/errors@6.21.0
- @ledgerhq/coin-framework@5.1.0
- @ledgerhq/types-live@6.71.0
- @ledgerhq/devices@8.4.5
- @ledgerhq/live-network@2.0.8
## 5.2.0-next.0
### Minor Changes
- [#10282](https://github.com/LedgerHQ/ledger-live/pull/10282) [`04f80e3`](https://github.com/LedgerHQ/ledger-live/commit/04f80e344159cc9729512ad36b502a339e30dfb8) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - upgraded Taquito to v22.0.0 to support new tezos protocol rio
### Patch Changes
- Updated dependencies [[`107f35a`](https://github.com/LedgerHQ/ledger-live/commit/107f35a0650412716b088a3503b86435e6d9cf47), [`6253e0e`](https://github.com/LedgerHQ/ledger-live/commit/6253e0e3efcd1a29543cda55c9a5269f97aa770f), [`9081c26`](https://github.com/LedgerHQ/ledger-live/commit/9081c2648490f977469a33762a3c67bb2c2a0be5), [`eff3c94`](https://github.com/LedgerHQ/ledger-live/commit/eff3c94c1eded61518097a4544c3f5b25db1e28a)]:
- @ledgerhq/cryptoassets@13.18.0-next.0
- @ledgerhq/errors@6.21.0-next.0
- @ledgerhq/coin-framework@5.1.0-next.0
- @ledgerhq/types-live@6.71.0-next.0
- @ledgerhq/devices@8.4.5-next.0
- @ledgerhq/live-network@2.0.8-next.0
## 5.1.0
### Minor Changes
- [#10188](https://github.com/LedgerHQ/ledger-live/pull/10188) [`7dbf446`](https://github.com/LedgerHQ/ledger-live/commit/7dbf446811bbc99a15a04bc1294c6b3b8401f667) Thanks [@jnicoulaud-ledger](https://github.com/jnicoulaud-ledger)! - [coin-modules][tezos] fix tezos transaction crafting setting gasLimit/storageLimit to 0
### Patch Changes
- Updated dependencies [[`f92f49a`](https://github.com/LedgerHQ/ledger-live/commit/f92f49a003767b83b94955e920cfac8cd565c162)]:
- @ledgerhq/cryptoassets@13.17.0
- @ledgerhq/coin-framework@5.0.2
## 5.1.0-next.0
### Minor Changes
- [#10188](https://github.com/LedgerHQ/ledger-live/pull/10188) [`7dbf446`](https://github.com/LedgerHQ/ledger-live/commit/7dbf446811bbc99a15a04bc1294c6b3b8401f667) Thanks [@jnicoulaud-ledger](https://github.com/jnicoulaud-ledger)! - [coin-modules][tezos] fix tezos transaction crafting setting gasLimit/storageLimit to 0
### Patch Changes
- Updated dependencies [[`f92f49a`](https://github.com/LedgerHQ/ledger-live/commit/f92f49a003767b83b94955e920cfac8cd565c162)]:
- @ledgerhq/cryptoassets@13.17.0-next.0
- @ledgerhq/coin-framework@5.0.2-next.0
## 5.0.1
### Patch Changes
- Updated dependencies [[`a7ba19c`](https://github.com/LedgerHQ/ledger-live/commit/a7ba19cfa5a895572edfcf036a10d2af83efdf38), [`91fe526`](https://github.com/LedgerHQ/ledger-live/commit/91fe526be2710f0fb18b4d035a5d8de630b3d4b5)]:
- @ledgerhq/types-live@6.70.0
- @ledgerhq/coin-framework@5.0.1
## 5.0.1-next.0
### Patch Changes
- Updated dependencies [[`a7ba19c`](https://github.com/LedgerHQ/ledger-live/commit/a7ba19cfa5a895572edfcf036a10d2af83efdf38), [`91fe526`](https://github.com/LedgerHQ/ledger-live/commit/91fe526be2710f0fb18b4d035a5d8de630b3d4b5)]:
- @ledgerhq/types-live@6.70.0-next.0
- @ledgerhq/coin-framework@5.0.1-next.0
## 5.0.0
### Major Changes
- [#9993](https://github.com/LedgerHQ/ledger-live/pull/9993) [`b599ac4`](https://github.com/LedgerHQ/ledger-live/commit/b599ac4697688459aad15371f9efea58f331dc33) Thanks [@sprohaszka-ledger](https://github.com/sprohaszka-ledger)! - Change alpaca estimate signature
### Patch Changes
- Updated dependencies [[`de92b67`](https://github.com/LedgerHQ/ledger-live/commit/de92b67ab9c8a553a817a245cecbfe292249d431), [`b599ac4`](https://github.com/LedgerHQ/ledger-live/commit/b599ac4697688459aad15371f9efea58f331dc33), [`1d72da9`](https://github.com/LedgerHQ/ledger-live/commit/1d72da911a56d5b25fb6464e60ac236927823ce4)]:
- @ledgerhq/types-cryptoassets@7.23.0
- @ledgerhq/cryptoassets@13.16.0
- @ledgerhq/types-live@6.69.0
- @ledgerhq/coin-framework@5.0.0
## 5.0.0-next.0
### Major Changes
- [#9993](https://github.com/LedgerHQ/ledger-live/pull/9993) [`b599ac4`](https://github.com/LedgerHQ/ledger-live/commit/b599ac4697688459aad15371f9efea58f331dc33) Thanks [@sprohaszka-ledger](https://github.com/sprohaszka-ledger)! - Change alpaca estimate signature
### Patch Changes
- Updated dependencies [[`de92b67`](https://github.com/LedgerHQ/ledger-live/commit/de92b67ab9c8a553a817a245cecbfe292249d431), [`b599ac4`](https://github.com/LedgerHQ/ledger-live/commit/b599ac4697688459aad15371f9efea58f331dc33), [`1d72da9`](https://github.com/LedgerHQ/ledger-live/commit/1d72da911a56d5b25fb6464e60ac236927823ce4)]:
- @ledgerhq/types-cryptoassets@7.23.0-next.0
- @ledgerhq/cryptoassets@13.16.0-next.0
- @ledgerhq/types-live@6.69.0-next.0
- @ledgerhq/coin-framework@5.0.0-next.0
## 4.0.0
### Major Changes
- [#10009](https://github.com/LedgerHQ/ledger-live/pull/10009) [`cf2bf99`](https://github.com/LedgerHQ/ledger-live/commit/cf2bf99ba44e6eaf20e16cb320c0b22068340601) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - feat(coin-framework): replace operation index with operation id
### Minor Changes
- [#9981](https://github.com/LedgerHQ/ledger-live/pull/9981) [`001624d`](https://github.com/LedgerHQ/ledger-live/commit/001624d108b8212bff27fda572689a86b9788708) Thanks [@sprohaszka-ledger](https://github.com/sprohaszka-ledger)! - Tezos listOperations return also 'reveal' one
### Patch Changes
- Updated dependencies [[`cf2bf99`](https://github.com/LedgerHQ/ledger-live/commit/cf2bf99ba44e6eaf20e16cb320c0b22068340601)]:
- @ledgerhq/coin-framework@4.0.0
## 4.0.0-next.0
### Major Changes
- [#10009](https://github.com/LedgerHQ/ledger-live/pull/10009) [`cf2bf99`](https://github.com/LedgerHQ/ledger-live/commit/cf2bf99ba44e6eaf20e16cb320c0b22068340601) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - feat(coin-framework): replace operation index with operation id
### Minor Changes
- [#9981](https://github.com/LedgerHQ/ledger-live/pull/9981) [`001624d`](https://github.com/LedgerHQ/ledger-live/commit/001624d108b8212bff27fda572689a86b9788708) Thanks [@sprohaszka-ledger](https://github.com/sprohaszka-ledger)! - Tezos listOperations return also 'reveal' one
### Patch Changes
- Updated dependencies [[`cf2bf99`](https://github.com/LedgerHQ/ledger-live/commit/cf2bf99ba44e6eaf20e16cb320c0b22068340601)]:
- @ledgerhq/coin-framework@4.0.0-next.0
## 3.0.1
### Patch Changes
- Updated dependencies [[`9a208c3`](https://github.com/LedgerHQ/ledger-live/commit/9a208c39aec129b3aff2105991ffc18be05fd3f5), [`9009235`](https://github.com/LedgerHQ/ledger-live/commit/9009235cf52e83c0626acaec0959bfb3837404aa), [`95dbd60`](https://github.com/LedgerHQ/ledger-live/commit/95dbd60c06b02fe6fd50bc2ec0883096858d1f23)]:
- @ledgerhq/types-live@6.68.0
- @ledgerhq/coin-framework@3.0.1
## 3.0.1-next.0
### Patch Changes
- Updated dependencies [[`9a208c3`](https://github.com/LedgerHQ/ledger-live/commit/9a208c39aec129b3aff2105991ffc18be05fd3f5), [`9009235`](https://github.com/LedgerHQ/ledger-live/commit/9009235cf52e83c0626acaec0959bfb3837404aa), [`95dbd60`](https://github.com/LedgerHQ/ledger-live/commit/95dbd60c06b02fe6fd50bc2ec0883096858d1f23)]:
- @ledgerhq/types-live@6.68.0-next.0
- @ledgerhq/coin-framework@3.0.1-next.0
## 3.0.0
### Major Changes
- [#9835](https://github.com/LedgerHQ/ledger-live/pull/9835) [`8d36e9b`](https://github.com/LedgerHQ/ledger-live/commit/8d36e9b2474a4c600427f357adad04f99a89e13d) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - feat(coin-framework): return token balances in `getBalance`
### Minor Changes
- [#9755](https://github.com/LedgerHQ/ledger-live/pull/9755) [`c3c847b`](https://github.com/LedgerHQ/ledger-live/commit/c3c847bab4d01ec7cc1078344b519218806340ed) Thanks [@jnicoulaud-ledger](https://github.com/jnicoulaud-ledger)! - Fix stellar and tezos using static global variables, preventing multiple instances with different settings
- [#9777](https://github.com/LedgerHQ/ledger-live/pull/9777) [`f3cae52`](https://github.com/LedgerHQ/ledger-live/commit/f3cae527ea376bee52a273a9566c69272701b7bb) Thanks [@jnicoulaud-ledger](https://github.com/jnicoulaud-ledger)! - fix tezos fee estimation silently catching errors
- [#9905](https://github.com/LedgerHQ/ledger-live/pull/9905) [`6acd58f`](https://github.com/LedgerHQ/ledger-live/commit/6acd58f86f32a54cdd7a019ea4678d5a16a6a955) Thanks [@jnicoulaud-ledger](https://github.com/jnicoulaud-ledger)! - tezos coin module API: add `counter`, `gasLimit` and `storageLimit` to operation details
### Patch Changes
- Updated dependencies [[`6f61972`](https://github.com/LedgerHQ/ledger-live/commit/6f619728e200270a674ffb13b10375765b55ae4b), [`3f8a531`](https://github.com/LedgerHQ/ledger-live/commit/3f8a53196dfb80d084056e0d896e09869c8ff949), [`8d36e9b`](https://github.com/LedgerHQ/ledger-live/commit/8d36e9b2474a4c600427f357adad04f99a89e13d), [`b580b04`](https://github.com/LedgerHQ/ledger-live/commit/b580b04e02392a706534c2fceba192ae3b6242ef), [`1e56618`](https://github.com/LedgerHQ/ledger-live/commit/1e56618a3c31e7980074072e0aae9422c145f4b3), [`4c6b682`](https://github.com/LedgerHQ/ledger-live/commit/4c6b682b9929334a7be13212a69f2c6a614f372c), [`bf3dec3`](https://github.com/LedgerHQ/ledger-live/commit/bf3dec3eb166f80e066f466e0e03291c9a141a81)]:
- @ledgerhq/types-live@6.67.0
- @ledgerhq/coin-framework@3.0.0
- @ledgerhq/cryptoassets@13.15.0
- @ledgerhq/types-cryptoassets@7.22.0
## 3.0.0-next.0
### Major Changes
- [#9835](https://github.com/LedgerHQ/ledger-live/pull/9835) [`8d36e9b`](https://github.com/LedgerHQ/ledger-live/commit/8d36e9b2474a4c600427f357adad04f99a89e13d) Thanks [@francois-guerin-ledger](https://github.com/francois-guerin-ledger)! - feat(coin-framework): return token balances in `getBalance`
### Minor Changes
- [#9755](https://github.com/LedgerHQ/ledger-live/pull/9755) [`c3c847b`](https://github.com/LedgerHQ/ledger-live/commit/c3c847bab4d01ec7cc1078344b519218806340ed) Thanks [@jnicoulaud-ledger](https://github.com/jnicoulaud-ledger)! - Fix stellar and tezos using static global variables, preventing multiple instances with different settings
- [#9777](https://github.com/LedgerHQ/ledger-live/pull/9777) [`f3cae52`](https://github.com/LedgerHQ/ledger-live/commit/f3cae527ea376bee52a273a9566c69272701b7bb) Thanks [@jnicoulaud-ledger](https://github.com/jnicoulaud-ledger)! - fix tezos fee estimation silently catching errors
- [#9905](https://github.com/LedgerHQ/ledger-live/pull/9905) [`6acd58f`](https://github.com/LedgerHQ/ledger-live/commit/6acd58f86f32a54cdd7a019ea4678d5a16a6a955) Thanks [@jnicoulaud-ledger](https://github.com/jnicoulaud-ledger)! - tezos coin module API: add `counter`, `gasLimit` and `storageLimit` to operation details
### Patch Changes
- Updated dependencies [[`6f61972`](https://github.com/LedgerHQ/ledger-live/commit/6f619728e200270a674ffb13b10375765b55ae4b), [`3f8a531`](https://github.com/LedgerHQ/ledger-live/commit/3f8a53196dfb80d084056e0d896e09869c8ff949), [`8d36e9b`](https://github.com/LedgerHQ/ledger-live/commit/8d36e9b2474a4c600427f357adad04f99a89e13d), [`b580b04`](https://github.com/LedgerHQ/ledger-live/commit/b580b04e02392a706534c2fceba192ae3b6242ef), [`1e56618`](https://github.com/LedgerHQ/ledger-live/commit/1e56618a3c31e7980074072e0aae9422c145f4b3), [`4c6b682`](https://github.com/LedgerHQ/ledger-live/commit/4c6b682b9929334a7be13212a69f2c6a614f372c), [`bf3dec3`](https://github.com/LedgerHQ/ledger-live/commit/bf3dec3eb166f80e066f466e0e03291c9a141a81)]:
- @ledgerhq/types-live@6.67.0-next.0
- @ledgerhq/coin-framework@3.0.0-next.0
- @ledgerhq/cryptoassets@13.15.0-next.0
- @ledgerhq/types-cryptoassets@7.22.0-next.0
## 2.2.0
### Minor Changes
- [#9666](https://github.com/LedgerHQ/ledger-live/pull/9666) [`8ce7b0a`](https://github.com/LedgerHQ/ledger-live/commit/8ce7b0ab2d1d73ef071102f795e7c868c676b1f4) Thanks [@Moustafa-Koterba](https://github.com/Moustafa-Koterba)! - update the following modules for an optional fees parameter on craft transaction functions: coin-stellar, coin-tezos, coin-tron, coin-xrp, coin-framework
- [#9648](https://github.com/LedgerHQ/ledger-live/pull/9648) [`f1732a7`](https://github.com/LedgerHQ/ledger-live/commit/f1732a795e54f666b67e7686d59926037412caca) Thanks [@sprohaszka-ledger](https://github.com/sprohaszka-ledger)! - Remove SubAccount as it is an alias to TokenAccount
### Patch Changes
- Updated dependencies [[`44ae74c`](https://github.com/LedgerHQ/ledger-live/commit/44ae74c272ba803bed7c9f4fc3351e3ce8a15531), [`71bb6a9`](https://github.com/LedgerHQ/ledger-live/commit/71bb6a9adb4ac83172be5def5b25d2836380df1d), [`8ce7b0a`](https://github.com/LedgerHQ/ledger-live/commit/8ce7b0ab2d1d73ef071102f795e7c868c676b1f4), [`46a9620`](https://github.com/LedgerHQ/ledger-live/commit/46a9620b4ea6343efc28792d3b57bf84ee2a23e8), [`1e7d454`](https://github.com/LedgerHQ/ledger-live/commit/1e7d454d99f1f39880f39a120c59020725d26475), [`f1732a7`](https://github.com/LedgerHQ/ledger-live/commit/f1732a795e54f666b67e7686d59926037412caca), [`d694069`](https://github.com/LedgerHQ/ledger-live/commit/d6940698a49b7a0ed48f84d6e8184d80760cca4f)]:
- @ledgerhq/coin-framework@2.6.0
- @ledgerhq/types-live@6.66.0
- @ledgerhq/cryptoassets@13.14.1
- @ledgerhq/live-network@2.0.7
## 2.2.0-next.0
### Minor Changes
- [#9666](https://github.com/LedgerHQ/ledger-live/pull/9666) [`8ce7b0a`](https://github.com/LedgerHQ/ledger-live/commit/8ce7b0ab2d1d73ef071102f795e7c868c676b1f4) Thanks [@Moustafa-Koterba](https://github.com/Moustafa-Koterba)! - update the following modules for an optional fees parameter on craft transaction functions: coin-stellar, coin-tezos, coin-tron, coin-xrp, coin-framework
- [#9648](https://github.com/LedgerHQ/ledger-live/pull/9648) [`f1732a7`](https://github.com/LedgerHQ/ledger-live/commit/f1732a795e54f666b67e7686d59926037412caca) Thanks [@sprohaszka-ledger](https://github.com/sprohaszka-ledger)! - Remove SubAccount as it is an alias to TokenAccount
### Patch Changes
- Updated dependencies [[`44ae74c`](https://github.com/LedgerHQ/ledger-live/commit/44ae74c272ba803bed7c9f4fc3351e3ce8a15531), [`71bb6a9`](https://github.com/LedgerHQ/ledger-live/commit/71bb6a9adb4ac83172be5def5b25d2836380df1d), [`8ce7b0a`](https://github.com/LedgerHQ/ledger-live/commit/8ce7b0ab2d1d73ef071102f795e7c868c676b1f4), [`46a9620`](https://github.com/LedgerHQ/ledger-live/commit/46a9620b4ea6343efc28792d3b57bf84ee2a23e8), [`1e7d454`](https://github.com/LedgerHQ/ledger-live/commit/1e7d454d99f1f39880f39a120c59020725d26475), [`f1732a7`](https://github.com/LedgerHQ/ledger-live/commit/f1732a795e54f666b67e7686d59926037412caca), [`d694069`](https://github.com/LedgerHQ/ledger-live/commit/d6940698a49b7a0ed48f84d6e8184d80760cca4f)]:
- @ledgerhq/coin-framework@2.6.0-next.0
- @ledgerhq/types-live@6.66.0-next.0
- @ledgerhq/cryptoassets@13.14.1-next.0
- @ledgerhq/live-network@2.0.7-next.0
## 2.1.0
### Minor Changes
- [#9298](https://github.com/LedgerHQ/ledger-live/pull/9298) [`2785d49`](https://github.com/LedgerHQ/ledger-live/commit/2785d49ac320498f98ed39b4eccc48310ad35fe1) Thanks [@Canestin](https://github.com/Canestin)! - config coin-integration env for sonarqube
### Patch Changes
- Updated dependencies [[`2785d49`](https://github.com/LedgerHQ/ledger-live/commit/2785d49ac320498f98ed39b4eccc48310ad35fe1), [`2effe04`](https://github.com/LedgerHQ/ledger-live/commit/2effe04d9d4b3e407ed25da3b9f11324a82126d3), [`2407a6e`](https://github.com/LedgerHQ/ledger-live/commit/2407a6e1f3153c30c52d4bac4c9334fa95c351da), [`40e98c3`](https://github.com/LedgerHQ/ledger-live/commit/40e98c392bd9192570e46c2d62cf0779bdfe01ec), [`a656e47`](https://github.com/LedgerHQ/ledger-live/commit/a656e47c1dc3ac8b578debf9cf80eab370c7086f)]:
- @ledgerhq/coin-framework@2.5.0
- @ledgerhq/types-live@6.65.0
- @ledgerhq/types-cryptoassets@7.21.0
- @ledgerhq/cryptoassets@13.14.0
- @ledgerhq/live-network@2.0.6
## 2.1.0-next.0
### Minor Changes
- [#9298](https://github.com/LedgerHQ/ledger-live/pull/9298) [`2785d49`](https://github.com/LedgerHQ/ledger-live/commit/2785d49ac320498f98ed39b4eccc48310ad35fe1) Thanks [@Canestin](https://github.com/Canestin)! - config coin-integration env for sonarqube
### Patch Changes
- Updated dependencies [[`2785d49`](https://github.com/LedgerHQ/ledger-live/commit/2785d49ac320498f98ed39b4eccc48310ad35fe1), [`2effe04`](https://github.com/LedgerHQ/ledger-live/commit/2effe04d9d4b3e407ed25da3b9f11324a82126d3), [`2407a6e`](https://github.com/LedgerHQ/ledger-live/commit/2407a6e1f3153c30c52d4bac4c9334fa95c351da), [`40e98c3`](https://github.com/LedgerHQ/ledger-live/commit/40e98c392bd9192570e46c2d62cf0779bdfe01ec), [`a656e47`](https://github.com/LedgerHQ/ledger-live/commit/a656e47c1dc3ac8b578debf9cf80eab370c7086f)]:
- @ledgerhq/coin-framework@2.5.0-next.0
- @ledgerhq/types-live@6.65.0-next.0
- @ledgerhq/types-cryptoassets@7.21.0-next.0
- @ledgerhq/cryptoassets@13.14.0-next.0
- @ledgerhq/live-network@2.0.6-next.0
## 2.0.0
### Major Changes
- [#9275](https://github.com/LedgerHQ/ledger-live/pull/9275) [`b8fca38`](https://github.com/LedgerHQ/ledger-live/commit/b8fca386fa07cf393109a1928e92dfc790f9c286) Thanks [@hedi-edelbloute](https://github.com/hedi-edelbloute)! - Update Alpaca api to include generic token type and update list operations
### Minor Changes
- [#9440](https://github.com/LedgerHQ/ledger-live/pull/9440) [`5f27549`](https://github.com/LedgerHQ/ledger-live/commit/5f275498e80060f98238a54e8ae3e2c94bfd7c91) Thanks [@qperrot](https://github.com/qperrot)! - feat estimateFees for alpacha
- [#9466](https://github.com/LedgerHQ/ledger-live/pull/9466) [`e2630cb`](https://github.com/LedgerHQ/ledger-live/commit/e2630cbec8d94ae037b2bf85cfa200a277ae739f) Thanks [@qperrot](https://github.com/qperrot)! - Tron craftTransaction alpaca implementation
- [#9562](https://github.com/LedgerHQ/ledger-live/pull/9562) [`daa06d9`](https://github.com/LedgerHQ/ledger-live/commit/daa06d92472f10ab72598715882c177386b38c2b) Thanks [@hedi-edelbloute](https://github.com/hedi-edelbloute)! - Update integration test
### Patch Changes
- Updated dependencies [[`5f27549`](https://github.com/LedgerHQ/ledger-live/commit/5f275498e80060f98238a54e8ae3e2c94bfd7c91), [`fa8b10c`](https://github.com/LedgerHQ/ledger-live/commit/fa8b10cac5603eedd7c2309d2bb544a7d2d1a1a8), [`e2630cb`](https://github.com/LedgerHQ/ledger-live/commit/e2630cbec8d94ae037b2bf85cfa200a277ae739f), [`c15d7ea`](https://github.com/LedgerHQ/ledger-live/commit/c15d7ea48e41168726a90a17809175aee5bfa940), [`b8fca38`](https://github.com/LedgerHQ/ledger-live/commit/b8fca386fa07cf393109a1928e92dfc790f9c286)]:
- @ledgerhq/coin-framework@2.4.0
- @ledgerhq/types-live@6.64.0
## 2.0.0-next.0
### Major Changes
- [#9275](https://github.com/LedgerHQ/ledger-live/pull/9275) [`b8fca38`](https://github.com/LedgerHQ/ledger-live/commit/b8fca386fa07cf393109a1928e92dfc790f9c286) Thanks [@hedi-edelbloute](https://github.com/hedi-edelbloute)! - Update Alpaca api to include generic token type and update list operations
### Minor Changes
- [#9440](https://github.com/LedgerHQ/ledger-live/pull/9440) [`5f27549`](https://github.com/LedgerHQ/ledger-live/commit/5f275498e80060f98238a54e8ae3e2c94bfd7c91) Thanks [@qperrot](https://github.com/qperrot)! - feat estimateFees for alpacha
- [#9466](https://github.com/LedgerHQ/ledger-live/pull/9466) [`e2630cb`](https://github.com/LedgerHQ/ledger-live/commit/e2630cbec8d94ae037b2bf85cfa200a277ae739f) Thanks [@qperrot](https://github.com/qperrot)! - Tron craftTransaction alpaca implementation
- [#9562](https://github.com/LedgerHQ/ledger-live/pull/9562) [`daa06d9`](https://github.com/LedgerHQ/ledger-live/commit/daa06d92472f10ab72598715882c177386b38c2b) Thanks [@hedi-edelbloute](https://github.com/hedi-edelbloute)! - Update integration test
### Patch Changes
- Updated dependencies [[`5f27549`](https://github.com/LedgerHQ/ledger-live/commit/5f275498e80060f98238a54e8ae3e2c94bfd7c91), [`fa8b10c`](https://github.com/LedgerHQ/ledger-live/commit/fa8b10cac5603eedd7c2309d2bb544a7d2d1a1a8), [`e2630cb`](https://github.com/LedgerHQ/ledger-live/commit/e2630cbec8d94ae037b2bf85cfa200a277ae739f), [`c15d7ea`](https://github.com/LedgerHQ/ledger-live/commit/c15d7ea48e41168726a90a17809175aee5bfa940), [`b8fca38`](https://github.com/LedgerHQ/ledger-live/commit/b8fca386fa07cf393109a1928e92dfc790f9c286)]:
- @ledgerhq/coin-framework@2.4.0-next.0
- @ledgerhq/types-live@6.64.0-next.0
## 1.4.0
### Minor Changes
- [#9472](https://github.com/LedgerHQ/ledger-live/pull/9472) [`9c4c82e`](https://github.com/LedgerHQ/ledger-live/commit/9c4c82e8e81aaadfc1132f0a25812be094e54453) Thanks [@KVNLS](https://github.com/KVNLS)! - Fix elliptic library version used
- [#9194](https://github.com/LedgerHQ/ledger-live/pull/9194) [`ce00b67`](https://github.com/LedgerHQ/ledger-live/commit/ce00b67011b7ff554af7e0ee82696dc4ea0b632f) Thanks [@jprudent](https://github.com/jprudent)! - Tesos tx fee is now the sum of storageFee + bakerFee + allocationFee
### Patch Changes
- Updated dependencies [[`5abde51`](https://github.com/LedgerHQ/ledger-live/commit/5abde5192d32f493ece2f99aec0e2de0c411f9e5), [`cc00249`](https://github.com/LedgerHQ/ledger-live/commit/cc002495f3e107aba283a3aa4abca90954de6d76)]:
- @ledgerhq/types-live@6.63.0
- @ledgerhq/coin-framework@2.3.0
## 1.4.0-next.0
### Minor Changes
- [#9472](https://github.com/LedgerHQ/ledger-live/pull/9472) [`9c4c82e`](https://github.com/LedgerHQ/ledger-live/commit/9c4c82e8e81aaadfc1132f0a25812be094e54453) Thanks [@KVNLS](https://github.com/KVNLS)! - Fix elliptic library version used
- [#9194](https://github.com/LedgerHQ/ledger-live/pull/9194) [`ce00b67`](https://github.com/LedgerHQ/ledger-live/commit/ce00b67011b7ff554af7e0ee82696dc4ea0b632f) Thanks [@jprudent](https://github.com/jprudent)! - Tesos tx fee is now the sum of storageFee + bakerFee + allocationFee
### Patch Changes
- Updated dependencies [[`5abde51`](https://github.com/LedgerHQ/ledger-live/commit/5abde5192d32f493ece2f99aec0e2de0c411f9e5), [`cc00249`](https://github.com/LedgerHQ/ledger-live/commit/cc002495f3e107aba283a3aa4abca90954de6d76)]:
- @ledgerhq/types-live@6.63.0-next.0
- @ledgerhq/coin-framework@2.3.0-next.0
## 1.3.1
### Patch Changes
- Updated dependencies [[`8675df1`](https://github.com/LedgerHQ/ledger-live/commit/8675df12c24067877358f27e1e7c66f739ff0c78), [`0a59343`](https://github.com/LedgerHQ/ledger-live/commit/0a59343b591dab4e886c21cb47f7339231997331), [`ede6db0`](https://github.com/LedgerHQ/ledger-live/commit/ede6db0b94193cc9072aeb87e90f4098f0434af0), [`1461449`](https://github.com/LedgerHQ/ledger-live/commit/146144941c13e60182da8d79592f706d12a6f00e)]:
- @ledgerhq/types-live@6.62.0
- @ledgerhq/coin-framework@2.2.0
- @ledgerhq/types-cryptoassets@7.20.0
- @ledgerhq/cryptoassets@13.13.0
- @ledgerhq/live-network@2.0.5
## 1.3.1-next.0
### Patch Changes
- Updated dependencies [[`8675df1`](https://github.com/LedgerHQ/ledger-live/commit/8675df12c24067877358f27e1e7c66f739ff0c78), [`0a59343`](https://github.com/LedgerHQ/ledger-live/commit/0a59343b591dab4e886c21cb47f7339231997331), [`ede6db0`](https://github.com/LedgerHQ/ledger-live/commit/ede6db0b94193cc9072aeb87e90f4098f0434af0), [`1461449`](https://github.com/LedgerHQ/ledger-live/commit/146144941c13e60182da8d79592f706d12a6f00e)]:
- @ledgerhq/types-live@6.62.0-next.0
- @ledgerhq/coin-framework@2.2.0-next.0
- @ledgerhq/types-cryptoassets@7.20.0-next.0
- @ledgerhq/cryptoassets@13.13.0-next.0
- @ledgerhq/live-network@2.0.5-next.0
## 1.3.0
### Minor Changes
- [#9167](https://github.com/LedgerHQ/ledger-live/pull/9167) [`e50b750`](https://github.com/LedgerHQ/ledger-live/commit/e50b750a362e978046cfa2fde321ac3c3212630e) Thanks [@sprohaszka-ledger](https://github.com/sprohaszka-ledger)! - coinconfig edit
- [#9131](https://github.com/LedgerHQ/ledger-live/pull/9131) [`896b14d`](https://github.com/LedgerHQ/ledger-live/commit/896b14d89206a6d745ce5d446189e61bb8741542) Thanks [@jprudent](https://github.com/jprudent)! - api iterates over all operations
### Patch Changes
- Updated dependencies [[`e4d9a5c`](https://github.com/LedgerHQ/ledger-live/commit/e4d9a5ce6c3e8f2b3829f8f5772e7ba712a4a50c)]:
- @ledgerhq/types-live@6.61.0
- @ledgerhq/coin-framework@2.1.1
## 1.3.0-next.0
### Minor Changes
- [#9167](https://github.com/LedgerHQ/ledger-live/pull/9167) [`e50b750`](https://github.com/LedgerHQ/ledger-live/commit/e50b750a362e978046cfa2fde321ac3c3212630e) Thanks [@sprohaszka-ledger](https://github.com/sprohaszka-ledger)! - coinconfig edit
- [#9131](https://github.com/LedgerHQ/ledger-live/pull/9131) [`896b14d`](https://github.com/LedgerHQ/ledger-live/commit/896b14d89206a6d745ce5d446189e61bb8741542) Thanks [@jprudent](https://github.com/jprudent)! - api iterates over all operations
### Patch Changes
- Updated dependencies [[`e4d9a5c`](https://github.com/LedgerHQ/ledger-live/commit/e4d9a5ce6c3e8f2b3829f8f5772e7ba712a4a50c)]:
- @ledgerhq/types-live@6.61.0-next.0
- @ledgerhq/coin-framework@2.1.1-next.0
## 1.2.0
### Minor Changes
- [#9126](https://github.com/LedgerHQ/ledger-live/pull/9126) [`339a611`](https://github.com/LedgerHQ/ledger-live/commit/339a61190c8bd9bb125f7fd3e3fbdaa9b31fcb58) Thanks [@jprudent](https://github.com/jprudent)! - Fix addresses on operations
### Patch Changes
- Updated dependencies [[`da67b55`](https://github.com/LedgerHQ/ledger-live/commit/da67b5511b22553f7e3e089eca2e363a5e3cbffe), [`0a4413d`](https://github.com/LedgerHQ/ledger-live/commit/0a4413dd5cf50967c27b39bbd7dd9222e6322a60)]:
- @ledgerhq/cryptoassets@13.12.0
- @ledgerhq/coin-framework@2.1.0
- @ledgerhq/types-live@6.60.0
## 1.2.0-next.0
### Minor Changes
- [#9126](https://github.com/LedgerHQ/ledger-live/pull/9126) [`339a611`](https://github.com/LedgerHQ/ledger-live/commit/339a61190c8bd9bb125f7fd3e3fbdaa9b31fcb58) Thanks [@jprudent](https://github.com/jprudent)! - Fix addresses on operations
### Patch Changes
- Updated dependencies [[`da67b55`](https://github.com/LedgerHQ/ledger-live/commit/da67b5511b22553f7e3e089eca2e363a5e3cbffe), [`0a4413d`](https://github.com/LedgerHQ/ledger-live/commit/0a4413dd5cf50967c27b39bbd7dd9222e6322a60)]:
- @ledgerhq/cryptoassets@13.12.0-next.0
- @ledgerhq/coin-framework@2.1.0-next.0
- @ledgerhq/types-live@6.60.0-next.0
## 1.1.0
### Minor Changes
- [#8908](https://github.com/LedgerHQ/ledger-live/pull/8908) [`5ad0782`](https://github.com/LedgerHQ/ledger-live/commit/5ad07824ab794b826b47cb1136bba239b1c44322) Thanks [@qperrot](https://github.com/qperrot)! - Fix device actions on tezos
### Patch Changes
- Updated dependencies [[`58c1a9c`](https://github.com/LedgerHQ/ledger-live/commit/58c1a9c68b2ce2ebef9dbd7af00ae09efd7a29dc), [`ff40e9a`](https://github.com/LedgerHQ/ledger-live/commit/ff40e9a00d325e5b46cb069936ba2a5781c601b5)]:
- @ledgerhq/coin-framework@2.0.0
- @ledgerhq/cryptoassets@13.11.0
## 1.1.0-next.0
### Minor Changes
- [#8908](https://github.com/LedgerHQ/ledger-live/pull/8908) [`5ad0782`](https://github.com/LedgerHQ/ledger-live/commit/5ad07824ab794b826b47cb1136bba239b1c44322) Thanks [@qperrot](https://github.com/qperrot)! - Fix device actions on tezos
### Patch Changes
- Updated dependencies [[`58c1a9c`](https://github.com/LedgerHQ/ledger-live/commit/58c1a9c68b2ce2ebef9dbd7af00ae09efd7a29dc), [`ff40e9a`](https://github.com/LedgerHQ/ledger-live/commit/ff40e9a00d325e5b46cb069936ba2a5781c601b5)]:
- @ledgerhq/coin-framework@2.0.0-next.0
- @ledgerhq/cryptoassets@13.11.0-next.0
## 1.0.0
### Major Changes
- [#9092](https://github.com/LedgerHQ/ledger-live/pull/9092) [`5e18866`](https://github.com/LedgerHQ/ledger-live/commit/5e18866320b843632699659ee66f6c410c108c1e) Thanks [@jprudent](https://github.com/jprudent)! - Change coin-framework/api types for list operations
### Patch Changes
- Updated dependencies [[`5e18866`](https://github.com/LedgerHQ/ledger-live/commit/5e18866320b843632699659ee66f6c410c108c1e)]:
- @ledgerhq/coin-framework@1.0.0
## 1.0.0-next.0
### Major Changes
- [#9092](https://github.com/LedgerHQ/ledger-live/pull/9092) [`5e18866`](https://github.com/LedgerHQ/ledger-live/commit/5e18866320b843632699659ee66f6c410c108c1e) Thanks [@jprudent](https://github.com/jprudent)! - Change coin-framework/api types for list operations
### Patch Changes
- Updated dependencies [[`5e18866`](https://github.com/LedgerHQ/ledger-live/commit/5e18866320b843632699659ee66f6c410c108c1e)]:
- @ledgerhq/coin-framework@1.0.0-next.0
## 0.9.2
### Patch Changes
- Updated dependencies [[`11c3b8b`](https://github.com/LedgerHQ/ledger-live/commit/11c3b8b27bc4fa996757c58ec7f5beac90c7a425), [`a231c50`](https://github.com/LedgerHQ/ledger-live/commit/a231c5084a24acb0e49efeb3c7ab1f5dbc6fd94b), [`41b153a`](https://github.com/LedgerHQ/ledger-live/commit/41b153adb98ce8de3336563694204d83905dba0e), [`d15a240`](https://github.com/LedgerHQ/ledger-live/commit/d15a2402bbd7f39353059c1cc2f74b9ac0876d3d), [`9534f17`](https://github.com/LedgerHQ/ledger-live/commit/9534f17247e1472b0fee8b993a83264f4e4ab363), [`1524353`](https://github.com/LedgerHQ/ledger-live/commit/152435384370b729183b7898308cbc1f8b61e451)]:
- @ledgerhq/types-live@6.59.0
- @ledgerhq/cryptoassets@13.10.0
- @ledgerhq/coin-framework@0.25.0
## 0.9.2-next.0
### Patch Changes
- Updated dependencies [[`11c3b8b`](https://github.com/LedgerHQ/ledger-live/commit/11c3b8b27bc4fa996757c58ec7f5beac90c7a425), [`a231c50`](https://github.com/LedgerHQ/ledger-live/commit/a231c5084a24acb0e49efeb3c7ab1f5dbc6fd94b), [`41b153a`](https://github.com/LedgerHQ/ledger-live/commit/41b153adb98ce8de3336563694204d83905dba0e), [`d15a240`](https://github.com/LedgerHQ/ledger-live/commit/d15a2402bbd7f39353059c1cc2f74b9ac0876d3d), [`9534f17`](https://github.com/LedgerHQ/ledger-live/commit/9534f17247e1472b0fee8b993a83264f4e4ab363), [`1524353`](https://github.com/LedgerHQ/ledger-live/commit/152435384370b729183b7898308cbc1f8b61e451)]:
- @ledgerhq/types-live@6.59.0-next.0
- @ledgerhq/cryptoassets@13.10.0-next.0
- @ledgerhq/coin-framework@0.25.0-next.0
## 0.9.1
### Patch Changes
- Updated dependencies [[`670776e`](https://github.com/LedgerHQ/ledger-live/commit/670776e3a34859a18d6de1470de4195cf2094a81)]:
- @ledgerhq/coin-framework@0.24.0
## 0.9.1-hotfix.0
### Patch Changes
- Updated dependencies [[`670776e`](https://github.com/LedgerHQ/ledger-live/commit/670776e3a34859a18d6de1470de4195cf2094a81)]:
- @ledgerhq/coin-framework@0.23.1-hotfix.0
## 0.9.0
### Minor Changes
- [#8914](https://github.com/LedgerHQ/ledger-live/pull/8914) [`537141a`](https://github.com/LedgerHQ/ledger-live/commit/537141ab549b8dab57d3eb117e875faa67b54f4b) Thanks [@hedi-edelbloute](https://github.com/hedi-edelbloute)! - Bot feature : Add filter for features
### Patch Changes
- Updated dependencies [[`f5196c5`](https://github.com/LedgerHQ/ledger-live/commit/f5196c52453b971a3327d09966edb62bb3d6a293), [`3a65633`](https://github.com/LedgerHQ/ledger-live/commit/3a6563309c8cacbd6e9a73e3044b1ff7c3966f87), [`537141a`](https://github.com/LedgerHQ/ledger-live/commit/537141ab549b8dab57d3eb117e875faa67b54f4b)]:
- @ledgerhq/types-live@6.58.0
- @ledgerhq/coin-framework@0.23.0
## 0.9.0-next.0
### Minor Changes
- [#8914](https://github.com/LedgerHQ/ledger-live/pull/8914) [`537141a`](https://github.com/LedgerHQ/ledger-live/commit/537141ab549b8dab57d3eb117e875faa67b54f4b) Thanks [@hedi-edelbloute](https://github.com/hedi-edelbloute)! - Bot feature : Add filter for features
### Patch Changes
- Updated dependencies [[`f5196c5`](https://github.com/LedgerHQ/ledger-live/commit/f5196c52453b971a3327d09966edb62bb3d6a293), [`3a65633`](https://github.com/LedgerHQ/ledger-live/commit/3a6563309c8cacbd6e9a73e3044b1ff7c3966f87), [`537141a`](https://github.com/LedgerHQ/ledger-live/commit/537141ab549b8dab57d3eb117e875faa67b54f4b)]:
- @ledgerhq/types-live@6.58.0-next.0
- @ledgerhq/coin-framework@0.23.0-next.0
## 0.8.1
### Patch Changes
- Updated dependencies [[`5e01938`](https://github.com/LedgerHQ/ledger-live/commit/5e01938ece3dc1ccf7bea6c2805b6558c846db80), [`d98a964`](https://github.com/LedgerHQ/ledger-live/commit/d98a96476c3d44eab1575f6c7c58ec03b5daf890), [`c2d24cd`](https://github.com/LedgerHQ/ledger-live/commit/c2d24cd0299ea04e39306279b6f833696bc4f4fb)]:
- @ledgerhq/coin-framework@0.22.0
- @ledgerhq/types-cryptoassets@7.19.0
- @ledgerhq/cryptoassets@13.9.0
- @ledgerhq/types-live@6.57.0
- @ledgerhq/live-network@2.0.4
## 0.8.1-next.0
### Patch Changes
- Updated dependencies [[`5e01938`](https://github.com/LedgerHQ/ledger-live/commit/5e01938ece3dc1ccf7bea6c2805b6558c846db80), [`d98a964`](https://github.com/LedgerHQ/ledger-live/commit/d98a96476c3d44eab1575f6c7c58ec03b5daf890), [`c2d24cd`](https://github.com/LedgerHQ/ledger-live/commit/c2d24cd0299ea04e39306279b6f833696bc4f4fb)]:
- @ledgerhq/coin-framework@0.22.0-next.0
- @ledgerhq/types-cryptoassets@7.19.0-next.0
- @ledgerhq/cryptoassets@13.9.0-next.0
- @ledgerhq/types-live@6.57.0-next.0
- @ledgerhq/live-network@2.0.4-next.0
## 0.8.0
### Minor Changes
- [#8499](https://github.com/LedgerHQ/ledger-live/pull/8499) [`9820a8f`](https://github.com/LedgerHQ/ledger-live/commit/9820a8f8ec66cf114b23c3c3b92474d250b8bf01) Thanks [@sprohaszka-ledger](https://github.com/sprohaszka-ledger)! - Exchange function is now in coin-modules
- [#8723](https://github.com/LedgerHQ/ledger-live/pull/8723) [`2ae713b`](https://github.com/LedgerHQ/ledger-live/commit/2ae713b20c1da18ef33beb730f41fb3ea2990e44) Thanks [@Salim-belkhir](https://github.com/Salim-belkhir)! - Add block informations to an operation (hash, time and height of a block)
- [#8673](https://github.com/LedgerHQ/ledger-live/pull/8673) [`9d8e34e`](https://github.com/LedgerHQ/ledger-live/commit/9d8e34eee5d77c6620298def250e85eda6b606b7) Thanks [@sprohaszka-ledger](https://github.com/sprohaszka-ledger)! - Add pagination to listOperations for Alpaca
### Patch Changes
- Updated dependencies [[`9820a8f`](https://github.com/LedgerHQ/ledger-live/commit/9820a8f8ec66cf114b23c3c3b92474d250b8bf01), [`50b00c7`](https://github.com/LedgerHQ/ledger-live/commit/50b00c73e39af99c7d749bf57d5ef2f2e4942f2d), [`6cd5ecd`](https://github.com/LedgerHQ/ledger-live/commit/6cd5ecdedaed090d47a4df18db3c36f990de60e5), [`6d050fd`](https://github.com/LedgerHQ/ledger-live/commit/6d050fda707a63cff15cee797ea1167a0219aa32), [`1fa754d`](https://github.com/LedgerHQ/ledger-live/commit/1fa754deed730bb3dd8d05cb4e83e8c8d1b33ad1), [`be4233c`](https://github.com/LedgerHQ/ledger-live/commit/be4233ce713b90dc3ad335c330ca9d6509bf23e3), [`2ae713b`](https://github.com/LedgerHQ/ledger-live/commit/2ae713b20c1da18ef33beb730f41fb3ea2990e44), [`1f62290`](https://github.com/LedgerHQ/ledger-live/commit/1f622907dd108fced66a36be1d8d8738d41303c9), [`fe81150`](https://github.com/LedgerHQ/ledger-live/commit/fe811500ae626cab1995ccf8bd8cb8aa8e74bb40), [`9d8e34e`](https://github.com/LedgerHQ/ledger-live/commit/9d8e34eee5d77c6620298def250e85eda6b606b7)]:
- @ledgerhq/types-live@6.56.0
- @ledgerhq/coin-framework@0.21.0
- @ledgerhq/cryptoassets@13.8.0
- @ledgerhq/types-cryptoassets@7.18.0
## 0.8.0-next.1
### Patch Changes
- Updated dependencies [[`6d050fd`](https://github.com/LedgerHQ/ledger-live/commit/6d050fda707a63cff15cee797ea1167a0219aa32)]:
- @ledgerhq/types-live@6.56.0-next.1
- @ledgerhq/coin-framework@0.21.0-next.1
## 0.8.0-next.0
### Minor Changes
- [#8499](https://github.com/LedgerHQ/ledger-live/pull/8499) [`9820a8f`](https://github.com/LedgerHQ/ledger-live/commit/9820a8f8ec66cf114b23c3c3b92474d250b8bf01) Thanks [@sprohaszka-ledger](https://github.com/sprohaszka-ledger)! - Exchange function is now in coin-modules
- [#8723](https://github.com/LedgerHQ/ledger-live/pull/8723) [`2ae713b`](https://github.com/LedgerHQ/ledger-live/commit/2ae713b20c1da18ef33beb730f41fb3ea2990e44) Thanks [@Salim-belkhir](https://github.com/Salim-belkhir)! - Add block informations to an operation (hash, time and height of a block)
- [#8673](https://github.com/LedgerHQ/ledger-live/pull/8673) [`9d8e34e`](https://github.com/LedgerHQ/ledger-live/commit/9d8e34eee5d77c6620298def250e85eda6b606b7) Thanks [@sprohaszka-ledger](https://github.com/sprohaszka-ledger)! - Add pagination to listOperations for Alpaca
### Patch Changes
- Updated dependencies [[`9820a8f`](https://github.com/LedgerHQ/ledger-live/commit/9820a8f8ec66cf114b23c3c3b92474d250b8bf01), [`50b00c7`](https://github.com/LedgerHQ/ledger-live/commit/50b00c73e39af99c7d749bf57d5ef2f2e4942f2d), [`6cd5ecd`](https://github.com/LedgerHQ/ledger-live/commit/6cd5ecdedaed090d47a4df18db3c36f990de60e5), [`1fa754d`](https://github.com/LedgerHQ/ledger-live/commit/1fa754deed730bb3dd8d05cb4e83e8c8d1b33ad1), [`be4233c`](https://github.com/LedgerHQ/ledger-live/commit/be4233ce713b90dc3ad335c330ca9d6509bf23e3), [`2ae713b`](https://github.com/LedgerHQ/ledger-live/commit/2ae713b20c1da18ef33beb730f41fb3ea2990e44), [`1f62290`](https://github.com/LedgerHQ/ledger-live/commit/1f622907dd108fced66a36be1d8d8738d41303c9), [`fe81150`](https://github.com/LedgerHQ/ledger-live/commit/fe811500ae626cab1995ccf8bd8cb8aa8e74bb40), [`9d8e34e`](https://github.com/LedgerHQ/ledger-live/commit/9d8e34eee5d77c6620298def250e85eda6b606b7)]:
- @ledgerhq/types-live@6.56.0-next.0
- @ledgerhq/coin-framework@0.21.0-next.0
- @ledgerhq/cryptoassets@13.8.0-next.0
- @ledgerhq/types-cryptoassets@7.18.0-next.0
## 0.7.1
### Patch Changes
- Updated dependencies [[`40f1cd4`](https://github.com/LedgerHQ/ledger-live/commit/40f1cd4c22d17480dcf86c73e90a07866667b0ba), [`c45ee45`](https://github.com/LedgerHQ/ledger-live/commit/c45ee457a9f5500ae42f2a8fb7f0cfb7926f319b), [`322fd58`](https://github.com/LedgerHQ/ledger-live/commit/322fd58ffcde6d592eb27af1fd93f8c45d33205c), [`61aedb7`](https://github.com/LedgerHQ/ledger-live/commit/61aedb7bbd45e73d6bc2b53e55f562262d5c5fa7)]:
- @ledgerhq/types-live@6.55.0
- @ledgerhq/coin-framework@0.20.1
## 0.7.1-next.1
### Patch Changes
- Updated dependencies [[`61aedb7`](https://github.com/LedgerHQ/ledger-live/commit/61aedb7bbd45e73d6bc2b53e55f562262d5c5fa7)]:
- @ledgerhq/types-live@6.55.0-next.1
- @ledgerhq/coin-framework@0.20.1-next.1
## 0.7.1-next.0
### Patch Changes
- Updated dependencies [[`40f1cd4`](https://github.com/LedgerHQ/ledger-live/commit/40f1cd4c22d17480dcf86c73e90a07866667b0ba), [`c45ee45`](https://github.com/LedgerHQ/ledger-live/commit/c45ee457a9f5500ae42f2a8fb7f0cfb7926f319b), [`322fd58`](https://github.com/LedgerHQ/ledger-live/commit/322fd58ffcde6d592eb27af1fd93f8c45d33205c)]:
- @ledgerhq/types-live@6.55.0-next.0
- @ledgerhq/coin-framework@0.20.1-next.0
## 0.7.0
### Minor Changes
- [#8432](https://github.com/LedgerHQ/ledger-live/pull/8432) [`daa059a`](https://github.com/LedgerHQ/ledger-live/commit/daa059a90eb4381a0936c4a3703e8061db24072a) Thanks [@sprohaszka-ledger](https://github.com/sprohaszka-ledger)! - Alpaca allows delegate and undelegate tx crafting
### Patch Changes
- Updated dependencies [[`0b51d37`](https://github.com/LedgerHQ/ledger-live/commit/0b51d37762c73a88d7204d1fcc3bb60a110568ed), [`724fa8b`](https://github.com/LedgerHQ/ledger-live/commit/724fa8b29cbda74a729c5756f91c5c9b745fdbdb), [`daa059a`](https://github.com/LedgerHQ/ledger-live/commit/daa059a90eb4381a0936c4a3703e8061db24072a)]:
- @ledgerhq/coin-framework@0.20.0
- @ledgerhq/types-live@6.54.0
## 0.7.0-next.0
### Minor Changes
- [#8432](https://github.com/LedgerHQ/ledger-live/pull/8432) [`daa059a`](https://github.com/LedgerHQ/ledger-live/commit/daa059a90eb4381a0936c4a3703e8061db24072a) Thanks [@sprohaszka-ledger](https://github.com/sprohaszka-ledger)! - Alpaca allows delegate and undelegate tx crafting
### Patch Changes
- Updated dependencies [[`0b51d37`](https://github.com/LedgerHQ/ledger-live/commit/0b51d37762c73a88d7204d1fcc3bb60a110568ed), [`724fa8b`](https://github.com/LedgerHQ/ledger-live/commit/724fa8b29cbda74a729c5756f91c5c9b745fdbdb), [`daa059a`](https://github.com/LedgerHQ/ledger-live/commit/daa059a90eb4381a0936c4a3703e8061db24072a)]:
- @ledgerhq/coin-framework@0.20.0-next.0
- @ledgerhq/types-live@6.54.0-next.0
## 0.6.9
### Patch Changes
- Updated dependencies [[`5ce33a4`](https://github.com/LedgerHQ/ledger-live/commit/5ce33a417ecc87face54c1864aa49476c5f394b9), [`a52f6ae`](https://github.com/LedgerHQ/ledger-live/commit/a52f6ae3d49ea8daea42d9cdc24e9dd0d6d0f371), [`748cf14`](https://github.com/LedgerHQ/ledger-live/commit/748cf146b3e903172831e7e5ddbc29a3565c8932), [`61f8b03`](https://github.com/LedgerHQ/ledger-live/commit/61f8b033f710369171e277f5c0faede636207160)]:
- @ledgerhq/types-live@6.53.1
- @ledgerhq/coin-framework@0.19.1
## 0.6.9-next.0
### Patch Changes
- Updated dependencies [[`5ce33a4`](https://github.com/LedgerHQ/ledger-live/commit/5ce33a417ecc87face54c1864aa49476c5f394b9), [`a52f6ae`](https://github.com/LedgerHQ/ledger-live/commit/a52f6ae3d49ea8daea42d9cdc24e9dd0d6d0f371), [`748cf14`](https://github.com/LedgerHQ/ledger-live/commit/748cf146b3e903172831e7e5ddbc29a3565c8932), [`61f8b03`](https://github.com/LedgerHQ/ledger-live/commit/61f8b033f710369171e277f5c0faede636207160)]:
- @ledgerhq/types-live@6.53.1-next.0
- @ledgerhq/coin-framework@0.19.1-next.0
## 0.6.8
### Patch Changes
- Updated dependencies [[`2013b0f`](https://github.com/LedgerHQ/ledger-live/commit/2013b0f23d7f5bccff58dfd93fd45333194b8ae0), [`2013b0f`](https://github.com/LedgerHQ/ledger-live/commit/2013b0f23d7f5bccff58dfd93fd45333194b8ae0), [`63e5392`](https://github.com/LedgerHQ/ledger-live/commit/63e5392a108f1bec7cfc9c413db1550e7b5c9a25), [`87218b1`](https://github.com/LedgerHQ/ledger-live/commit/87218b17b86eaea9daa23c4c9cdf644c7ad2f65a), [`42e27f2`](https://github.com/LedgerHQ/ledger-live/commit/42e27f229ee2c1302258b6cc27d165c7b638cf3b), [`a40c525`](https://github.com/LedgerHQ/ledger-live/commit/a40c5256b80574aaaf17651d195832668b9796f5)]:
- @ledgerhq/coin-framework@0.19.0
- @ledgerhq/types-cryptoassets@7.17.0
- @ledgerhq/cryptoassets@13.7.0
- @ledgerhq/types-live@6.53.0
- @ledgerhq/live-network@2.0.3
## 0.6.8-next.0
### Patch Changes
- Updated dependencies [[`2013b0f`](https://github.com/LedgerHQ/ledger-live/commit/2013b0f23d7f5bccff58dfd93fd45333194b8ae0), [`2013b0f`](https://github.com/LedgerHQ/ledger-live/commit/2013b0f23d7f5bccff58dfd93fd45333194b8ae0), [`35d6de2`](https://github.com/LedgerHQ/ledger-live/commit/35d6de2ace269f30fc39a3f022673a82d0c48193), [`63e5392`](https://github.com/LedgerHQ/ledger-live/commit/63e5392a108f1bec7cfc9c413db1550e7b5c9a25), [`87218b1`](https://github.com/LedgerHQ/ledger-live/commit/87218b17b86eaea9daa23c4c9cdf644c7ad2f65a), [`42e27f2`](https://github.com/LedgerHQ/ledger-live/commit/42e27f229ee2c1302258b6cc27d165c7b638cf3b), [`a40c525`](https://github.com/LedgerHQ/ledger-live/commit/a40c5256b80574aaaf17651d195832668b9796f5)]:
- @ledgerhq/coin-framework@0.19.0-next.0
- @ledgerhq/types-cryptoassets@7.17.0-next.0
- @ledgerhq/cryptoassets@13.7.0-next.0
- @ledgerhq/types-live@6.53.0-next.0
- @ledgerhq/live-network@2.0.3-next.0
## 0.6.7
### Patch Changes
- Updated dependencies [[`65c3322`](https://github.com/LedgerHQ/ledger-live/commit/65c3322bf3871659f078148ab4b5c12b0fd53dc1)]:
- @ledgerhq/types-live@6.52.4
- @ledgerhq/coin-framework@0.18.6
## 0.6.7-next.0
### Patch Changes
- Updated dependencies [[`65c3322`](https://github.com/LedgerHQ/ledger-live/commit/65c3322bf3871659f078148ab4b5c12b0fd53dc1)]:
- @ledgerhq/types-live@6.52.4-next.0
- @ledgerhq/coin-framework@0.18.6-next.0
## 0.6.6
### Patch Changes
- Updated dependencies [[`81cd773`](https://github.com/LedgerHQ/ledger-live/commit/81cd7735a3c94628b6d4825b736ef12a0b74d3a3), [`f275f48`](https://github.com/LedgerHQ/ledger-live/commit/f275f48a17eeba2bdd3119e478975c8d4c7183be), [`1a0fa20`](https://github.com/LedgerHQ/ledger-live/commit/1a0fa20da7509cdde1141002a2be8e9d8458b27d)]:
- @ledgerhq/types-live@6.52.3
- @ledgerhq/cryptoassets@13.6.2
- @ledgerhq/coin-framework@0.18.5
## 0.6.6-next.0
### Patch Changes
- Updated dependencies [[`81cd773`](https://github.com/LedgerHQ/ledger-live/commit/81cd7735a3c94628b6d4825b736ef12a0b74d3a3), [`f275f48`](https://github.com/LedgerHQ/ledger-live/commit/f275f48a17eeba2bdd3119e478975c8d4c7183be), [`1a0fa20`](https://github.com/LedgerHQ/ledger-live/commit/1a0fa20da7509cdde1141002a2be8e9d8458b27d)]:
- @ledgerhq/types-live@6.52.3-next.0
- @ledgerhq/cryptoassets@13.6.2-next.0
- @ledgerhq/coin-framework@0.18.5-next.0
## 0.6.5
### Patch Changes
- Updated dependencies [[`80e333c`](https://github.com/LedgerHQ/ledger-live/commit/80e333c30afdc7d14f1b5fd3e92c9fb10372e2c1), [`d8c171a`](https://github.com/LedgerHQ/ledger-live/commit/d8c171a6ed32012733786bde29b5493b1106cf56)]:
- @ledgerhq/types-live@6.52.2
- @ledgerhq/coin-framework@0.18.4
## 0.6.5-hotfix.0
### Patch Changes
- Updated dependencies [[`80e333c`](https://github.com/LedgerHQ/ledger-live/commit/80e333c30afdc7d14f1b5fd3e92c9fb10372e2c1), [`d8c171a`](https://github.com/LedgerHQ/ledger-live/commit/d8c171a6ed32012733786bde29b5493b1106cf56)]:
- @ledgerhq/types-live@6.52.2-hotfix.0
- @ledgerhq/coin-framework@0.18.4-hotfix.0
## 0.6.4
### Patch Changes
- [#8004](https://github.com/LedgerHQ/ledger-live/pull/8004) [`e3e46e5`](https://github.com/LedgerHQ/ledger-live/commit/e3e46e5efa4e7955ffc7a3bf1f7dd333aa6a5806) Thanks [@qperrot](https://github.com/qperrot)! - Tezos send full balance
- [#8004](https://github.com/LedgerHQ/ledger-live/pull/8004) [`28ab0bc`](https://github.com/LedgerHQ/ledger-live/commit/28ab0bc6b441d8dac1d7c8dc4d5bd6b88031eeb5) Thanks [@qperrot](https://github.com/qperrot)! - Tezos send full balance and fix algorand format issue
- Updated dependencies [[`642c714`](https://github.com/LedgerHQ/ledger-live/commit/642c714d52eaaccb1b8ac3a2ee0391b641d19303), [`1b3a21d`](https://github.com/LedgerHQ/ledger-live/commit/1b3a21d5d8496c42f4dec4116fdcf59ad6f038cd), [`0a16ae4`](https://github.com/LedgerHQ/ledger-live/commit/0a16ae4cb58ad9f2e67c7f3494b0dc52cb7423a1), [`00cab1d`](https://github.com/LedgerHQ/ledger-live/commit/00cab1db1d67eb0cf35059eeeb9e2d8bd328f8f3)]:
- @ledgerhq/types-live@6.52.1
- @ledgerhq/coin-framework@0.18.3
- @ledgerhq/cryptoassets@13.6.1
- @ledgerhq/live-network@2.0.2
## 0.6.4-next.0
### Patch Changes
- [#8004](https://github.com/LedgerHQ/ledger-live/pull/8004) [`e3e46e5`](https://github.com/LedgerHQ/ledger-live/commit/e3e46e5efa4e7955ffc7a3bf1f7dd333aa6a5806) Thanks [@qperrot](https://github.com/qperrot)! - Tezos send full balance
- [#8004](https://github.com/LedgerHQ/ledger-live/pull/8004) [`28ab0bc`](https://github.com/LedgerHQ/ledger-live/commit/28ab0bc6b441d8dac1d7c8dc4d5bd6b88031eeb5) Thanks [@qperrot](https://github.com/qperrot)! - Tezos send full balance and fix algorand format issue
- Updated dependencies [[`642c714`](https://github.com/LedgerHQ/ledger-live/commit/642c714d52eaaccb1b8ac3a2ee0391b641d19303), [`1b3a21d`](https://github.com/LedgerHQ/ledger-live/commit/1b3a21d5d8496c42f4dec4116fdcf59ad6f038cd), [`0a16ae4`](https://github.com/LedgerHQ/ledger-live/commit/0a16ae4cb58ad9f2e67c7f3494b0dc52cb7423a1), [`00cab1d`](https://github.com/LedgerHQ/ledger-live/commit/00cab1db1d67eb0cf35059eeeb9e2d8bd328f8f3)]:
- @ledgerhq/types-live@6.52.1-next.0
- @ledgerhq/coin-framework@0.18.3-next.0
- @ledgerhq/cryptoassets@13.6.1-next.0
- @ledgerhq/live-network@2.0.2-next.0
## 0.6.3
### Patch Changes
- Updated dependencies [[`c83af75`](https://github.com/LedgerHQ/ledger-live/commit/c83af756fb388043c9f5a3862cae1231ec99a02c)]:
- @ledgerhq/types-cryptoassets@7.16.0
- @ledgerhq/cryptoassets@13.6.0
- @ledgerhq/types-live@6.52.0
- @ledgerhq/coin-framework@0.18.2
## 0.6.3-next.0
### Patch Changes
- Updated dependencies [[`c83af75`](https://github.com/LedgerHQ/ledger-live/commit/c83af756fb388043c9f5a3862cae1231ec99a02c)]:
- @ledgerhq/types-cryptoassets@7.16.0-next.0
- @ledgerhq/cryptoassets@13.6.0-next.0
- @ledgerhq/types-live@6.52.0-next.0
- @ledgerhq/coin-framework@0.18.2-next.0
## 0.6.2
### Patch Changes
- Updated dependencies [[`1605678`](https://github.com/LedgerHQ/ledger-live/commit/1605678a4c43ce85b19bd549b295f3c67ff1dcb9), [`1605678`](https://github.com/LedgerHQ/ledger-live/commit/1605678a4c43ce85b19bd549b295f3c67ff1dcb9), [`f805d14`](https://github.com/LedgerHQ/ledger-live/commit/f805d1470f927824233f94eaba065b00d7af18cf), [`461ddc5`](https://github.com/LedgerHQ/ledger-live/commit/461ddc56fbbe862789fe9a06db8a7e7a894e4bdd), [`672875f`](https://github.com/LedgerHQ/ledger-live/commit/672875feb9876edacf06aaea6c7bb47f4bb7d993), [`0a71c43`](https://github.com/LedgerHQ/ledger-live/commit/0a71c4344b7bb2c6640f3e5dda152ae815573330), [`7865dcb`](https://github.com/LedgerHQ/ledger-live/commit/7865dcb1891b89a0d9fe28efeea3a6284f3d87c5), [`1605678`](https://github.com/LedgerHQ/ledger-live/commit/1605678a4c43ce85b19bd549b295f3c67ff1dcb9)]:
- @ledgerhq/cryptoassets@13.5.0
- @ledgerhq/types-cryptoassets@7.15.2
- @ledgerhq/live-network@2.0.1
- @ledgerhq/types-live@6.51.1
- @ledgerhq/errors@6.19.1
- @ledgerhq/coin-framework@0.18.1
- @ledgerhq/devices@8.4.4
## 0.6.2-next.1
### Patch Changes
- Updated dependencies [[`f805d14`](https://github.com/LedgerHQ/ledger-live/commit/f805d1470f927824233f94eaba065b00d7af18cf)]:
- @ledgerhq/cryptoassets@13.5.0-next.1
- @ledgerhq/live-network@2.0.1-next.1
- @ledgerhq/coin-framework@0.18.1-next.1
## 0.6.2-next.0
### Patch Changes
- Updated dependencies [[`1605678`](https://github.com/LedgerHQ/ledger-live/commit/1605678a4c43ce85b19bd549b295f3c67ff1dcb9), [`1605678`](https://github.com/LedgerHQ/ledger-live/commit/1605678a4c43ce85b19bd549b295f3c67ff1dcb9), [`461ddc5`](https://github.com/LedgerHQ/ledger-live/commit/461ddc56fbbe862789fe9a06db8a7e7a894e4bdd), [`672875f`](https://github.com/LedgerHQ/ledger-live/commit/672875feb9876edacf06aaea6c7bb47f4bb7d993), [`0a71c43`](https://github.com/LedgerHQ/ledger-live/commit/0a71c4344b7bb2c6640f3e5dda152ae815573330), [`7865dcb`](https://github.com/LedgerHQ/ledger-live/commit/7865dcb1891b89a0d9fe28efeea3a6284f3d87c5), [`1605678`](https://github.com/LedgerHQ/ledger-live/commit/1605678a4c43ce85b19bd549b295f3c67ff1dcb9)]:
- @ledgerhq/cryptoassets@13.5.0-next.0
- @ledgerhq/types-cryptoassets@7.15.2-next.0
- @ledgerhq/types-live@6.51.1-next.0
- @ledgerhq/errors@6.19.1-next.0
- @ledgerhq/coin-framework@0.18.1-next.0
- @ledgerhq/devices@8.4.4-next.0
- @ledgerhq/live-network@2.0.1-next.0
## 0.6.1
### Patch Changes
- [#7532](https://github.com/LedgerHQ/ledger-live/pull/7532) [`b97b76c`](https://github.com/LedgerHQ/ledger-live/commit/b97b76cc99845b0240426f5ca75c765b615ccec5) Thanks [@hzheng-ledger](https://github.com/hzheng-ledger)! - fix tezos min reveal gaslimit
- [#7593](https://github.com/LedgerHQ/ledger-live/pull/7593) [`187293c`](https://github.com/LedgerHQ/ledger-live/commit/187293c6cf6093f15f07d5effc1ded0843a9e6ab) Thanks [@lambertkevin](https://github.com/lambertkevin)! - Update some test for types regarding the upgrade to axios version 1.7.3
- [#7268](https://github.com/LedgerHQ/ledger-live/pull/7268) [`9c2f1b3`](https://github.com/LedgerHQ/ledger-live/commit/9c2f1b3b6e11a37a6b5ecf02d1e1ae7f0258e3ae) Thanks [@sprohaszka-ledger](https://github.com/sprohaszka-ledger)! - Prepare CoinModule Stellar for Alpaca
- Updated dependencies [[`5c738cb`](https://github.com/LedgerHQ/ledger-live/commit/5c738cbd35ce5d0ca39ad3b86a61cc6234d1bdf7), [`9c55e81`](https://github.com/LedgerHQ/ledger-live/commit/9c55e81c84d3372f2a7fd36248f970376aec905a), [`187293c`](https://github.com/LedgerHQ/ledger-live/commit/187293c6cf6093f15f07d5effc1ded0843a9e6ab), [`187293c`](https://github.com/LedgerHQ/ledger-live/commit/187293c6cf6093f15f07d5effc1ded0843a9e6ab), [`cc291f5`](https://github.com/LedgerHQ/ledger-live/commit/cc291f5466d80a2b7e9394338ab588ecd3db4623), [`fb9466a`](https://github.com/LedgerHQ/ledger-live/commit/fb9466a4d7827fd4759c726ad3ae0b43dddcacd3), [`5758950`](https://github.com/LedgerHQ/ledger-live/commit/5758950841fbf8018dd848e745017484aec67333), [`0c80144`](https://github.com/LedgerHQ/ledger-live/commit/0c80144b8c16fc3729baa6503875d21af87b2752), [`ef82161`](https://github.com/LedgerHQ/ledger-live/commit/ef82161688fc49bf32cbc88f1837b15490e5d2b4), [`d13e7b9`](https://github.com/LedgerHQ/ledger-live/commit/d13e7b9f55d92098cacc9384fd7fab24033c040f), [`a3fd728`](https://github.com/LedgerHQ/ledger-live/commit/a3fd72861f2a7df676bd793062b3816fdb9d1f57), [`a0bb74b`](https://github.com/LedgerHQ/ledger-live/commit/a0bb74b8f3704ab9d5567c9d14c16cab9e0872f7), [`6815f6f`](https://github.com/LedgerHQ/ledger-live/commit/6815f6fccb9bca627a2e51ab954dc3f9b8f7c710), [`9c2f1b3`](https://github.com/LedgerHQ/ledger-live/commit/9c2f1b3b6e11a37a6b5ecf02d1e1ae7f0258e3ae), [`9a650da`](https://github.com/LedgerHQ/ledger-live/commit/9a650da9a147d6881f7082278d2bf764c37e1451)]:
- @ledgerhq/errors@6.19.0
- @ledgerhq/cryptoassets@13.4.0
- @ledgerhq/live-network@2.0.0
- @ledgerhq/coin-framework@0.18.0
- @ledgerhq/types-live@6.51.0
- @ledgerhq/types-cryptoassets@7.15.1
- @ledgerhq/devices@8.4.3
## 0.6.1-next.0
### Patch Changes
- [#7532](https://github.com/LedgerHQ/ledger-live/pull/7532) [`b97b76c`](https://github.com/LedgerHQ/ledger-live/commit/b97b76cc99845b0240426f5ca75c765b615ccec5) Thanks [@hzheng-ledger](https://github.com/hzheng-ledger)! - fix tezos min reveal gaslimit
- [#7593](https://github.com/LedgerHQ/ledger-live/pull/7593) [`187293c`](https://github.com/LedgerHQ/ledger-live/commit/187293c6cf6093f15f07d5effc1ded0843a9e6ab) Thanks [@lambertkevin](https://github.com/lambertkevin)! - Update some test for types regarding the upgrade to axios version 1.7.3
- [#7268](https://github.com/LedgerHQ/ledger-live/pull/7268) [`9c2f1b3`](https://github.com/LedgerHQ/ledger-live/commit/9c2f1b3b6e11a37a6b5ecf02d1e1ae7f0258e3ae) Thanks [@sprohaszka-ledger](https://github.com/sprohaszka-ledger)! - Prepare CoinModule Stellar for Alpaca
- Updated dependencies [[`5c738cb`](https://github.com/LedgerHQ/ledger-live/commit/5c738cbd35ce5d0ca39ad3b86a61cc6234d1bdf7), [`9c55e81`](https://github.com/LedgerHQ/ledger-live/commit/9c55e81c84d3372f2a7fd36248f970376aec905a), [`187293c`](https://github.com/LedgerHQ/ledger-live/commit/187293c6cf6093f15f07d5effc1ded0843a9e6ab), [`187293c`](https://github.com/LedgerHQ/ledger-live/commit/187293c6cf6093f15f07d5effc1ded0843a9e6ab), [`cc291f5`](https://github.com/LedgerHQ/ledger-live/commit/cc291f5466d80a2b7e9394338ab588ecd3db4623), [`fb9466a`](https://github.com/LedgerHQ/ledger-live/commit/fb9466a4d7827fd4759c726ad3ae0b43dddcacd3), [`5758950`](https://github.com/LedgerHQ/ledger-live/commit/5758950841fbf8018dd848e745017484aec67333), [`0c80144`](https://github.com/LedgerHQ/ledger-live/commit/0c80144b8c16fc3729baa6503875d21af87b2752), [`ef82161`](https://github.com/LedgerHQ/ledger-live/commit/ef82161688fc49bf32cbc88f1837b15490e5d2b4), [`d13e7b9`](https://github.com/LedgerHQ/ledger-live/commit/d13e7b9f55d92098cacc9384fd7fab24033c040f), [`a3fd728`](https://github.com/LedgerHQ/ledger-live/commit/a3fd72861f2a7df676bd793062b3816fdb9d1f57), [`a0bb74b`](https://github.com/LedgerHQ/ledger-live/commit/a0bb74b8f3704ab9d5567c9d14c16cab9e0872f7), [`6815f6f`](https://github.com/LedgerHQ/ledger-live/commit/6815f6fccb9bca627a2e51ab954dc3f9b8f7c710), [`9c2f1b3`](https://github.com/LedgerHQ/ledger-live/commit/9c2f1b3b6e11a37a6b5ecf02d1e1ae7f0258e3ae), [`9a650da`](https://github.com/LedgerHQ/ledger-live/commit/9a650da9a147d6881f7082278d2bf764c37e1451)]:
- @ledgerhq/errors@6.19.0-next.0
- @ledgerhq/cryptoassets@13.4.0-next.0
- @ledgerhq/live-network@2.0.0-next.0
- @ledgerhq/coin-framework@0.18.0-next.0
- @ledgerhq/types-live@6.51.0-next.0
- @ledgerhq/types-cryptoassets@7.15.1-next.0
- @ledgerhq/devices@8.4.3-next.0
## 0.6.0
### Minor Changes
- [#7265](https://github.com/LedgerHQ/ledger-live/pull/7265) [`afa03ae`](https://github.com/LedgerHQ/ledger-live/commit/afa03ae921ad1ca7df83dc0ba717c1cc27cb08cd) Thanks [@sprohaszka-ledger](https://github.com/sprohaszka-ledger)! - Add lastBlock function
### Patch Changes
- [#7406](https://github.com/LedgerHQ/ledger-live/pull/7406) [`c433193`](https://github.com/LedgerHQ/ledger-live/commit/c433193298e86d758d727296bf51271e7d3a5871) Thanks [@hzheng-ledger](https://github.com/hzheng-ledger)! - set tezos gasfeeslimit minvalue
- Updated dependencies [[`afa03ae`](https://github.com/LedgerHQ/ledger-live/commit/afa03ae921ad1ca7df83dc0ba717c1cc27cb08cd), [`df9b4b7`](https://github.com/LedgerHQ/ledger-live/commit/df9b4b7b699503bb3aab1dc791b28e11ef0d51b9), [`db9c2d7`](https://github.com/LedgerHQ/ledger-live/commit/db9c2d78fb74df586c3ea1b9fb75ce3b014a0f4b), [`87d6bb2`](https://github.com/LedgerHQ/ledger-live/commit/87d6bb2501eac654dc10f45a0f591b28569b3d9f), [`4bd91de`](https://github.com/LedgerHQ/ledger-live/commit/4bd91de13442d12acce3ee83d5f2fd5f087570cf), [`53ff78c`](https://github.com/LedgerHQ/ledger-live/commit/53ff78c541d3ed69a3e74854d77f58a7e0d93978), [`8553b3e`](https://github.com/LedgerHQ/ledger-live/commit/8553b3eef10132396ec580a2d5f20b616f5b18a0), [`52daa39`](https://github.com/LedgerHQ/ledger-live/commit/52daa3998709ac3538afd447fe771faa3e3441be), [`60f1b5c`](https://github.com/LedgerHQ/ledger-live/commit/60f1b5c6cab125f5281468bb3e36f1abfae2d70c), [`50b6db6`](https://github.com/LedgerHQ/ledger-live/commit/50b6db67d374a23ba040043aa93e7fbc52685297)]:
- @ledgerhq/coin-framework@0.17.0
- @ledgerhq/types-live@6.50.0
- @ledgerhq/cryptoassets@13.3.0
- @ledgerhq/types-cryptoassets@7.15.0
- @ledgerhq/live-network@1.4.0
## 0.6.0-next.1
### Patch Changes
- Updated dependencies [[`50b6db6`](https://github.com/LedgerHQ/ledger-live/commit/50b6db67d374a23ba040043aa93e7fbc52685297)]:
- @ledgerhq/cryptoassets@13.3.0-next.1
- @ledgerhq/coin-framework@0.17.0-next.1
## 0.6.0-next.0
### Minor Changes
- [#7265](https://github.com/LedgerHQ/ledger-live/pull/7265) [`afa03ae`](https://github.com/LedgerHQ/ledger-live/commit/afa03ae921ad1ca7df83dc0ba717c1cc27cb08cd) Thanks [@sprohaszka-ledger](https://github.com/sprohaszka-ledger)! - Add lastBlock function
### Patch Changes
- [#7406](https://github.com/LedgerHQ/ledger-live/pull/7406) [`c433193`](https://github.com/LedgerHQ/ledger-live/commit/c433193298e86d758d727296bf51271e7d3a5871) Thanks [@hzheng-ledger](https://github.com/hzheng-ledger)! - set tezos gasfeeslimit minvalue
- Updated dependencies [[`afa03ae`](https://github.com/LedgerHQ/ledger-live/commit/afa03ae921ad1ca7df83dc0ba717c1cc27cb08cd), [`df9b4b7`](https://github.com/LedgerHQ/ledger-live/commit/df9b4b7b699503bb3aab1dc791b28e11ef0d51b9), [`db9c2d7`](https://github.com/LedgerHQ/ledger-live/commit/db9c2d78fb74df586c3ea1b9fb75ce3b014a0f4b), [`87d6bb2`](https://github.com/LedgerHQ/ledger-live/commit/87d6bb2501eac654dc10f45a0f591b28569b3d9f), [`4bd91de`](https://github.com/LedgerHQ/ledger-live/commit/4bd91de13442d12acce3ee83d5f2fd5f087570cf), [`53ff78c`](https://github.com/LedgerHQ/ledger-live/commit/53ff78c541d3ed69a3e74854d77f58a7e0d93978), [`8553b3e`](https://github.com/LedgerHQ/ledger-live/commit/8553b3eef10132396ec580a2d5f20b616f5b18a0), [`52daa39`](https://github.com/LedgerHQ/ledger-live/commit/52daa3998709ac3538afd447fe771faa3e3441be), [`60f1b5c`](https://github.com/LedgerHQ/ledger-live/commit/60f1b5c6cab125f5281468bb3e36f1abfae2d70c)]:
- @ledgerhq/coin-framework@0.17.0-next.0
- @ledgerhq/types-live@6.50.0-next.0
- @ledgerhq/cryptoassets@13.3.0-next.0
- @ledgerhq/types-cryptoassets@7.15.0-next.0
- @ledgerhq/live-network@1.4.0-next.0
## 0.5.1
### Patch Changes
- Updated dependencies [[`0b12c90`](https://github.com/LedgerHQ/ledger-live/commit/0b12c9040d6ee0a326b1d5effd261ddee2db452f)]:
- @ledgerhq/devices@8.4.2
- @ledgerhq/coin-framework@0.16.1
- @ledgerhq/types-live@6.49.0
## 0.5.1-hotfix.0
### Patch Changes
- Updated dependencies [[`5d508e5`](https://github.com/LedgerHQ/ledger-live/commit/5d508e5cfd296e458746adf176dd292aa884f7ea)]:
- @ledgerhq/devices@8.4.2-hotfix.0
- @ledgerhq/coin-framework@0.16.1-hotfix.0
## 0.5.0
### Minor Changes
- [#7194](https://github.com/LedgerHQ/ledger-live/pull/7194) [`c59adf2`](https://github.com/LedgerHQ/ledger-live/commit/c59adf2b0d49ea3c72b94fcb356eb72bcbfc4a6b) Thanks [@sprohaszka-ledger](https://github.com/sprohaszka-ledger)! - Expose Tezos features for Alpaca
### Patch Changes
- [#7288](https://github.com/LedgerHQ/ledger-live/pull/7288) [`d540c6e`](https://github.com/LedgerHQ/ledger-live/commit/d540c6e5ef70261bcc102d1e8e23cdd83fe064ec) Thanks [@live-github-bot](https://github.com/apps/live-github-bot)! - Fix tezos bridge send flow error.
- Updated dependencies [[`ef2d53d`](https://github.com/LedgerHQ/ledger-live/commit/ef2d53d514f1f4e6f18fc79fa3423bd9b0208a04), [`b77ab8e`](https://github.com/LedgerHQ/ledger-live/commit/b77ab8e718ee8e10b74dc15370e8a19d2597d39e), [`52db252`](https://github.com/LedgerHQ/ledger-live/commit/52db252757870398cba5366d595b4d5fe8099b90), [`f819703`](https://github.com/LedgerHQ/ledger-live/commit/f81970347d139e63a547ab809be425d6f4d464a4), [`fe8a26b`](https://github.com/LedgerHQ/ledger-live/commit/fe8a26b04206df64e50220c3e9249c9a1bd057a6), [`1cbf767`](https://github.com/LedgerHQ/ledger-live/commit/1cbf767465d9e1f7bed5de79c5b5a0a5ca06e1b5), [`e78f3b7`](https://github.com/LedgerHQ/ledger-live/commit/e78f3b75296c7a063f6cddbeae44c36d236055f3), [`f979216`](https://github.com/LedgerHQ/ledger-live/commit/f9792160293fc8215c6d099f02e1b136c6655f9b), [`c1d2bb0`](https://github.com/LedgerHQ/ledger-live/commit/c1d2bb0866723c10d6e2899d40ddd9b9801189f4), [`c59adf2`](https://github.com/LedgerHQ/ledger-live/commit/c59adf2b0d49ea3c72b94fcb356eb72bcbfc4a6b)]:
- @ledgerhq/types-cryptoassets@7.14.0
- @ledgerhq/cryptoassets@13.2.0
- @ledgerhq/types-live@6.49.0
- @ledgerhq/coin-framework@0.16.0
- @ledgerhq/errors@6.18.0
- @ledgerhq/devices@8.4.1
- @ledgerhq/live-network@1.3.1
## 0.5.0-next.1
### Patch Changes
- [#7288](https://github.com/LedgerHQ/ledger-live/pull/7288) [`d540c6e`](https://github.com/LedgerHQ/ledger-live/commit/d540c6e5ef70261bcc102d1e8e23cdd83fe064ec) Thanks [@live-github-bot](https://github.com/apps/live-github-bot)! - Fix tezos bridge send flow error.
## 0.5.0-next.0
### Minor Changes
- [#7194](https://github.com/LedgerHQ/ledger-live/pull/7194) [`c59adf2`](https://github.com/LedgerHQ/ledger-live/commit/c59adf2b0d49ea3c72b94fcb356eb72bcbfc4a6b) Thanks [@sprohaszka-ledger](https://github.com/sprohaszka-ledger)! - Expose Tezos features for Alpaca
### Patch Changes
- Updated dependencies [[`ef2d53d`](https://github.com/LedgerHQ/ledger-live/commit/ef2d53d514f1f4e6f18fc79fa3423bd9b0208a04), [`b77ab8e`](https://github.com/LedgerHQ/ledger-live/commit/b77ab8e718ee8e10b74dc15370e8a19d2597d39e), [`52db252`](https://github.com/LedgerHQ/ledger-live/commit/52db252757870398cba5366d595b4d5fe8099b90), [`f819703`](https://github.com/LedgerHQ/ledger-live/commit/f81970347d139e63a547ab809be425d6f4d464a4), [`fe8a26b`](https://github.com/LedgerHQ/ledger-live/commit/fe8a26b04206df64e50220c3e9249c9a1bd057a6), [`1cbf767`](https://github.com/LedgerHQ/ledger-live/commit/1cbf767465d9e1f7bed5de79c5b5a0a5ca06e1b5), [`e78f3b7`](https://github.com/LedgerHQ/ledger-live/commit/e78f3b75296c7a063f6cddbeae44c36d236055f3), [`f979216`](https://github.com/LedgerHQ/ledger-live/commit/f9792160293fc8215c6d099f02e1b136c6655f9b), [`c1d2bb0`](https://github.com/LedgerHQ/ledger-live/commit/c1d2bb0866723c10d6e2899d40ddd9b9801189f4), [`c59adf2`](https://github.com/LedgerHQ/ledger-live/commit/c59adf2b0d49ea3c72b94fcb356eb72bcbfc4a6b)]:
- @ledgerhq/types-cryptoassets@7.14.0-next.0
- @ledgerhq/cryptoassets@13.2.0-next.0
- @ledgerhq/types-live@6.49.0-next.0
- @ledgerhq/coin-framework@0.16.0-next.0
- @ledgerhq/errors@6.18.0-next.0
- @ledgerhq/devices@8.4.1-next.0
- @ledgerhq/live-network@1.3.1-next.0
## 0.4.1
### Patch Changes
- [#7206](https://github.com/LedgerHQ/ledger-live/pull/7206) [`81e5b8b`](https://github.com/LedgerHQ/ledger-live/commit/81e5b8bf4830dcb9d666436f2cc4367d92e93e78) Thanks [@kallen-ledger](https://github.com/kallen-ledger)! - chore: resolve merge conflicts
- Updated dependencies [[`9551536`](https://github.com/LedgerHQ/ledger-live/commit/955153681ebc19344ed5becfbf7b131224b2ebd0), [`cde94b9`](https://github.com/LedgerHQ/ledger-live/commit/cde94b9584d6889849fb097813a5fc11ea19d069), [`785c618`](https://github.com/LedgerHQ/ledger-live/commit/785c6180c2212ca879c2fddb8302f0bab5686761), [`b478096`](https://github.com/LedgerHQ/ledger-live/commit/b478096537a0f86a9e39acc8c6cf17b1184e0849), [`81e5b8b`](https://github.com/LedgerHQ/ledger-live/commit/81e5b8bf4830dcb9d666436f2cc4367d92e93e78)]:
- @ledgerhq/types-live@6.48.1
- @ledgerhq/coin-framework@0.15.0
- @ledgerhq/cryptoassets@13.1.1
## 0.4.1-next.2
### Patch Changes
- [#7206](https://github.com/LedgerHQ/ledger-live/pull/7206) [`81e5b8b`](https://github.com/LedgerHQ/ledger-live/commit/81e5b8bf4830dcb9d666436f2cc4367d92e93e78) Thanks [@kallen-ledger](https://github.com/kallen-ledger)! - chore: resolve merge conflicts
- Updated dependencies [[`81e5b8b`](https://github.com/LedgerHQ/ledger-live/commit/81e5b8bf4830dcb9d666436f2cc4367d92e93e78)]:
- @ledgerhq/cryptoassets@13.1.1-next.1
- @ledgerhq/types-live@6.48.1-next.1
- @ledgerhq/coin-framework@0.15.0-next.2
## 0.4.1-next.1
### Patch Changes
- Updated dependencies [[`b478096`](https://github.com/LedgerHQ/ledger-live/commit/b478096537a0f86a9e39acc8c6cf17b1184e0849)]:
- @ledgerhq/cryptoassets@13.1.1-next.0
- @ledgerhq/coin-framework@0.15.0-next.1
## 0.4.1-next.0
### Patch Changes
- Updated dependencies [[`9551536`](https://github.com/LedgerHQ/ledger-live/commit/955153681ebc19344ed5becfbf7b131224b2ebd0), [`cde94b9`](https://github.com/LedgerHQ/ledger-live/commit/cde94b9584d6889849fb097813a5fc11ea19d069), [`785c618`](https://github.com/LedgerHQ/ledger-live/commit/785c6180c2212ca879c2fddb8302f0bab5686761)]:
- @ledgerhq/types-live@6.48.1-next.0
- @ledgerhq/coin-framework@0.15.0-next.0
## 0.4.0
### Minor Changes
- [#6754](https://github.com/LedgerHQ/ledger-live/pull/6754) [`4c01029`](https://github.com/LedgerHQ/ledger-live/commit/4c01029b4d4feb32dab2f9e77da1126050d8c1bc) Thanks [@sprohaszka-ledger](https://github.com/sprohaszka-ledger)! - Move Tezos in its own package
- [#6876](https://github.com/LedgerHQ/ledger-live/pull/6876) [`689e6e5`](https://github.com/LedgerHQ/ledger-live/commit/689e6e5a443170b8e6c2b404cc99af2e67d8e8e4) Thanks [@lambertkevin](https://github.com/lambertkevin)! - Update coin implementations to use new account bridge types & implement cleaner architecture
- [#7041](https://github.com/LedgerHQ/ledger-live/pull/7041) [`2a8d564`](https://github.com/LedgerHQ/ledger-live/commit/2a8d564b483a35045a957b430b4d7d252e2ddcfe) Thanks [@lvndry](https://github.com/lvndry)! - Updated Taquito and other dependencies for Tezos Coin Module
### Patch Changes
- Updated dependencies [[`77fa530`](https://github.com/LedgerHQ/ledger-live/commit/77fa530c8626df94fa7f9c0a8b3a99f2efa7cb11), [`6c35cc5`](https://github.com/LedgerHQ/ledger-live/commit/6c35cc564cb050614ee571907f628ecf15ec4584), [`b9f1f71`](https://github.com/LedgerHQ/ledger-live/commit/b9f1f715355752d8c57c24ecd6a6d166b80f689d), [`815ae3d`](https://github.com/LedgerHQ/ledger-live/commit/815ae3dae8027823854ada837df3dc983d09b10f), [`de5de2d`](https://github.com/LedgerHQ/ledger-live/commit/de5de2d273ed6966c82bde2c3a95b98ba594204f), [`83e5690`](https://github.com/LedgerHQ/ledger-live/commit/83e5690429e41ecd1c508b3398904ae747085cf7), [`6eec3f9`](https://github.com/LedgerHQ/ledger-live/commit/6eec3f973ecea36bafc7ebc8b88526399048cdc4), [`4c01029`](https://github.com/LedgerHQ/ledger-live/commit/4c01029b4d4feb32dab2f9e77da1126050d8c1bc), [`326cae0`](https://github.com/LedgerHQ/ledger-live/commit/326cae088cc33795536deb1d868c86e8dbeb6a13), [`6c35cc5`](https://github.com/LedgerHQ/ledger-live/commit/6c35cc564cb050614ee571907f628ecf15ec4584), [`4499990`](https://github.com/LedgerHQ/ledger-live/commit/449999066c58ae5df371dfb92a7230f9b5e90a60), [`a18c28e`](https://github.com/LedgerHQ/ledger-live/commit/a18c28e3f6a6132bd5e53d5b61721084b3aa19e8), [`cec1599`](https://github.com/LedgerHQ/ledger-live/commit/cec1599a41aa1a18a249e34312164bc93b63972f), [`801265b`](https://github.com/LedgerHQ/ledger-live/commit/801265b7ff3ed7ebd0012eb50f70898557a2dd52), [`d5a1300`](https://github.com/LedgerHQ/ledger-live/commit/d5a130034c18c7ac8b1fd3d4c5271423b4f7639d), [`6d44f25`](https://github.com/LedgerHQ/ledger-live/commit/6d44f255c5b2f453c61d0b754807db1f76d7174e), [`f19960f`](https://github.com/LedgerHQ/ledger-live/commit/f19960f2e7104e5bdf332269fa92fda47455e17d), [`3b9c93c`](https://github.com/LedgerHQ/ledger-live/commit/3b9c93c0de8ceff2af96a6ee8e42b8d9c2ab7af0), [`6623cd1`](https://github.com/LedgerHQ/ledger-live/commit/6623cd13102bd8340bd7d4dfdd469934527985c3), [`f7e7881`](https://github.com/LedgerHQ/ledger-live/commit/f7e7881a820880143c2b011d6a92b5a36156b2c1), [`2f2b754`](https://github.com/LedgerHQ/ledger-live/commit/2f2b754b1350360ca0d9f761ca6e4a8cbaff141b), [`689e6e5`](https://github.com/LedgerHQ/ledger-live/commit/689e6e5a443170b8e6c2b404cc99af2e67d8e8e4), [`6552679`](https://github.com/LedgerHQ/ledger-live/commit/65526794bb4d1fbc7e286c0e1c0b6d021413fc8c), [`fda6a81`](https://github.com/LedgerHQ/ledger-live/commit/fda6a814544b3a1debceab22f69485911e76cadc), [`689e6e5`](https://github.com/LedgerHQ/ledger-live/commit/689e6e5a443170b8e6c2b404cc99af2e67d8e8e4), [`1a5b277`](https://github.com/LedgerHQ/ledger-live/commit/1a5b2777b7b71aa4c4e353010eeb9e3dab432bca), [`a115d6c`](https://github.com/LedgerHQ/ledger-live/commit/a115d6cd5dcbcc753d02dedb80f5eb1693d1a249), [`a2505de`](https://github.com/LedgerHQ/ledger-live/commit/a2505deb93dd0722981a90e12082ff1dbefc29b1), [`f17a3cb`](https://github.com/LedgerHQ/ledger-live/commit/f17a3cbc16abf7fadf686025a5ca56ec1a1e7bb6), [`60cd799`](https://github.com/LedgerHQ/ledger-live/commit/60cd799e693e3ae0712a5a9e88206b5304bbc214), [`84274a6`](https://github.com/LedgerHQ/ledger-live/commit/84274a6e764a385f707bc811ead7a7e92a02ed6a)]:
- @ledgerhq/types-cryptoassets@7.13.0
- @ledgerhq/cryptoassets@13.1.0
- @ledgerhq/types-live@6.48.0
- @ledgerhq/devices@8.4.0
- @ledgerhq/errors@6.17.0
- @ledgerhq/coin-framework@0.14.0
- @ledgerhq/live-network@1.3.0
- @ledgerhq/live-env@2.1.0
## 0.4.0-next.2
### Patch Changes
- Updated dependencies [[`d5a1300`](https://github.com/LedgerHQ/ledger-live/commit/d5a130034c18c7ac8b1fd3d4c5271423b4f7639d)]:
- @ledgerhq/cryptoassets@13.1.0-next.2
- @ledgerhq/coin-framework@0.14.0-next.2
## 0.4.0-next.1
### Patch Changes
- Updated dependencies [[`f7e7881`](https://github.com/LedgerHQ/ledger-live/commit/f7e7881a820880143c2b011d6a92b5a36156b2c1)]:
- @ledgerhq/cryptoassets@13.1.0-next.1
- @ledgerhq/coin-framework@0.14.0-next.1
## 0.4.0-next.0
### Minor Changes
- [#6754](https://github.com/LedgerHQ/ledger-live/pull/6754) [`4c01029`](https://github.com/LedgerHQ/ledger-live/commit/4c01029b4d4feb32dab2f9e77da1126050d8c1bc) Thanks [@sprohaszka-ledger](https://github.com/sprohaszka-ledger)! - Move Tezos in its own package
- [#6876](https://github.com/LedgerHQ/ledger-live/pull/6876) [`689e6e5`](https://github.com/LedgerHQ/ledger-live/commit/689e6e5a443170b8e6c2b404cc99af2e67d8e8e4) Thanks [@lambertkevin](https://github.com/lambertkevin)! - Update coin implementations to use new account bridge types & implement cleaner architecture
- [#7041](https://github.com/LedgerHQ/ledger-live/pull/7041) [`2a8d564`](https://github.com/LedgerHQ/ledger-live/commit/2a8d564b483a35045a957b430b4d7d252e2ddcfe) Thanks [@lvndry](https://github.com/lvndry)! - Updated Taquito and other dependencies for Tezos Coin Module
### Patch Changes
- Updated dependencies [[`77fa530`](https://github.com/LedgerHQ/ledger-live/commit/77fa530c8626df94fa7f9c0a8b3a99f2efa7cb11), [`6c35cc5`](https://github.com/LedgerHQ/ledger-live/commit/6c35cc564cb050614ee571907f628ecf15ec4584), [`b9f1f71`](https://github.com/LedgerHQ/ledger-live/commit/b9f1f715355752d8c57c24ecd6a6d166b80f689d), [`815ae3d`](https://github.com/LedgerHQ/ledger-live/commit/815ae3dae8027823854ada837df3dc983d09b10f), [`de5de2d`](https://github.com/LedgerHQ/ledger-live/commit/de5de2d273ed6966c82bde2c3a95b98ba594204f), [`83e5690`](https://github.com/LedgerHQ/ledger-live/commit/83e5690429e41ecd1c508b3398904ae747085cf7), [`6eec3f9`](https://github.com/LedgerHQ/ledger-live/commit/6eec3f973ecea36bafc7ebc8b88526399048cdc4), [`4c01029`](https://github.com/LedgerHQ/ledger-live/commit/4c01029b4d4feb32dab2f9e77da1126050d8c1bc), [`326cae0`](https://github.com/LedgerHQ/ledger-live/commit/326cae088cc33795536deb1d868c86e8dbeb6a13), [`6c35cc5`](https://github.com/LedgerHQ/ledger-live/commit/6c35cc564cb050614ee571907f628ecf15ec4584), [`4499990`](https://github.com/LedgerHQ/ledger-live/commit/449999066c58ae5df371dfb92a7230f9b5e90a60), [`a18c28e`](https://github.com/LedgerHQ/ledger-live/commit/a18c28e3f6a6132bd5e53d5b61721084b3aa19e8), [`cec1599`](https://github.com/LedgerHQ/ledger-live/commit/cec1599a41aa1a18a249e34312164bc93b63972f), [`801265b`](https://github.com/LedgerHQ/ledger-live/commit/801265b7ff3ed7ebd0012eb50f70898557a2dd52), [`6d44f25`](https://github.com/LedgerHQ/ledger-live/commit/6d44f255c5b2f453c61d0b754807db1f76d7174e), [`f19960f`](https://github.com/LedgerHQ/ledger-live/commit/f19960f2e7104e5bdf332269fa92fda47455e17d), [`3b9c93c`](https://github.com/LedgerHQ/ledger-live/commit/3b9c93c0de8ceff2af96a6ee8e42b8d9c2ab7af0), [`6623cd1`](https://github.com/LedgerHQ/ledger-live/commit/6623cd13102bd8340bd7d4dfdd469934527985c3), [`2f2b754`](https://github.com/LedgerHQ/ledger-live/commit/2f2b754b1350360ca0d9f761ca6e4a8cbaff141b), [`689e6e5`](https://github.com/LedgerHQ/ledger-live/commit/689e6e5a443170b8e6c2b404cc99af2e67d8e8e4), [`6552679`](https://github.com/LedgerHQ/ledger-live/commit/65526794bb4d1fbc7e286c0e1c0b6d021413fc8c), [`fda6a81`](https://github.com/LedgerHQ/ledger-live/commit/fda6a814544b3a1debceab22f69485911e76cadc), [`689e6e5`](https://github.com/LedgerHQ/ledger-live/commit/689e6e5a443170b8e6c2b404cc99af2e67d8e8e4), [`1a5b277`](https://github.com/LedgerHQ/ledger-live/commit/1a5b2777b7b71aa4c4e353010eeb9e3dab432bca), [`a115d6c`](https://github.com/LedgerHQ/ledger-live/commit/a115d6cd5dcbcc753d02dedb80f5eb1693d1a249), [`a2505de`](https://github.com/LedgerHQ/ledger-live/commit/a2505deb93dd0722981a90e12082ff1dbefc29b1), [`f17a3cb`](https://github.com/LedgerHQ/ledger-live/commit/f17a3cbc16abf7fadf686025a5ca56ec1a1e7bb6), [`60cd799`](https://github.com/LedgerHQ/ledger-live/commit/60cd799e693e3ae0712a5a9e88206b5304bbc214), [`84274a6`](https://github.com/LedgerHQ/ledger-live/commit/84274a6e764a385f707bc811ead7a7e92a02ed6a)]:
- @ledgerhq/types-cryptoassets@7.13.0-next.0
- @ledgerhq/cryptoassets@13.1.0-next.0
- @ledgerhq/types-live@6.48.0-next.0
- @ledgerhq/devices@8.4.0-next.0
- @ledgerhq/errors@6.17.0-next.0
- @ledgerhq/coin-framework@0.14.0-next.0
- @ledgerhq/live-network@1.3.0-next.0
- @ledgerhq/live-env@2.1.0-next.0