Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bugfix/multiversx delegation amount miscalculation #4364

Conversation

AlexandruPislariu
Copy link
Contributor

@AlexandruPislariu AlexandruPislariu commented Aug 16, 2023

📝 Description

Bugfix/multiversx delegation amount miscalculation

❓ Context

  • Impacted projects: ``
  • Linked resource(s): ``

✅ Checklist

  • Test coverage
  • Atomic delivery
  • No breaking changes

📸 Demo

🚀 Expectations to reach

Please make sure you follow these Important Steps.

Pull Requests must pass the CI and be internally validated in order to be merged.

@AlexandruPislariu AlexandruPislariu requested a review from a team as a code owner August 16, 2023 18:11
@vercel
Copy link

vercel bot commented Aug 16, 2023

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
ledger-live-docs ✅ Ready (Inspect) Visit Preview 💬 Add feedback Aug 18, 2023 10:37am
live-common-tools ✅ Ready (Inspect) Visit Preview 💬 Add feedback Aug 18, 2023 10:37am
2 Ignored Deployments
Name Status Preview Comments Updated (UTC)
native-ui-storybook ⬜️ Ignored (Inspect) Visit Preview Aug 18, 2023 10:37am
react-ui-storybook ⬜️ Ignored (Inspect) Visit Preview Aug 18, 2023 10:37am

@changeset-bot
Copy link

changeset-bot bot commented Aug 16, 2023

🦋 Changeset detected

Latest commit: c376b8d

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 7 packages
Name Type
ledger-live-desktop Minor
live-mobile Minor
@ledgerhq/live-common Minor
@ledgerhq/live-cli Patch
@ledgerhq/test-utils Patch
dummy-wallet-app Patch
live-common-tools Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@vercel
Copy link

vercel bot commented Aug 16, 2023

@AlexandruPislariu is attempting to deploy a commit to the LedgerHQ Team on Vercel.

A member of the Team first needs to authorize it.

import { MIN_DELEGATION_AMOUNT } from "../constants";

export const areEarnRewardsEnabled = (account: Account) =>
BigNumber(account.spendableBalance).isGreaterThanOrEqualTo(MIN_DELEGATION_AMOUNT);
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • account.spendableBalance is already a BigNumber, you don't need to wrap it
  • (correct syntax is new BigNumber(...) instead of BigNumber(...))
  • This helper should be used in the UI instead of duplicating the logic there
  • Is the issue only on LLD, no need for a fix on LLM?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hello @haammar-ledger!

You're right, the logic has been updated everywhere but it'd be better if we made use of the helper function already available in ledger-live-common. For that reason, I renamed it to a more generic term, in order to better fit various use cases, and also removed the BigNumber instance. On mobile we've already covered all these aspects awhile ago, but it seems that on desktop there still have been a couple of instances where the logic wasn't updated. I've now gone over all instances on both mobile and desktop, through the components that recalculated this logic, and replaced with the new helper function.

Let me know if there are any other issues. 👍

Copy link

@ghost ghost left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changes LGTM 👍

  • Please just add a changeset with pnpm changeset
  • Have a look at the CI, some TS issues on mobile

Thanks!

@MiroMargineanu
Copy link
Contributor

Changes LGTM 👍

  • Please just add a changeset with pnpm changeset
  • Have a look at the CI, some TS issues on mobile

Thanks!

Hello @haammar-ledger! I've now pushed two commits that should fix both assessments. There's still an issue happening when running pnpm mobile typecheck related to react-native-haptic-feedback, which doesn't seem related to us. All the other issues have been taken care of. 👍

@ghost ghost merged commit a4648d5 into LedgerHQ:develop Aug 18, 2023
43 checks passed
davidecarpini added a commit to vechainfoundation/ledger-live that referenced this pull request Sep 4, 2023
commit eb02deaa2cb854d67c1cd9bf7ab91c4a77b3daf0
Merge: b0b2a24811 fb4d9f068a
Author: haammar-ledger <hakim.aammar-ext@ledger.fr>
Date:   Wed Aug 30 15:23:29 2023 +0200

    Merge remote-tracking branch 'ledger/develop' into HEAD

commit fb4d9f068a8fb8c839e17d677c384b77670db1d9
Merge: 1c6deb2336 41a38e953b
Author: Maxence LE GALL <39890664+mle-gall@users.noreply.github.com>
Date:   Wed Aug 30 15:02:41 2023 +0200

    Merge pull request #4518 from LedgerHQ/feat/LIVE-8610/ProviderIconsRemoval

    feat(IconsUI/ReactUI): ProviderIcons removal from Design System

commit 1c6deb2336a8b76517cc4d367f76dca24f9228dc
Author: Hakim <59644786+haammar-ledger@users.noreply.github.com>
Date:   Wed Aug 30 11:22:50 2023 +0200

    [bugfix] Fix regression when serializing cosmos operation extra (#4528)

    * Fix regression when serialiazing cosmos operation extra

    * Add changeset

    * [WIP]fix: cosmos unit tests (#4532)

    fix: cosmos unit tests

    ---------

    Co-authored-by: hzheng-ledger <71653044+hzheng-ledger@users.noreply.github.com>

commit 3dc9ba19b73ddd3c1a262df6339e16279d9b0aa7
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Tue Aug 29 14:38:17 2023 +0200

    chore(deps): update dependency @testing-library/react-hooks to v8 (#4514)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 52bb4607d820bca2d1e2d4b3c33b452c333be6df
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Tue Aug 29 14:38:02 2023 +0200

    chore(deps): update dependency @types/node to v18 (#4516)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 41a38e953b17075b5ab7bec307c147d8f74b7501
Author: male-gal <maxence.le-gall@ledger.fr>
Date:   Tue Aug 29 14:32:01 2023 +0200

    feat(IconsUI/ReactUI): ProviderIcons removal from Design System

commit 1a3205b3c7abaefb39276565fce5541a6a7aaed2
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Tue Aug 29 14:26:23 2023 +0200

    chore(deps): update dependency @testing-library/jest-dom to v6 (#4511)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit c6921f497399c9b48b89b460e39cae309571e0d7
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Tue Aug 29 14:20:33 2023 +0200

    chore: update pnpm in actions with same version as prototools (#4515)

commit a46453e291e52f9c832cdcc058d9fa951519888f
Author: @greweb <renaudeau.gaetan@gmail.com>
Date:   Tue Aug 29 12:40:03 2023 +0200

    chore: update pnpm (#4498)

commit 5d20c326a038a430a38f28815ba65af71152118b
Author: sarneijim <38540290+sarneijim@users.noreply.github.com>
Date:   Tue Aug 29 11:39:12 2023 +0100

    feat: support customFees in swap web app mode (#4174)

    * feat: support customFees in swap web app mode

    * fix: add other custom params

    * feat: update wallet-api dependencies

    * fix: fix async call getCustomFeesPerFamily

    * fix: fix typecheck

    * refactor: move getCustomFeesPerFamily to common

    * fix: fix lint

    * fix: remove feesStrategy as mandatory to open swap web app

    * fix: add convertToNonAtomicUnit utils

    * chore: update wallet-api server call after upgrade

    * fix: fix lint

commit 1e5c2e53a38a43cfe21fa00a049c0c879ad52571
Author: Gaëtan Renaudeau <renaudeau.gaetan@gmail.com>
Date:   Tue Aug 29 12:31:14 2023 +0200

    chore: renovate config to allow @electron/* pkgs

commit d398cd62a8bdff0b7d72d7bed7a021c2442fbf77
Merge: e12993f480 074d99c9e0
Author: Stephane Lieumont <118977988+stephane-lieumont-ledger@users.noreply.github.com>
Date:   Tue Aug 29 11:05:20 2023 +0200

    Merge pull request #4468 from LedgerHQ/feat/protect-2420-update-cta-recover-copy

    feat(protect-2420): update recover wording

commit e12993f4804443a142db7b52f66a1d912caeab5f
Author: Landry Monga <lvndry@protonmail.com>
Date:   Mon Aug 28 19:40:48 2023 +0200

    Polkadot bridge mock (#4456)

    * polkdadot bridge mock

    * test(lld): update screenshots (macos-latest)  lld, test, screenshot

    ---------

    Co-authored-by: lvndry <lvndry@proton.me>
    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 1f9626aa9f1503cb7f23ef23d431932590fd25da
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Mon Aug 28 17:39:55 2023 +0200

    chore: refine renovate rules

commit 06684aa6d7d90d409138297b606509646c3c730c
Author: @greweb <renaudeau.gaetan@gmail.com>
Date:   Mon Aug 28 17:33:25 2023 +0200

    chore: add /svg-icons in common tools (#4490)

commit 42a90710a7c68ea97b2f6867cda603116c76282f
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Mon Aug 28 16:58:20 2023 +0200

    chore: update renovate config

commit f55c6e4f9027e8277553af44334026a70ee3bdaa
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Mon Aug 28 16:45:11 2023 +0200

    Feat/live 8375 fw update redesign (#4471)

    * feat(llm/fwupdatebanner): new design

    * fix(llm/fwupdatebanner): loading state

    * chore: changeset

    * chore(llm): remove unimported code

    * chore(llm): cleanup comments

    * fix(llm/fwupdatebanner): loader color

commit 4901a78f780d230f29272a1b439914c6df31e991
Merge: 902f2ed757 a51494ccfa
Author: Maxence LE GALL <39890664+mle-gall@users.noreply.github.com>
Date:   Mon Aug 28 15:53:25 2023 +0200

    Merge pull request #4310 from LedgerHQ/feat/LIVE-8596/LLDSyncOnboardingPolish

    feat(LLD/Sync Onboarding): Pixel polishing

commit a51494ccfa4aa0eca08c51f9c3687b2831b0eccf
Author: male-gal <maxence.le-gall@ledger.fr>
Date:   Mon Aug 28 15:19:38 2023 +0200

    feat(LLD/Sync Onboarding): Pixel polishing

commit 902f2ed7570d82cc6aaafd5c1bb9f0372feeb4a5
Merge: 4d5ff97ba3 aed57fdf40
Author: Côme Grellard <come.grellard@ledger.fr>
Date:   Mon Aug 28 15:05:28 2023 +0200

    Merge pull request #4480 from LedgerHQ/support/LIVE-9078-llm-deposit-copy-updates

    support(llm): small deposit copy updates

commit 4d5ff97ba346365a7b88a446ab9ef7d1cbfbc17d
Merge: a3a46a0ce7 51bd69d5ab
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Mon Aug 28 14:14:06 2023 +0200

    Merge pull request #4483 from LedgerHQ/support/live-9091

    chore: prevent SYNC_SOME_ACCOUNTS log with empty accounts[]

commit a3a46a0ce74621851b4893cad77f593c510f328c
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 28 14:10:18 2023 +0200

    fix(deps): update dependency webpack to 4.46 (#4482)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 550fb40887552cab5914cd1cda1968597e296208
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 28 12:32:28 2023 +0200

    fix(deps): update dependency react-i18next to v11.18.6 (#4434)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 51bd69d5ab0332794edf5caff22d493596255c61
Author: Gaëtan Renaudeau <renaudeau.gaetan@gmail.com>
Date:   Mon Aug 28 11:52:26 2023 +0200

    chore: prevent SYNC_SOME_ACCOUNTS log with empty accounts[]

commit aed57fdf40744557c2b1693427ebe74405073ad7
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Mon Aug 28 10:32:12 2023 +0200

    support(llm): small deposit copy updates

commit d936c57630a64798998787717d9d6d1e1e35deb0
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Mon Aug 28 10:28:41 2023 +0200

    support(llm): small deposit copy updates

commit de06c81fd976a46fa8b637cef7d284602d46b16b
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Mon Aug 28 09:51:53 2023 +0200

    feat(llm/earlysecuritychecks): implemented tracking plan (#4475)

    * feat(llm/earlysecuritychecks): implemented tracking plan

    * fix(llm/esc/tracking): error drawer buttons tracking

commit 9578233038ecf35b3cbbb39519bfa8d3860d7056
Merge: 9090d33d87 b8d4e81ea6
Author: Côme Grellard <come.grellard@ledger.fr>
Date:   Fri Aug 25 16:49:14 2023 +0200

    Merge pull request #4408 from LedgerHQ/feat/LIVE-7718-send-tx-pending-indicator-warning

    💄 LLM - Send Tx Pending Warning

commit 9090d33d870329e64c36e30f02aad5254c0e7f28
Merge: 0cc83c5588 d68489789b
Author: Côme Grellard <come.grellard@ledger.fr>
Date:   Fri Aug 25 16:49:06 2023 +0200

    Merge pull request #4413 from LedgerHQ/feat/LIVE-7717-send-tx-pending-indicator-warning

    💄 LLM - add warning on send flow when a tx is pending

commit 0cc83c55887bf20bd14c69a355e75bc02df70448
Author: Chelsea Sanders <chelsea.sanders-ext@ledger.fr>
Date:   Fri Aug 25 16:45:52 2023 +0200

    chore: gen e2e screenshots (#4474)

commit c4c16e6a326040767747d38fe87c17ce5dd91b03
Author: Beth Swingler <beth.swingler-ext@ledger.fr>
Date:   Thu Aug 24 18:16:00 2023 +0100

    fix: add reuasable hook to use stake flow actions directly in any navigator; use directly in earn nav

commit 541447c58c98354cd8d211d05ecccf1067533f11
Merge: cd9579816d c4046d7c65
Author: Kieran Allen <132384348+kallen-ledger@users.noreply.github.com>
Date:   Fri Aug 25 14:39:48 2023 +0100

    Merge pull request #4390 from LedgerHQ/bugfix/LIVE-8928

    fix: don't pop from live app when verifying address

commit cd9579816d92807c8e1645b96ff9978fa7f9fc09
Author: sarneijim <38540290+sarneijim@users.noreply.github.com>
Date:   Fri Aug 25 14:09:11 2023 +0100

    fix: add deeplink track to llm and improve deeplink track lld (#4466)

    * fix: add deeplink track to llm and improve deeplink track lld

    * fix: fix typecheck

    * fix: remove decodeURI

    * fix: fix llm test

commit 9154178962b68ef974831ebff36d39d2e27d15e2
Author: Chelsea Sanders <chelsea.sanders-ext@ledger.fr>
Date:   Fri Aug 25 11:23:10 2023 +0200

    feat: web ptx player to load correct manifest (#4212)

commit 074d99c9e00dc2c181cd041e3902a88d8bb43921
Author: Stephane Lieumont <stephane.lieumont-ext@ledger.fr>
Date:   Fri Aug 25 10:20:05 2023 +0200

    feat(protect-2420): update recover wording

commit 1020f276322fe361585a56573091ec647fbd901e
Author: hzheng-ledger <71653044+hzheng-ledger@users.noreply.github.com>
Date:   Thu Aug 24 17:55:06 2023 +0200

    LIVE-8495 Fix: evm integration test (#4452)

commit 2480ba48e9af12b1c93d2d9c147c969d6380c2a3
Merge: b238109174 ed6da731dd
Author: Quentin Jaccarino <quentin.jaccarino@ledger.fr>
Date:   Thu Aug 24 16:51:18 2023 +0200

    Merge pull request #4461 from LedgerHQ/bugfix/access-restore-flow-onboarding

    fix: accessing restore flow from onboarding

commit d68489789bea4c71fa9c46a71ebd618fc45a03be
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Thu Aug 24 15:43:33 2023 +0200

    feat(llm): added a warning to the select recipient screen when there is already a send transaction pending

commit b238109174ab3cad39f9531639b32bf3778abc72
Author: Tim Schmidt <tim@launchbadge.com>
Date:   Thu Aug 24 06:38:34 2023 -0700

    fix: correctly encode transaction hash for hashscan (#3890)

    * fix: correctly encode transaction hash for hashscan

    * fix: snapshot

    * fix: lint

    * fix: add changeset

commit ed6da731dd196a76350b66db2301968bc3df3a05
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Thu Aug 24 15:25:16 2023 +0200

    fix: accessing restore flow from onboarding
    The base was missing to navigate in case the onboarding was the only screen present

commit 8e9df43a0cd00a2065b494439f300f96724b8eb8
Author: Hakim <59644786+haammar-ledger@users.noreply.github.com>
Date:   Thu Aug 24 15:04:21 2023 +0200

    [support] Rework Operation.extra (#4235)

    * Use coin-specific Operation and Operation extra for Algorand

    * Use coin-specific Operation and Operation extra for Polkadot

    * Rework Operation de/serialization

    * Use coin-specific Operation and Operation extra for Cardano

    * Use coin-specific Operation and Operation extra for Celo

    * Use coin-specific Operation and Operation extra for Cosmos

    * Use coin-specific Operation and Operation extra for Elrond

    * Use coin-specific Operation and Operation extra for Crypto.org

    * Better typing of SignedOperation type

    * Remove useless custom operationDetails on LLD for EVM

    * Use coin-specific Operation and Operation extra for InternetComputer

    * Remove unused extra from Ripple operation

    * Use coin-specific Operation and Operation extra for Solana

    * Use coin-specific Operation and Operation extra for Stacks

    * Use coin-specific Operation and Operation extra for Stellar

    * Use coin-specific Operation and Operation extra for Tezos

    * Stronger typing of the Operation.extra field

    * Use coin-specific Operation and Operation extra for Tron

    * Stronger typing for operations in the LLDCoinFamily type

    * Update unit test

    * Update README

    * Add changeset

    * Change definition of Operation to use generics

    * Rename SignedOperation.signatureRaw to rawData

    * Adapt UI to changes of Operation type

    * Fixes for Ethereum & Tron

    * eslint + minor fixes

    * Update README

    * TS fix

    * Fix small regression with Elrond

    * Sanitize validators in cosmos operations extra

    * lint

commit 8da383b3060b6ea58c077196aa658e07d90a1a11
Author: Landry Monga <lvndry@protonmail.com>
Date:   Thu Aug 24 13:08:14 2023 +0200

    Cardano Bridge Mock testing (#4376)

    * cardano bridge mock

    * account.spec.ts has ADA ticker

    * add mock cardanoResources

    * test(lld): update screenshots (macos-latest)  lld, test, screenshot

    * test(lld): update screenshots (ubuntu-latest)  lld, test, screenshot

    * test(lld): update screenshots (windows-latest)  lld, test, screenshot

    * correct error display

    * set transaction mock fees

    ---------

    Co-authored-by: lvndry <lvndry@proton.me>
    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit d1c93c2ef89fdc58651a0fa09c6c59ba56276e2a
Merge: 77f20592de 7889867856
Author: Côme Grellard <come.grellard@ledger.fr>
Date:   Thu Aug 24 11:59:41 2023 +0200

    Merge pull request #4415 from LedgerHQ/support/LIVE-8888-change-nps-copy

    💬  LLM - updated the tile of the enjoy screen in the nps flow

commit 77f20592de9d19b6f5da7534405164ecc89b9e0b
Merge: f9140a309a f111bd9ff4
Author: Côme Grellard <come.grellard@ledger.fr>
Date:   Thu Aug 24 11:46:42 2023 +0200

    Merge pull request #4414 from LedgerHQ/support/LIVE-9031-change-tx-alerts-copy

    💬 LLM - add a beta mention to the tx alerts button in the notifications settings

commit f9140a309ad1927c8ee424c36635451a7da0f3e2
Merge: adae9a8f61 b81268b1ab
Author: Quentin Jaccarino <quentin.jaccarino@ledger.fr>
Date:   Thu Aug 24 10:48:56 2023 +0200

    Merge pull request #4451 from LedgerHQ/bugfix/recover-restore-and-onboarding

    fix: recover restore and onboarding issues

commit adae9a8f61b8ce8f1bfa2f8858c661d3078c04a4
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 24 10:46:49 2023 +0200

    fix(deps): update dependency redux-thunk to v2.4.2 (#4441)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 78898678562b6db37bc0c44fa5f34ee308d9c48f
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Thu Aug 24 10:31:20 2023 +0200

    support(llm): hide original ratings entry point in the settings when the nps is enabled

commit d553f79ff8744494bce42b0e6b5fa00eb6149615
Author: C Ng <138497251+cng-ledger@users.noreply.github.com>
Date:   Thu Aug 24 09:21:09 2023 +0100

    bugfix(LIVE-7623): typings (#4247)

    * fix(LIVE-7623): typings

    * fix(LIVE-7623): changeset

    fix(LIVE-7623): prettier

    * fix(LIVE-7623): refactor exchange body content

    fix(LIVE-7623): replace types

    fix(LIVE-7623): optional rateTypes

    * fix(LIVE-7623): lint

    * fix(LIVE-7623): spelling mistake

    * fix(LIVE-7623): fix tests

    * fix(LIVE-7623): remove @ts-expect-error

commit bafa799361b57bca0d2473a6683bbaa91fa8c635
Author: sarneijim <38540290+sarneijim@users.noreply.github.com>
Date:   Thu Aug 24 09:16:26 2023 +0100

    fix: remove stake banner from nft receive flow (#4439)

    * fix: remove stake banner from receive nft flow

    * fix: add callback dependencies

commit b81268b1ab68c0ce4f70647bd104c32d2b32d844
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 23 20:18:25 2023 +0200

    fix: types because we removed the stax redirect screen types that was allowing anything

commit 2f32d8c86133213de4e921c11361b4387ad9f623
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 23 19:43:18 2023 +0200

    fix: missing recoverManifests

commit 1b1ee1e73b74ad85ca57064815bf193a8797585d
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 23 19:22:09 2023 +0200

    fix: update the redirectTo param for recover

commit f1b3b7ca0268267385319c2c037645843406c6f5
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 23 19:14:38 2023 +0200

    chore: remove the need to add recoverManifests for the deeplinks on mobile
    Also adds `protect-staging-v2` to the manifest list for the recover player header

commit 87a0a8b0dce2d36a34541f890697b4ffba258382
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 23 15:20:46 2023 +0200

    fix: recover restore and onboarding issues
    Fix desktop LNX onboarding back when coming from recover
    Skip genuine check when coming from recover to restore the device (it would be better to allow unseeded device on the genuine check screen instead)
    Send the deviceId to the recover app in order to avoid multiple device selection during the restore process
    Update the podfile to config the build settings with ccache support (You might need to check https://stackoverflow.com/a/70189990 for ccache to work correctly when building with xcode)
    Cleanup old RecoverStaxFlow screen
    Patch react-native-webview to add support for `allowsUnsecureHttps`
    Added `IGNORE_CERTIFICATE_ERRORS=1` to use `allowsUnsecureHttps` in the webview in dev same as for LLD
    Added `protect-local` & `protect-local-dev` manifest support in dev
    Update wallet-api dependencies

commit d6c1984620b1d7d8289cf73f5b782217f241c2e6
Author: Beth Swingler <beth.swingler-ext@ledger.fr>
Date:   Wed Aug 23 14:43:03 2023 +0100

    Bugfix/live 8936 earn llm get coins deeplink (#4407)

    * fix: buy coins navigation flow when no account live-8936

    * fix:  white empty space above Market live-8851, main nav button overlap end of earn screen

    * fix: revert plist, gradle, totalSteps

commit 5b87074232b96d838eacdbc3d7fe1687a53f68d5
Author: Alexandre Chabrolin <9203826+chabroA@users.noreply.github.com>
Date:   Wed Aug 23 15:39:22 2023 +0200

    use specific component in SignTransaction flow (#4417)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit d0948c64990926eee97f0d774b8d71ef87961a92
Merge: 6375c250a9 00c1159356
Author: Kieran Allen <132384348+kallen-ledger@users.noreply.github.com>
Date:   Wed Aug 23 13:58:04 2023 +0100

    Merge pull request #4421 from LedgerHQ/bugfix/LIVE-8914

    [Bugfix/LIVE-8914]: Info message not triggered when user accesses a coin from the Market tab

commit 6375c250a9a58b33e3dd1d6c96a96c7e46150298
Author: Adrien Lacombe <adrien.lacombe@ledger.fr>
Date:   Wed Aug 23 14:25:25 2023 +0200

    CAL update (#4449)

    * feat(ledgerjs): update cardano token

    * feat(ledgerjs-cal): update CAL

commit 032b68731f29a4faad2c84a51bda588507ccf45d
Author: Prateek Rathod <prateek@zondax.ch>
Date:   Wed Aug 23 17:25:34 2023 +0530

    Bugfix/stacks: Parsing unknown txns  (#4402)

    * fix(stx): reading raw txns of type other than token_transfer

    * chore: changeset

    * refac(stx): use maximum limit on txn fetch

    * test(stx): add unit test for op-build bugfix

commit 3aa1ab084a2637bb6bdec9069f37f07cd90c99e6
Author: Hedi EDELBLOUTE <hedi.edelbloute@gmail.com>
Date:   Wed Aug 23 12:19:04 2023 +0200

    change baker whitelist integration test (#4447)

commit 213b66a80f3751e4be7bcbab5bb9de3bc8db366a
Author: mitchellv-ledger <105203468+mitchellv-ledger@users.noreply.github.com>
Date:   Wed Aug 23 10:02:06 2023 +0100

    fix: no market data on market tab switching (#4432)

    * fix: no market data on market tab switching

    * fix: stop potential infinite loop

    ---------

    Co-authored-by: fstream9 <mvivanti9@gmail.com>

commit 5049231835eb2eb6777dea5ee9a8813b95ed1ccb
Author: mitchellv-ledger <105203468+mitchellv-ledger@users.noreply.github.com>
Date:   Wed Aug 23 09:53:39 2023 +0100

    Bugfix/back button hide market details (#4423)

    * fix: remove back button in market details when ptxEarn enabled

    * chore: changeset added

    * chore: add changeset

    ---------

    Co-authored-by: fstream9 <mvivanti9@gmail.com>
    Co-authored-by: sarneijim <sarneijim@gmail.com>

commit f444c5b284335091c81c85f8ab4a0044380606bf
Merge: 2bec4b7f08 36a6802a0d
Author: Kevin Le Seigle <31533861+KVNLS@users.noreply.github.com>
Date:   Wed Aug 23 10:44:21 2023 +0200

    Merge pull request #4445 from LedgerHQ/bugfix/close-nft-fullscreen-cta

    fix: close cta on NFT fullscreen

commit 36a6802a0d2e185c761b46cad1be66e900a06e73
Author: KVNLS <kevin.leseigle@gmail.com>
Date:   Wed Aug 23 09:30:53 2023 +0200

    fix: close cta on NFT fullscreen

commit 2bec4b7f080d6dc9a6b22805c0fa317ff55c7202
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Tue Aug 22 17:42:05 2023 +0200

    fix(llm/customlockscreen): differentiation between error messages (#4426)

    * fix(llm/customlockscreen): differentiation between error messages

    * chore: changeset

    * chore: changeset

commit 7002c6c8f9bcbc5c2387cb064f218c5e27c70315
Author: hzheng-ledger <71653044+hzheng-ledger@users.noreply.github.com>
Date:   Tue Aug 22 16:38:28 2023 +0200

    LIVE-8683 Update coreum staking doc url (#4429)

    chore: update coreum staking doc url

commit 850dad94dfb9f04f48b4c7a5d90cfed6777013d7
Author: mitchellv-ledger <105203468+mitchellv-ledger@users.noreply.github.com>
Date:   Tue Aug 22 14:34:17 2023 +0100

    feat: add safe area inset to earn screen (#4355)

    * feat: add safe area inset to earn screen

    * chore: add changeset

    ---------

    Co-authored-by: fstream9 <mvivanti9@gmail.com>

commit 0d9ad3599bce8872fde97d27c977ab24445afc3a
Author: hzheng-ledger <71653044+hzheng-ledger@users.noreply.github.com>
Date:   Tue Aug 22 15:29:22 2023 +0200

    Support/LIVE-7931 Evm mock test (#4353)

    * chore: add evm mock test

    * fix: add changeset

    * fix: unit tests

    * fix: unit tests

    * fix: update screenshots

    * fix: lld tests

    * test(lld): update screenshots (windows-latest)  lld, test, screenshot

    * test(lld): update screenshots (ubuntu-latest)  lld, test, screenshot

    * test(lld): update screenshots (macos-latest)  lld, test, screenshot

    * fix: refactoring

    * fix: remove useless code

    * fix: remove useless code

    * fix: remove useless code

    ---------

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 00c11593565ac8b370df77af13dc3f1d8de90914
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Tue Aug 22 12:12:56 2023 +0100

    chore: add changeset

commit 48706a552330f729ba748f0cb3365dc90316e06c
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Tue Aug 22 12:11:35 2023 +0100

    bugfix: market alert when click on disabled ptx service button

commit 626636487c4d59a48da76c9892ec16fea626f5f6
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Tue Aug 22 11:48:53 2023 +0200

    support(llm): updated the tile of the enjoy screen in the nps flow

commit f111bd9ff438701545ee8fbdb5f0d3214f05f5c8
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Tue Aug 22 11:41:49 2023 +0200

    support(llm): add a beta mention to the tx alerts button in the notifications settings

commit f8fb67491a8dadf6def6b893b018e82bb2db5b78
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Tue Aug 22 11:33:45 2023 +0200

    feat(llm): added a warning to the select recipient screen when there is already a send transaction pending

commit 2cc2e7eb48c18d5679710725cda124e0f458c5cd
Merge: c404482254 dd2f92881c
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 22 11:03:13 2023 +0200

    Merge pull request #4251 from LedgerHQ/feat/LIVE-7618

    [LLD] - [LIVE-7618] - Typescript improvements and rework of the language & locale components across LLD.

commit dd2f92881cccb36e6dcfa82d1e93ce3de76f03f2
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 22 10:44:13 2023 +0200

    Add changeset

commit c404482254771e6af369e720889b4b22a4fd64e0
Merge: 28b212d3e5 e1c18fc218
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 22 10:23:11 2023 +0200

    Merge pull request #4403 from LedgerHQ/feat/LIVE-7620

    [LLD] - [LIVE-7620] - Fixing ts-expect-error's

commit 28b212d3e5baaa2fc2892e4173900e4598e07d6c
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Tue Aug 22 10:01:21 2023 +0200

    fix(deps): update dependency @rnx-kit/metro-resolver-symlinks to v0.1.32 (#4404)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit b8d4e81ea68f232b452b570b2c49dcca5d7056ae
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Tue Aug 22 09:52:42 2023 +0200

    feat(llm): fixed conflict

commit 9470e2429c84996180c6a26857eb2a499dd21623
Merge: 268ebcfd48 d90f58c7b6
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Tue Aug 22 09:51:58 2023 +0200

    Merge branch 'develop' of github.com:LedgerHQ/ledger-live into feat/LIVE-7718-send-tx-pending-indicator-warning

commit 268ebcfd488dcf77802d756eb94dd547943f4fb1
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Tue Aug 22 09:43:12 2023 +0200

    feat(llm): changed the color of the operations to be orange when pending

commit e41cdcc7070f9042bf4cc3319d6829fba6b1ec8e
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Aug 21 15:11:46 2023 +0200

    fix: Remove unused imports + remove unused variable

commit 745241060973aa67adb1da85b434459a262fdf34
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 21 12:35:54 2023 +0000

    test(lld): update screenshots (ubuntu-latest)  lld, test, screenshot

commit d46b4d7c686757eca7abc38ef40d17c5d4cb479a
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 21 11:18:00 2023 +0000

    test(lld): update screenshots (windows-latest)  lld, test, screenshot

commit 2c6e18444f450d123bd53cbc1ae010107157648c
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 21 10:57:10 2023 +0000

    test(lld): update screenshots (macos-latest)  lld, test, screenshot

commit 04a086a54d331855f7e3344bcfcc3809d0912174
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Aug 21 12:17:23 2023 +0200

    fix: Add GenuineCheck to useDynamicUrl + improve i18 variables flow + clean code

commit 76cd11e15437302001246acedae014f436a1bf30
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Aug 21 10:41:44 2023 +0200

    fix: Re-order imports

commit 44d529f8072461a55e3e4e8e03f7d5ce32bf6b1f
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Aug 21 10:41:29 2023 +0200

    fix: Locale to LanguageLocale

commit 03c7e68c5e7a4104b3cdfab12d9fa79815814b77
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Aug 21 10:40:10 2023 +0200

    fix: Remove unused languages files + clean i18 config

commit 9de30feb494f61f02d51327d2f3b7381a8f0cc9e
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 8 16:27:33 2023 +0200

    fix: Fix Locale type + fix default language on region select

commit 82bfff02fde3a4a262e8f9a442ad3433d860af11
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 8 14:10:06 2023 +0200

    fix: Remove unused import

commit 3d84436740afa4f81bd099861086e8f4f6c71bcc
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 8 11:52:29 2023 +0200

    fix: Fix undefined on language device support + fix typecheck issues

commit f7fe027ce7801ba6c652074a0553e00a66627b0f
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Aug 7 15:41:40 2023 +0200

    fix: Code polish + fix lint + fix typings + add comments + buildLocales

commit 74e3d7823542356489866509090c40f324916a42
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Jul 31 12:21:49 2023 +0200

    fix: Change to new Language architecture

commit 6e483024e823396b45c76fc51a35aa9279569958
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Thu Jul 27 09:46:15 2023 +0200

    fix: Cleaning + remove getLanguages

commit 96cadfc3ab31d1d48b2ff90337546e09345a8fd5
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Thu Jul 27 09:30:58 2023 +0200

    fix: Remove EXPERIMENTAL_LANGUAGES env + improve typings on useDynamicUrl

commit d90f58c7b65a67f829627ec2678b96eca7f5934c
Merge: 87cbec4062 b3f6a72ca9
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Mon Aug 21 18:08:01 2023 +0200

    Merge pull request #4395 from LedgerHQ/renovate/i18next-20.x

    fix(deps): update dependency i18next to v20.6.1

commit 87cbec4062f95d2348d7dd134cb4f13f071425d5
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Mon Aug 21 17:54:31 2023 +0200

    Support/llm dependencies upgrade (#4385)

    * chore(llm, native-ui): update dependencies

    * chore(llm, native-ui): lockfiles

    * chore(llm, native-ui): upgrade react-native-svg in native-ui, changesets

    * fix(llm): react-native-svg props

commit 84b865f2edefc12a5ade0e868b423bfbf879aa8b
Merge: d1705f6ee5 9a7748c262
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Mon Aug 21 17:42:12 2023 +0200

    Merge pull request #4400 from LedgerHQ/renovate/patch-nextjs-monorepo

    chore(deps): update nextjs monorepo to v13.4.19 (patch)

commit d1705f6ee51d77bda045c3d188974636eb827704
Merge: aff1ac0024 86038c0ce0
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Mon Aug 21 17:39:30 2023 +0200

    Merge pull request #4391 from LedgerHQ/support/fix-env-typings

    fix: typings on live-env

commit 9a7748c2625bdec9147789b41940efab5acd589e
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 21 15:38:58 2023 +0000

    chore(deps): update nextjs monorepo to v13.4.19

commit aff1ac0024fa934165f51afb61bec27dba78d279
Author: Abdurrahman Sastim <106583189+abdurrahman-ledger@users.noreply.github.com>
Date:   Mon Aug 21 17:17:44 2023 +0200

    [B2CQA-1920] Detox : Fix Android Flaky tests (#4396)

    fix: android flaky tests

commit e1c18fc2185e1251c13629d14c615510b1efd9b5
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Aug 21 16:33:49 2023 +0200

    fix: Removed ts-expect-error & fixed it

commit 86038c0ce0230c50e1a24481f51a9fbc52953d4e
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Mon Aug 21 15:34:04 2023 +0200

    fix: live-common-tools

commit b630bb8c16bdc31c1f7344f2bd6bd6042eaf8310
Author: Hedi EDELBLOUTE <hedi.edelbloute@gmail.com>
Date:   Mon Aug 21 15:15:20 2023 +0200

    rename bot jobs (#4401)

commit f3f4745b20261b877a938a897b5ad24291fca8aa
Author: Hedi EDELBLOUTE <hedi.edelbloute@gmail.com>
Date:   Mon Aug 21 13:50:20 2023 +0200

    Bot : currencies/family filter, disable & mooncake/silicium non reg removed (#4207)

commit afd56df75f5c2edcab8b5565b1a8172f5247d50b
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Mon Aug 21 12:10:18 2023 +0200

    fix: cli typescript errors

commit 1b4321f363b1e2c93e2406dd327cd4d1def7b458
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Mon Aug 21 10:26:34 2023 +0200

    feat: remove env.ts from live-common

commit fde2fe79f1df69fffe80763cd6d9792fe9de1262
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Fri Aug 18 17:36:52 2023 +0200

    feat: rework some env typings for better inference

    feat: rework some env typings for better inference

commit 2cdbc483fa1df4aa1dae4c93c83cf06bb0676927
Author: Martin CAYUELAS <112866305+mcayuelas-ledger@users.noreply.github.com>
Date:   Mon Aug 21 11:56:55 2023 +0200

    🐛 [FIX] : Notifications get re-enabled when updating the app (#4397)

    * 🐛 [FIX] : Notifications get re-enabled when updating the app

    * add changeset

commit c4046d7c65bbc5a74771ce1c4f4377610f3b0f65
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Mon Aug 21 10:16:07 2023 +0100

    fix: use screen name instead of navigation name

commit a4648d5c78e21989c9d5a3de7c7df80e05672eef
Author: Alexandru Pislariu <57287326+AlexandruPislariu@users.noreply.github.com>
Date:   Fri Aug 18 16:59:02 2023 +0300

    Bugfix/multiversx delegation amount miscalculation (#4364)

    * Fixed withdraw modal and types (#17)

    Co-authored-by: Alexandru Pislariu <57287326+AlexandruPislariu@users.noreply.github.com>

    * Fixed the minimum staking balance calculation. (#18)

    * Updated the calculation condition.

    * Fixed the "delegationEnabled" flag.

    * Updated the minimum balance instances with a singular helper function.

    * Added changeset.

    * Fixed missing import.

    ---------

    Co-authored-by: Miro Mărgineanu <miro.margineanu@elrond.com>

commit b3f6a72ca9522f18d7649aba2fb513e3ebb2c5cf
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Fri Aug 18 13:24:34 2023 +0000

    fix(deps): update dependency i18next to v20.6.1

commit 3723b104e48be93e7233837742d8e757422e8e6e
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Fri Aug 18 12:28:38 2023 +0100

    chore: add changeset

commit e00998215f6518b6f51d61987189e467423cff2c
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Fri Aug 18 12:27:09 2023 +0100

    fix: don't pop from live app when verifying address

commit d0e10a779096e1bd3964b2996254f0670eec8ef8
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Fri Aug 18 12:09:03 2023 +0200

    [LLD] - LIVE-4380 - Fix and improve date formatting based on locale (#4319)

    * Fix locale not working on date + improve workflow by adding useDateFormatter hook

    * Typos

    * Removed unused file and replace date formatter

    * Init tests

    * Add tests for utilitary functions

    * Improve test

    * Add useFakeTimers in beforeAll hook

    * Revert dependencies

    * Fix lint

commit 3f36af31273aba263b79b3f161599ac089cfc6e7
Author: Martin CAYUELAS <112866305+mcayuelas-ledger@users.noreply.github.com>
Date:   Fri Aug 18 11:53:54 2023 +0200

    ⚰️ [SUPPORT] :  Remove old implementation of WalletConnect in LL (#4317)

    * Remove Old Wallet Connect from LLM

    * Remove old WalletConnect from LLD

    * 📝 Update doc LLC

    * Add changesets

    * Remove unused files

commit 0d5d7fadf8b2fda392bfc3d35357074370a91ee1
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Fri Aug 18 10:40:22 2023 +0200

    LIVE-5592 - remove RemoteConfig deprecated from LLD (#4380)

    chore: remove RemoteConfig deprecated from LLD - LIVE-5592

commit 10e5816803ffbac2383f75a9d55bb7b4be17a9f1
Merge: f2b3a62602 7569f444db
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Fri Aug 18 10:31:22 2023 +0200

    Merge pull request #4373 from LedgerHQ/renovate/patch-nextjs-monorepo

    chore(deps): update nextjs monorepo to v13.4.18 (patch)

commit f2b3a6260255770301c159b4a3e20c9c8e5c3b34
Merge: d031e69737 f25c592dc9
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Fri Aug 18 10:30:08 2023 +0200

    Merge pull request #4382 from LedgerHQ/support/trigger-release-after-hotfix

    ci: add automatic trigger after using release prepare hotfix

commit f25c592dc94876b292dd05ea0076bb6d1ce88c4d
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Fri Aug 18 10:15:20 2023 +0200

    ci: add automatic trigger after using release prepare hotfix

commit 7569f444db7a992f3210e91ad2c9f53cada5ca17
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Fri Aug 18 07:40:04 2023 +0000

    chore(deps): update nextjs monorepo to v13.4.18

commit d031e69737ac4b4d00890de477408dfa4870faf7
Author: Alon Herbst <aherbst@paypal.com>
Date:   Tue Aug 8 00:09:38 2023 +0300

    Add PYUSD token icon

commit 70b4603a6fa34453c6fa6dd89fb3ed12a1038366
Merge: b76fe4fb37 77cd7fc87c
Author: Kevin Le Seigle <31533861+KVNLS@users.noreply.github.com>
Date:   Thu Aug 17 19:13:49 2023 +0200

    Merge pull request #4379 from LedgerHQ/support/hotfix-merge-conflicts

    :rotating_light: Hotfix merge conflicts

commit 77cd7fc87c765a67348893b83a9dba5e205e76a6
Author: Quentin Jaccarino <quent92100@gmail.com>
Date:   Thu Aug 17 18:32:19 2023 +0200

    ci: empty commit

commit 0ff215ac4c000c731eaa6ec20e72fe6514d841ce
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 17 15:45:38 2023 +0000

    chore(hotfix): :fire: hotfix release [skip ci]

commit 21746bc3bd7e9c4cd56a33779cc757762f1f9e34
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 17 15:35:13 2023 +0000

    chore(hotfix): :fire: hotfix prerelease [LLD(2.66.1-hotfix.0), LLM(3.29.1-hotfix.0)]

commit 27e4a76f6cc66aa6a7480f48329db04d33200c65
Author: KVNLS <kevin.leseigle@gmail.com>
Date:   Thu Aug 17 11:35:53 2023 +0200

    fix: add reactLegacy and nativeLegacy to the list of files included by the package

commit e7c0caf910474f44d27b40a34d8a3a24804bf836
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 17 15:22:42 2023 +0000

    chore(hotfix) :rocket: entering hotfix mode

commit b76fe4fb375cc73bebd2c57653f953fac090224a
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Thu Aug 17 14:30:01 2023 +0200

    fix(lld/deviceaction/error): broken layout (#4371)

commit f19f0b3b1ed57f1f4dc718fa2cdccb45a42c2ab5
Author: Alexandre Magaud <alexandre.magaud@gmail.com>
Date:   Thu Aug 17 14:06:00 2023 +0200

    Feat/LIVE-7596: Genuine check and firmware update check in Early Security Check during Sync Onboarding (#3887)

    * chore: rename resync overlay to desync overlay

    * feat: wip current work on genuine check during early security check

    - Drawer: failed/refused genuine check
    - Drawer: allow manager

    * fix: unlock device during ESC genuine check

    * feat: fw update check during ESC

    * feat: UI for idle early security check

    * feat: wip UI on active early security check

    * feat: handle genuine check refused from device

    * feat: ESC mandatory drawer on close button

    * feat: firmware update available logic and UI in ESC

    * [LIVE-6555] add language change prompt to sync onboarding (#3884)

    * feat: 1st implementation of going to firmware update and coming back from ESC

    * feat: handling user coming back from fw update

    The users can come back either:
    - because the fw update was completed
    - the user left the fw update before completion

    * chore: removing software check from sync onboarding companion

    * chore: update 1st step of sync onboarding companion

    * chore: cancelling the ESC brings back user to device selection

    * chore: add learn more support link for genuine check

    * chore: 1-way path on inf loop fw 1.2.1-il2 -> 1.2.1-il0

    * feat: automatically bypassing genuine check when coming back from fw update in ESC

    * fix: hook file name to get device info

    * feat: adapt error to new get latest available firmware action

    And handle locked device from the parent screen

    * feat: adapted firmware update to ESC

    Removing unnecessary steps during the fw update for a non-seeded device

    * chore: update UI from new design on the ESC

    * chore: handle device in bootloader mode

    Probably from a fw update that went wrong

    * feat: handle UnexpectedBootloader error from polling

    * feat: handle genuine check error and non-genuine case separately

    * fix: bypass unlock device on fw update

    When before onboarding (ESC) and no MCU to flash

    * feat: handle errors during genuine checks

    * chore: cleaning console logs

    * chore: changeset

    * chore: fix linter

    * fix: documentation and correct usage of Text component

    * chore: CheckCard in a separate component

    * feat: new UI rendering component for ESC

    * chore: handle not found entity other error case

    * chore: remove TODO comment

    * fix: rendering correctly bluetooth disabled error

    * chore: QA limiting fw update on all il fw from il2 -> il0

    ---------

    Co-authored-by: Gabriel Restori Soares <gabriel.soares@ledger.fr>

commit 4a2a89aa5494f4625009e9cd98e77e4cbfae500c
Merge: b9a407b49e 5fb60bc6bb
Author: Kevin Le Seigle <31533861+KVNLS@users.noreply.github.com>
Date:   Thu Aug 17 13:29:25 2023 +0200

    Merge pull request #4372 from LedgerHQ/support/fix-icons-legacy

    Fix reactLegacy and nativeLegacy for icons lib

commit 5fb60bc6bb0bc6a9452d580cdace16ca87e478ff
Author: KVNLS <kevin.leseigle@gmail.com>
Date:   Thu Aug 17 11:35:53 2023 +0200

    fix: add reactLegacy and nativeLegacy to the list of files included by the package

commit b9a407b49e1a989bec0f28cd9731becd114d545e
Merge: 41a184849b 45716e91e8
Author: Quentin Jaccarino <quentin.jaccarino@ledger.fr>
Date:   Thu Aug 17 11:10:10 2023 +0200

    Merge pull request #4358 from LedgerHQ/support/release-merge-conflicts

    :rotating_light: Release merge conflicts

commit 45716e91e8fb391bd0508e8c994a475cacb5439a
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Thu Aug 17 10:26:17 2023 +0200

    ci: trigger

commit 41a184849be2f768cca205bc50c0778d483bbbe4
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 17 10:23:01 2023 +0200

    chore(deps): update nextjs monorepo to v13.4.16 (patch) (#4354)

    chore(deps): update nextjs monorepo to v13.4.16

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit aed4a7474ff47a796b24f6953ebec68ba90d51ab
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 17 10:22:40 2023 +0200

    fix(deps): update dependency color to v4 (#4349)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 2847c7c500c108efb7563e898626f3572d6b0891
Merge: a6c6b09926 60992a9b20
Author: Quentin Jaccarino <quentin.jaccarino@ledger.fr>
Date:   Thu Aug 17 10:18:29 2023 +0200

    Merge pull request #4362 from LedgerHQ/support/add-recover-local

    support: add recover local dev support

commit 60992a9b20a23952f75900767f481df2bf69ed18
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 16 16:35:56 2023 +0200

    support: add recover local dev support
    Using minirecover locally you need to set `IGNORE_CERTIFICATE_ERRORS=1`

commit a6c6b099267d03012ba2a82777dc01f7cf0f9a45
Merge: 7c17421460 2f73df6545
Author: Quentin Jaccarino <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 16 16:20:04 2023 +0200

    Merge pull request #4360 from LedgerHQ/bugfix/typeerror-wallet-api

    fix(wallet-api): missing new on error constructor

commit 7c1742146041b9c6bee9937378c579b81fc8e3d1
Merge: 3ee785d1c2 cf35fae21c
Author: Quentin Jaccarino <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 16 16:17:23 2023 +0200

    Merge pull request #4359 from LedgerHQ/bugfix/PROTECT-2292

    fix(RecoverRestore): add onRetry to error handling [PROTECT-2292]

commit 2f73df65457c16cceb632a9c745e4c20a6ae4934
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 16 15:53:56 2023 +0200

    fix(wallet-api): missing new on error constructor

commit cf35fae21c1cda4700ff4ac76739ba79ef89a77b
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 16 15:45:07 2023 +0200

    fix(RecoverRestore): add onRetry to error handling [PROTECT-2292]

commit 3ee785d1c20086cea495215578a40764c4ad5351
Merge: a3d23f1b96 bdc6055d2a
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Wed Aug 16 15:43:42 2023 +0200

    Merge pull request #4345 from LedgerHQ/renovate/ledgerhq-live-app-sdk-0.x

    fix(deps): update dependency @ledgerhq/live-app-sdk to ^0.8.0

commit f6a709af79e833807de2b0c9a68935a1d5aee45b
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Wed Aug 16 13:39:59 2023 +0000

    chore(release): :rocket: prepare release [skip ci]

commit a3d23f1b9670affd032b0a2ef8a1b0261bdc5972
Merge: 1cfd51f86f 67bd32f808
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Wed Aug 16 14:58:49 2023 +0200

    Merge pull request #4347 from LedgerHQ/renovate/nodemon-3.x

    chore(deps): update dependency nodemon to v3

commit 1cfd51f86f08670e47c77dea45ad8f17f68c9041
Author: mitchellv-ledger <105203468+mitchellv-ledger@users.noreply.github.com>
Date:   Wed Aug 16 13:48:52 2023 +0100

    Feat/earn info modals (#4327)

    * feat: add earn info modal

    * chore: add changeset

    * feat: use drawer directly in place of root drawer

    * chore: lint

    * fix: undefined params

    * feat: add earn info modal trigger via redux state

    * chore: lint

    ---------

    Co-authored-by: fstream9 <mvivanti9@gmail.com>

commit e324ab51c934acc933ec7811c9d2d42875099770
Merge: 62310d61cd df24f7f950
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Wed Aug 16 14:06:35 2023 +0200

    Merge pull request #4346 from LedgerHQ/renovate/execa-7.x

    chore(deps): update dependency execa to v7

commit 080903145977861b28d79e5a0e02c0d6e5e5b19c
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Wed Aug 16 09:17:10 2023 +0000

    chore(prerelease): :rocket: release prerelease [LLD(2.66.0-next.3), LLM(3.29.0-next.2)]

commit b0af2c6f65f0fd5f0afa24d41f35fdd6523ed65d
Author: Hakim <59644786+haammar-ledger@users.noreply.github.com>
Date:   Wed Aug 16 11:05:41 2023 +0200

    [bugfix] Avoid conflicts in currency feature flag names in manager (#4339)

    * In manager, look for exact currency name in feature flag

    * Add changeset

    * Use useFeature instead of manually handling flag names

    * Cleanup old comments

commit df24f7f9504062a2989a02b5747f2acae9b7b28b
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Wed Aug 16 10:13:18 2023 +0200

    chore(deps): fix execa new syntax

commit 62310d61cd8c1755ba75e7ced500c6c6aaacc871
Author: Alexandru Pislariu <57287326+AlexandruPislariu@users.noreply.github.com>
Date:   Wed Aug 16 11:54:44 2023 +0300

    MultiversX: Withdraw modal fixes (#4089)

    * Fixed withdraw modal and types (#17)

    Co-authored-by: Alexandru Pislariu <57287326+AlexandruPislariu@users.noreply.github.com>

    * Return account guarded flag

    * Added guarded account warnings

    * isGuarded on Elrond resources type

    * Updated static condition

    * Fixed lint warning on the mobile build.

    * snapshots update

    * Fixes

    * Fixed typecheck issue

    * Add new ESDT tokens

    * Fixes

    * Fixes

    ---------

    Co-authored-by: Miro Mărgineanu <miro.margineanu@elrond.com>

commit 88846cc39d053726800aabb435b04dc299c4c485
Author: hzheng-ledger <71653044+hzheng-ledger@users.noreply.github.com>
Date:   Wed Aug 16 10:52:53 2023 +0200

    Fix: LIVE-8269 cosmos amount string parser (#4281)

    * fix: cosmos amount string parser

    * fix: small refactoring

    * fix: add changeset

commit 67bd32f8089d29bf9542bfcb005de5c3df577690
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 14 09:19:52 2023 +0000

    chore(deps): update dependency nodemon to v3

commit cbd6f783ff1bb7539783423b150f0576791c7978
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 14 09:19:15 2023 +0000

    chore(deps): update dependency execa to v7

commit bdc6055d2a145072e706e5c1ffff5a64dbd0b584
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 14 09:18:38 2023 +0000

    fix(deps): update dependency @ledgerhq/live-app-sdk to ^0.8.0

commit 46f0f999a6a4b850b24cb87905256a2fd8c73976
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 14 10:57:23 2023 +0200

    chore(deps): update dependency regenerator-runtime to v0.14.0 (#4315)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit f597506f91ce1727f4427403d78a9dd2ebd68463
Author: C Ng <138497251+cng-ledger@users.noreply.github.com>
Date:   Mon Aug 14 09:57:04 2023 +0100

    support(test-env): rename test env check fn (#4335)

commit 5a558b58a22ee963ba3873392106c1bba0915b75
Merge: f1db4e0a86 4cfc701c0e
Author: Côme Grellard <come.grellard@ledger.fr>
Date:   Mon Aug 14 09:48:44 2023 +0200

    Merge pull request #3928 from LedgerHQ/feat/LLM-new-deposit-flow

    ✨ [FEAT] :  New deposit flow on LLM

commit f1db4e0a86ac474fe73f3076788ed28f516cf99e
Merge: 193a6e6530 2c9001d5f5
Author: Beth Swingler <beth.swingler-ext@ledger.fr>
Date:   Sat Aug 12 11:07:45 2023 +0100

    Merge pull request #4278 from LedgerHQ/feat/LIVE-7702-earn-fe-update-no-funds-modal-title-dynamically

    bugfix/live 7702 Earn dashboard - update no funds modal title dynamically, upgrade 18next on desktop only

commit 2c9001d5f56d6135d35e9d92ebabd9772ececdb9
Author: Beth Swingler <beth.swingler-ext@ledger.fr>
Date:   Fri Aug 11 18:11:17 2023 +0100

    fix: 18next packages; dynamic NoFundsModal title

commit 8efcab3282ab56396b7d511b2c7b8677a94a9102
Merge: 59abc73c9e b4856b154c
Author: Quentin Jaccarino <quentin.jaccarino@ledger.fr>
Date:   Fri Aug 11 17:12:53 2023 +0200

    Merge pull request #4330 from LedgerHQ/smartling-translations-20230811133611345

    Smartling on-demand translation delivery from release

commit 193a6e6530287eb5cc84efa18f707db733e6258a
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Fri Aug 11 15:49:45 2023 +0200

    ci: small updates on test.yml

commit 4cfc701c0e1fd82506ae2620b892a4f6b8ee412f
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Fri Aug 11 16:18:26 2023 +0200

    feat(llm): deposit flow e2e test fixed

commit 59abc73c9e794fa849010413bdc3f391d317b5df
Author: Desifly <desire.ndri@ledger.fr>
Date:   Fri Aug 11 15:50:33 2023 +0200

    Update RELEASE_NOTES.md

commit b4856b154c1435a79d21120f0264fb29f4bccdc2
Author: ldg-smartling-sa <133769770+ldg-smartling-sa@users.noreply.github.com>
Date:   Fri Aug 11 16:36:50 2023 +0300

    File apps/ledger-live-desktop/static/i18n/en/app.json was translated to tr-TR locale

commit 3470c25b69c72a4918306ee58891f7c1724fc018
Author: ldg-smartling-sa <133769770+ldg-smartling-sa@users.noreply.github.com>
Date:   Fri Aug 11 16:36:46 2023 +0300

    File apps/ledger-live-desktop/static/i18n/en/app.json was translated to es-ES locale

commit 3354b399f5c914cdf4445b353035d0ba7341ff20
Author: ldg-smartling-sa <133769770+ldg-smartling-sa@users.noreply.github.com>
Date:   Fri Aug 11 16:36:42 2023 +0300

    File apps/ledger-live-desktop/static/i18n/en/app.json was translated to ru-RU locale

commit d45e3c26039d4d7ec98285f554440da2d703109e
Author: ldg-smartling-sa <133769770+ldg-smartling-sa@users.noreply.github.com>
Date:   Fri Aug 11 16:36:38 2023 +0300

    File apps/ledger-live-desktop/static/i18n/en/app.json was translated to pt-BR locale

commit 0849bdd2b544de9b96d3c05f57d7b4065882f71c
Author: ldg-smartling-sa <133769770+ldg-smartling-sa@users.noreply.github.com>
Date:   Fri Aug 11 16:36:34 2023 +0300

    File apps/ledger-live-desktop/static/i18n/en/app.json was translated to ko-KR locale

commit 5e2f267788a4fcbac2840d4083338314efb63274
Author: ldg-smartling-sa <133769770+ldg-smartling-sa@users.noreply.github.com>
Date:   Fri Aug 11 16:36:30 2023 +0300

    File apps/ledger-live-desktop/static/i18n/en/app.json was translated to ja-JP locale

commit cee53aa572817c339b85ab2064e0ebf502047e9e
Author: ldg-smartling-sa <133769770+ldg-smartling-sa@users.noreply.github.com>
Date:   Fri Aug 11 16:36:27 2023 +0300

    File apps/ledger-live-desktop/static/i18n/en/app.json was translated to de-DE locale

commit 1ed24d10a2e4fb0dcbb00506a08220d74c93055b
Author: ldg-smartling-sa <133769770+ldg-smartling-sa@users.noreply.github.com>
Date:   Fri Aug 11 16:36:23 2023 +0300

    File apps/ledger-live-desktop/static/i18n/en/app.json was translated to fr-FR locale

commit b2bba162b62b7bbc59a4780f6169980cd34f61a9
Author: ldg-smartling-sa <133769770+ldg-smartling-sa@users.noreply.github.com>
Date:   Fri Aug 11 16:36:19 2023 +0300

    File apps/ledger-live-desktop/static/i18n/en/app.json was translated to zh-CN locale

commit 8a0510d161d47630a3dcfc7599876284f8d12c3d
Author: ldg-smartling-sa <133769770+ldg-smartling-sa@users.noreply.github.com>
Date:   Fri Aug 11 16:36:16 2023 +0300

    File apps/ledger-live-desktop/static/i18n/en/app.json was translated to ar-AE locale

commit 0ad0079e8c2c0d2e4dcd8a5d42945797b6d696dc
Author: Kevin Le Seigle <31533861+KVNLS@users.noreply.github.com>
Date:   Fri Aug 11 15:34:32 2023 +0200

    LLM - Storyly update (#4311)

    * chore: update Storyly to 2.0

    * fix: storyly seen behavior

commit 2ed5544ac06e9dc16a7e73026e81eecf4d500e9a
Merge: 9e24e81f11 9aa061e035
Author: Gregor Gilchrist <87659842+ggilchrist-ledger@users.noreply.github.com>
Date:   Fri Aug 11 14:42:33 2023 +0200

    Merge pull request #4322 from LedgerHQ/feat/live-7440-change-locale-to-lang-llm

    feat: changing locale prop on the earn app to use the language instead

commit 9e24e81f11b1728783f4134f2f9304bd28dac1f3
Merge: 253663690f 2c6d2c6ce4
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Fri Aug 11 14:36:57 2023 +0200

    Merge pull request #4318 from LedgerHQ/support/better-libs-tests

    chore: split ui test from libs tests

commit 2c6d2c6ce49deb6228439193e095eebee6f23347
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Fri Aug 11 11:56:23 2023 +0200

    chore: split ui test from libs tests

commit 9aa061e035c66abcc64b51ac54be99057403b16a
Author: Gregor Gilchrist <gregor.gilchrist@ledger.fr>
Date:   Fri Aug 11 13:46:47 2023 +0200

    fix: removed locale selector import

commit 53d0f2a7ff9c96a95b874dd8a4e16f1aa23363d3
Author: Gregor Gilchrist <gregor.gilchrist@ledger.fr>
Date:   Fri Aug 11 13:36:55 2023 +0200

    fix: removed locale selector

commit 9cc24cd11528094ce19a524e6fab0f907bd8bd8b
Author: Gregor Gilchrist <gregor.gilchrist@ledger.fr>
Date:   Fri Aug 11 12:31:31 2023 +0200

    feat: changing locale prop on the earn app to use the language

commit 253663690f3b613cbd23d95ee7df49ed947f663a
Merge: 453750c162 e36cc8cab3
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Fri Aug 11 10:45:37 2023 +0200

    Merge pull request #4298 from LedgerHQ/support/split-lib-tests

    chore: split tests in test.yml

commit 453750c162146939515369d4fa63e64de622016a
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Fri Aug 11 10:39:39 2023 +0200

    chore(deps): update dependency @playwright/test to v1.37.0 (#4312)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 151ae543093d646b332851c6873ec7e735830445
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Fri Aug 11 10:28:42 2023 +0200

    fix(llm/analyticsconsole): workaround for collapsed items in scrollview (#4208)

commit a8a294c0e6ecd5c071bd08bcf5d37f0f9a7c8b2d
Merge: 802ec0db72 605ccd60c4
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Fri Aug 11 10:18:16 2023 +0200

    Merge branch 'develop' of github.com:LedgerHQ/ledger-live into feat/LLM-new-deposit-flow

commit 605ccd60c480aed47427e12bc4f52bae34b1e32b
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Fri Aug 11 09:50:07 2023 +0200

    chore(deps): update react-refresh monorepo (minor) (#4242)

    chore(deps): update react monorepo

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit b2fa2043b37368a8fe19ddc4b5297cd740f60381
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Fri Aug 11 09:49:09 2023 +0200

    chore(deps): update dependency react-native-web to ~0.19.0 (#4223)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit e36cc8cab310e28e14b78d1270fb0bf65a578a7b
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Thu Aug 10 15:17:22 2023 +0200

    chore: split tests in test.yml

commit 802ec0db72435df2894a6b640a85eb627aac70fc
Author: Martin CAYUELAS <112866305+mcayuelas-ledger@users.noreply.github.com>
Date:   Thu Aug 10 17:50:57 2023 +0200

    🐛 [FIX]: Fix animation on banners in step 2 & step 3-bis (#4308)

commit 82f9d775fc560843c19c9a0b25648cbe60d2b190
Author: @greweb <renaudeau.gaetan@gmail.com>
Date:   Thu Aug 10 17:47:19 2023 +0200

    chore: add resiliency on importing accounts that fail to be decoded (#4307)

commit f2effc6366163b65eaac9f64865e213dd63f116e
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 10 17:24:31 2023 +0200

    chore(deps): update dependency concurrently to v8 (#4292)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 22cc4b9fb3de53ace9ec0448184d5910ba988cf0
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 10 17:24:23 2023 +0200

    chore(deps): update storybook-react-native monorepo to v6.5.6 (patch) (#4286)

    chore(deps): update storybook-react-native monorepo to v6.5.6

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit ed3252d5a8a35b524e67d4c7c832f5b3d04c74e0
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 10 17:24:14 2023 +0200

    chore(deps): update dependency dotenv to v16 (#4293)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit f15c0a8a0ed3d4537ba1925efcf59b0f7e83d8f3
Merge: 0db5fc92c5 29406f0d0c
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Thu Aug 10 17:19:16 2023 +0200

    Merge pull request #4300 from LedgerHQ/renovate/tsup-7.x

    chore(deps): update dependency tsup to v7

commit 0db5fc92c5c757a408cf2b9d2e532a16a7db9f6e
Merge: 889d799727 f8f3d594a8
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Thu Aug 10 17:17:10 2023 +0200

    Merge pull request #4301 from LedgerHQ/renovate/yargs-17.x

    chore(deps): update dependency yargs to v17

commit 29406f0d0cad5cd4115d4fc66ca16267a89f9248
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 10 13:43:08 2023 +0000

    chore(deps): update dependency tsup to v7

commit 889d7997277f457452c01491d9645153ac3a4dac
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 10 15:34:00 2023 +0200

    chore(deps): update dependency isomorphic-unfetch to v4 (#4295)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 7415ca2a67308d914a58d744bcaef47c48fae074
Author: Gabriel Restori Soares <gabriel.soares@ledger.fr>
Date:   Thu Aug 10 15:27:20 2023 +0200

    fix: errors handling on new fw update (#4152)

    This PR fixes several bugs on the new firmware update on LLM:

    - an issue on how "user solvable" errors were handled on the logic and UI of the fw update
    - a bug on errors that were supposed to be ignored (e.g. an inexistent lockscreen image when backing up) and were actually being reported to the user
    - a bug when a “allow manager”/secure channel was refused as the beginning of the fw update
    - a bug on the battery check UX that made the app re-navigate to the firmware update automatically once the user exited it
    - a bug on the battery check device action that was updating and keeping (to a lower value) the unresponsive timeout due to race conditions. It was creating incorrect locked device errors.

    And it adds a first step to display the changelog of the fw update, handling correctly when a user leaves the fw update from this first step

    Co-authored-by: Alexandre Magaud <alexandre.magaud@gmail.com>

commit f8f3d594a8466fc09512aa3acdec79a9ef45936b
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 10 13:24:08 2023 +0000

    chore(deps): update dependency yargs to v17

commit 9c1d3151a85dd9f7a4ace0f10bdacd092e166b5d
Merge: 44eb63c076 c54f1a8d17
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Thu Aug 10 14:01:29 2023 +0200

    Merge pull request #4287 from LedgerHQ/support/lld-warnings-cardano

    [support] Add missing keys to RN components

commit 44eb63c076a01349ebc152ae505f463f6baeab29
Merge: 75ef6eb224 8beba466d8
Author: Gregor Gilchrist <87659842+ggilchrist-ledger@users.noreply.github.com>
Date:   Thu Aug 10 13:56:23 2023 +0200

    Merge pull request #4274 from LedgerHQ/feat/live-7440-add-region-and-currency-to-earn-params

    LLM: added locale to Earn App URL

commit 5b40b5372a2d2f2ced733ef70b83502f4f269c70
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 10 10:40:40 2023 +0000

    chore(prerelease): :rocket: release prerelease [LLD(2.66.0-next.2), LLM(3.29.0-next.2)]

commit d3df280539cc17f295fd178a2fddd2d1fb7ba59a
Author: Hakim <59644786+haammar-ledger@users.noreply.github.com>
Date:   Thu Aug 10 12:32:09 2023 +0200

    [bugfix] Secret Network feature flag (#4279)

    * Fix feature flag for Secret Network

    * Add changeset

    * Use typing to enforce correct syntax

    * lint

commit c54f1a8d17bd7d642a43de63420dcd3dda3892e2
Author: haammar-ledger <hakim.aammar-ext@ledger.fr>
Date:   Thu Aug 10 12:09:24 2023 +0200

    Add changeset

commit 07ddbc4d1c9905320b027e0c73399cb766fee50b
Author: haammar-ledger <hakim.aammar-ext@ledger.fr>
Date:   Thu Aug 10 12:08:38 2023 +0200

    Fix lint warnings: add missing keys to RN components

commit 8beba466d8aa3d38fd48f6f5aca3cf5a8235111d
Author: Gregor Gilchrist <gregor.gilchrist@ledger.fr>
Date:   Thu Aug 10 09:11:37 2023 +0200

    chore: removing redundant import

commit 95c9573979d7a1cf435ac3b3b377f76d605ca214
Author: Gregor Gilchrist <gregor.gilchrist@ledger.fr>
Date:   Wed Aug 9 16:31:40 2023 +0200

    chore: added changeset

commit fdcbf5a103e99bae02ab930e7570df405d8ab6b8
Author: Gregor Gilchrist <gregor.gilchrist@ledger.fr>
Date:   Wed Aug 9 15:57:10 2023 +0200

    feat: added locale to mobile URL

commit 75ef6eb2240901a049fb11724760642b891c333a
Author: @greweb <renaudeau.gaetan@gmail.com>
Date:   Thu Aug 10 11:07:58 2023 +0200

    chore(llm): introduce device actions hooks, PO model, loadBleState and loadAccounts helpers in tests (#4169)

    * chore(llm): improve typing of e2e bridge

    * chore: introduce device action hooks + tests basic cases

commit b1329e2d5b17e62dd9ec2d88b9d80cc32423b883
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Thu Aug 10 10:55:52 2023 +0200

    fix(lld/featureflagssettings): performance issue due to style providers (#4280)

commit 4f05756ed9fa3367696e3e5d2e861ed7a556f06d
Merge: 0c35e2c160 1407d519f4
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Thu Aug 10 10:48:37 2023 +0200

    Merge pull request #4240 from LedgerHQ/renovate/patch-nextjs-monorepo

    chore(deps): update nextjs monorepo to v13.4.13 (patch)

commit 0c35e2c160dcfb362f60c4e848f8db74aac72fad
Merge: e71368cb16 7ea1cc03ab
Author: Kieran Allen <132384348+kallen-ledger@users.noreply.github.com>
Date:   Thu Aug 10 09:42:57 2023 +0100

    Merge pull request #4199 from LedgerHQ/feat/LIVE-7863

    [Feat/LIVE-7863]: Swap Form - Edit Rates tracking updates

commit 1407d519f43e8d216b0598726dcaff75b8ad130a
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 10 08:11:21 2023 +0000

    chore(deps): update nextjs monorepo to v13.4.13

commit e71368cb16ad112b6a238b5a6ea496798185fa69
Merge: d1c0e8eec9 ab9692d2d7
Author: Gregor Gilchrist <87659842+ggilchrist-ledger@users.noreply.github.com>
Date:   Thu Aug 10 09:44:02 2023 +0200

    Merge pull request #4273 from LedgerHQ/feat/live-7439-add-region-and-currency-to-earn-params

    feat: adding locale and language to params

commit ab9692d2d75c9b85e5bffddc2fa111ead5f72f62
Author: Gregor Gilchrist <gregor.gilchrist@ledger.fr>
Date:   Thu Aug 10 09:25:30 2023 +0200

    chore: removing redundant type

commit f3b9b4365c0ebf9843f0e7fc32049a71a69e78f8
Author: Gregor Gilchrist <gregor.gilchrist@ledger.fr>
Date:   Wed Aug 9 16:43:56 2023 +0200

    chore: reverting currencyId to previous

commit 83141701ee32e682b82bca1e5d4b761257d5559a
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@u…
davidecarpini added a commit to vechainfoundation/ledger-live that referenced this pull request Sep 4, 2023
commit 18b4a47b4878a23695a50096b7770134883b8a2e
Author: hzheng-ledger <71653044+hzheng-ledger@users.noreply.github.com>
Date:   Mon Sep 4 11:52:10 2023 +0200

    Support/LIVE-8495 Fix Elrond bot test (#4578)

    * fix: elrond bot tests

    * fix: update changeset

    * fix: remove unnecessary code

    * fix: remove unnecessary code

commit ea97040266cc0b0b084882739bd38a90908d2b98
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Mon Sep 4 10:34:32 2023 +0200

    Feat/live 8638 LLM Stax Early Security Checks pixel polish (#4519)

    * fix(llm/earlysecuritychecksbody): pixel polish

    * fix(llm/GetDeviceScreen): missing unit warning

    * fix(llm/earlysecuritychecks): icons and layout of drawer

    * fix(llm/error rendering): DRY to make it reusable, w/ new icons

    * fix(llm): lint

    * fix(llm/earlysecuritychecks): rendering of completed steps: title only

    * refactor(llm/BleDevicePairing): use ErrorBody

    * fix(llm/ChangeDeviceLanguagePrompt): pixel polish

    * fix(llm/DeviceLanguageInstalled): pixel polish + new wording

    * style(llm): rename ErrorBody into GenericInformationBody

    * style(llm): lint

    * chore(llm): changeset

    * fix(llm/earlycheck-fwupdate): pixel polish

    * fix(nativeui/verticalstepper): pixel polish

    * refactor(llm/error rendering): replace renderedInType by a context

    * refactor(llm/GenericInformationalDrawer|View): use GenericInformationBody

    * fix(llm/esc): spacing in drawer

    * style(llm): rename DrawerContext to IsInDrawerContext

    * refactor(llm/IsInDrawerContext): add default provider

    * fix(nativeui/VerticalTimeline): fix aspect of lines

    * chore: changeset

    * fix(llm/deviceaction/rendererror): spacing for Bluetooth error

    * fix(llm/GenericInformationalDrawerContent): alignself stretch

commit de5b4d2a4f2909fe94d54df4de6df92fdb86f39c
Merge: 04206a2939 30decb6882
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Fri Sep 1 17:49:47 2023 +0200

    Merge pull request #4575 from LedgerHQ/support/fix-broken-actions

    fix: broken fetch in actions

commit 04206a2939bb8bb807a9f57a175f054c613e3d57
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Fri Sep 1 16:06:40 2023 +0200

    fix(llm/synconboarding): add device to known devices as soon as device is seeded (#4556)

    * fix(llm/synconboarding): add device to known devices as soon as device seeded

    * chore: changeset

commit 8f99e87e43da87ac9cc768eddfb183ebc88cebb2
Author: mitchellv-ledger <105203468+mitchellv-ledger@users.noreply.github.com>
Date:   Fri Sep 1 15:03:36 2023 +0100

    Bugfix/earn reloading infinite (#4569)

    * feat: add new tag to earn in main side bar

    * feat: cache live app manifest

    * Revert "feat: add new tag to earn in main side bar"

    This reverts commit 1ebf470fb4ea0d6292302b64956f10925e3ead94.

    * chore: add changeset

    ---------

    Co-authored-by: fstream9 <mvivanti9@gmail.com>

commit 30decb6882a4a5618362e5bf7e75f5b7d1426284
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Fri Sep 1 15:48:06 2023 +0200

    fix: link to filesystem instead of @develop for bot composite

commit 4f2d90b0f7c95f7377c59c9d1cbee28a6ed7ef27
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Fri Sep 1 14:30:35 2023 +0200

    fix: broken fetch in actions

commit 2fbe4999ff4817ab1918cf218d2c4eb85ad4dadc
Merge: ca8d064bab 6852277c5b
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Fri Sep 1 14:19:08 2023 +0200

    Merge pull request #4509 from LedgerHQ/feat/LIVE-8386

    [LLD] - [LIVE-8386] - Add Storyly SDK to Ledger Live Desktop

commit ca8d064babf4df3babbdd4ba03f4be742d805edb
Author: mitchellv-ledger <105203468+mitchellv-ledger@users.noreply.github.com>
Date:   Fri Sep 1 11:57:52 2023 +0100

    feat: add new tag to earn in main side bar (#4552)

    Co-authored-by: fstream9 <mvivanti9@gmail.com>

commit ea5e58a162d94355722a986192b832ba045d2021
Merge: ee8bfd6b98 6c5a27ac02
Author: Côme Grellard <come.grellard@ledger.fr>
Date:   Fri Sep 1 12:06:37 2023 +0200

    Merge pull request #4557 from LedgerHQ/bugfix/LIVE-9191-deposit-address-verification-device-selection

    Bugfix/live 9191 deposit address verification device selection

commit ee8bfd6b9895bfca40fe83ccf3c9ba1d3e714c88
Merge: c15eab0a94 b2e8c1053e
Author: Kevin Le Seigle <31533861+KVNLS@users.noreply.github.com>
Date:   Fri Sep 1 11:33:41 2023 +0200

    Merge pull request #4476 from LedgerHQ/support/lld-add-modelId-export

    fix: Add modelId and modelIdList to metadata on export

commit c15eab0a946767c8d861db5c01a032bb136dbbcd
Merge: bfd4fef405 282962fef6
Author: Maxence LE GALL <39890664+mle-gall@users.noreply.github.com>
Date:   Fri Sep 1 10:03:08 2023 +0200

    Merge pull request #4562 from LedgerHQ/feat/LIVE-8595-LIVE-8598/finalStaxPolishesLLD

commit 282962fef6c80c52344f2fe5dc20c7fcd461142f
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 31 21:44:40 2023 +0000

    test(lld): update screenshots (ubuntu-latest)  lld, test, screenshot

commit 22aafdce45871dde12890134113890e7bfefa87f
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 31 15:56:29 2023 +0000

    test(lld): update screenshots (windows-latest)  lld, test, screenshot

commit 9e212755afb7b80fbce08545a80bd528a6c4e803
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 31 15:47:00 2023 +0000

    test(lld): update screenshots (macos-latest)  lld, test, screenshot

commit 6852277c5bb8a34cb7715f2987420816526abb7f
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Thu Aug 31 17:34:12 2023 +0200

    Add type on layout + fix lint

commit 808ce40d24b428dabab74b2780057041adadbe2b
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Thu Aug 31 17:04:13 2023 +0200

    Added classic layout as default

commit 63ad53e0be78e01a75c2514b8af3c9c2ced41426
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Thu Aug 31 16:52:39 2023 +0200

    Fix naming for Storyly + Update to latest version of Storyly + add update on lang change

commit 61b1f38193dc53824e35e3cf2d683330846d9f91
Author: male-gal <maxence.le-gall@ledger.fr>
Date:   Thu Aug 31 16:17:57 2023 +0200

    feat(LLD/Stax): Final pixel polishes (Connect device + post onboarding)

commit 6c5a27ac029d473b97e1ba93e7f1842b4aa4ea7c
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Thu Aug 31 16:05:17 2023 +0200

    fix(llm): Deposit
    Fixed the following issue : User cannot select device on device selection screen when verifying address a second time

commit bfd4fef405f832489cc5258330e6483260c896d2
Author: Hakim <59644786+haammar-ledger@users.noreply.github.com>
Date:   Thu Aug 31 15:46:33 2023 +0200

    Hardcode Ledger validator details for Solana (#4540)

    * Hardcode Ledger validator details for Solana

    * Add changeset

    * lint

    * Only use hardcoded data as backup if not available from backend

    * typo

commit d6935a27b4dcfcfcf983e5b861eddfa4a783f168
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 31 14:34:16 2023 +0200

    chore(deps): update dependency eslint-config-prettier to v9 (#4529)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 85a63d38fc83195fda9c072e2d50b63dda608f46
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 31 14:33:35 2023 +0200

    fix(deps): update formatjs monorepo (major) (#4501)

    fix(deps): update formatjs monorepo

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit e9e79a3d4d5ec84cf3995e1227bf750ad2884407
Merge: efd119dc7c 3ec5739f8a
Author: Kieran Allen <132384348+kallen-ledger@users.noreply.github.com>
Date:   Thu Aug 31 13:03:28 2023 +0100

    Merge pull request #4534 from LedgerHQ/feat/LIVE-9136

    [feat/LIVE-9136]: add api and helper hooks for v5 swap transition

commit efd119dc7c320715fff2feeffedbaaf1e78b7583
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Thu Aug 31 11:46:38 2023 +0200

    Bugfix/live 8464 llm contexts improvements (#4453)

    * chore(llm): cleanup dead code DelayedTrackingProvider

    * style(llm): rename AdjustProvider into AdjustSetup (not a provider)

    * refactor(llm/AnalyticsProvider): unused provider

    * style(llm): rename ButtonUseTouchable into ButtonUseTouchableContext

    * refactor(terms): get rid of the useless context, rely solely on react-redux

    * refactor(llm): AnalyticsContext.Provider in its own component

    * docs(llm/terms): improve comment

    * chore: changeset

    * style(llm/SegmentSetup): improve readability

commit d439c49900506c08ebf079a99740b0d9681915fd
Merge: cad1444fbf 7d28d25f15
Author: Stephane Lieumont <118977988+stephane-lieumont-ledger@users.noreply.github.com>
Date:   Thu Aug 31 11:38:31 2023 +0200

    Merge pull request #4543 from LedgerHQ/bugfix/react-ui-checkbox-console-error

    fix(react-ui): fix checkbox component console error

commit cad1444fbfcf7d05992e03c44e28ec8ecb024d0d
Merge: 81f0e92dfa 66f699af1a
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Thu Aug 31 11:37:42 2023 +0200

    Merge pull request #4539 from LedgerHQ/support/update-actions

    Update some actions to remove the use of isomorphic-unfetch in favor of `node`'s fetch

commit 3ec5739f8a4e3ff81da468cd91036b7b271dfd06
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Thu Aug 31 10:27:35 2023 +0100

    fix: update tests, add deps and changeset

commit 7d28d25f154de22bb9e69f57e924de5ad0f1aa57
Author: Stephane Lieumont [LEDGER-EXT] <stephane.lieumont-ext@ledger.fr>
Date:   Thu Aug 31 11:11:55 2023 +0200

    fix(react-ui): remove readOnly

commit 464bd265914d34445883b97b9762fb83cf4dd888
Author: Stephane Lieumont [LEDGER-EXT] <stephane.lieumont-ext@ledger.fr>
Date:   Thu Aug 31 11:05:39 2023 +0200

    fix(react-ui): replace readOnly by onChange property

commit a18628b55ad7375ae49acb2b5686d288b804ce08
Author: Stephane Lieumont [LEDGER-EXT] <stephane.lieumont-ext@ledger.fr>
Date:   Thu Aug 31 08:18:25 2023 +0200

    fix(react-ui): linter ci

commit 916d6975e52f4f83291a9ce1a3e7e60dbccb5b20
Author: Stephane Lieumont [LEDGER-EXT] <stephane.lieumont-ext@ledger.fr>
Date:   Thu Aug 31 07:53:15 2023 +0200

    fix(react-ui): fix checkbox component console error

commit 81f0e92dfabfcaf05616a42774f4ce5df0bf1411
Merge: fb4d9f068a 67fafeeeea
Author: Mohammed Almujil <130482667+mohammed-ledger@users.noreply.github.com>
Date:   Wed Aug 30 18:01:10 2023 +0100

    Merge pull request #4537 from LedgerHQ/support/fix-broken-env-link

    Support: fix broken env link

commit 66f699af1af0988a470422143a4b298c7f01e575
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Wed Aug 30 17:57:17 2023 +0200

    chore: update actions

commit 67fafeeeeac31b1993d6297b9660f863bd42cb75
Merge: 46f478c1f1 fb4d9f068a
Author: Mohammed Almujil <mohammed@ledger.fr>
Date:   Wed Aug 30 17:04:14 2023 +0100

    Merge branch 'develop' into support/fix-broken-env-link
    rebase branch

commit 46f478c1f12565b1be24147ad8d2b72a6c5bb6c2
Merge: 3e082826f1 1c6deb2336
Author: Mohammed Almujil <mohammed@ledger.fr>
Date:   Wed Aug 30 15:46:22 2023 +0100

    Merge branch 'develop' into chore/fix-broken-env-link

commit 23acb640e10ceebf60b12e89f58d1c889a029795
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Wed Aug 30 14:37:15 2023 +0100

    feat: add helper functions

commit fb4d9f068a8fb8c839e17d677c384b77670db1d9
Merge: 1c6deb2336 41a38e953b
Author: Maxence LE GALL <39890664+mle-gall@users.noreply.github.com>
Date:   Wed Aug 30 15:02:41 2023 +0200

    Merge pull request #4518 from LedgerHQ/feat/LIVE-8610/ProviderIconsRemoval

    feat(IconsUI/ReactUI): ProviderIcons removal from Design System

commit ec3d96373e46ef3d10c036c9f74b098871bdb837
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Wed Aug 30 13:22:58 2023 +0100

    fix: update test

commit e421b6705157e822ee2ec6719a890a44d005324d
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Wed Aug 30 13:15:52 2023 +0100

    chore: add new line

commit 023991b9c761b4575447b17c8076c034e6eedd92
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Wed Aug 30 13:11:56 2023 +0100

    chore: remove tool-versions

commit a834e9038da978530e51b15189f4474ef5a3a0f0
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Wed Aug 30 13:11:01 2023 +0100

    feat: add helper hooks

commit 0a9340891d60eb078585335c32df0781287d71a3
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Wed Aug 30 13:08:39 2023 +0100

    feat: add api and helper hooks for v5

commit 3e082826f1b0cb099afb52d2109703ac42fa1f72
Author: Mohammed Almujil <mohammed@ledger.fr>
Date:   Wed Aug 30 10:57:02 2023 +0100

    chore: fix broken env link

commit 1c6deb2336a8b76517cc4d367f76dca24f9228dc
Author: Hakim <59644786+haammar-ledger@users.noreply.github.com>
Date:   Wed Aug 30 11:22:50 2023 +0200

    [bugfix] Fix regression when serializing cosmos operation extra (#4528)

    * Fix regression when serialiazing cosmos operation extra

    * Add changeset

    * [WIP]fix: cosmos unit tests (#4532)

    fix: cosmos unit tests

    ---------

    Co-authored-by: hzheng-ledger <71653044+hzheng-ledger@users.noreply.github.com>

commit e0362e580f4f309615b9cb5a905b3483daf9148f
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 29 23:47:37 2023 +0200

    Add Storyly debugger + sort imports

commit 3dc9ba19b73ddd3c1a262df6339e16279d9b0aa7
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Tue Aug 29 14:38:17 2023 +0200

    chore(deps): update dependency @testing-library/react-hooks to v8 (#4514)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 52bb4607d820bca2d1e2d4b3c33b452c333be6df
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Tue Aug 29 14:38:02 2023 +0200

    chore(deps): update dependency @types/node to v18 (#4516)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 41a38e953b17075b5ab7bec307c147d8f74b7501
Author: male-gal <maxence.le-gall@ledger.fr>
Date:   Tue Aug 29 14:32:01 2023 +0200

    feat(IconsUI/ReactUI): ProviderIcons removal from Design System

commit 1a3205b3c7abaefb39276565fce5541a6a7aaed2
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Tue Aug 29 14:26:23 2023 +0200

    chore(deps): update dependency @testing-library/jest-dom to v6 (#4511)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit c6921f497399c9b48b89b460e39cae309571e0d7
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Tue Aug 29 14:20:33 2023 +0200

    chore: update pnpm in actions with same version as prototools (#4515)

commit a46453e291e52f9c832cdcc058d9fa951519888f
Author: @greweb <renaudeau.gaetan@gmail.com>
Date:   Tue Aug 29 12:40:03 2023 +0200

    chore: update pnpm (#4498)

commit 5d20c326a038a430a38f28815ba65af71152118b
Author: sarneijim <38540290+sarneijim@users.noreply.github.com>
Date:   Tue Aug 29 11:39:12 2023 +0100

    feat: support customFees in swap web app mode (#4174)

    * feat: support customFees in swap web app mode

    * fix: add other custom params

    * feat: update wallet-api dependencies

    * fix: fix async call getCustomFeesPerFamily

    * fix: fix typecheck

    * refactor: move getCustomFeesPerFamily to common

    * fix: fix lint

    * fix: remove feesStrategy as mandatory to open swap web app

    * fix: add convertToNonAtomicUnit utils

    * chore: update wallet-api server call after upgrade

    * fix: fix lint

commit 1e5c2e53a38a43cfe21fa00a049c0c879ad52571
Author: Gaëtan Renaudeau <renaudeau.gaetan@gmail.com>
Date:   Tue Aug 29 12:31:14 2023 +0200

    chore: renovate config to allow @electron/* pkgs

commit a35135437bef6fcd44925a240f0f4894eeb565da
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 29 12:19:47 2023 +0200

    Add changeset

commit d398cd62a8bdff0b7d72d7bed7a021c2442fbf77
Merge: e12993f480 074d99c9e0
Author: Stephane Lieumont <118977988+stephane-lieumont-ledger@users.noreply.github.com>
Date:   Tue Aug 29 11:05:20 2023 +0200

    Merge pull request #4468 from LedgerHQ/feat/protect-2420-update-cta-recover-copy

    feat(protect-2420): update recover wording

commit d1824475e77c92774dfa8ca93d3e1eebe3a6b1f3
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 29 09:52:33 2023 +0200

    Add remarks

commit f82da707b20ddd70fa71a2d16957cbd86a76c018
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 29 09:41:12 2023 +0200

    Add comments

commit 5a9da71b9398f6a69a7ea7ee0456009206599a19
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Sat Aug 26 17:43:37 2023 +0200

    Added storily-web, added useStorily hook, add StorilyBase component, add StorilyDefaultStyle

commit e12993f4804443a142db7b52f66a1d912caeab5f
Author: Landry Monga <lvndry@protonmail.com>
Date:   Mon Aug 28 19:40:48 2023 +0200

    Polkadot bridge mock (#4456)

    * polkdadot bridge mock

    * test(lld): update screenshots (macos-latest)  lld, test, screenshot

    ---------

    Co-authored-by: lvndry <lvndry@proton.me>
    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 1f9626aa9f1503cb7f23ef23d431932590fd25da
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Mon Aug 28 17:39:55 2023 +0200

    chore: refine renovate rules

commit 06684aa6d7d90d409138297b606509646c3c730c
Author: @greweb <renaudeau.gaetan@gmail.com>
Date:   Mon Aug 28 17:33:25 2023 +0200

    chore: add /svg-icons in common tools (#4490)

commit 42a90710a7c68ea97b2f6867cda603116c76282f
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Mon Aug 28 16:58:20 2023 +0200

    chore: update renovate config

commit f55c6e4f9027e8277553af44334026a70ee3bdaa
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Mon Aug 28 16:45:11 2023 +0200

    Feat/live 8375 fw update redesign (#4471)

    * feat(llm/fwupdatebanner): new design

    * fix(llm/fwupdatebanner): loading state

    * chore: changeset

    * chore(llm): remove unimported code

    * chore(llm): cleanup comments

    * fix(llm/fwupdatebanner): loader color

commit 4901a78f780d230f29272a1b439914c6df31e991
Merge: 902f2ed757 a51494ccfa
Author: Maxence LE GALL <39890664+mle-gall@users.noreply.github.com>
Date:   Mon Aug 28 15:53:25 2023 +0200

    Merge pull request #4310 from LedgerHQ/feat/LIVE-8596/LLDSyncOnboardingPolish

    feat(LLD/Sync Onboarding): Pixel polishing

commit a51494ccfa4aa0eca08c51f9c3687b2831b0eccf
Author: male-gal <maxence.le-gall@ledger.fr>
Date:   Mon Aug 28 15:19:38 2023 +0200

    feat(LLD/Sync Onboarding): Pixel polishing

commit 902f2ed7570d82cc6aaafd5c1bb9f0372feeb4a5
Merge: 4d5ff97ba3 aed57fdf40
Author: Côme Grellard <come.grellard@ledger.fr>
Date:   Mon Aug 28 15:05:28 2023 +0200

    Merge pull request #4480 from LedgerHQ/support/LIVE-9078-llm-deposit-copy-updates

    support(llm): small deposit copy updates

commit 4d5ff97ba346365a7b88a446ab9ef7d1cbfbc17d
Merge: a3a46a0ce7 51bd69d5ab
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Mon Aug 28 14:14:06 2023 +0200

    Merge pull request #4483 from LedgerHQ/support/live-9091

    chore: prevent SYNC_SOME_ACCOUNTS log with empty accounts[]

commit a3a46a0ce74621851b4893cad77f593c510f328c
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 28 14:10:18 2023 +0200

    fix(deps): update dependency webpack to 4.46 (#4482)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 550fb40887552cab5914cd1cda1968597e296208
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 28 12:32:28 2023 +0200

    fix(deps): update dependency react-i18next to v11.18.6 (#4434)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 51bd69d5ab0332794edf5caff22d493596255c61
Author: Gaëtan Renaudeau <renaudeau.gaetan@gmail.com>
Date:   Mon Aug 28 11:52:26 2023 +0200

    chore: prevent SYNC_SOME_ACCOUNTS log with empty accounts[]

commit aed57fdf40744557c2b1693427ebe74405073ad7
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Mon Aug 28 10:32:12 2023 +0200

    support(llm): small deposit copy updates

commit d936c57630a64798998787717d9d6d1e1e35deb0
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Mon Aug 28 10:28:41 2023 +0200

    support(llm): small deposit copy updates

commit de06c81fd976a46fa8b637cef7d284602d46b16b
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Mon Aug 28 09:51:53 2023 +0200

    feat(llm/earlysecuritychecks): implemented tracking plan (#4475)

    * feat(llm/earlysecuritychecks): implemented tracking plan

    * fix(llm/esc/tracking): error drawer buttons tracking

commit b2e8c1053e57c763575c9c4d77d1daca8ef566fe
Author: KVNLS <kevin.leseigle@gmail.com>
Date:   Fri Aug 25 18:34:14 2023 +0200

    fix: Add modelId and modelIdList to metadata on export

commit 9578233038ecf35b3cbbb39519bfa8d3860d7056
Merge: 9090d33d87 b8d4e81ea6
Author: Côme Grellard <come.grellard@ledger.fr>
Date:   Fri Aug 25 16:49:14 2023 +0200

    Merge pull request #4408 from LedgerHQ/feat/LIVE-7718-send-tx-pending-indicator-warning

    💄 LLM - Send Tx Pending Warning

commit 9090d33d870329e64c36e30f02aad5254c0e7f28
Merge: 0cc83c5588 d68489789b
Author: Côme Grellard <come.grellard@ledger.fr>
Date:   Fri Aug 25 16:49:06 2023 +0200

    Merge pull request #4413 from LedgerHQ/feat/LIVE-7717-send-tx-pending-indicator-warning

    💄 LLM - add warning on send flow when a tx is pending

commit 0cc83c55887bf20bd14c69a355e75bc02df70448
Author: Chelsea Sanders <chelsea.sanders-ext@ledger.fr>
Date:   Fri Aug 25 16:45:52 2023 +0200

    chore: gen e2e screenshots (#4474)

commit c4c16e6a326040767747d38fe87c17ce5dd91b03
Author: Beth Swingler <beth.swingler-ext@ledger.fr>
Date:   Thu Aug 24 18:16:00 2023 +0100

    fix: add reuasable hook to use stake flow actions directly in any navigator; use directly in earn nav

commit 541447c58c98354cd8d211d05ecccf1067533f11
Merge: cd9579816d c4046d7c65
Author: Kieran Allen <132384348+kallen-ledger@users.noreply.github.com>
Date:   Fri Aug 25 14:39:48 2023 +0100

    Merge pull request #4390 from LedgerHQ/bugfix/LIVE-8928

    fix: don't pop from live app when verifying address

commit cd9579816d92807c8e1645b96ff9978fa7f9fc09
Author: sarneijim <38540290+sarneijim@users.noreply.github.com>
Date:   Fri Aug 25 14:09:11 2023 +0100

    fix: add deeplink track to llm and improve deeplink track lld (#4466)

    * fix: add deeplink track to llm and improve deeplink track lld

    * fix: fix typecheck

    * fix: remove decodeURI

    * fix: fix llm test

commit 9154178962b68ef974831ebff36d39d2e27d15e2
Author: Chelsea Sanders <chelsea.sanders-ext@ledger.fr>
Date:   Fri Aug 25 11:23:10 2023 +0200

    feat: web ptx player to load correct manifest (#4212)

commit 074d99c9e00dc2c181cd041e3902a88d8bb43921
Author: Stephane Lieumont <stephane.lieumont-ext@ledger.fr>
Date:   Fri Aug 25 10:20:05 2023 +0200

    feat(protect-2420): update recover wording

commit 1020f276322fe361585a56573091ec647fbd901e
Author: hzheng-ledger <71653044+hzheng-ledger@users.noreply.github.com>
Date:   Thu Aug 24 17:55:06 2023 +0200

    LIVE-8495 Fix: evm integration test (#4452)

commit 2480ba48e9af12b1c93d2d9c147c969d6380c2a3
Merge: b238109174 ed6da731dd
Author: Quentin Jaccarino <quentin.jaccarino@ledger.fr>
Date:   Thu Aug 24 16:51:18 2023 +0200

    Merge pull request #4461 from LedgerHQ/bugfix/access-restore-flow-onboarding

    fix: accessing restore flow from onboarding

commit d68489789bea4c71fa9c46a71ebd618fc45a03be
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Thu Aug 24 15:43:33 2023 +0200

    feat(llm): added a warning to the select recipient screen when there is already a send transaction pending

commit b238109174ab3cad39f9531639b32bf3778abc72
Author: Tim Schmidt <tim@launchbadge.com>
Date:   Thu Aug 24 06:38:34 2023 -0700

    fix: correctly encode transaction hash for hashscan (#3890)

    * fix: correctly encode transaction hash for hashscan

    * fix: snapshot

    * fix: lint

    * fix: add changeset

commit ed6da731dd196a76350b66db2301968bc3df3a05
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Thu Aug 24 15:25:16 2023 +0200

    fix: accessing restore flow from onboarding
    The base was missing to navigate in case the onboarding was the only screen present

commit 8e9df43a0cd00a2065b494439f300f96724b8eb8
Author: Hakim <59644786+haammar-ledger@users.noreply.github.com>
Date:   Thu Aug 24 15:04:21 2023 +0200

    [support] Rework Operation.extra (#4235)

    * Use coin-specific Operation and Operation extra for Algorand

    * Use coin-specific Operation and Operation extra for Polkadot

    * Rework Operation de/serialization

    * Use coin-specific Operation and Operation extra for Cardano

    * Use coin-specific Operation and Operation extra for Celo

    * Use coin-specific Operation and Operation extra for Cosmos

    * Use coin-specific Operation and Operation extra for Elrond

    * Use coin-specific Operation and Operation extra for Crypto.org

    * Better typing of SignedOperation type

    * Remove useless custom operationDetails on LLD for EVM

    * Use coin-specific Operation and Operation extra for InternetComputer

    * Remove unused extra from Ripple operation

    * Use coin-specific Operation and Operation extra for Solana

    * Use coin-specific Operation and Operation extra for Stacks

    * Use coin-specific Operation and Operation extra for Stellar

    * Use coin-specific Operation and Operation extra for Tezos

    * Stronger typing of the Operation.extra field

    * Use coin-specific Operation and Operation extra for Tron

    * Stronger typing for operations in the LLDCoinFamily type

    * Update unit test

    * Update README

    * Add changeset

    * Change definition of Operation to use generics

    * Rename SignedOperation.signatureRaw to rawData

    * Adapt UI to changes of Operation type

    * Fixes for Ethereum & Tron

    * eslint + minor fixes

    * Update README

    * TS fix

    * Fix small regression with Elrond

    * Sanitize validators in cosmos operations extra

    * lint

commit 8da383b3060b6ea58c077196aa658e07d90a1a11
Author: Landry Monga <lvndry@protonmail.com>
Date:   Thu Aug 24 13:08:14 2023 +0200

    Cardano Bridge Mock testing (#4376)

    * cardano bridge mock

    * account.spec.ts has ADA ticker

    * add mock cardanoResources

    * test(lld): update screenshots (macos-latest)  lld, test, screenshot

    * test(lld): update screenshots (ubuntu-latest)  lld, test, screenshot

    * test(lld): update screenshots (windows-latest)  lld, test, screenshot

    * correct error display

    * set transaction mock fees

    ---------

    Co-authored-by: lvndry <lvndry@proton.me>
    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit d1c93c2ef89fdc58651a0fa09c6c59ba56276e2a
Merge: 77f20592de 7889867856
Author: Côme Grellard <come.grellard@ledger.fr>
Date:   Thu Aug 24 11:59:41 2023 +0200

    Merge pull request #4415 from LedgerHQ/support/LIVE-8888-change-nps-copy

    💬  LLM - updated the tile of the enjoy screen in the nps flow

commit 77f20592de9d19b6f5da7534405164ecc89b9e0b
Merge: f9140a309a f111bd9ff4
Author: Côme Grellard <come.grellard@ledger.fr>
Date:   Thu Aug 24 11:46:42 2023 +0200

    Merge pull request #4414 from LedgerHQ/support/LIVE-9031-change-tx-alerts-copy

    💬 LLM - add a beta mention to the tx alerts button in the notifications settings

commit f9140a309ad1927c8ee424c36635451a7da0f3e2
Merge: adae9a8f61 b81268b1ab
Author: Quentin Jaccarino <quentin.jaccarino@ledger.fr>
Date:   Thu Aug 24 10:48:56 2023 +0200

    Merge pull request #4451 from LedgerHQ/bugfix/recover-restore-and-onboarding

    fix: recover restore and onboarding issues

commit adae9a8f61b8ce8f1bfa2f8858c661d3078c04a4
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 24 10:46:49 2023 +0200

    fix(deps): update dependency redux-thunk to v2.4.2 (#4441)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 78898678562b6db37bc0c44fa5f34ee308d9c48f
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Thu Aug 24 10:31:20 2023 +0200

    support(llm): hide original ratings entry point in the settings when the nps is enabled

commit d553f79ff8744494bce42b0e6b5fa00eb6149615
Author: C Ng <138497251+cng-ledger@users.noreply.github.com>
Date:   Thu Aug 24 09:21:09 2023 +0100

    bugfix(LIVE-7623): typings (#4247)

    * fix(LIVE-7623): typings

    * fix(LIVE-7623): changeset

    fix(LIVE-7623): prettier

    * fix(LIVE-7623): refactor exchange body content

    fix(LIVE-7623): replace types

    fix(LIVE-7623): optional rateTypes

    * fix(LIVE-7623): lint

    * fix(LIVE-7623): spelling mistake

    * fix(LIVE-7623): fix tests

    * fix(LIVE-7623): remove @ts-expect-error

commit bafa799361b57bca0d2473a6683bbaa91fa8c635
Author: sarneijim <38540290+sarneijim@users.noreply.github.com>
Date:   Thu Aug 24 09:16:26 2023 +0100

    fix: remove stake banner from nft receive flow (#4439)

    * fix: remove stake banner from receive nft flow

    * fix: add callback dependencies

commit b81268b1ab68c0ce4f70647bd104c32d2b32d844
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 23 20:18:25 2023 +0200

    fix: types because we removed the stax redirect screen types that was allowing anything

commit 2f32d8c86133213de4e921c11361b4387ad9f623
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 23 19:43:18 2023 +0200

    fix: missing recoverManifests

commit 1b1ee1e73b74ad85ca57064815bf193a8797585d
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 23 19:22:09 2023 +0200

    fix: update the redirectTo param for recover

commit f1b3b7ca0268267385319c2c037645843406c6f5
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 23 19:14:38 2023 +0200

    chore: remove the need to add recoverManifests for the deeplinks on mobile
    Also adds `protect-staging-v2` to the manifest list for the recover player header

commit 87a0a8b0dce2d36a34541f890697b4ffba258382
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 23 15:20:46 2023 +0200

    fix: recover restore and onboarding issues
    Fix desktop LNX onboarding back when coming from recover
    Skip genuine check when coming from recover to restore the device (it would be better to allow unseeded device on the genuine check screen instead)
    Send the deviceId to the recover app in order to avoid multiple device selection during the restore process
    Update the podfile to config the build settings with ccache support (You might need to check https://stackoverflow.com/a/70189990 for ccache to work correctly when building with xcode)
    Cleanup old RecoverStaxFlow screen
    Patch react-native-webview to add support for `allowsUnsecureHttps`
    Added `IGNORE_CERTIFICATE_ERRORS=1` to use `allowsUnsecureHttps` in the webview in dev same as for LLD
    Added `protect-local` & `protect-local-dev` manifest support in dev
    Update wallet-api dependencies

commit d6c1984620b1d7d8289cf73f5b782217f241c2e6
Author: Beth Swingler <beth.swingler-ext@ledger.fr>
Date:   Wed Aug 23 14:43:03 2023 +0100

    Bugfix/live 8936 earn llm get coins deeplink (#4407)

    * fix: buy coins navigation flow when no account live-8936

    * fix:  white empty space above Market live-8851, main nav button overlap end of earn screen

    * fix: revert plist, gradle, totalSteps

commit 5b87074232b96d838eacdbc3d7fe1687a53f68d5
Author: Alexandre Chabrolin <9203826+chabroA@users.noreply.github.com>
Date:   Wed Aug 23 15:39:22 2023 +0200

    use specific component in SignTransaction flow (#4417)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit d0948c64990926eee97f0d774b8d71ef87961a92
Merge: 6375c250a9 00c1159356
Author: Kieran Allen <132384348+kallen-ledger@users.noreply.github.com>
Date:   Wed Aug 23 13:58:04 2023 +0100

    Merge pull request #4421 from LedgerHQ/bugfix/LIVE-8914

    [Bugfix/LIVE-8914]: Info message not triggered when user accesses a coin from the Market tab

commit 6375c250a9a58b33e3dd1d6c96a96c7e46150298
Author: Adrien Lacombe <adrien.lacombe@ledger.fr>
Date:   Wed Aug 23 14:25:25 2023 +0200

    CAL update (#4449)

    * feat(ledgerjs): update cardano token

    * feat(ledgerjs-cal): update CAL

commit 032b68731f29a4faad2c84a51bda588507ccf45d
Author: Prateek Rathod <prateek@zondax.ch>
Date:   Wed Aug 23 17:25:34 2023 +0530

    Bugfix/stacks: Parsing unknown txns  (#4402)

    * fix(stx): reading raw txns of type other than token_transfer

    * chore: changeset

    * refac(stx): use maximum limit on txn fetch

    * test(stx): add unit test for op-build bugfix

commit 3aa1ab084a2637bb6bdec9069f37f07cd90c99e6
Author: Hedi EDELBLOUTE <hedi.edelbloute@gmail.com>
Date:   Wed Aug 23 12:19:04 2023 +0200

    change baker whitelist integration test (#4447)

commit 213b66a80f3751e4be7bcbab5bb9de3bc8db366a
Author: mitchellv-ledger <105203468+mitchellv-ledger@users.noreply.github.com>
Date:   Wed Aug 23 10:02:06 2023 +0100

    fix: no market data on market tab switching (#4432)

    * fix: no market data on market tab switching

    * fix: stop potential infinite loop

    ---------

    Co-authored-by: fstream9 <mvivanti9@gmail.com>

commit 5049231835eb2eb6777dea5ee9a8813b95ed1ccb
Author: mitchellv-ledger <105203468+mitchellv-ledger@users.noreply.github.com>
Date:   Wed Aug 23 09:53:39 2023 +0100

    Bugfix/back button hide market details (#4423)

    * fix: remove back button in market details when ptxEarn enabled

    * chore: changeset added

    * chore: add changeset

    ---------

    Co-authored-by: fstream9 <mvivanti9@gmail.com>
    Co-authored-by: sarneijim <sarneijim@gmail.com>

commit f444c5b284335091c81c85f8ab4a0044380606bf
Merge: 2bec4b7f08 36a6802a0d
Author: Kevin Le Seigle <31533861+KVNLS@users.noreply.github.com>
Date:   Wed Aug 23 10:44:21 2023 +0200

    Merge pull request #4445 from LedgerHQ/bugfix/close-nft-fullscreen-cta

    fix: close cta on NFT fullscreen

commit 36a6802a0d2e185c761b46cad1be66e900a06e73
Author: KVNLS <kevin.leseigle@gmail.com>
Date:   Wed Aug 23 09:30:53 2023 +0200

    fix: close cta on NFT fullscreen

commit 2bec4b7f080d6dc9a6b22805c0fa317ff55c7202
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Tue Aug 22 17:42:05 2023 +0200

    fix(llm/customlockscreen): differentiation between error messages (#4426)

    * fix(llm/customlockscreen): differentiation between error messages

    * chore: changeset

    * chore: changeset

commit 7002c6c8f9bcbc5c2387cb064f218c5e27c70315
Author: hzheng-ledger <71653044+hzheng-ledger@users.noreply.github.com>
Date:   Tue Aug 22 16:38:28 2023 +0200

    LIVE-8683 Update coreum staking doc url (#4429)

    chore: update coreum staking doc url

commit 850dad94dfb9f04f48b4c7a5d90cfed6777013d7
Author: mitchellv-ledger <105203468+mitchellv-ledger@users.noreply.github.com>
Date:   Tue Aug 22 14:34:17 2023 +0100

    feat: add safe area inset to earn screen (#4355)

    * feat: add safe area inset to earn screen

    * chore: add changeset

    ---------

    Co-authored-by: fstream9 <mvivanti9@gmail.com>

commit 0d9ad3599bce8872fde97d27c977ab24445afc3a
Author: hzheng-ledger <71653044+hzheng-ledger@users.noreply.github.com>
Date:   Tue Aug 22 15:29:22 2023 +0200

    Support/LIVE-7931 Evm mock test (#4353)

    * chore: add evm mock test

    * fix: add changeset

    * fix: unit tests

    * fix: unit tests

    * fix: update screenshots

    * fix: lld tests

    * test(lld): update screenshots (windows-latest)  lld, test, screenshot

    * test(lld): update screenshots (ubuntu-latest)  lld, test, screenshot

    * test(lld): update screenshots (macos-latest)  lld, test, screenshot

    * fix: refactoring

    * fix: remove useless code

    * fix: remove useless code

    * fix: remove useless code

    ---------

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 00c11593565ac8b370df77af13dc3f1d8de90914
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Tue Aug 22 12:12:56 2023 +0100

    chore: add changeset

commit 48706a552330f729ba748f0cb3365dc90316e06c
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Tue Aug 22 12:11:35 2023 +0100

    bugfix: market alert when click on disabled ptx service button

commit 626636487c4d59a48da76c9892ec16fea626f5f6
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Tue Aug 22 11:48:53 2023 +0200

    support(llm): updated the tile of the enjoy screen in the nps flow

commit f111bd9ff438701545ee8fbdb5f0d3214f05f5c8
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Tue Aug 22 11:41:49 2023 +0200

    support(llm): add a beta mention to the tx alerts button in the notifications settings

commit f8fb67491a8dadf6def6b893b018e82bb2db5b78
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Tue Aug 22 11:33:45 2023 +0200

    feat(llm): added a warning to the select recipient screen when there is already a send transaction pending

commit 2cc2e7eb48c18d5679710725cda124e0f458c5cd
Merge: c404482254 dd2f92881c
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 22 11:03:13 2023 +0200

    Merge pull request #4251 from LedgerHQ/feat/LIVE-7618

    [LLD] - [LIVE-7618] - Typescript improvements and rework of the language & locale components across LLD.

commit dd2f92881cccb36e6dcfa82d1e93ce3de76f03f2
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 22 10:44:13 2023 +0200

    Add changeset

commit c404482254771e6af369e720889b4b22a4fd64e0
Merge: 28b212d3e5 e1c18fc218
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 22 10:23:11 2023 +0200

    Merge pull request #4403 from LedgerHQ/feat/LIVE-7620

    [LLD] - [LIVE-7620] - Fixing ts-expect-error's

commit 28b212d3e5baaa2fc2892e4173900e4598e07d6c
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Tue Aug 22 10:01:21 2023 +0200

    fix(deps): update dependency @rnx-kit/metro-resolver-symlinks to v0.1.32 (#4404)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit b8d4e81ea68f232b452b570b2c49dcca5d7056ae
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Tue Aug 22 09:52:42 2023 +0200

    feat(llm): fixed conflict

commit 9470e2429c84996180c6a26857eb2a499dd21623
Merge: 268ebcfd48 d90f58c7b6
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Tue Aug 22 09:51:58 2023 +0200

    Merge branch 'develop' of github.com:LedgerHQ/ledger-live into feat/LIVE-7718-send-tx-pending-indicator-warning

commit 268ebcfd488dcf77802d756eb94dd547943f4fb1
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Tue Aug 22 09:43:12 2023 +0200

    feat(llm): changed the color of the operations to be orange when pending

commit e41cdcc7070f9042bf4cc3319d6829fba6b1ec8e
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Aug 21 15:11:46 2023 +0200

    fix: Remove unused imports + remove unused variable

commit 745241060973aa67adb1da85b434459a262fdf34
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 21 12:35:54 2023 +0000

    test(lld): update screenshots (ubuntu-latest)  lld, test, screenshot

commit d46b4d7c686757eca7abc38ef40d17c5d4cb479a
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 21 11:18:00 2023 +0000

    test(lld): update screenshots (windows-latest)  lld, test, screenshot

commit 2c6e18444f450d123bd53cbc1ae010107157648c
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 21 10:57:10 2023 +0000

    test(lld): update screenshots (macos-latest)  lld, test, screenshot

commit 04a086a54d331855f7e3344bcfcc3809d0912174
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Aug 21 12:17:23 2023 +0200

    fix: Add GenuineCheck to useDynamicUrl + improve i18 variables flow + clean code

commit 76cd11e15437302001246acedae014f436a1bf30
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Aug 21 10:41:44 2023 +0200

    fix: Re-order imports

commit 44d529f8072461a55e3e4e8e03f7d5ce32bf6b1f
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Aug 21 10:41:29 2023 +0200

    fix: Locale to LanguageLocale

commit 03c7e68c5e7a4104b3cdfab12d9fa79815814b77
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Aug 21 10:40:10 2023 +0200

    fix: Remove unused languages files + clean i18 config

commit 9de30feb494f61f02d51327d2f3b7381a8f0cc9e
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 8 16:27:33 2023 +0200

    fix: Fix Locale type + fix default language on region select

commit 82bfff02fde3a4a262e8f9a442ad3433d860af11
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 8 14:10:06 2023 +0200

    fix: Remove unused import

commit 3d84436740afa4f81bd099861086e8f4f6c71bcc
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 8 11:52:29 2023 +0200

    fix: Fix undefined on language device support + fix typecheck issues

commit f7fe027ce7801ba6c652074a0553e00a66627b0f
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Aug 7 15:41:40 2023 +0200

    fix: Code polish + fix lint + fix typings + add comments + buildLocales

commit 74e3d7823542356489866509090c40f324916a42
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Jul 31 12:21:49 2023 +0200

    fix: Change to new Language architecture

commit 6e483024e823396b45c76fc51a35aa9279569958
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Thu Jul 27 09:46:15 2023 +0200

    fix: Cleaning + remove getLanguages

commit 96cadfc3ab31d1d48b2ff90337546e09345a8fd5
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Thu Jul 27 09:30:58 2023 +0200

    fix: Remove EXPERIMENTAL_LANGUAGES env + improve typings on useDynamicUrl

commit d90f58c7b65a67f829627ec2678b96eca7f5934c
Merge: 87cbec4062 b3f6a72ca9
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Mon Aug 21 18:08:01 2023 +0200

    Merge pull request #4395 from LedgerHQ/renovate/i18next-20.x

    fix(deps): update dependency i18next to v20.6.1

commit 87cbec4062f95d2348d7dd134cb4f13f071425d5
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Mon Aug 21 17:54:31 2023 +0200

    Support/llm dependencies upgrade (#4385)

    * chore(llm, native-ui): update dependencies

    * chore(llm, native-ui): lockfiles

    * chore(llm, native-ui): upgrade react-native-svg in native-ui, changesets

    * fix(llm): react-native-svg props

commit 84b865f2edefc12a5ade0e868b423bfbf879aa8b
Merge: d1705f6ee5 9a7748c262
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Mon Aug 21 17:42:12 2023 +0200

    Merge pull request #4400 from LedgerHQ/renovate/patch-nextjs-monorepo

    chore(deps): update nextjs monorepo to v13.4.19 (patch)

commit d1705f6ee51d77bda045c3d188974636eb827704
Merge: aff1ac0024 86038c0ce0
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Mon Aug 21 17:39:30 2023 +0200

    Merge pull request #4391 from LedgerHQ/support/fix-env-typings

    fix: typings on live-env

commit 9a7748c2625bdec9147789b41940efab5acd589e
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 21 15:38:58 2023 +0000

    chore(deps): update nextjs monorepo to v13.4.19

commit aff1ac0024fa934165f51afb61bec27dba78d279
Author: Abdurrahman Sastim <106583189+abdurrahman-ledger@users.noreply.github.com>
Date:   Mon Aug 21 17:17:44 2023 +0200

    [B2CQA-1920] Detox : Fix Android Flaky tests (#4396)

    fix: android flaky tests

commit e1c18fc2185e1251c13629d14c615510b1efd9b5
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Aug 21 16:33:49 2023 +0200

    fix: Removed ts-expect-error & fixed it

commit 86038c0ce0230c50e1a24481f51a9fbc52953d4e
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Mon Aug 21 15:34:04 2023 +0200

    fix: live-common-tools

commit b630bb8c16bdc31c1f7344f2bd6bd6042eaf8310
Author: Hedi EDELBLOUTE <hedi.edelbloute@gmail.com>
Date:   Mon Aug 21 15:15:20 2023 +0200

    rename bot jobs (#4401)

commit f3f4745b20261b877a938a897b5ad24291fca8aa
Author: Hedi EDELBLOUTE <hedi.edelbloute@gmail.com>
Date:   Mon Aug 21 13:50:20 2023 +0200

    Bot : currencies/family filter, disable & mooncake/silicium non reg removed (#4207)

commit afd56df75f5c2edcab8b5565b1a8172f5247d50b
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Mon Aug 21 12:10:18 2023 +0200

    fix: cli typescript errors

commit 1b4321f363b1e2c93e2406dd327cd4d1def7b458
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Mon Aug 21 10:26:34 2023 +0200

    feat: remove env.ts from live-common

commit fde2fe79f1df69fffe80763cd6d9792fe9de1262
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Fri Aug 18 17:36:52 2023 +0200

    feat: rework some env typings for better inference

    feat: rework some env typings for better inference

commit 2cdbc483fa1df4aa1dae4c93c83cf06bb0676927
Author: Martin CAYUELAS <112866305+mcayuelas-ledger@users.noreply.github.com>
Date:   Mon Aug 21 11:56:55 2023 +0200

    🐛 [FIX] : Notifications get re-enabled when updating the app (#4397)

    * 🐛 [FIX] : Notifications get re-enabled when updating the app

    * add changeset

commit c4046d7c65bbc5a74771ce1c4f4377610f3b0f65
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Mon Aug 21 10:16:07 2023 +0100

    fix: use screen name instead of navigation name

commit a4648d5c78e21989c9d5a3de7c7df80e05672eef
Author: Alexandru Pislariu <57287326+AlexandruPislariu@users.noreply.github.com>
Date:   Fri Aug 18 16:59:02 2023 +0300

    Bugfix/multiversx delegation amount miscalculation (#4364)

    * Fixed withdraw modal and types (#17)

    Co-authored-by: Alexandru Pislariu <57287326+AlexandruPislariu@users.noreply.github.com>

    * Fixed the minimum staking balance calculation. (#18)

    * Updated the calculation condition.

    * Fixed the "delegationEnabled" flag.

    * Updated the minimum balance instances with a singular helper function.

    * Added changeset.

    * Fixed missing import.

    ---------

    Co-authored-by: Miro Mărgineanu <miro.margineanu@elrond.com>

commit b3f6a72ca9522f18d7649aba2fb513e3ebb2c5cf
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Fri Aug 18 13:24:34 2023 +0000

    fix(deps): update dependency i18next to v20.6.1

commit 3723b104e48be93e7233837742d8e757422e8e6e
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Fri Aug 18 12:28:38 2023 +0100

    chore: add changeset

commit e00998215f6518b6f51d61987189e467423cff2c
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Fri Aug 18 12:27:09 2023 +0100

    fix: don't pop from live app when verifying address

commit d0e10a779096e1bd3964b2996254f0670eec8ef8
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Fri Aug 18 12:09:03 2023 +0200

    [LLD] - LIVE-4380 - Fix and improve date formatting based on locale (#4319)

    * Fix locale not working on date + improve workflow by adding useDateFormatter hook

    * Typos

    * Removed unused file and replace date formatter

    * Init tests

    * Add tests for utilitary functions

    * Improve test

    * Add useFakeTimers in beforeAll hook

    * Revert dependencies

    * Fix lint

commit 3f36af31273aba263b79b3f161599ac089cfc6e7
Author: Martin CAYUELAS <112866305+mcayuelas-ledger@users.noreply.github.com>
Date:   Fri Aug 18 11:53:54 2023 +0200

    ⚰️ [SUPPORT] :  Remove old implementation of WalletConnect in LL (#4317)

    * Remove Old Wallet Connect from LLM

    * Remove old WalletConnect from LLD

    * 📝 Update doc LLC

    * Add changesets

    * Remove unused files

commit 0d5d7fadf8b2fda392bfc3d35357074370a91ee1
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Fri Aug 18 10:40:22 2023 +0200

    LIVE-5592 - remove RemoteConfig deprecated from LLD (#4380)

    chore: remove RemoteConfig deprecated from LLD - LIVE-5592

commit 10e5816803ffbac2383f75a9d55bb7b4be17a9f1
Merge: f2b3a62602 7569f444db
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Fri Aug 18 10:31:22 2023 +0200

    Merge pull request #4373 from LedgerHQ/renovate/patch-nextjs-monorepo

    chore(deps): update nextjs monorepo to v13.4.18 (patch)

commit f2b3a6260255770301c159b4a3e20c9c8e5c3b34
Merge: d031e69737 f25c592dc9
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Fri Aug 18 10:30:08 2023 +0200

    Merge pull request #4382 from LedgerHQ/support/trigger-release-after-hotfix

    ci: add automatic trigger after using release prepare hotfix

commit f25c592dc94876b292dd05ea0076bb6d1ce88c4d
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Fri Aug 18 10:15:20 2023 +0200

    ci: add automatic trigger after using release prepare hotfix

commit 7569f444db7a992f3210e91ad2c9f53cada5ca17
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Fri Aug 18 07:40:04 2023 +0000

    chore(deps): update nextjs monorepo to v13.4.18

commit d031e69737ac4b4d00890de477408dfa4870faf7
Author: Alon Herbst <aherbst@paypal.com>
Date:   Tue Aug 8 00:09:38 2023 +0300

    Add PYUSD token icon

commit 70b4603a6fa34453c6fa6dd89fb3ed12a1038366
Merge: b76fe4fb37 77cd7fc87c
Author: Kevin Le Seigle <31533861+KVNLS@users.noreply.github.com>
Date:   Thu Aug 17 19:13:49 2023 +0200

    Merge pull request #4379 from LedgerHQ/support/hotfix-merge-conflicts

    :rotating_light: Hotfix merge conflicts

commit 77cd7fc87c765a67348893b83a9dba5e205e76a6
Author: Quentin Jaccarino <quent92100@gmail.com>
Date:   Thu Aug 17 18:32:19 2023 +0200

    ci: empty commit

commit 0ff215ac4c000c731eaa6ec20e72fe6514d841ce
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 17 15:45:38 2023 +0000

    chore(hotfix): :fire: hotfix release [skip ci]

commit 21746bc3bd7e9c4cd56a33779cc757762f1f9e34
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 17 15:35:13 2023 +0000

    chore(hotfix): :fire: hotfix prerelease [LLD(2.66.1-hotfix.0), LLM(3.29.1-hotfix.0)]

commit 27e4a76f6cc66aa6a7480f48329db04d33200c65
Author: KVNLS <kevin.leseigle@gmail.com>
Date:   Thu Aug 17 11:35:53 2023 +0200

    fix: add reactLegacy and nativeLegacy to the list of files included by the package

commit e7c0caf910474f44d27b40a34d8a3a24804bf836
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 17 15:22:42 2023 +0000

    chore(hotfix) :rocket: entering hotfix mode

commit b76fe4fb375cc73bebd2c57653f953fac090224a
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Thu Aug 17 14:30:01 2023 +0200

    fix(lld/deviceaction/error): broken layout (#4371)

commit f19f0b3b1ed57f1f4dc718fa2cdccb45a42c2ab5
Author: Alexandre Magaud <alexandre.magaud@gmail.com>
Date:   Thu Aug 17 14:06:00 2023 +0200

    Feat/LIVE-7596: Genuine check and firmware update check in Early Security Check during Sync Onboarding (#3887)

    * chore: rename resync overlay to desync overlay

    * feat: wip current work on genuine check during early security check

    - Drawer: failed/refused genuine check
    - Drawer: allow manager

    * fix: unlock device during ESC genuine check

    * feat: fw update check during ESC

    * feat: UI for idle early security check

    * feat: wip UI on active early security check

    * feat: handle genuine check refused from device

    * feat: ESC mandatory drawer on close button

    * feat: firmware update available logic and UI in ESC

    * [LIVE-6555] add language change prompt to sync onboarding (#3884)

    * feat: 1st implementation of going to firmware update and coming back from ESC

    * feat: handling user coming back from fw update

    The users can come back either:
    - because the fw update was completed
    - the user left the fw update before completion

    * chore: removing software check from sync onboarding companion

    * chore: update 1st step of sync onboarding companion

    * chore: cancelling the ESC brings back user to device selection

    * chore: add learn more support link for genuine check

    * chore: 1-way path on inf loop fw 1.2.1-il2 -> 1.2.1-il0

    * feat: automatically bypassing genuine check when coming back from fw update in ESC

    * fix: hook file name to get device info

    * feat: adapt error to new get latest available firmware action

    And handle locked device from the parent screen

    * feat: adapted firmware update to ESC

    Removing unnecessary steps during the fw update for a non-seeded device

    * chore: update UI from new design on the ESC

    * chore: handle device in bootloader mode

    Probably from a fw update that went wrong

    * feat: handle UnexpectedBootloader error from polling

    * feat: handle genuine check error and non-genuine case separately

    * fix: bypass unlock device on fw update

    When before onboarding (ESC) and no MCU to flash

    * feat: handle errors during genuine checks

    * chore: cleaning console logs

    * chore: changeset

    * chore: fix linter

    * fix: documentation and correct usage of Text component

    * chore: CheckCard in a separate component

    * feat: new UI rendering component for ESC

    * chore: handle not found entity other error case

    * chore: remove TODO comment

    * fix: rendering correctly bluetooth disabled error

    * chore: QA limiting fw update on all il fw from il2 -> il0

    ---------

    Co-authored-by: Gabriel Restori Soares <gabriel.soares@ledger.fr>

commit 4a2a89aa5494f4625009e9cd98e77e4cbfae500c
Merge: b9a407b49e 5fb60bc6bb
Author: Kevin Le Seigle <31533861+KVNLS@users.noreply.github.com>
Date:   Thu Aug 17 13:29:25 2023 +0200

    Merge pull request #4372 from LedgerHQ/support/fix-icons-legacy

    Fix reactLegacy and nativeLegacy for icons lib

commit 5fb60bc6bb0bc6a9452d580cdace16ca87e478ff
Author: KVNLS <kevin.leseigle@gmail.com>
Date:   Thu Aug 17 11:35:53 2023 +0200

    fix: add reactLegacy and nativeLegacy to the list of files included by the package

commit b9a407b49e1a989bec0f28cd9731becd114d545e
Merge: 41a184849b 45716e91e8
Author: Quentin Jaccarino <quentin.jaccarino@ledger.fr>
Date:   Thu Aug 17 11:10:10 2023 +0200

    Merge pull request #4358 from LedgerHQ/support/release-merge-conflicts

    :rotating_light: Release merge conflicts

commit 45716e91e8fb391bd0508e8c994a475cacb5439a
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Thu Aug 17 10:26:17 2023 +0200

    ci: trigger

commit 41a184849be2f768cca205bc50c0778d483bbbe4
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 17 10:23:01 2023 +0200

    chore(deps): update nextjs monorepo to v13.4.16 (patch) (#4354)

    chore(deps): update nextjs monorepo to v13.4.16

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit aed4a7474ff47a796b24f6953ebec68ba90d51ab
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 17 10:22:40 2023 +0200

    fix(deps): update dependency color to v4 (#4349)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 2847c7c500c108efb7563e898626f3572d6b0891
Merge: a6c6b09926 60992a9b20
Author: Quentin Jaccarino <quentin.jaccarino@ledger.fr>
Date:   Thu Aug 17 10:18:29 2023 +0200

    Merge pull request #4362 from LedgerHQ/support/add-recover-local

    support: add recover local dev support

commit 60992a9b20a23952f75900767f481df2bf69ed18
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 16 16:35:56 2023 +0200

    support: add recover local dev support
    Using minirecover locally you need to set `IGNORE_CERTIFICATE_ERRORS=1`

commit a6c6b099267d03012ba2a82777dc01f7cf0f9a45
Merge: 7c17421460 2f73df6545
Author: Quentin Jaccarino <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 16 16:20:04 2023 +0200

    Merge pull request #4360 from LedgerHQ/bugfix/typeerror-wallet-api

    fix(wallet-api): missing new on error constructor

commit 7c1742146041b9c6bee9937378c579b81fc8e3d1
Merge: 3ee785d1c2 cf35fae21c
Author: Quentin Jaccarino <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 16 16:17:23 2023 +0200

    Merge pull request #4359 from LedgerHQ/bugfix/PROTECT-2292

    fix(RecoverRestore): add onRetry to error handling [PROTECT-2292]

commit 2f73df65457c16cceb632a9c745e4c20a6ae4934
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 16 15:53:56 2023 +0200

    fix(wallet-api): missing new on error constructor

commit cf35fae21c1cda4700ff4ac76739ba79ef89a77b
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 16 15:45:07 2023 +0200

    fix(RecoverRestore): add onRetry to error handling [PROTECT-2292]

commit 3ee785d1c20086cea495215578a40764c4ad5351
Merge: a3d23f1b96 bdc6055d2a
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Wed Aug 16 15:43:42 2023 +0200

    Merge pull request #4345 from LedgerHQ/renovate/ledgerhq-live-app-sdk-0.x

    fix(deps): update dependency @ledgerhq/live-app-sdk to ^0.8.0

commit f6a709af79e833807de2b0c9a68935a1d5aee45b
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Wed Aug 16 13:39:59 2023 +0000

    chore(release): :rocket: prepare release [skip ci]

commit a3d23f1b9670affd032b0a2ef8a1b0261bdc5972
Merge: 1cfd51f86f 67bd32f808
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Wed Aug 16 14:58:49 2023 +0200

    Merge pull request #4347 from LedgerHQ/renovate/nodemon-3.x

    chore(deps): update dependency nodemon to v3

commit 1cfd51f86f08670e47c77dea45ad8f17f68c9041
Author: mitchellv-ledger <105203468+mitchellv-ledger@users.noreply.github.com>
Date:   Wed Aug 16 13:48:52 2023 +0100

    Feat/earn info modals (#4327)

    * feat: add earn info modal

    * chore: add changeset

    * feat: use drawer directly in place of root drawer

    * chore: lint

    * fix: undefined params

    * feat: add earn info modal trigger via redux state

    * chore: lint

    ---------

    Co-authored-by: fstream9 <mvivanti9@gmail.com>

commit e324ab51c934acc933ec7811c9d2d42875099770
Merge: 62310d61cd df24f7f950
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Wed Aug 16 14:06:35 2023 +0200

    Merge pull request #4346 from LedgerHQ/renovate/execa-7.x

    chore(deps): update dependency execa to v7

commit 080903145977861b28d79e5a0e02c0d6e5e5b19c
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Wed Aug 16 09:17:10 2023 +0000

    chore(prerelease): :rocket: release prerelease [LLD(2.66.0-next.3), LLM(3.29.0-next.2)]

commit b0af2c6f65f0fd5f0afa24d41f35fdd6523ed65d
Author: Hakim <59644786+haammar-ledger@users.noreply.github.com>
Date:   Wed Aug 16 11:05:41 2023 +0200

    [bugfix] Avoid conflicts in currency feature flag names in manager (#4339)

    * In manager, look for exact currency name in feature flag

    * Add changeset

    * Use useFeature instead of manually handling flag names

    * Cleanup old comments

commit df24f7f9504062a2989a02b5747f2acae9b7b28b
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Wed Aug 16 10:13:18 2023 +0200

    chore(deps): fix execa new syntax

commit 62310d61cd8c1755ba75e7ced500c6c6aaacc871
Author: Alexandru Pislariu <57287326+AlexandruPislariu@users.noreply.github.com>
Date:   Wed Aug 16 11:54:44 2023 +0300

    MultiversX: Withdraw modal fixes (#4089)

    * Fixed withdraw modal and types (#17)

    Co-authored-by: Alexandru Pislariu <57287326+AlexandruPislariu@users.noreply.github.com>

    * Return account guarded flag

    * Added guarded account warnings

    * isGuarded on Elrond resources type

    * Updated static condition

    * Fixed lint warning on the mobile build.

    * snapshots update

    * Fixes

    * Fixed typecheck issue

    * Add new ESDT tokens

    * Fixes

    * Fixes

    ---------

    Co-authored-by: Miro Mărgineanu <miro.margineanu@elrond.com>

commit 88846cc39d053726800aabb435b04dc299c4c485
Author: hzheng-ledger <71653044+hzheng-ledger@users.noreply.github.com>
Date:   Wed Aug 16 10:52:53 2023 +0200

    Fix: LIVE-8269 cosmos amount string parser (#4281)

    * fix: cosmos amount string parser

    * fix: small refactoring

    * fix: add changeset

commit 67bd32f8089d29bf9542bfcb005de5c3df577690
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 14 09:19:52 2023 +0000

    chore(deps): update dependency nodemon to v3

commit cbd6f783ff1bb7539783423b150f0576791c7978
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 14 09:19:15 2023 +0000

    chore(deps): update dependency execa to v7

commit bdc6055d2a145072e706e5c1ffff5a64dbd0b584
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 14 09:18:38 2023 +0000

    fix(deps): update dependency @ledgerhq/live-app-sdk to ^0.8.0

commit 46f0f999a6a4b850b24cb87905256a2fd8c73976
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 14 10:57:23 2023 +0200

    chore(deps): update dependency regenerator-runtime to v0.14.0 (#4315)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit f597506f91ce1727f4427403d78a9dd2ebd68463
Author: C Ng <138497251+cng-ledger@users.noreply.github.com>
Date:   Mon Aug 14 09:57:04 2023 +0100

    support(test-env): rename test env check fn (#4335)

commit 5a558b58a22ee963ba3873392106c1bba0915b75
Merge: f1db4e0a86 4cfc701c0e
Author: Côme Grellard <come.grellard@ledger.fr>
Date:   Mon Aug 14 09:48:44 2023 +0200

    Merge pull request #3928 from LedgerHQ/feat/LLM-new-deposit-flow

    ✨ [FEAT] :  New deposit flow on LLM

commit f1db4e0a86ac474fe73f3076788ed28f516cf99e
Merge: 193a6e6530 2c9001d5f5
Author: Beth Swingler <beth.swingler-ext@ledger.fr>
Date:   Sat Aug 12 11:07:45 2023 +0100

    Merge pull request #4278 from LedgerHQ/feat/LIVE-7702-earn-fe-update-no-funds-modal-title-dynamically

    bugfix/live 7702 Earn dashboard - update no funds modal title dynamically, upgrade 18next on desktop only

commit 2c9001d5f56d6135d35e9d92ebabd9772ececdb9
Author: Beth Swingler <beth.swingler-ext@ledger.fr>
Date:   Fri Aug 11 18:11:17 2023 +0100

    fix: 18next packages; dynamic NoFundsModal title

commit 8efcab3282ab56396b7d511b2c7b8677a94a9102
Merge: 59abc73c9e b4856b154c
Author: Quentin Jaccarino <quentin.jaccarino@ledger.fr>
Date:   Fri Aug 11 17:12:53 2023 +0200

    Merge pull request #4330 from LedgerHQ/smartling-translations-20230811133611345

    Smartling on-demand translation delivery from release

commit 193a6e6530287eb5cc84efa18f707db733e6258a
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Fri Aug 11 15:49:45 2023 +0200

    ci: small updates on test.yml

commit 4cfc701c0e1fd82506ae2620b892a4f6b8ee412f
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Fri Aug 11 16:18:26 2023 +0200

    feat(llm): deposit flow e2e test fixed

commit 59abc73c9e794fa849010413bdc3f391d317b5df
Author: Desifly <desire.ndri@ledger.fr>
Date:   Fri Aug 11 15:50:33 2023 +0200

    Update RELEASE_NOTES.md

commit b4856b154c1435a79d21120f0264fb29f4bccdc2
Author: ldg-smartling-sa <133769770+ldg-smartling-sa@users.noreply.github.com>
Date:   Fri Aug 11 16:36:50 2023 +0300

    File apps/ledger-live-desktop/static/i18n/en/app.json was translated to tr-TR locale

commit 3470c25b69c72a4918306ee58891f7c1724fc018
Author: ldg-smartling-sa <133769770+ldg-smartling-sa@users.noreply.github.com>
Date:   Fri Aug 11 16:36:46 2023 +0300

    File apps/ledger-live-desktop/static/i18n/en/app.json was translated to es-ES locale

commit 3354b399f5c914cdf4445b353035d0ba7341ff20
Author: ldg-smartling-sa <133769770+ldg-smartling-sa@users.noreply.github.com>
Date:   Fri Aug 11 16:36:42 2023 +0300

    File apps/ledger-live-desktop/static/i18n/en/app.json was translated to ru-RU locale

commit d45e3c26039d4d7ec98285f554440da2d703109e
Author: ldg-smartling-sa <133769770+ldg-smartling-sa@users.noreply.github.com>
Date:   Fri Aug 11 16:36:38 2023 +0300

    File apps/ledger-live-desktop/static/i18n/en/app.json was translated to pt-BR locale

commit 0849bdd2b544de9b96d3c05f57d7b4065882f71c
Author: ldg-smartling-sa <133769770+ldg-smartling-sa@users.noreply.github.com>
Date:   Fri Aug 11 16:36:34 2023 +0300

    File apps/ledger-live-desktop/stati…
davidecarpini added a commit to vechainfoundation/ledger-live that referenced this pull request Sep 4, 2023
commit f848f100998f577981a45364e3337b5cdbcb2209
Merge: 18b4a47b48 3ec77034ee
Author: Quentin Jaccarino <quentin.jaccarino@ledger.fr>
Date:   Mon Sep 4 15:20:47 2023 +0200

    Merge pull request #4544 from LedgerHQ/support/update-wallet-api

    chore(deps): update dependencies for wallet-api [LIVE-9007]

commit 18b4a47b4878a23695a50096b7770134883b8a2e
Author: hzheng-ledger <71653044+hzheng-ledger@users.noreply.github.com>
Date:   Mon Sep 4 11:52:10 2023 +0200

    Support/LIVE-8495 Fix Elrond bot test (#4578)

    * fix: elrond bot tests

    * fix: update changeset

    * fix: remove unnecessary code

    * fix: remove unnecessary code

commit ea97040266cc0b0b084882739bd38a90908d2b98
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Mon Sep 4 10:34:32 2023 +0200

    Feat/live 8638 LLM Stax Early Security Checks pixel polish (#4519)

    * fix(llm/earlysecuritychecksbody): pixel polish

    * fix(llm/GetDeviceScreen): missing unit warning

    * fix(llm/earlysecuritychecks): icons and layout of drawer

    * fix(llm/error rendering): DRY to make it reusable, w/ new icons

    * fix(llm): lint

    * fix(llm/earlysecuritychecks): rendering of completed steps: title only

    * refactor(llm/BleDevicePairing): use ErrorBody

    * fix(llm/ChangeDeviceLanguagePrompt): pixel polish

    * fix(llm/DeviceLanguageInstalled): pixel polish + new wording

    * style(llm): rename ErrorBody into GenericInformationBody

    * style(llm): lint

    * chore(llm): changeset

    * fix(llm/earlycheck-fwupdate): pixel polish

    * fix(nativeui/verticalstepper): pixel polish

    * refactor(llm/error rendering): replace renderedInType by a context

    * refactor(llm/GenericInformationalDrawer|View): use GenericInformationBody

    * fix(llm/esc): spacing in drawer

    * style(llm): rename DrawerContext to IsInDrawerContext

    * refactor(llm/IsInDrawerContext): add default provider

    * fix(nativeui/VerticalTimeline): fix aspect of lines

    * chore: changeset

    * fix(llm/deviceaction/rendererror): spacing for Bluetooth error

    * fix(llm/GenericInformationalDrawerContent): alignself stretch

commit de5b4d2a4f2909fe94d54df4de6df92fdb86f39c
Merge: 04206a2939 30decb6882
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Fri Sep 1 17:49:47 2023 +0200

    Merge pull request #4575 from LedgerHQ/support/fix-broken-actions

    fix: broken fetch in actions

commit 04206a2939bb8bb807a9f57a175f054c613e3d57
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Fri Sep 1 16:06:40 2023 +0200

    fix(llm/synconboarding): add device to known devices as soon as device is seeded (#4556)

    * fix(llm/synconboarding): add device to known devices as soon as device seeded

    * chore: changeset

commit 8f99e87e43da87ac9cc768eddfb183ebc88cebb2
Author: mitchellv-ledger <105203468+mitchellv-ledger@users.noreply.github.com>
Date:   Fri Sep 1 15:03:36 2023 +0100

    Bugfix/earn reloading infinite (#4569)

    * feat: add new tag to earn in main side bar

    * feat: cache live app manifest

    * Revert "feat: add new tag to earn in main side bar"

    This reverts commit 1ebf470fb4ea0d6292302b64956f10925e3ead94.

    * chore: add changeset

    ---------

    Co-authored-by: fstream9 <mvivanti9@gmail.com>

commit 30decb6882a4a5618362e5bf7e75f5b7d1426284
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Fri Sep 1 15:48:06 2023 +0200

    fix: link to filesystem instead of @develop for bot composite

commit 4f2d90b0f7c95f7377c59c9d1cbee28a6ed7ef27
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Fri Sep 1 14:30:35 2023 +0200

    fix: broken fetch in actions

commit 2fbe4999ff4817ab1918cf218d2c4eb85ad4dadc
Merge: ca8d064bab 6852277c5b
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Fri Sep 1 14:19:08 2023 +0200

    Merge pull request #4509 from LedgerHQ/feat/LIVE-8386

    [LLD] - [LIVE-8386] - Add Storyly SDK to Ledger Live Desktop

commit ca8d064babf4df3babbdd4ba03f4be742d805edb
Author: mitchellv-ledger <105203468+mitchellv-ledger@users.noreply.github.com>
Date:   Fri Sep 1 11:57:52 2023 +0100

    feat: add new tag to earn in main side bar (#4552)

    Co-authored-by: fstream9 <mvivanti9@gmail.com>

commit ea5e58a162d94355722a986192b832ba045d2021
Merge: ee8bfd6b98 6c5a27ac02
Author: Côme Grellard <come.grellard@ledger.fr>
Date:   Fri Sep 1 12:06:37 2023 +0200

    Merge pull request #4557 from LedgerHQ/bugfix/LIVE-9191-deposit-address-verification-device-selection

    Bugfix/live 9191 deposit address verification device selection

commit ee8bfd6b9895bfca40fe83ccf3c9ba1d3e714c88
Merge: c15eab0a94 b2e8c1053e
Author: Kevin Le Seigle <31533861+KVNLS@users.noreply.github.com>
Date:   Fri Sep 1 11:33:41 2023 +0200

    Merge pull request #4476 from LedgerHQ/support/lld-add-modelId-export

    fix: Add modelId and modelIdList to metadata on export

commit c15eab0a946767c8d861db5c01a032bb136dbbcd
Merge: bfd4fef405 282962fef6
Author: Maxence LE GALL <39890664+mle-gall@users.noreply.github.com>
Date:   Fri Sep 1 10:03:08 2023 +0200

    Merge pull request #4562 from LedgerHQ/feat/LIVE-8595-LIVE-8598/finalStaxPolishesLLD

commit 282962fef6c80c52344f2fe5dc20c7fcd461142f
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 31 21:44:40 2023 +0000

    test(lld): update screenshots (ubuntu-latest)  lld, test, screenshot

commit 22aafdce45871dde12890134113890e7bfefa87f
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 31 15:56:29 2023 +0000

    test(lld): update screenshots (windows-latest)  lld, test, screenshot

commit 9e212755afb7b80fbce08545a80bd528a6c4e803
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 31 15:47:00 2023 +0000

    test(lld): update screenshots (macos-latest)  lld, test, screenshot

commit 6852277c5bb8a34cb7715f2987420816526abb7f
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Thu Aug 31 17:34:12 2023 +0200

    Add type on layout + fix lint

commit 808ce40d24b428dabab74b2780057041adadbe2b
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Thu Aug 31 17:04:13 2023 +0200

    Added classic layout as default

commit 63ad53e0be78e01a75c2514b8af3c9c2ced41426
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Thu Aug 31 16:52:39 2023 +0200

    Fix naming for Storyly + Update to latest version of Storyly + add update on lang change

commit 61b1f38193dc53824e35e3cf2d683330846d9f91
Author: male-gal <maxence.le-gall@ledger.fr>
Date:   Thu Aug 31 16:17:57 2023 +0200

    feat(LLD/Stax): Final pixel polishes (Connect device + post onboarding)

commit 6c5a27ac029d473b97e1ba93e7f1842b4aa4ea7c
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Thu Aug 31 16:05:17 2023 +0200

    fix(llm): Deposit
    Fixed the following issue : User cannot select device on device selection screen when verifying address a second time

commit bfd4fef405f832489cc5258330e6483260c896d2
Author: Hakim <59644786+haammar-ledger@users.noreply.github.com>
Date:   Thu Aug 31 15:46:33 2023 +0200

    Hardcode Ledger validator details for Solana (#4540)

    * Hardcode Ledger validator details for Solana

    * Add changeset

    * lint

    * Only use hardcoded data as backup if not available from backend

    * typo

commit d6935a27b4dcfcfcf983e5b861eddfa4a783f168
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 31 14:34:16 2023 +0200

    chore(deps): update dependency eslint-config-prettier to v9 (#4529)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 85a63d38fc83195fda9c072e2d50b63dda608f46
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 31 14:33:35 2023 +0200

    fix(deps): update formatjs monorepo (major) (#4501)

    fix(deps): update formatjs monorepo

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit e9e79a3d4d5ec84cf3995e1227bf750ad2884407
Merge: efd119dc7c 3ec5739f8a
Author: Kieran Allen <132384348+kallen-ledger@users.noreply.github.com>
Date:   Thu Aug 31 13:03:28 2023 +0100

    Merge pull request #4534 from LedgerHQ/feat/LIVE-9136

    [feat/LIVE-9136]: add api and helper hooks for v5 swap transition

commit efd119dc7c320715fff2feeffedbaaf1e78b7583
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Thu Aug 31 11:46:38 2023 +0200

    Bugfix/live 8464 llm contexts improvements (#4453)

    * chore(llm): cleanup dead code DelayedTrackingProvider

    * style(llm): rename AdjustProvider into AdjustSetup (not a provider)

    * refactor(llm/AnalyticsProvider): unused provider

    * style(llm): rename ButtonUseTouchable into ButtonUseTouchableContext

    * refactor(terms): get rid of the useless context, rely solely on react-redux

    * refactor(llm): AnalyticsContext.Provider in its own component

    * docs(llm/terms): improve comment

    * chore: changeset

    * style(llm/SegmentSetup): improve readability

commit d439c49900506c08ebf079a99740b0d9681915fd
Merge: cad1444fbf 7d28d25f15
Author: Stephane Lieumont <118977988+stephane-lieumont-ledger@users.noreply.github.com>
Date:   Thu Aug 31 11:38:31 2023 +0200

    Merge pull request #4543 from LedgerHQ/bugfix/react-ui-checkbox-console-error

    fix(react-ui): fix checkbox component console error

commit cad1444fbfcf7d05992e03c44e28ec8ecb024d0d
Merge: 81f0e92dfa 66f699af1a
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Thu Aug 31 11:37:42 2023 +0200

    Merge pull request #4539 from LedgerHQ/support/update-actions

    Update some actions to remove the use of isomorphic-unfetch in favor of `node`'s fetch

commit 3ec5739f8a4e3ff81da468cd91036b7b271dfd06
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Thu Aug 31 10:27:35 2023 +0100

    fix: update tests, add deps and changeset

commit 7d28d25f154de22bb9e69f57e924de5ad0f1aa57
Author: Stephane Lieumont [LEDGER-EXT] <stephane.lieumont-ext@ledger.fr>
Date:   Thu Aug 31 11:11:55 2023 +0200

    fix(react-ui): remove readOnly

commit 464bd265914d34445883b97b9762fb83cf4dd888
Author: Stephane Lieumont [LEDGER-EXT] <stephane.lieumont-ext@ledger.fr>
Date:   Thu Aug 31 11:05:39 2023 +0200

    fix(react-ui): replace readOnly by onChange property

commit 3ec77034ee8df07e11010cbc723625a79fb286e5
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Thu Aug 31 09:28:57 2023 +0200

    chore(deps): update dependencies for wallet-api [LIVE-9007]

commit a18628b55ad7375ae49acb2b5686d288b804ce08
Author: Stephane Lieumont [LEDGER-EXT] <stephane.lieumont-ext@ledger.fr>
Date:   Thu Aug 31 08:18:25 2023 +0200

    fix(react-ui): linter ci

commit 916d6975e52f4f83291a9ce1a3e7e60dbccb5b20
Author: Stephane Lieumont [LEDGER-EXT] <stephane.lieumont-ext@ledger.fr>
Date:   Thu Aug 31 07:53:15 2023 +0200

    fix(react-ui): fix checkbox component console error

commit 81f0e92dfabfcaf05616a42774f4ce5df0bf1411
Merge: fb4d9f068a 67fafeeeea
Author: Mohammed Almujil <130482667+mohammed-ledger@users.noreply.github.com>
Date:   Wed Aug 30 18:01:10 2023 +0100

    Merge pull request #4537 from LedgerHQ/support/fix-broken-env-link

    Support: fix broken env link

commit 66f699af1af0988a470422143a4b298c7f01e575
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Wed Aug 30 17:57:17 2023 +0200

    chore: update actions

commit 67fafeeeeac31b1993d6297b9660f863bd42cb75
Merge: 46f478c1f1 fb4d9f068a
Author: Mohammed Almujil <mohammed@ledger.fr>
Date:   Wed Aug 30 17:04:14 2023 +0100

    Merge branch 'develop' into support/fix-broken-env-link
    rebase branch

commit 46f478c1f12565b1be24147ad8d2b72a6c5bb6c2
Merge: 3e082826f1 1c6deb2336
Author: Mohammed Almujil <mohammed@ledger.fr>
Date:   Wed Aug 30 15:46:22 2023 +0100

    Merge branch 'develop' into chore/fix-broken-env-link

commit 23acb640e10ceebf60b12e89f58d1c889a029795
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Wed Aug 30 14:37:15 2023 +0100

    feat: add helper functions

commit fb4d9f068a8fb8c839e17d677c384b77670db1d9
Merge: 1c6deb2336 41a38e953b
Author: Maxence LE GALL <39890664+mle-gall@users.noreply.github.com>
Date:   Wed Aug 30 15:02:41 2023 +0200

    Merge pull request #4518 from LedgerHQ/feat/LIVE-8610/ProviderIconsRemoval

    feat(IconsUI/ReactUI): ProviderIcons removal from Design System

commit ec3d96373e46ef3d10c036c9f74b098871bdb837
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Wed Aug 30 13:22:58 2023 +0100

    fix: update test

commit e421b6705157e822ee2ec6719a890a44d005324d
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Wed Aug 30 13:15:52 2023 +0100

    chore: add new line

commit 023991b9c761b4575447b17c8076c034e6eedd92
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Wed Aug 30 13:11:56 2023 +0100

    chore: remove tool-versions

commit a834e9038da978530e51b15189f4474ef5a3a0f0
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Wed Aug 30 13:11:01 2023 +0100

    feat: add helper hooks

commit 0a9340891d60eb078585335c32df0781287d71a3
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Wed Aug 30 13:08:39 2023 +0100

    feat: add api and helper hooks for v5

commit 3e082826f1b0cb099afb52d2109703ac42fa1f72
Author: Mohammed Almujil <mohammed@ledger.fr>
Date:   Wed Aug 30 10:57:02 2023 +0100

    chore: fix broken env link

commit 1c6deb2336a8b76517cc4d367f76dca24f9228dc
Author: Hakim <59644786+haammar-ledger@users.noreply.github.com>
Date:   Wed Aug 30 11:22:50 2023 +0200

    [bugfix] Fix regression when serializing cosmos operation extra (#4528)

    * Fix regression when serialiazing cosmos operation extra

    * Add changeset

    * [WIP]fix: cosmos unit tests (#4532)

    fix: cosmos unit tests

    ---------

    Co-authored-by: hzheng-ledger <71653044+hzheng-ledger@users.noreply.github.com>

commit e0362e580f4f309615b9cb5a905b3483daf9148f
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 29 23:47:37 2023 +0200

    Add Storyly debugger + sort imports

commit 3dc9ba19b73ddd3c1a262df6339e16279d9b0aa7
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Tue Aug 29 14:38:17 2023 +0200

    chore(deps): update dependency @testing-library/react-hooks to v8 (#4514)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 52bb4607d820bca2d1e2d4b3c33b452c333be6df
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Tue Aug 29 14:38:02 2023 +0200

    chore(deps): update dependency @types/node to v18 (#4516)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 41a38e953b17075b5ab7bec307c147d8f74b7501
Author: male-gal <maxence.le-gall@ledger.fr>
Date:   Tue Aug 29 14:32:01 2023 +0200

    feat(IconsUI/ReactUI): ProviderIcons removal from Design System

commit 1a3205b3c7abaefb39276565fce5541a6a7aaed2
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Tue Aug 29 14:26:23 2023 +0200

    chore(deps): update dependency @testing-library/jest-dom to v6 (#4511)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit c6921f497399c9b48b89b460e39cae309571e0d7
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Tue Aug 29 14:20:33 2023 +0200

    chore: update pnpm in actions with same version as prototools (#4515)

commit a46453e291e52f9c832cdcc058d9fa951519888f
Author: @greweb <renaudeau.gaetan@gmail.com>
Date:   Tue Aug 29 12:40:03 2023 +0200

    chore: update pnpm (#4498)

commit 5d20c326a038a430a38f28815ba65af71152118b
Author: sarneijim <38540290+sarneijim@users.noreply.github.com>
Date:   Tue Aug 29 11:39:12 2023 +0100

    feat: support customFees in swap web app mode (#4174)

    * feat: support customFees in swap web app mode

    * fix: add other custom params

    * feat: update wallet-api dependencies

    * fix: fix async call getCustomFeesPerFamily

    * fix: fix typecheck

    * refactor: move getCustomFeesPerFamily to common

    * fix: fix lint

    * fix: remove feesStrategy as mandatory to open swap web app

    * fix: add convertToNonAtomicUnit utils

    * chore: update wallet-api server call after upgrade

    * fix: fix lint

commit 1e5c2e53a38a43cfe21fa00a049c0c879ad52571
Author: Gaëtan Renaudeau <renaudeau.gaetan@gmail.com>
Date:   Tue Aug 29 12:31:14 2023 +0200

    chore: renovate config to allow @electron/* pkgs

commit a35135437bef6fcd44925a240f0f4894eeb565da
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 29 12:19:47 2023 +0200

    Add changeset

commit d398cd62a8bdff0b7d72d7bed7a021c2442fbf77
Merge: e12993f480 074d99c9e0
Author: Stephane Lieumont <118977988+stephane-lieumont-ledger@users.noreply.github.com>
Date:   Tue Aug 29 11:05:20 2023 +0200

    Merge pull request #4468 from LedgerHQ/feat/protect-2420-update-cta-recover-copy

    feat(protect-2420): update recover wording

commit d1824475e77c92774dfa8ca93d3e1eebe3a6b1f3
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 29 09:52:33 2023 +0200

    Add remarks

commit f82da707b20ddd70fa71a2d16957cbd86a76c018
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 29 09:41:12 2023 +0200

    Add comments

commit 5a9da71b9398f6a69a7ea7ee0456009206599a19
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Sat Aug 26 17:43:37 2023 +0200

    Added storily-web, added useStorily hook, add StorilyBase component, add StorilyDefaultStyle

commit e12993f4804443a142db7b52f66a1d912caeab5f
Author: Landry Monga <lvndry@protonmail.com>
Date:   Mon Aug 28 19:40:48 2023 +0200

    Polkadot bridge mock (#4456)

    * polkdadot bridge mock

    * test(lld): update screenshots (macos-latest)  lld, test, screenshot

    ---------

    Co-authored-by: lvndry <lvndry@proton.me>
    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 1f9626aa9f1503cb7f23ef23d431932590fd25da
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Mon Aug 28 17:39:55 2023 +0200

    chore: refine renovate rules

commit 06684aa6d7d90d409138297b606509646c3c730c
Author: @greweb <renaudeau.gaetan@gmail.com>
Date:   Mon Aug 28 17:33:25 2023 +0200

    chore: add /svg-icons in common tools (#4490)

commit 42a90710a7c68ea97b2f6867cda603116c76282f
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Mon Aug 28 16:58:20 2023 +0200

    chore: update renovate config

commit f55c6e4f9027e8277553af44334026a70ee3bdaa
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Mon Aug 28 16:45:11 2023 +0200

    Feat/live 8375 fw update redesign (#4471)

    * feat(llm/fwupdatebanner): new design

    * fix(llm/fwupdatebanner): loading state

    * chore: changeset

    * chore(llm): remove unimported code

    * chore(llm): cleanup comments

    * fix(llm/fwupdatebanner): loader color

commit 4901a78f780d230f29272a1b439914c6df31e991
Merge: 902f2ed757 a51494ccfa
Author: Maxence LE GALL <39890664+mle-gall@users.noreply.github.com>
Date:   Mon Aug 28 15:53:25 2023 +0200

    Merge pull request #4310 from LedgerHQ/feat/LIVE-8596/LLDSyncOnboardingPolish

    feat(LLD/Sync Onboarding): Pixel polishing

commit a51494ccfa4aa0eca08c51f9c3687b2831b0eccf
Author: male-gal <maxence.le-gall@ledger.fr>
Date:   Mon Aug 28 15:19:38 2023 +0200

    feat(LLD/Sync Onboarding): Pixel polishing

commit 902f2ed7570d82cc6aaafd5c1bb9f0372feeb4a5
Merge: 4d5ff97ba3 aed57fdf40
Author: Côme Grellard <come.grellard@ledger.fr>
Date:   Mon Aug 28 15:05:28 2023 +0200

    Merge pull request #4480 from LedgerHQ/support/LIVE-9078-llm-deposit-copy-updates

    support(llm): small deposit copy updates

commit 4d5ff97ba346365a7b88a446ab9ef7d1cbfbc17d
Merge: a3a46a0ce7 51bd69d5ab
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Mon Aug 28 14:14:06 2023 +0200

    Merge pull request #4483 from LedgerHQ/support/live-9091

    chore: prevent SYNC_SOME_ACCOUNTS log with empty accounts[]

commit a3a46a0ce74621851b4893cad77f593c510f328c
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 28 14:10:18 2023 +0200

    fix(deps): update dependency webpack to 4.46 (#4482)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 550fb40887552cab5914cd1cda1968597e296208
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 28 12:32:28 2023 +0200

    fix(deps): update dependency react-i18next to v11.18.6 (#4434)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 51bd69d5ab0332794edf5caff22d493596255c61
Author: Gaëtan Renaudeau <renaudeau.gaetan@gmail.com>
Date:   Mon Aug 28 11:52:26 2023 +0200

    chore: prevent SYNC_SOME_ACCOUNTS log with empty accounts[]

commit aed57fdf40744557c2b1693427ebe74405073ad7
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Mon Aug 28 10:32:12 2023 +0200

    support(llm): small deposit copy updates

commit d936c57630a64798998787717d9d6d1e1e35deb0
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Mon Aug 28 10:28:41 2023 +0200

    support(llm): small deposit copy updates

commit de06c81fd976a46fa8b637cef7d284602d46b16b
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Mon Aug 28 09:51:53 2023 +0200

    feat(llm/earlysecuritychecks): implemented tracking plan (#4475)

    * feat(llm/earlysecuritychecks): implemented tracking plan

    * fix(llm/esc/tracking): error drawer buttons tracking

commit b2e8c1053e57c763575c9c4d77d1daca8ef566fe
Author: KVNLS <kevin.leseigle@gmail.com>
Date:   Fri Aug 25 18:34:14 2023 +0200

    fix: Add modelId and modelIdList to metadata on export

commit 9578233038ecf35b3cbbb39519bfa8d3860d7056
Merge: 9090d33d87 b8d4e81ea6
Author: Côme Grellard <come.grellard@ledger.fr>
Date:   Fri Aug 25 16:49:14 2023 +0200

    Merge pull request #4408 from LedgerHQ/feat/LIVE-7718-send-tx-pending-indicator-warning

    💄 LLM - Send Tx Pending Warning

commit 9090d33d870329e64c36e30f02aad5254c0e7f28
Merge: 0cc83c5588 d68489789b
Author: Côme Grellard <come.grellard@ledger.fr>
Date:   Fri Aug 25 16:49:06 2023 +0200

    Merge pull request #4413 from LedgerHQ/feat/LIVE-7717-send-tx-pending-indicator-warning

    💄 LLM - add warning on send flow when a tx is pending

commit 0cc83c55887bf20bd14c69a355e75bc02df70448
Author: Chelsea Sanders <chelsea.sanders-ext@ledger.fr>
Date:   Fri Aug 25 16:45:52 2023 +0200

    chore: gen e2e screenshots (#4474)

commit c4c16e6a326040767747d38fe87c17ce5dd91b03
Author: Beth Swingler <beth.swingler-ext@ledger.fr>
Date:   Thu Aug 24 18:16:00 2023 +0100

    fix: add reuasable hook to use stake flow actions directly in any navigator; use directly in earn nav

commit 541447c58c98354cd8d211d05ecccf1067533f11
Merge: cd9579816d c4046d7c65
Author: Kieran Allen <132384348+kallen-ledger@users.noreply.github.com>
Date:   Fri Aug 25 14:39:48 2023 +0100

    Merge pull request #4390 from LedgerHQ/bugfix/LIVE-8928

    fix: don't pop from live app when verifying address

commit cd9579816d92807c8e1645b96ff9978fa7f9fc09
Author: sarneijim <38540290+sarneijim@users.noreply.github.com>
Date:   Fri Aug 25 14:09:11 2023 +0100

    fix: add deeplink track to llm and improve deeplink track lld (#4466)

    * fix: add deeplink track to llm and improve deeplink track lld

    * fix: fix typecheck

    * fix: remove decodeURI

    * fix: fix llm test

commit 9154178962b68ef974831ebff36d39d2e27d15e2
Author: Chelsea Sanders <chelsea.sanders-ext@ledger.fr>
Date:   Fri Aug 25 11:23:10 2023 +0200

    feat: web ptx player to load correct manifest (#4212)

commit 074d99c9e00dc2c181cd041e3902a88d8bb43921
Author: Stephane Lieumont <stephane.lieumont-ext@ledger.fr>
Date:   Fri Aug 25 10:20:05 2023 +0200

    feat(protect-2420): update recover wording

commit 1020f276322fe361585a56573091ec647fbd901e
Author: hzheng-ledger <71653044+hzheng-ledger@users.noreply.github.com>
Date:   Thu Aug 24 17:55:06 2023 +0200

    LIVE-8495 Fix: evm integration test (#4452)

commit 2480ba48e9af12b1c93d2d9c147c969d6380c2a3
Merge: b238109174 ed6da731dd
Author: Quentin Jaccarino <quentin.jaccarino@ledger.fr>
Date:   Thu Aug 24 16:51:18 2023 +0200

    Merge pull request #4461 from LedgerHQ/bugfix/access-restore-flow-onboarding

    fix: accessing restore flow from onboarding

commit d68489789bea4c71fa9c46a71ebd618fc45a03be
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Thu Aug 24 15:43:33 2023 +0200

    feat(llm): added a warning to the select recipient screen when there is already a send transaction pending

commit b238109174ab3cad39f9531639b32bf3778abc72
Author: Tim Schmidt <tim@launchbadge.com>
Date:   Thu Aug 24 06:38:34 2023 -0700

    fix: correctly encode transaction hash for hashscan (#3890)

    * fix: correctly encode transaction hash for hashscan

    * fix: snapshot

    * fix: lint

    * fix: add changeset

commit ed6da731dd196a76350b66db2301968bc3df3a05
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Thu Aug 24 15:25:16 2023 +0200

    fix: accessing restore flow from onboarding
    The base was missing to navigate in case the onboarding was the only screen present

commit 8e9df43a0cd00a2065b494439f300f96724b8eb8
Author: Hakim <59644786+haammar-ledger@users.noreply.github.com>
Date:   Thu Aug 24 15:04:21 2023 +0200

    [support] Rework Operation.extra (#4235)

    * Use coin-specific Operation and Operation extra for Algorand

    * Use coin-specific Operation and Operation extra for Polkadot

    * Rework Operation de/serialization

    * Use coin-specific Operation and Operation extra for Cardano

    * Use coin-specific Operation and Operation extra for Celo

    * Use coin-specific Operation and Operation extra for Cosmos

    * Use coin-specific Operation and Operation extra for Elrond

    * Use coin-specific Operation and Operation extra for Crypto.org

    * Better typing of SignedOperation type

    * Remove useless custom operationDetails on LLD for EVM

    * Use coin-specific Operation and Operation extra for InternetComputer

    * Remove unused extra from Ripple operation

    * Use coin-specific Operation and Operation extra for Solana

    * Use coin-specific Operation and Operation extra for Stacks

    * Use coin-specific Operation and Operation extra for Stellar

    * Use coin-specific Operation and Operation extra for Tezos

    * Stronger typing of the Operation.extra field

    * Use coin-specific Operation and Operation extra for Tron

    * Stronger typing for operations in the LLDCoinFamily type

    * Update unit test

    * Update README

    * Add changeset

    * Change definition of Operation to use generics

    * Rename SignedOperation.signatureRaw to rawData

    * Adapt UI to changes of Operation type

    * Fixes for Ethereum & Tron

    * eslint + minor fixes

    * Update README

    * TS fix

    * Fix small regression with Elrond

    * Sanitize validators in cosmos operations extra

    * lint

commit 8da383b3060b6ea58c077196aa658e07d90a1a11
Author: Landry Monga <lvndry@protonmail.com>
Date:   Thu Aug 24 13:08:14 2023 +0200

    Cardano Bridge Mock testing (#4376)

    * cardano bridge mock

    * account.spec.ts has ADA ticker

    * add mock cardanoResources

    * test(lld): update screenshots (macos-latest)  lld, test, screenshot

    * test(lld): update screenshots (ubuntu-latest)  lld, test, screenshot

    * test(lld): update screenshots (windows-latest)  lld, test, screenshot

    * correct error display

    * set transaction mock fees

    ---------

    Co-authored-by: lvndry <lvndry@proton.me>
    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit d1c93c2ef89fdc58651a0fa09c6c59ba56276e2a
Merge: 77f20592de 7889867856
Author: Côme Grellard <come.grellard@ledger.fr>
Date:   Thu Aug 24 11:59:41 2023 +0200

    Merge pull request #4415 from LedgerHQ/support/LIVE-8888-change-nps-copy

    💬  LLM - updated the tile of the enjoy screen in the nps flow

commit 77f20592de9d19b6f5da7534405164ecc89b9e0b
Merge: f9140a309a f111bd9ff4
Author: Côme Grellard <come.grellard@ledger.fr>
Date:   Thu Aug 24 11:46:42 2023 +0200

    Merge pull request #4414 from LedgerHQ/support/LIVE-9031-change-tx-alerts-copy

    💬 LLM - add a beta mention to the tx alerts button in the notifications settings

commit f9140a309ad1927c8ee424c36635451a7da0f3e2
Merge: adae9a8f61 b81268b1ab
Author: Quentin Jaccarino <quentin.jaccarino@ledger.fr>
Date:   Thu Aug 24 10:48:56 2023 +0200

    Merge pull request #4451 from LedgerHQ/bugfix/recover-restore-and-onboarding

    fix: recover restore and onboarding issues

commit adae9a8f61b8ce8f1bfa2f8858c661d3078c04a4
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 24 10:46:49 2023 +0200

    fix(deps): update dependency redux-thunk to v2.4.2 (#4441)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 78898678562b6db37bc0c44fa5f34ee308d9c48f
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Thu Aug 24 10:31:20 2023 +0200

    support(llm): hide original ratings entry point in the settings when the nps is enabled

commit d553f79ff8744494bce42b0e6b5fa00eb6149615
Author: C Ng <138497251+cng-ledger@users.noreply.github.com>
Date:   Thu Aug 24 09:21:09 2023 +0100

    bugfix(LIVE-7623): typings (#4247)

    * fix(LIVE-7623): typings

    * fix(LIVE-7623): changeset

    fix(LIVE-7623): prettier

    * fix(LIVE-7623): refactor exchange body content

    fix(LIVE-7623): replace types

    fix(LIVE-7623): optional rateTypes

    * fix(LIVE-7623): lint

    * fix(LIVE-7623): spelling mistake

    * fix(LIVE-7623): fix tests

    * fix(LIVE-7623): remove @ts-expect-error

commit bafa799361b57bca0d2473a6683bbaa91fa8c635
Author: sarneijim <38540290+sarneijim@users.noreply.github.com>
Date:   Thu Aug 24 09:16:26 2023 +0100

    fix: remove stake banner from nft receive flow (#4439)

    * fix: remove stake banner from receive nft flow

    * fix: add callback dependencies

commit b81268b1ab68c0ce4f70647bd104c32d2b32d844
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 23 20:18:25 2023 +0200

    fix: types because we removed the stax redirect screen types that was allowing anything

commit 2f32d8c86133213de4e921c11361b4387ad9f623
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 23 19:43:18 2023 +0200

    fix: missing recoverManifests

commit 1b1ee1e73b74ad85ca57064815bf193a8797585d
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 23 19:22:09 2023 +0200

    fix: update the redirectTo param for recover

commit f1b3b7ca0268267385319c2c037645843406c6f5
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 23 19:14:38 2023 +0200

    chore: remove the need to add recoverManifests for the deeplinks on mobile
    Also adds `protect-staging-v2` to the manifest list for the recover player header

commit 87a0a8b0dce2d36a34541f890697b4ffba258382
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 23 15:20:46 2023 +0200

    fix: recover restore and onboarding issues
    Fix desktop LNX onboarding back when coming from recover
    Skip genuine check when coming from recover to restore the device (it would be better to allow unseeded device on the genuine check screen instead)
    Send the deviceId to the recover app in order to avoid multiple device selection during the restore process
    Update the podfile to config the build settings with ccache support (You might need to check https://stackoverflow.com/a/70189990 for ccache to work correctly when building with xcode)
    Cleanup old RecoverStaxFlow screen
    Patch react-native-webview to add support for `allowsUnsecureHttps`
    Added `IGNORE_CERTIFICATE_ERRORS=1` to use `allowsUnsecureHttps` in the webview in dev same as for LLD
    Added `protect-local` & `protect-local-dev` manifest support in dev
    Update wallet-api dependencies

commit d6c1984620b1d7d8289cf73f5b782217f241c2e6
Author: Beth Swingler <beth.swingler-ext@ledger.fr>
Date:   Wed Aug 23 14:43:03 2023 +0100

    Bugfix/live 8936 earn llm get coins deeplink (#4407)

    * fix: buy coins navigation flow when no account live-8936

    * fix:  white empty space above Market live-8851, main nav button overlap end of earn screen

    * fix: revert plist, gradle, totalSteps

commit 5b87074232b96d838eacdbc3d7fe1687a53f68d5
Author: Alexandre Chabrolin <9203826+chabroA@users.noreply.github.com>
Date:   Wed Aug 23 15:39:22 2023 +0200

    use specific component in SignTransaction flow (#4417)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit d0948c64990926eee97f0d774b8d71ef87961a92
Merge: 6375c250a9 00c1159356
Author: Kieran Allen <132384348+kallen-ledger@users.noreply.github.com>
Date:   Wed Aug 23 13:58:04 2023 +0100

    Merge pull request #4421 from LedgerHQ/bugfix/LIVE-8914

    [Bugfix/LIVE-8914]: Info message not triggered when user accesses a coin from the Market tab

commit 6375c250a9a58b33e3dd1d6c96a96c7e46150298
Author: Adrien Lacombe <adrien.lacombe@ledger.fr>
Date:   Wed Aug 23 14:25:25 2023 +0200

    CAL update (#4449)

    * feat(ledgerjs): update cardano token

    * feat(ledgerjs-cal): update CAL

commit 032b68731f29a4faad2c84a51bda588507ccf45d
Author: Prateek Rathod <prateek@zondax.ch>
Date:   Wed Aug 23 17:25:34 2023 +0530

    Bugfix/stacks: Parsing unknown txns  (#4402)

    * fix(stx): reading raw txns of type other than token_transfer

    * chore: changeset

    * refac(stx): use maximum limit on txn fetch

    * test(stx): add unit test for op-build bugfix

commit 3aa1ab084a2637bb6bdec9069f37f07cd90c99e6
Author: Hedi EDELBLOUTE <hedi.edelbloute@gmail.com>
Date:   Wed Aug 23 12:19:04 2023 +0200

    change baker whitelist integration test (#4447)

commit 213b66a80f3751e4be7bcbab5bb9de3bc8db366a
Author: mitchellv-ledger <105203468+mitchellv-ledger@users.noreply.github.com>
Date:   Wed Aug 23 10:02:06 2023 +0100

    fix: no market data on market tab switching (#4432)

    * fix: no market data on market tab switching

    * fix: stop potential infinite loop

    ---------

    Co-authored-by: fstream9 <mvivanti9@gmail.com>

commit 5049231835eb2eb6777dea5ee9a8813b95ed1ccb
Author: mitchellv-ledger <105203468+mitchellv-ledger@users.noreply.github.com>
Date:   Wed Aug 23 09:53:39 2023 +0100

    Bugfix/back button hide market details (#4423)

    * fix: remove back button in market details when ptxEarn enabled

    * chore: changeset added

    * chore: add changeset

    ---------

    Co-authored-by: fstream9 <mvivanti9@gmail.com>
    Co-authored-by: sarneijim <sarneijim@gmail.com>

commit f444c5b284335091c81c85f8ab4a0044380606bf
Merge: 2bec4b7f08 36a6802a0d
Author: Kevin Le Seigle <31533861+KVNLS@users.noreply.github.com>
Date:   Wed Aug 23 10:44:21 2023 +0200

    Merge pull request #4445 from LedgerHQ/bugfix/close-nft-fullscreen-cta

    fix: close cta on NFT fullscreen

commit 36a6802a0d2e185c761b46cad1be66e900a06e73
Author: KVNLS <kevin.leseigle@gmail.com>
Date:   Wed Aug 23 09:30:53 2023 +0200

    fix: close cta on NFT fullscreen

commit 2bec4b7f080d6dc9a6b22805c0fa317ff55c7202
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Tue Aug 22 17:42:05 2023 +0200

    fix(llm/customlockscreen): differentiation between error messages (#4426)

    * fix(llm/customlockscreen): differentiation between error messages

    * chore: changeset

    * chore: changeset

commit 7002c6c8f9bcbc5c2387cb064f218c5e27c70315
Author: hzheng-ledger <71653044+hzheng-ledger@users.noreply.github.com>
Date:   Tue Aug 22 16:38:28 2023 +0200

    LIVE-8683 Update coreum staking doc url (#4429)

    chore: update coreum staking doc url

commit 850dad94dfb9f04f48b4c7a5d90cfed6777013d7
Author: mitchellv-ledger <105203468+mitchellv-ledger@users.noreply.github.com>
Date:   Tue Aug 22 14:34:17 2023 +0100

    feat: add safe area inset to earn screen (#4355)

    * feat: add safe area inset to earn screen

    * chore: add changeset

    ---------

    Co-authored-by: fstream9 <mvivanti9@gmail.com>

commit 0d9ad3599bce8872fde97d27c977ab24445afc3a
Author: hzheng-ledger <71653044+hzheng-ledger@users.noreply.github.com>
Date:   Tue Aug 22 15:29:22 2023 +0200

    Support/LIVE-7931 Evm mock test (#4353)

    * chore: add evm mock test

    * fix: add changeset

    * fix: unit tests

    * fix: unit tests

    * fix: update screenshots

    * fix: lld tests

    * test(lld): update screenshots (windows-latest)  lld, test, screenshot

    * test(lld): update screenshots (ubuntu-latest)  lld, test, screenshot

    * test(lld): update screenshots (macos-latest)  lld, test, screenshot

    * fix: refactoring

    * fix: remove useless code

    * fix: remove useless code

    * fix: remove useless code

    ---------

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 00c11593565ac8b370df77af13dc3f1d8de90914
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Tue Aug 22 12:12:56 2023 +0100

    chore: add changeset

commit 48706a552330f729ba748f0cb3365dc90316e06c
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Tue Aug 22 12:11:35 2023 +0100

    bugfix: market alert when click on disabled ptx service button

commit 626636487c4d59a48da76c9892ec16fea626f5f6
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Tue Aug 22 11:48:53 2023 +0200

    support(llm): updated the tile of the enjoy screen in the nps flow

commit f111bd9ff438701545ee8fbdb5f0d3214f05f5c8
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Tue Aug 22 11:41:49 2023 +0200

    support(llm): add a beta mention to the tx alerts button in the notifications settings

commit f8fb67491a8dadf6def6b893b018e82bb2db5b78
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Tue Aug 22 11:33:45 2023 +0200

    feat(llm): added a warning to the select recipient screen when there is already a send transaction pending

commit 2cc2e7eb48c18d5679710725cda124e0f458c5cd
Merge: c404482254 dd2f92881c
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 22 11:03:13 2023 +0200

    Merge pull request #4251 from LedgerHQ/feat/LIVE-7618

    [LLD] - [LIVE-7618] - Typescript improvements and rework of the language & locale components across LLD.

commit dd2f92881cccb36e6dcfa82d1e93ce3de76f03f2
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 22 10:44:13 2023 +0200

    Add changeset

commit c404482254771e6af369e720889b4b22a4fd64e0
Merge: 28b212d3e5 e1c18fc218
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 22 10:23:11 2023 +0200

    Merge pull request #4403 from LedgerHQ/feat/LIVE-7620

    [LLD] - [LIVE-7620] - Fixing ts-expect-error's

commit 28b212d3e5baaa2fc2892e4173900e4598e07d6c
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Tue Aug 22 10:01:21 2023 +0200

    fix(deps): update dependency @rnx-kit/metro-resolver-symlinks to v0.1.32 (#4404)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit b8d4e81ea68f232b452b570b2c49dcca5d7056ae
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Tue Aug 22 09:52:42 2023 +0200

    feat(llm): fixed conflict

commit 9470e2429c84996180c6a26857eb2a499dd21623
Merge: 268ebcfd48 d90f58c7b6
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Tue Aug 22 09:51:58 2023 +0200

    Merge branch 'develop' of github.com:LedgerHQ/ledger-live into feat/LIVE-7718-send-tx-pending-indicator-warning

commit 268ebcfd488dcf77802d756eb94dd547943f4fb1
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Tue Aug 22 09:43:12 2023 +0200

    feat(llm): changed the color of the operations to be orange when pending

commit e41cdcc7070f9042bf4cc3319d6829fba6b1ec8e
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Aug 21 15:11:46 2023 +0200

    fix: Remove unused imports + remove unused variable

commit 745241060973aa67adb1da85b434459a262fdf34
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 21 12:35:54 2023 +0000

    test(lld): update screenshots (ubuntu-latest)  lld, test, screenshot

commit d46b4d7c686757eca7abc38ef40d17c5d4cb479a
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 21 11:18:00 2023 +0000

    test(lld): update screenshots (windows-latest)  lld, test, screenshot

commit 2c6e18444f450d123bd53cbc1ae010107157648c
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 21 10:57:10 2023 +0000

    test(lld): update screenshots (macos-latest)  lld, test, screenshot

commit 04a086a54d331855f7e3344bcfcc3809d0912174
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Aug 21 12:17:23 2023 +0200

    fix: Add GenuineCheck to useDynamicUrl + improve i18 variables flow + clean code

commit 76cd11e15437302001246acedae014f436a1bf30
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Aug 21 10:41:44 2023 +0200

    fix: Re-order imports

commit 44d529f8072461a55e3e4e8e03f7d5ce32bf6b1f
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Aug 21 10:41:29 2023 +0200

    fix: Locale to LanguageLocale

commit 03c7e68c5e7a4104b3cdfab12d9fa79815814b77
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Aug 21 10:40:10 2023 +0200

    fix: Remove unused languages files + clean i18 config

commit 9de30feb494f61f02d51327d2f3b7381a8f0cc9e
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 8 16:27:33 2023 +0200

    fix: Fix Locale type + fix default language on region select

commit 82bfff02fde3a4a262e8f9a442ad3433d860af11
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 8 14:10:06 2023 +0200

    fix: Remove unused import

commit 3d84436740afa4f81bd099861086e8f4f6c71bcc
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 8 11:52:29 2023 +0200

    fix: Fix undefined on language device support + fix typecheck issues

commit f7fe027ce7801ba6c652074a0553e00a66627b0f
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Aug 7 15:41:40 2023 +0200

    fix: Code polish + fix lint + fix typings + add comments + buildLocales

commit 74e3d7823542356489866509090c40f324916a42
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Jul 31 12:21:49 2023 +0200

    fix: Change to new Language architecture

commit 6e483024e823396b45c76fc51a35aa9279569958
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Thu Jul 27 09:46:15 2023 +0200

    fix: Cleaning + remove getLanguages

commit 96cadfc3ab31d1d48b2ff90337546e09345a8fd5
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Thu Jul 27 09:30:58 2023 +0200

    fix: Remove EXPERIMENTAL_LANGUAGES env + improve typings on useDynamicUrl

commit d90f58c7b65a67f829627ec2678b96eca7f5934c
Merge: 87cbec4062 b3f6a72ca9
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Mon Aug 21 18:08:01 2023 +0200

    Merge pull request #4395 from LedgerHQ/renovate/i18next-20.x

    fix(deps): update dependency i18next to v20.6.1

commit 87cbec4062f95d2348d7dd134cb4f13f071425d5
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Mon Aug 21 17:54:31 2023 +0200

    Support/llm dependencies upgrade (#4385)

    * chore(llm, native-ui): update dependencies

    * chore(llm, native-ui): lockfiles

    * chore(llm, native-ui): upgrade react-native-svg in native-ui, changesets

    * fix(llm): react-native-svg props

commit 84b865f2edefc12a5ade0e868b423bfbf879aa8b
Merge: d1705f6ee5 9a7748c262
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Mon Aug 21 17:42:12 2023 +0200

    Merge pull request #4400 from LedgerHQ/renovate/patch-nextjs-monorepo

    chore(deps): update nextjs monorepo to v13.4.19 (patch)

commit d1705f6ee51d77bda045c3d188974636eb827704
Merge: aff1ac0024 86038c0ce0
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Mon Aug 21 17:39:30 2023 +0200

    Merge pull request #4391 from LedgerHQ/support/fix-env-typings

    fix: typings on live-env

commit 9a7748c2625bdec9147789b41940efab5acd589e
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 21 15:38:58 2023 +0000

    chore(deps): update nextjs monorepo to v13.4.19

commit aff1ac0024fa934165f51afb61bec27dba78d279
Author: Abdurrahman Sastim <106583189+abdurrahman-ledger@users.noreply.github.com>
Date:   Mon Aug 21 17:17:44 2023 +0200

    [B2CQA-1920] Detox : Fix Android Flaky tests (#4396)

    fix: android flaky tests

commit e1c18fc2185e1251c13629d14c615510b1efd9b5
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Aug 21 16:33:49 2023 +0200

    fix: Removed ts-expect-error & fixed it

commit 86038c0ce0230c50e1a24481f51a9fbc52953d4e
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Mon Aug 21 15:34:04 2023 +0200

    fix: live-common-tools

commit b630bb8c16bdc31c1f7344f2bd6bd6042eaf8310
Author: Hedi EDELBLOUTE <hedi.edelbloute@gmail.com>
Date:   Mon Aug 21 15:15:20 2023 +0200

    rename bot jobs (#4401)

commit f3f4745b20261b877a938a897b5ad24291fca8aa
Author: Hedi EDELBLOUTE <hedi.edelbloute@gmail.com>
Date:   Mon Aug 21 13:50:20 2023 +0200

    Bot : currencies/family filter, disable & mooncake/silicium non reg removed (#4207)

commit afd56df75f5c2edcab8b5565b1a8172f5247d50b
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Mon Aug 21 12:10:18 2023 +0200

    fix: cli typescript errors

commit 1b4321f363b1e2c93e2406dd327cd4d1def7b458
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Mon Aug 21 10:26:34 2023 +0200

    feat: remove env.ts from live-common

commit fde2fe79f1df69fffe80763cd6d9792fe9de1262
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Fri Aug 18 17:36:52 2023 +0200

    feat: rework some env typings for better inference

    feat: rework some env typings for better inference

commit 2cdbc483fa1df4aa1dae4c93c83cf06bb0676927
Author: Martin CAYUELAS <112866305+mcayuelas-ledger@users.noreply.github.com>
Date:   Mon Aug 21 11:56:55 2023 +0200

    🐛 [FIX] : Notifications get re-enabled when updating the app (#4397)

    * 🐛 [FIX] : Notifications get re-enabled when updating the app

    * add changeset

commit c4046d7c65bbc5a74771ce1c4f4377610f3b0f65
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Mon Aug 21 10:16:07 2023 +0100

    fix: use screen name instead of navigation name

commit a4648d5c78e21989c9d5a3de7c7df80e05672eef
Author: Alexandru Pislariu <57287326+AlexandruPislariu@users.noreply.github.com>
Date:   Fri Aug 18 16:59:02 2023 +0300

    Bugfix/multiversx delegation amount miscalculation (#4364)

    * Fixed withdraw modal and types (#17)

    Co-authored-by: Alexandru Pislariu <57287326+AlexandruPislariu@users.noreply.github.com>

    * Fixed the minimum staking balance calculation. (#18)

    * Updated the calculation condition.

    * Fixed the "delegationEnabled" flag.

    * Updated the minimum balance instances with a singular helper function.

    * Added changeset.

    * Fixed missing import.

    ---------

    Co-authored-by: Miro Mărgineanu <miro.margineanu@elrond.com>

commit b3f6a72ca9522f18d7649aba2fb513e3ebb2c5cf
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Fri Aug 18 13:24:34 2023 +0000

    fix(deps): update dependency i18next to v20.6.1

commit 3723b104e48be93e7233837742d8e757422e8e6e
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Fri Aug 18 12:28:38 2023 +0100

    chore: add changeset

commit e00998215f6518b6f51d61987189e467423cff2c
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Fri Aug 18 12:27:09 2023 +0100

    fix: don't pop from live app when verifying address

commit d0e10a779096e1bd3964b2996254f0670eec8ef8
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Fri Aug 18 12:09:03 2023 +0200

    [LLD] - LIVE-4380 - Fix and improve date formatting based on locale (#4319)

    * Fix locale not working on date + improve workflow by adding useDateFormatter hook

    * Typos

    * Removed unused file and replace date formatter

    * Init tests

    * Add tests for utilitary functions

    * Improve test

    * Add useFakeTimers in beforeAll hook

    * Revert dependencies

    * Fix lint

commit 3f36af31273aba263b79b3f161599ac089cfc6e7
Author: Martin CAYUELAS <112866305+mcayuelas-ledger@users.noreply.github.com>
Date:   Fri Aug 18 11:53:54 2023 +0200

    ⚰️ [SUPPORT] :  Remove old implementation of WalletConnect in LL (#4317)

    * Remove Old Wallet Connect from LLM

    * Remove old WalletConnect from LLD

    * 📝 Update doc LLC

    * Add changesets

    * Remove unused files

commit 0d5d7fadf8b2fda392bfc3d35357074370a91ee1
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Fri Aug 18 10:40:22 2023 +0200

    LIVE-5592 - remove RemoteConfig deprecated from LLD (#4380)

    chore: remove RemoteConfig deprecated from LLD - LIVE-5592

commit 10e5816803ffbac2383f75a9d55bb7b4be17a9f1
Merge: f2b3a62602 7569f444db
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Fri Aug 18 10:31:22 2023 +0200

    Merge pull request #4373 from LedgerHQ/renovate/patch-nextjs-monorepo

    chore(deps): update nextjs monorepo to v13.4.18 (patch)

commit f2b3a6260255770301c159b4a3e20c9c8e5c3b34
Merge: d031e69737 f25c592dc9
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Fri Aug 18 10:30:08 2023 +0200

    Merge pull request #4382 from LedgerHQ/support/trigger-release-after-hotfix

    ci: add automatic trigger after using release prepare hotfix

commit f25c592dc94876b292dd05ea0076bb6d1ce88c4d
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Fri Aug 18 10:15:20 2023 +0200

    ci: add automatic trigger after using release prepare hotfix

commit 7569f444db7a992f3210e91ad2c9f53cada5ca17
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Fri Aug 18 07:40:04 2023 +0000

    chore(deps): update nextjs monorepo to v13.4.18

commit d031e69737ac4b4d00890de477408dfa4870faf7
Author: Alon Herbst <aherbst@paypal.com>
Date:   Tue Aug 8 00:09:38 2023 +0300

    Add PYUSD token icon

commit 70b4603a6fa34453c6fa6dd89fb3ed12a1038366
Merge: b76fe4fb37 77cd7fc87c
Author: Kevin Le Seigle <31533861+KVNLS@users.noreply.github.com>
Date:   Thu Aug 17 19:13:49 2023 +0200

    Merge pull request #4379 from LedgerHQ/support/hotfix-merge-conflicts

    :rotating_light: Hotfix merge conflicts

commit 77cd7fc87c765a67348893b83a9dba5e205e76a6
Author: Quentin Jaccarino <quent92100@gmail.com>
Date:   Thu Aug 17 18:32:19 2023 +0200

    ci: empty commit

commit 0ff215ac4c000c731eaa6ec20e72fe6514d841ce
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 17 15:45:38 2023 +0000

    chore(hotfix): :fire: hotfix release [skip ci]

commit 21746bc3bd7e9c4cd56a33779cc757762f1f9e34
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 17 15:35:13 2023 +0000

    chore(hotfix): :fire: hotfix prerelease [LLD(2.66.1-hotfix.0), LLM(3.29.1-hotfix.0)]

commit 27e4a76f6cc66aa6a7480f48329db04d33200c65
Author: KVNLS <kevin.leseigle@gmail.com>
Date:   Thu Aug 17 11:35:53 2023 +0200

    fix: add reactLegacy and nativeLegacy to the list of files included by the package

commit e7c0caf910474f44d27b40a34d8a3a24804bf836
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 17 15:22:42 2023 +0000

    chore(hotfix) :rocket: entering hotfix mode

commit b76fe4fb375cc73bebd2c57653f953fac090224a
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Thu Aug 17 14:30:01 2023 +0200

    fix(lld/deviceaction/error): broken layout (#4371)

commit f19f0b3b1ed57f1f4dc718fa2cdccb45a42c2ab5
Author: Alexandre Magaud <alexandre.magaud@gmail.com>
Date:   Thu Aug 17 14:06:00 2023 +0200

    Feat/LIVE-7596: Genuine check and firmware update check in Early Security Check during Sync Onboarding (#3887)

    * chore: rename resync overlay to desync overlay

    * feat: wip current work on genuine check during early security check

    - Drawer: failed/refused genuine check
    - Drawer: allow manager

    * fix: unlock device during ESC genuine check

    * feat: fw update check during ESC

    * feat: UI for idle early security check

    * feat: wip UI on active early security check

    * feat: handle genuine check refused from device

    * feat: ESC mandatory drawer on close button

    * feat: firmware update available logic and UI in ESC

    * [LIVE-6555] add language change prompt to sync onboarding (#3884)

    * feat: 1st implementation of going to firmware update and coming back from ESC

    * feat: handling user coming back from fw update

    The users can come back either:
    - because the fw update was completed
    - the user left the fw update before completion

    * chore: removing software check from sync onboarding companion

    * chore: update 1st step of sync onboarding companion

    * chore: cancelling the ESC brings back user to device selection

    * chore: add learn more support link for genuine check

    * chore: 1-way path on inf loop fw 1.2.1-il2 -> 1.2.1-il0

    * feat: automatically bypassing genuine check when coming back from fw update in ESC

    * fix: hook file name to get device info

    * feat: adapt error to new get latest available firmware action

    And handle locked device from the parent screen

    * feat: adapted firmware update to ESC

    Removing unnecessary steps during the fw update for a non-seeded device

    * chore: update UI from new design on the ESC

    * chore: handle device in bootloader mode

    Probably from a fw update that went wrong

    * feat: handle UnexpectedBootloader error from polling

    * feat: handle genuine check error and non-genuine case separately

    * fix: bypass unlock device on fw update

    When before onboarding (ESC) and no MCU to flash

    * feat: handle errors during genuine checks

    * chore: cleaning console logs

    * chore: changeset

    * chore: fix linter

    * fix: documentation and correct usage of Text component

    * chore: CheckCard in a separate component

    * feat: new UI rendering component for ESC

    * chore: handle not found entity other error case

    * chore: remove TODO comment

    * fix: rendering correctly bluetooth disabled error

    * chore: QA limiting fw update on all il fw from il2 -> il0

    ---------

    Co-authored-by: Gabriel Restori Soares <gabriel.soares@ledger.fr>

commit 4a2a89aa5494f4625009e9cd98e77e4cbfae500c
Merge: b9a407b49e 5fb60bc6bb
Author: Kevin Le Seigle <31533861+KVNLS@users.noreply.github.com>
Date:   Thu Aug 17 13:29:25 2023 +0200

    Merge pull request #4372 from LedgerHQ/support/fix-icons-legacy

    Fix reactLegacy and nativeLegacy for icons lib

commit 5fb60bc6bb0bc6a9452d580cdace16ca87e478ff
Author: KVNLS <kevin.leseigle@gmail.com>
Date:   Thu Aug 17 11:35:53 2023 +0200

    fix: add reactLegacy and nativeLegacy to the list of files included by the package

commit b9a407b49e1a989bec0f28cd9731becd114d545e
Merge: 41a184849b 45716e91e8
Author: Quentin Jaccarino <quentin.jaccarino@ledger.fr>
Date:   Thu Aug 17 11:10:10 2023 +0200

    Merge pull request #4358 from LedgerHQ/support/release-merge-conflicts

    :rotating_light: Release merge conflicts

commit 45716e91e8fb391bd0508e8c994a475cacb5439a
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Thu Aug 17 10:26:17 2023 +0200

    ci: trigger

commit 41a184849be2f768cca205bc50c0778d483bbbe4
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 17 10:23:01 2023 +0200

    chore(deps): update nextjs monorepo to v13.4.16 (patch) (#4354)

    chore(deps): update nextjs monorepo to v13.4.16

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit aed4a7474ff47a796b24f6953ebec68ba90d51ab
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 17 10:22:40 2023 +0200

    fix(deps): update dependency color to v4 (#4349)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 2847c7c500c108efb7563e898626f3572d6b0891
Merge: a6c6b09926 60992a9b20
Author: Quentin Jaccarino <quentin.jaccarino@ledger.fr>
Date:   Thu Aug 17 10:18:29 2023 +0200

    Merge pull request #4362 from LedgerHQ/support/add-recover-local

    support: add recover local dev support

commit 60992a9b20a23952f75900767f481df2bf69ed18
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 16 16:35:56 2023 +0200

    support: add recover local dev support
    Using minirecover locally you need to set `IGNORE_CERTIFICATE_ERRORS=1`

commit a6c6b099267d03012ba2a82777dc01f7cf0f9a45
Merge: 7c17421460 2f73df6545
Author: Quentin Jaccarino <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 16 16:20:04 2023 +0200

    Merge pull request #4360 from LedgerHQ/bugfix/typeerror-wallet-api

    fix(wallet-api): missing new on error constructor

commit 7c1742146041b9c6bee9937378c579b81fc8e3d1
Merge: 3ee785d1c2 cf35fae21c
Author: Quentin Jaccarino <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 16 16:17:23 2023 +0200

    Merge pull request #4359 from LedgerHQ/bugfix/PROTECT-2292

    fix(RecoverRestore): add onRetry to error handling [PROTECT-2292]

commit 2f73df65457c16cceb632a9c745e4c20a6ae4934
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 16 15:53:56 2023 +0200

    fix(wallet-api): missing new on error constructor

commit cf35fae21c1cda4700ff4ac76739ba79ef89a77b
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 16 15:45:07 2023 +0200

    fix(RecoverRestore): add onRetry to error handling [PROTECT-2292]

commit 3ee785d1c20086cea495215578a40764c4ad5351
Merge: a3d23f1b96 bdc6055d2a
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Wed Aug 16 15:43:42 2023 +0200

    Merge pull request #4345 from LedgerHQ/renovate/ledgerhq-live-app-sdk-0.x

    fix(deps): update dependency @ledgerhq/live-app-sdk to ^0.8.0

commit f6a709af79e833807de2b0c9a68935a1d5aee45b
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Wed Aug 16 13:39:59 2023 +0000

    chore(release): :rocket: prepare release [skip ci]

commit a3d23f1b9670affd032b0a2ef8a1b0261bdc5972
Merge: 1cfd51f86f 67bd32f808
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Wed Aug 16 14:58:49 2023 +0200

    Merge pull request #4347 from LedgerHQ/renovate/nodemon-3.x

    chore(deps): update dependency nodemon to v3

commit 1cfd51f86f08670e47c77dea45ad8f17f68c9041
Author: mitchellv-ledger <105203468+mitchellv-ledger@users.noreply.github.com>
Date:   Wed Aug 16 13:48:52 2023 +0100

    Feat/earn info modals (#4327)

    * feat: add earn info modal

    * chore: add changeset

    * feat: use drawer directly in place of root drawer

    * chore: lint

    * fix: undefined params

    * feat: add earn info modal trigger via redux state

    * chore: lint

    ---------

    Co-authored-by: fstream9 <mvivanti9@gmail.com>

commit e324ab51c934acc933ec7811c9d2d42875099770
Merge: 62310d61cd df24f7f950
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Wed Aug 16 14:06:35 2023 +0200

    Merge pull request #4346 from LedgerHQ/renovate/execa-7.x

    chore(deps): update dependency execa to v7

commit 080903145977861b28d79e5a0e02c0d6e5e5b19c
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Wed Aug 16 09:17:10 2023 +0000

    chore(prerelease): :rocket: release prerelease [LLD(2.66.0-next.3), LLM(3.29.0-next.2)]

commit b0af2c6f65f0fd5f0afa24d41f35fdd6523ed65d
Author: Hakim <59644786+haammar-ledger@users.noreply.github.com>
Date:   Wed Aug 16 11:05:41 2023 +0200

    [bugfix] Avoid conflicts in currency feature flag names in manager (#4339)

    * In manager, look for exact currency name in feature flag

    * Add changeset

    * Use useFeature instead of manually handling flag names

    * Cleanup old comments

commit df24f7f9504062a2989a02b5747f2acae9b7b28b
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Wed Aug 16 10:13:18 2023 +0200

    chore(deps): fix execa new syntax

commit 62310d61cd8c1755ba75e7ced500c6c6aaacc871
Author: Alexandru Pislariu <57287326+AlexandruPislariu@users.noreply.github.com>
Date:   Wed Aug 16 11:54:44 2023 +0300

    MultiversX: Withdraw modal fixes (#4089)

    * Fixed withdraw modal and types (#17)

    Co-authored-by: Alexandru Pislariu <57287326+AlexandruPislariu@users.noreply.github.com>

    * Return account guarded flag

    * Added guarded account warnings

    * isGuarded on Elrond resources type

    * Updated static condition

    * Fixed lint warning on the mobile build.

    * snapshots update

    * Fixes

    * Fixed typecheck issue

    * Add new ESDT tokens

    * Fixes

    * Fixes

    ---------

    Co-authored-by: Miro Mărgineanu <miro.margineanu@elrond.com>

commit 88846cc39d053726800aabb435b04dc299c4c485
Author: hzheng-ledger <71653044+hzheng-ledger@users.noreply.github.com>
Date:   Wed Aug 16 10:52:53 2023 +0200

    Fix: LIVE-8269 cosmos amount string parser (#4281)

    * fix: cosmos amount string parser

    * fix: small refactoring

    * fix: add changeset

commit 67bd32f8089d29bf9542bfcb005de5c3df577690
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 14 09:19:52 2023 +0000

    chore(deps): update dependency nodemon to v3

commit cbd6f783ff1bb7539783423b150f0576791c7978
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 14 09:19:15 2023 +0000

    chore(deps): update dependency execa to v7

commit bdc6055d2a145072e706e5c1ffff5a64dbd0b584
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 14 09:18:38 2023 +0000

    fix(deps): update dependency @ledgerhq/live-app-sdk to ^0.8.0

commit 46f0f999a6a4b850b24cb87905256a2fd8c73976
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 14 10:57:23 2023 +0200

    chore(deps): update dependency regenerator-runtime to v0.14.0 (#4315)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit f597506f91ce1727f4427403d78a9dd2ebd68463
Author: C Ng <138497251+cng-ledger@users.noreply.github.com>
Date:   Mon Aug 14 09:57:04 2023 +0100

    support(test-env): rename test env check fn (#4335)

commit 5a558b58a22ee963ba3873392106c1bba0915b75
Merge: f1db4e0a86 4cfc701c0e
Author: Côme Grellard <come.grellard@ledger.fr>
Date:   Mon Aug 14 09:48:44 2023 +0200

    Merge pull request #3928 from LedgerHQ/feat/LLM-new-deposit-flow

    ✨ [FEAT] :  New deposit flow on LLM

commit f1db4e0a86ac474fe73f3076788ed28f516cf99e
Merge: 193a6e6530 2c9001d5f5
Author: Beth Swingler <beth.swingler-ext@ledger.fr>
Date:   Sat Aug 12 11:07:45 2023 +0100

    Merge pull request #4278 from LedgerHQ/feat/LIVE-7702-earn-fe-update-no-funds-modal-title-dynamically

    bugfix/live 7702 Earn dashboard - update no funds modal title dynamically, upgrade 18next on desktop only

commit 2c9001d5f56d6135d35e9d92ebabd9772ececdb9
Author: Beth Swingler <beth.swingler-ext@ledger.fr>
Date:   Fri Aug 11 18:11:17 2023 +0100

    fix: 18next packages; dynamic NoFundsModal title

commit 8efcab3282ab56396b7d511b2c7b8677a94a9102
Merge: 59abc73c9e b4856b154c
Author: Quentin Jaccarino <quentin.jaccarino@ledger.fr>
Date:   Fri Aug 11 17:12:53 2023 +0200

    Merge pull request #4330 from LedgerHQ/smartling-translations-20230811133611345

    Smartling on-demand translation delivery from release

commit 193a6e6530287eb5cc84efa18f707db733e6258a
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Fri Aug 11 15:49:45 2023 +0200

    ci: small updates on test.yml

commit 4cfc701c0e1fd82506ae2620b892a4f6b8ee412f
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Fri Aug 11 16:18:26 2023 +0200

    feat(llm): deposit flow e2e test fixed

commit 59abc73c9e794fa849010413bdc3f391d317b5df
Author: Desifly <desire.ndri@ledger.fr>
Date:   Fri Aug 11 15:50:33 2023 +0200

    Update RELEASE_NOTES.md

commit b4856b154c1435a79d21120f0264fb29f4bccdc2
Author: ldg-smartling-sa <133769770+ldg-smartling-sa@users.noreply.github.com>
Date:   Fri Aug 11 16:36:50 2023 +0300

    File apps/ledger-live-desktop/static/i18n/en/app.json was translated to tr-TR locale

commit 3470c25b69c72a4918306ee58891f7c1724fc018
Author: ldg-smartling-sa <133769770+ldg-smartling-sa@users.noreply.github.com>
Date:   Fri Aug 11 16:36:46 2023 +0300

    File apps/ledger-live-desktop/static/i18n/en/app.json was translated to es-ES locale

commit 3354b399f5c914cdf4445b353035d0ba7341ff20
Author: ldg-smartling-sa <133769770+ldg-smartling-sa@users.noreply.github.com>
Date:   Fri Aug 11 16:36:42 2023 +0300

    File apps/ledger-live-desktop/static/i18n/en/app.json was…
davidecarpini added a commit to vechainfoundation/ledger-live that referenced this pull request Sep 5, 2023
commit d41e17ff908dacfcfafd840818c537f5952f5438
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Tue Sep 5 11:08:50 2023 +0200

    chore(deps): update dependency jetifier to v2 (#4560)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 432f0936a35cce201b8b5165d95f579e3473e8f4
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Tue Sep 5 10:43:10 2023 +0200

    chore(deps): update dependency @types/unzipper to v0.10.7 (#4550)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 9fac62c03a70a85fdf32e3f1a54b8a1491b7c176
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Tue Sep 5 10:43:00 2023 +0200

    chore(deps): update dependency execa to v8 (#4553)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit f848f100998f577981a45364e3337b5cdbcb2209
Merge: 18b4a47b48 3ec77034ee
Author: Quentin Jaccarino <quentin.jaccarino@ledger.fr>
Date:   Mon Sep 4 15:20:47 2023 +0200

    Merge pull request #4544 from LedgerHQ/support/update-wallet-api

    chore(deps): update dependencies for wallet-api [LIVE-9007]

commit 18b4a47b4878a23695a50096b7770134883b8a2e
Author: hzheng-ledger <71653044+hzheng-ledger@users.noreply.github.com>
Date:   Mon Sep 4 11:52:10 2023 +0200

    Support/LIVE-8495 Fix Elrond bot test (#4578)

    * fix: elrond bot tests

    * fix: update changeset

    * fix: remove unnecessary code

    * fix: remove unnecessary code

commit ea97040266cc0b0b084882739bd38a90908d2b98
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Mon Sep 4 10:34:32 2023 +0200

    Feat/live 8638 LLM Stax Early Security Checks pixel polish (#4519)

    * fix(llm/earlysecuritychecksbody): pixel polish

    * fix(llm/GetDeviceScreen): missing unit warning

    * fix(llm/earlysecuritychecks): icons and layout of drawer

    * fix(llm/error rendering): DRY to make it reusable, w/ new icons

    * fix(llm): lint

    * fix(llm/earlysecuritychecks): rendering of completed steps: title only

    * refactor(llm/BleDevicePairing): use ErrorBody

    * fix(llm/ChangeDeviceLanguagePrompt): pixel polish

    * fix(llm/DeviceLanguageInstalled): pixel polish + new wording

    * style(llm): rename ErrorBody into GenericInformationBody

    * style(llm): lint

    * chore(llm): changeset

    * fix(llm/earlycheck-fwupdate): pixel polish

    * fix(nativeui/verticalstepper): pixel polish

    * refactor(llm/error rendering): replace renderedInType by a context

    * refactor(llm/GenericInformationalDrawer|View): use GenericInformationBody

    * fix(llm/esc): spacing in drawer

    * style(llm): rename DrawerContext to IsInDrawerContext

    * refactor(llm/IsInDrawerContext): add default provider

    * fix(nativeui/VerticalTimeline): fix aspect of lines

    * chore: changeset

    * fix(llm/deviceaction/rendererror): spacing for Bluetooth error

    * fix(llm/GenericInformationalDrawerContent): alignself stretch

commit de5b4d2a4f2909fe94d54df4de6df92fdb86f39c
Merge: 04206a2939 30decb6882
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Fri Sep 1 17:49:47 2023 +0200

    Merge pull request #4575 from LedgerHQ/support/fix-broken-actions

    fix: broken fetch in actions

commit 04206a2939bb8bb807a9f57a175f054c613e3d57
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Fri Sep 1 16:06:40 2023 +0200

    fix(llm/synconboarding): add device to known devices as soon as device is seeded (#4556)

    * fix(llm/synconboarding): add device to known devices as soon as device seeded

    * chore: changeset

commit 8f99e87e43da87ac9cc768eddfb183ebc88cebb2
Author: mitchellv-ledger <105203468+mitchellv-ledger@users.noreply.github.com>
Date:   Fri Sep 1 15:03:36 2023 +0100

    Bugfix/earn reloading infinite (#4569)

    * feat: add new tag to earn in main side bar

    * feat: cache live app manifest

    * Revert "feat: add new tag to earn in main side bar"

    This reverts commit 1ebf470fb4ea0d6292302b64956f10925e3ead94.

    * chore: add changeset

    ---------

    Co-authored-by: fstream9 <mvivanti9@gmail.com>

commit 30decb6882a4a5618362e5bf7e75f5b7d1426284
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Fri Sep 1 15:48:06 2023 +0200

    fix: link to filesystem instead of @develop for bot composite

commit 4f2d90b0f7c95f7377c59c9d1cbee28a6ed7ef27
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Fri Sep 1 14:30:35 2023 +0200

    fix: broken fetch in actions

commit 2fbe4999ff4817ab1918cf218d2c4eb85ad4dadc
Merge: ca8d064bab 6852277c5b
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Fri Sep 1 14:19:08 2023 +0200

    Merge pull request #4509 from LedgerHQ/feat/LIVE-8386

    [LLD] - [LIVE-8386] - Add Storyly SDK to Ledger Live Desktop

commit ca8d064babf4df3babbdd4ba03f4be742d805edb
Author: mitchellv-ledger <105203468+mitchellv-ledger@users.noreply.github.com>
Date:   Fri Sep 1 11:57:52 2023 +0100

    feat: add new tag to earn in main side bar (#4552)

    Co-authored-by: fstream9 <mvivanti9@gmail.com>

commit ea5e58a162d94355722a986192b832ba045d2021
Merge: ee8bfd6b98 6c5a27ac02
Author: Côme Grellard <come.grellard@ledger.fr>
Date:   Fri Sep 1 12:06:37 2023 +0200

    Merge pull request #4557 from LedgerHQ/bugfix/LIVE-9191-deposit-address-verification-device-selection

    Bugfix/live 9191 deposit address verification device selection

commit ee8bfd6b9895bfca40fe83ccf3c9ba1d3e714c88
Merge: c15eab0a94 b2e8c1053e
Author: Kevin Le Seigle <31533861+KVNLS@users.noreply.github.com>
Date:   Fri Sep 1 11:33:41 2023 +0200

    Merge pull request #4476 from LedgerHQ/support/lld-add-modelId-export

    fix: Add modelId and modelIdList to metadata on export

commit c15eab0a946767c8d861db5c01a032bb136dbbcd
Merge: bfd4fef405 282962fef6
Author: Maxence LE GALL <39890664+mle-gall@users.noreply.github.com>
Date:   Fri Sep 1 10:03:08 2023 +0200

    Merge pull request #4562 from LedgerHQ/feat/LIVE-8595-LIVE-8598/finalStaxPolishesLLD

commit 282962fef6c80c52344f2fe5dc20c7fcd461142f
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 31 21:44:40 2023 +0000

    test(lld): update screenshots (ubuntu-latest)  lld, test, screenshot

commit 22aafdce45871dde12890134113890e7bfefa87f
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 31 15:56:29 2023 +0000

    test(lld): update screenshots (windows-latest)  lld, test, screenshot

commit 9e212755afb7b80fbce08545a80bd528a6c4e803
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 31 15:47:00 2023 +0000

    test(lld): update screenshots (macos-latest)  lld, test, screenshot

commit 6852277c5bb8a34cb7715f2987420816526abb7f
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Thu Aug 31 17:34:12 2023 +0200

    Add type on layout + fix lint

commit 808ce40d24b428dabab74b2780057041adadbe2b
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Thu Aug 31 17:04:13 2023 +0200

    Added classic layout as default

commit 63ad53e0be78e01a75c2514b8af3c9c2ced41426
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Thu Aug 31 16:52:39 2023 +0200

    Fix naming for Storyly + Update to latest version of Storyly + add update on lang change

commit 61b1f38193dc53824e35e3cf2d683330846d9f91
Author: male-gal <maxence.le-gall@ledger.fr>
Date:   Thu Aug 31 16:17:57 2023 +0200

    feat(LLD/Stax): Final pixel polishes (Connect device + post onboarding)

commit 6c5a27ac029d473b97e1ba93e7f1842b4aa4ea7c
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Thu Aug 31 16:05:17 2023 +0200

    fix(llm): Deposit
    Fixed the following issue : User cannot select device on device selection screen when verifying address a second time

commit bfd4fef405f832489cc5258330e6483260c896d2
Author: Hakim <59644786+haammar-ledger@users.noreply.github.com>
Date:   Thu Aug 31 15:46:33 2023 +0200

    Hardcode Ledger validator details for Solana (#4540)

    * Hardcode Ledger validator details for Solana

    * Add changeset

    * lint

    * Only use hardcoded data as backup if not available from backend

    * typo

commit d6935a27b4dcfcfcf983e5b861eddfa4a783f168
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 31 14:34:16 2023 +0200

    chore(deps): update dependency eslint-config-prettier to v9 (#4529)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 85a63d38fc83195fda9c072e2d50b63dda608f46
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 31 14:33:35 2023 +0200

    fix(deps): update formatjs monorepo (major) (#4501)

    fix(deps): update formatjs monorepo

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit e9e79a3d4d5ec84cf3995e1227bf750ad2884407
Merge: efd119dc7c 3ec5739f8a
Author: Kieran Allen <132384348+kallen-ledger@users.noreply.github.com>
Date:   Thu Aug 31 13:03:28 2023 +0100

    Merge pull request #4534 from LedgerHQ/feat/LIVE-9136

    [feat/LIVE-9136]: add api and helper hooks for v5 swap transition

commit efd119dc7c320715fff2feeffedbaaf1e78b7583
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Thu Aug 31 11:46:38 2023 +0200

    Bugfix/live 8464 llm contexts improvements (#4453)

    * chore(llm): cleanup dead code DelayedTrackingProvider

    * style(llm): rename AdjustProvider into AdjustSetup (not a provider)

    * refactor(llm/AnalyticsProvider): unused provider

    * style(llm): rename ButtonUseTouchable into ButtonUseTouchableContext

    * refactor(terms): get rid of the useless context, rely solely on react-redux

    * refactor(llm): AnalyticsContext.Provider in its own component

    * docs(llm/terms): improve comment

    * chore: changeset

    * style(llm/SegmentSetup): improve readability

commit d439c49900506c08ebf079a99740b0d9681915fd
Merge: cad1444fbf 7d28d25f15
Author: Stephane Lieumont <118977988+stephane-lieumont-ledger@users.noreply.github.com>
Date:   Thu Aug 31 11:38:31 2023 +0200

    Merge pull request #4543 from LedgerHQ/bugfix/react-ui-checkbox-console-error

    fix(react-ui): fix checkbox component console error

commit cad1444fbfcf7d05992e03c44e28ec8ecb024d0d
Merge: 81f0e92dfa 66f699af1a
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Thu Aug 31 11:37:42 2023 +0200

    Merge pull request #4539 from LedgerHQ/support/update-actions

    Update some actions to remove the use of isomorphic-unfetch in favor of `node`'s fetch

commit 3ec5739f8a4e3ff81da468cd91036b7b271dfd06
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Thu Aug 31 10:27:35 2023 +0100

    fix: update tests, add deps and changeset

commit 7d28d25f154de22bb9e69f57e924de5ad0f1aa57
Author: Stephane Lieumont [LEDGER-EXT] <stephane.lieumont-ext@ledger.fr>
Date:   Thu Aug 31 11:11:55 2023 +0200

    fix(react-ui): remove readOnly

commit 464bd265914d34445883b97b9762fb83cf4dd888
Author: Stephane Lieumont [LEDGER-EXT] <stephane.lieumont-ext@ledger.fr>
Date:   Thu Aug 31 11:05:39 2023 +0200

    fix(react-ui): replace readOnly by onChange property

commit 3ec77034ee8df07e11010cbc723625a79fb286e5
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Thu Aug 31 09:28:57 2023 +0200

    chore(deps): update dependencies for wallet-api [LIVE-9007]

commit a18628b55ad7375ae49acb2b5686d288b804ce08
Author: Stephane Lieumont [LEDGER-EXT] <stephane.lieumont-ext@ledger.fr>
Date:   Thu Aug 31 08:18:25 2023 +0200

    fix(react-ui): linter ci

commit 916d6975e52f4f83291a9ce1a3e7e60dbccb5b20
Author: Stephane Lieumont [LEDGER-EXT] <stephane.lieumont-ext@ledger.fr>
Date:   Thu Aug 31 07:53:15 2023 +0200

    fix(react-ui): fix checkbox component console error

commit 81f0e92dfabfcaf05616a42774f4ce5df0bf1411
Merge: fb4d9f068a 67fafeeeea
Author: Mohammed Almujil <130482667+mohammed-ledger@users.noreply.github.com>
Date:   Wed Aug 30 18:01:10 2023 +0100

    Merge pull request #4537 from LedgerHQ/support/fix-broken-env-link

    Support: fix broken env link

commit 66f699af1af0988a470422143a4b298c7f01e575
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Wed Aug 30 17:57:17 2023 +0200

    chore: update actions

commit 67fafeeeeac31b1993d6297b9660f863bd42cb75
Merge: 46f478c1f1 fb4d9f068a
Author: Mohammed Almujil <mohammed@ledger.fr>
Date:   Wed Aug 30 17:04:14 2023 +0100

    Merge branch 'develop' into support/fix-broken-env-link
    rebase branch

commit 46f478c1f12565b1be24147ad8d2b72a6c5bb6c2
Merge: 3e082826f1 1c6deb2336
Author: Mohammed Almujil <mohammed@ledger.fr>
Date:   Wed Aug 30 15:46:22 2023 +0100

    Merge branch 'develop' into chore/fix-broken-env-link

commit 23acb640e10ceebf60b12e89f58d1c889a029795
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Wed Aug 30 14:37:15 2023 +0100

    feat: add helper functions

commit fb4d9f068a8fb8c839e17d677c384b77670db1d9
Merge: 1c6deb2336 41a38e953b
Author: Maxence LE GALL <39890664+mle-gall@users.noreply.github.com>
Date:   Wed Aug 30 15:02:41 2023 +0200

    Merge pull request #4518 from LedgerHQ/feat/LIVE-8610/ProviderIconsRemoval

    feat(IconsUI/ReactUI): ProviderIcons removal from Design System

commit ec3d96373e46ef3d10c036c9f74b098871bdb837
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Wed Aug 30 13:22:58 2023 +0100

    fix: update test

commit e421b6705157e822ee2ec6719a890a44d005324d
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Wed Aug 30 13:15:52 2023 +0100

    chore: add new line

commit 023991b9c761b4575447b17c8076c034e6eedd92
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Wed Aug 30 13:11:56 2023 +0100

    chore: remove tool-versions

commit a834e9038da978530e51b15189f4474ef5a3a0f0
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Wed Aug 30 13:11:01 2023 +0100

    feat: add helper hooks

commit 0a9340891d60eb078585335c32df0781287d71a3
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Wed Aug 30 13:08:39 2023 +0100

    feat: add api and helper hooks for v5

commit 3e082826f1b0cb099afb52d2109703ac42fa1f72
Author: Mohammed Almujil <mohammed@ledger.fr>
Date:   Wed Aug 30 10:57:02 2023 +0100

    chore: fix broken env link

commit 1c6deb2336a8b76517cc4d367f76dca24f9228dc
Author: Hakim <59644786+haammar-ledger@users.noreply.github.com>
Date:   Wed Aug 30 11:22:50 2023 +0200

    [bugfix] Fix regression when serializing cosmos operation extra (#4528)

    * Fix regression when serialiazing cosmos operation extra

    * Add changeset

    * [WIP]fix: cosmos unit tests (#4532)

    fix: cosmos unit tests

    ---------

    Co-authored-by: hzheng-ledger <71653044+hzheng-ledger@users.noreply.github.com>

commit e0362e580f4f309615b9cb5a905b3483daf9148f
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 29 23:47:37 2023 +0200

    Add Storyly debugger + sort imports

commit 3dc9ba19b73ddd3c1a262df6339e16279d9b0aa7
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Tue Aug 29 14:38:17 2023 +0200

    chore(deps): update dependency @testing-library/react-hooks to v8 (#4514)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 52bb4607d820bca2d1e2d4b3c33b452c333be6df
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Tue Aug 29 14:38:02 2023 +0200

    chore(deps): update dependency @types/node to v18 (#4516)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 41a38e953b17075b5ab7bec307c147d8f74b7501
Author: male-gal <maxence.le-gall@ledger.fr>
Date:   Tue Aug 29 14:32:01 2023 +0200

    feat(IconsUI/ReactUI): ProviderIcons removal from Design System

commit 1a3205b3c7abaefb39276565fce5541a6a7aaed2
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Tue Aug 29 14:26:23 2023 +0200

    chore(deps): update dependency @testing-library/jest-dom to v6 (#4511)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit c6921f497399c9b48b89b460e39cae309571e0d7
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Tue Aug 29 14:20:33 2023 +0200

    chore: update pnpm in actions with same version as prototools (#4515)

commit a46453e291e52f9c832cdcc058d9fa951519888f
Author: @greweb <renaudeau.gaetan@gmail.com>
Date:   Tue Aug 29 12:40:03 2023 +0200

    chore: update pnpm (#4498)

commit 5d20c326a038a430a38f28815ba65af71152118b
Author: sarneijim <38540290+sarneijim@users.noreply.github.com>
Date:   Tue Aug 29 11:39:12 2023 +0100

    feat: support customFees in swap web app mode (#4174)

    * feat: support customFees in swap web app mode

    * fix: add other custom params

    * feat: update wallet-api dependencies

    * fix: fix async call getCustomFeesPerFamily

    * fix: fix typecheck

    * refactor: move getCustomFeesPerFamily to common

    * fix: fix lint

    * fix: remove feesStrategy as mandatory to open swap web app

    * fix: add convertToNonAtomicUnit utils

    * chore: update wallet-api server call after upgrade

    * fix: fix lint

commit 1e5c2e53a38a43cfe21fa00a049c0c879ad52571
Author: Gaëtan Renaudeau <renaudeau.gaetan@gmail.com>
Date:   Tue Aug 29 12:31:14 2023 +0200

    chore: renovate config to allow @electron/* pkgs

commit a35135437bef6fcd44925a240f0f4894eeb565da
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 29 12:19:47 2023 +0200

    Add changeset

commit d398cd62a8bdff0b7d72d7bed7a021c2442fbf77
Merge: e12993f480 074d99c9e0
Author: Stephane Lieumont <118977988+stephane-lieumont-ledger@users.noreply.github.com>
Date:   Tue Aug 29 11:05:20 2023 +0200

    Merge pull request #4468 from LedgerHQ/feat/protect-2420-update-cta-recover-copy

    feat(protect-2420): update recover wording

commit d1824475e77c92774dfa8ca93d3e1eebe3a6b1f3
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 29 09:52:33 2023 +0200

    Add remarks

commit f82da707b20ddd70fa71a2d16957cbd86a76c018
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 29 09:41:12 2023 +0200

    Add comments

commit 5a9da71b9398f6a69a7ea7ee0456009206599a19
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Sat Aug 26 17:43:37 2023 +0200

    Added storily-web, added useStorily hook, add StorilyBase component, add StorilyDefaultStyle

commit e12993f4804443a142db7b52f66a1d912caeab5f
Author: Landry Monga <lvndry@protonmail.com>
Date:   Mon Aug 28 19:40:48 2023 +0200

    Polkadot bridge mock (#4456)

    * polkdadot bridge mock

    * test(lld): update screenshots (macos-latest)  lld, test, screenshot

    ---------

    Co-authored-by: lvndry <lvndry@proton.me>
    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 1f9626aa9f1503cb7f23ef23d431932590fd25da
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Mon Aug 28 17:39:55 2023 +0200

    chore: refine renovate rules

commit 06684aa6d7d90d409138297b606509646c3c730c
Author: @greweb <renaudeau.gaetan@gmail.com>
Date:   Mon Aug 28 17:33:25 2023 +0200

    chore: add /svg-icons in common tools (#4490)

commit 42a90710a7c68ea97b2f6867cda603116c76282f
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Mon Aug 28 16:58:20 2023 +0200

    chore: update renovate config

commit f55c6e4f9027e8277553af44334026a70ee3bdaa
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Mon Aug 28 16:45:11 2023 +0200

    Feat/live 8375 fw update redesign (#4471)

    * feat(llm/fwupdatebanner): new design

    * fix(llm/fwupdatebanner): loading state

    * chore: changeset

    * chore(llm): remove unimported code

    * chore(llm): cleanup comments

    * fix(llm/fwupdatebanner): loader color

commit 4901a78f780d230f29272a1b439914c6df31e991
Merge: 902f2ed757 a51494ccfa
Author: Maxence LE GALL <39890664+mle-gall@users.noreply.github.com>
Date:   Mon Aug 28 15:53:25 2023 +0200

    Merge pull request #4310 from LedgerHQ/feat/LIVE-8596/LLDSyncOnboardingPolish

    feat(LLD/Sync Onboarding): Pixel polishing

commit a51494ccfa4aa0eca08c51f9c3687b2831b0eccf
Author: male-gal <maxence.le-gall@ledger.fr>
Date:   Mon Aug 28 15:19:38 2023 +0200

    feat(LLD/Sync Onboarding): Pixel polishing

commit 902f2ed7570d82cc6aaafd5c1bb9f0372feeb4a5
Merge: 4d5ff97ba3 aed57fdf40
Author: Côme Grellard <come.grellard@ledger.fr>
Date:   Mon Aug 28 15:05:28 2023 +0200

    Merge pull request #4480 from LedgerHQ/support/LIVE-9078-llm-deposit-copy-updates

    support(llm): small deposit copy updates

commit 4d5ff97ba346365a7b88a446ab9ef7d1cbfbc17d
Merge: a3a46a0ce7 51bd69d5ab
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Mon Aug 28 14:14:06 2023 +0200

    Merge pull request #4483 from LedgerHQ/support/live-9091

    chore: prevent SYNC_SOME_ACCOUNTS log with empty accounts[]

commit a3a46a0ce74621851b4893cad77f593c510f328c
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 28 14:10:18 2023 +0200

    fix(deps): update dependency webpack to 4.46 (#4482)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 550fb40887552cab5914cd1cda1968597e296208
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 28 12:32:28 2023 +0200

    fix(deps): update dependency react-i18next to v11.18.6 (#4434)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 51bd69d5ab0332794edf5caff22d493596255c61
Author: Gaëtan Renaudeau <renaudeau.gaetan@gmail.com>
Date:   Mon Aug 28 11:52:26 2023 +0200

    chore: prevent SYNC_SOME_ACCOUNTS log with empty accounts[]

commit aed57fdf40744557c2b1693427ebe74405073ad7
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Mon Aug 28 10:32:12 2023 +0200

    support(llm): small deposit copy updates

commit d936c57630a64798998787717d9d6d1e1e35deb0
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Mon Aug 28 10:28:41 2023 +0200

    support(llm): small deposit copy updates

commit de06c81fd976a46fa8b637cef7d284602d46b16b
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Mon Aug 28 09:51:53 2023 +0200

    feat(llm/earlysecuritychecks): implemented tracking plan (#4475)

    * feat(llm/earlysecuritychecks): implemented tracking plan

    * fix(llm/esc/tracking): error drawer buttons tracking

commit b2e8c1053e57c763575c9c4d77d1daca8ef566fe
Author: KVNLS <kevin.leseigle@gmail.com>
Date:   Fri Aug 25 18:34:14 2023 +0200

    fix: Add modelId and modelIdList to metadata on export

commit 9578233038ecf35b3cbbb39519bfa8d3860d7056
Merge: 9090d33d87 b8d4e81ea6
Author: Côme Grellard <come.grellard@ledger.fr>
Date:   Fri Aug 25 16:49:14 2023 +0200

    Merge pull request #4408 from LedgerHQ/feat/LIVE-7718-send-tx-pending-indicator-warning

    💄 LLM - Send Tx Pending Warning

commit 9090d33d870329e64c36e30f02aad5254c0e7f28
Merge: 0cc83c5588 d68489789b
Author: Côme Grellard <come.grellard@ledger.fr>
Date:   Fri Aug 25 16:49:06 2023 +0200

    Merge pull request #4413 from LedgerHQ/feat/LIVE-7717-send-tx-pending-indicator-warning

    💄 LLM - add warning on send flow when a tx is pending

commit 0cc83c55887bf20bd14c69a355e75bc02df70448
Author: Chelsea Sanders <chelsea.sanders-ext@ledger.fr>
Date:   Fri Aug 25 16:45:52 2023 +0200

    chore: gen e2e screenshots (#4474)

commit c4c16e6a326040767747d38fe87c17ce5dd91b03
Author: Beth Swingler <beth.swingler-ext@ledger.fr>
Date:   Thu Aug 24 18:16:00 2023 +0100

    fix: add reuasable hook to use stake flow actions directly in any navigator; use directly in earn nav

commit 541447c58c98354cd8d211d05ecccf1067533f11
Merge: cd9579816d c4046d7c65
Author: Kieran Allen <132384348+kallen-ledger@users.noreply.github.com>
Date:   Fri Aug 25 14:39:48 2023 +0100

    Merge pull request #4390 from LedgerHQ/bugfix/LIVE-8928

    fix: don't pop from live app when verifying address

commit cd9579816d92807c8e1645b96ff9978fa7f9fc09
Author: sarneijim <38540290+sarneijim@users.noreply.github.com>
Date:   Fri Aug 25 14:09:11 2023 +0100

    fix: add deeplink track to llm and improve deeplink track lld (#4466)

    * fix: add deeplink track to llm and improve deeplink track lld

    * fix: fix typecheck

    * fix: remove decodeURI

    * fix: fix llm test

commit 9154178962b68ef974831ebff36d39d2e27d15e2
Author: Chelsea Sanders <chelsea.sanders-ext@ledger.fr>
Date:   Fri Aug 25 11:23:10 2023 +0200

    feat: web ptx player to load correct manifest (#4212)

commit 074d99c9e00dc2c181cd041e3902a88d8bb43921
Author: Stephane Lieumont <stephane.lieumont-ext@ledger.fr>
Date:   Fri Aug 25 10:20:05 2023 +0200

    feat(protect-2420): update recover wording

commit 1020f276322fe361585a56573091ec647fbd901e
Author: hzheng-ledger <71653044+hzheng-ledger@users.noreply.github.com>
Date:   Thu Aug 24 17:55:06 2023 +0200

    LIVE-8495 Fix: evm integration test (#4452)

commit 2480ba48e9af12b1c93d2d9c147c969d6380c2a3
Merge: b238109174 ed6da731dd
Author: Quentin Jaccarino <quentin.jaccarino@ledger.fr>
Date:   Thu Aug 24 16:51:18 2023 +0200

    Merge pull request #4461 from LedgerHQ/bugfix/access-restore-flow-onboarding

    fix: accessing restore flow from onboarding

commit d68489789bea4c71fa9c46a71ebd618fc45a03be
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Thu Aug 24 15:43:33 2023 +0200

    feat(llm): added a warning to the select recipient screen when there is already a send transaction pending

commit b238109174ab3cad39f9531639b32bf3778abc72
Author: Tim Schmidt <tim@launchbadge.com>
Date:   Thu Aug 24 06:38:34 2023 -0700

    fix: correctly encode transaction hash for hashscan (#3890)

    * fix: correctly encode transaction hash for hashscan

    * fix: snapshot

    * fix: lint

    * fix: add changeset

commit ed6da731dd196a76350b66db2301968bc3df3a05
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Thu Aug 24 15:25:16 2023 +0200

    fix: accessing restore flow from onboarding
    The base was missing to navigate in case the onboarding was the only screen present

commit 8e9df43a0cd00a2065b494439f300f96724b8eb8
Author: Hakim <59644786+haammar-ledger@users.noreply.github.com>
Date:   Thu Aug 24 15:04:21 2023 +0200

    [support] Rework Operation.extra (#4235)

    * Use coin-specific Operation and Operation extra for Algorand

    * Use coin-specific Operation and Operation extra for Polkadot

    * Rework Operation de/serialization

    * Use coin-specific Operation and Operation extra for Cardano

    * Use coin-specific Operation and Operation extra for Celo

    * Use coin-specific Operation and Operation extra for Cosmos

    * Use coin-specific Operation and Operation extra for Elrond

    * Use coin-specific Operation and Operation extra for Crypto.org

    * Better typing of SignedOperation type

    * Remove useless custom operationDetails on LLD for EVM

    * Use coin-specific Operation and Operation extra for InternetComputer

    * Remove unused extra from Ripple operation

    * Use coin-specific Operation and Operation extra for Solana

    * Use coin-specific Operation and Operation extra for Stacks

    * Use coin-specific Operation and Operation extra for Stellar

    * Use coin-specific Operation and Operation extra for Tezos

    * Stronger typing of the Operation.extra field

    * Use coin-specific Operation and Operation extra for Tron

    * Stronger typing for operations in the LLDCoinFamily type

    * Update unit test

    * Update README

    * Add changeset

    * Change definition of Operation to use generics

    * Rename SignedOperation.signatureRaw to rawData

    * Adapt UI to changes of Operation type

    * Fixes for Ethereum & Tron

    * eslint + minor fixes

    * Update README

    * TS fix

    * Fix small regression with Elrond

    * Sanitize validators in cosmos operations extra

    * lint

commit 8da383b3060b6ea58c077196aa658e07d90a1a11
Author: Landry Monga <lvndry@protonmail.com>
Date:   Thu Aug 24 13:08:14 2023 +0200

    Cardano Bridge Mock testing (#4376)

    * cardano bridge mock

    * account.spec.ts has ADA ticker

    * add mock cardanoResources

    * test(lld): update screenshots (macos-latest)  lld, test, screenshot

    * test(lld): update screenshots (ubuntu-latest)  lld, test, screenshot

    * test(lld): update screenshots (windows-latest)  lld, test, screenshot

    * correct error display

    * set transaction mock fees

    ---------

    Co-authored-by: lvndry <lvndry@proton.me>
    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit d1c93c2ef89fdc58651a0fa09c6c59ba56276e2a
Merge: 77f20592de 7889867856
Author: Côme Grellard <come.grellard@ledger.fr>
Date:   Thu Aug 24 11:59:41 2023 +0200

    Merge pull request #4415 from LedgerHQ/support/LIVE-8888-change-nps-copy

    💬  LLM - updated the tile of the enjoy screen in the nps flow

commit 77f20592de9d19b6f5da7534405164ecc89b9e0b
Merge: f9140a309a f111bd9ff4
Author: Côme Grellard <come.grellard@ledger.fr>
Date:   Thu Aug 24 11:46:42 2023 +0200

    Merge pull request #4414 from LedgerHQ/support/LIVE-9031-change-tx-alerts-copy

    💬 LLM - add a beta mention to the tx alerts button in the notifications settings

commit f9140a309ad1927c8ee424c36635451a7da0f3e2
Merge: adae9a8f61 b81268b1ab
Author: Quentin Jaccarino <quentin.jaccarino@ledger.fr>
Date:   Thu Aug 24 10:48:56 2023 +0200

    Merge pull request #4451 from LedgerHQ/bugfix/recover-restore-and-onboarding

    fix: recover restore and onboarding issues

commit adae9a8f61b8ce8f1bfa2f8858c661d3078c04a4
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 24 10:46:49 2023 +0200

    fix(deps): update dependency redux-thunk to v2.4.2 (#4441)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 78898678562b6db37bc0c44fa5f34ee308d9c48f
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Thu Aug 24 10:31:20 2023 +0200

    support(llm): hide original ratings entry point in the settings when the nps is enabled

commit d553f79ff8744494bce42b0e6b5fa00eb6149615
Author: C Ng <138497251+cng-ledger@users.noreply.github.com>
Date:   Thu Aug 24 09:21:09 2023 +0100

    bugfix(LIVE-7623): typings (#4247)

    * fix(LIVE-7623): typings

    * fix(LIVE-7623): changeset

    fix(LIVE-7623): prettier

    * fix(LIVE-7623): refactor exchange body content

    fix(LIVE-7623): replace types

    fix(LIVE-7623): optional rateTypes

    * fix(LIVE-7623): lint

    * fix(LIVE-7623): spelling mistake

    * fix(LIVE-7623): fix tests

    * fix(LIVE-7623): remove @ts-expect-error

commit bafa799361b57bca0d2473a6683bbaa91fa8c635
Author: sarneijim <38540290+sarneijim@users.noreply.github.com>
Date:   Thu Aug 24 09:16:26 2023 +0100

    fix: remove stake banner from nft receive flow (#4439)

    * fix: remove stake banner from receive nft flow

    * fix: add callback dependencies

commit b81268b1ab68c0ce4f70647bd104c32d2b32d844
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 23 20:18:25 2023 +0200

    fix: types because we removed the stax redirect screen types that was allowing anything

commit 2f32d8c86133213de4e921c11361b4387ad9f623
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 23 19:43:18 2023 +0200

    fix: missing recoverManifests

commit 1b1ee1e73b74ad85ca57064815bf193a8797585d
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 23 19:22:09 2023 +0200

    fix: update the redirectTo param for recover

commit f1b3b7ca0268267385319c2c037645843406c6f5
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 23 19:14:38 2023 +0200

    chore: remove the need to add recoverManifests for the deeplinks on mobile
    Also adds `protect-staging-v2` to the manifest list for the recover player header

commit 87a0a8b0dce2d36a34541f890697b4ffba258382
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 23 15:20:46 2023 +0200

    fix: recover restore and onboarding issues
    Fix desktop LNX onboarding back when coming from recover
    Skip genuine check when coming from recover to restore the device (it would be better to allow unseeded device on the genuine check screen instead)
    Send the deviceId to the recover app in order to avoid multiple device selection during the restore process
    Update the podfile to config the build settings with ccache support (You might need to check https://stackoverflow.com/a/70189990 for ccache to work correctly when building with xcode)
    Cleanup old RecoverStaxFlow screen
    Patch react-native-webview to add support for `allowsUnsecureHttps`
    Added `IGNORE_CERTIFICATE_ERRORS=1` to use `allowsUnsecureHttps` in the webview in dev same as for LLD
    Added `protect-local` & `protect-local-dev` manifest support in dev
    Update wallet-api dependencies

commit d6c1984620b1d7d8289cf73f5b782217f241c2e6
Author: Beth Swingler <beth.swingler-ext@ledger.fr>
Date:   Wed Aug 23 14:43:03 2023 +0100

    Bugfix/live 8936 earn llm get coins deeplink (#4407)

    * fix: buy coins navigation flow when no account live-8936

    * fix:  white empty space above Market live-8851, main nav button overlap end of earn screen

    * fix: revert plist, gradle, totalSteps

commit 5b87074232b96d838eacdbc3d7fe1687a53f68d5
Author: Alexandre Chabrolin <9203826+chabroA@users.noreply.github.com>
Date:   Wed Aug 23 15:39:22 2023 +0200

    use specific component in SignTransaction flow (#4417)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit d0948c64990926eee97f0d774b8d71ef87961a92
Merge: 6375c250a9 00c1159356
Author: Kieran Allen <132384348+kallen-ledger@users.noreply.github.com>
Date:   Wed Aug 23 13:58:04 2023 +0100

    Merge pull request #4421 from LedgerHQ/bugfix/LIVE-8914

    [Bugfix/LIVE-8914]: Info message not triggered when user accesses a coin from the Market tab

commit 6375c250a9a58b33e3dd1d6c96a96c7e46150298
Author: Adrien Lacombe <adrien.lacombe@ledger.fr>
Date:   Wed Aug 23 14:25:25 2023 +0200

    CAL update (#4449)

    * feat(ledgerjs): update cardano token

    * feat(ledgerjs-cal): update CAL

commit 032b68731f29a4faad2c84a51bda588507ccf45d
Author: Prateek Rathod <prateek@zondax.ch>
Date:   Wed Aug 23 17:25:34 2023 +0530

    Bugfix/stacks: Parsing unknown txns  (#4402)

    * fix(stx): reading raw txns of type other than token_transfer

    * chore: changeset

    * refac(stx): use maximum limit on txn fetch

    * test(stx): add unit test for op-build bugfix

commit 3aa1ab084a2637bb6bdec9069f37f07cd90c99e6
Author: Hedi EDELBLOUTE <hedi.edelbloute@gmail.com>
Date:   Wed Aug 23 12:19:04 2023 +0200

    change baker whitelist integration test (#4447)

commit 213b66a80f3751e4be7bcbab5bb9de3bc8db366a
Author: mitchellv-ledger <105203468+mitchellv-ledger@users.noreply.github.com>
Date:   Wed Aug 23 10:02:06 2023 +0100

    fix: no market data on market tab switching (#4432)

    * fix: no market data on market tab switching

    * fix: stop potential infinite loop

    ---------

    Co-authored-by: fstream9 <mvivanti9@gmail.com>

commit 5049231835eb2eb6777dea5ee9a8813b95ed1ccb
Author: mitchellv-ledger <105203468+mitchellv-ledger@users.noreply.github.com>
Date:   Wed Aug 23 09:53:39 2023 +0100

    Bugfix/back button hide market details (#4423)

    * fix: remove back button in market details when ptxEarn enabled

    * chore: changeset added

    * chore: add changeset

    ---------

    Co-authored-by: fstream9 <mvivanti9@gmail.com>
    Co-authored-by: sarneijim <sarneijim@gmail.com>

commit f444c5b284335091c81c85f8ab4a0044380606bf
Merge: 2bec4b7f08 36a6802a0d
Author: Kevin Le Seigle <31533861+KVNLS@users.noreply.github.com>
Date:   Wed Aug 23 10:44:21 2023 +0200

    Merge pull request #4445 from LedgerHQ/bugfix/close-nft-fullscreen-cta

    fix: close cta on NFT fullscreen

commit 36a6802a0d2e185c761b46cad1be66e900a06e73
Author: KVNLS <kevin.leseigle@gmail.com>
Date:   Wed Aug 23 09:30:53 2023 +0200

    fix: close cta on NFT fullscreen

commit 2bec4b7f080d6dc9a6b22805c0fa317ff55c7202
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Tue Aug 22 17:42:05 2023 +0200

    fix(llm/customlockscreen): differentiation between error messages (#4426)

    * fix(llm/customlockscreen): differentiation between error messages

    * chore: changeset

    * chore: changeset

commit 7002c6c8f9bcbc5c2387cb064f218c5e27c70315
Author: hzheng-ledger <71653044+hzheng-ledger@users.noreply.github.com>
Date:   Tue Aug 22 16:38:28 2023 +0200

    LIVE-8683 Update coreum staking doc url (#4429)

    chore: update coreum staking doc url

commit 850dad94dfb9f04f48b4c7a5d90cfed6777013d7
Author: mitchellv-ledger <105203468+mitchellv-ledger@users.noreply.github.com>
Date:   Tue Aug 22 14:34:17 2023 +0100

    feat: add safe area inset to earn screen (#4355)

    * feat: add safe area inset to earn screen

    * chore: add changeset

    ---------

    Co-authored-by: fstream9 <mvivanti9@gmail.com>

commit 0d9ad3599bce8872fde97d27c977ab24445afc3a
Author: hzheng-ledger <71653044+hzheng-ledger@users.noreply.github.com>
Date:   Tue Aug 22 15:29:22 2023 +0200

    Support/LIVE-7931 Evm mock test (#4353)

    * chore: add evm mock test

    * fix: add changeset

    * fix: unit tests

    * fix: unit tests

    * fix: update screenshots

    * fix: lld tests

    * test(lld): update screenshots (windows-latest)  lld, test, screenshot

    * test(lld): update screenshots (ubuntu-latest)  lld, test, screenshot

    * test(lld): update screenshots (macos-latest)  lld, test, screenshot

    * fix: refactoring

    * fix: remove useless code

    * fix: remove useless code

    * fix: remove useless code

    ---------

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 00c11593565ac8b370df77af13dc3f1d8de90914
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Tue Aug 22 12:12:56 2023 +0100

    chore: add changeset

commit 48706a552330f729ba748f0cb3365dc90316e06c
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Tue Aug 22 12:11:35 2023 +0100

    bugfix: market alert when click on disabled ptx service button

commit 626636487c4d59a48da76c9892ec16fea626f5f6
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Tue Aug 22 11:48:53 2023 +0200

    support(llm): updated the tile of the enjoy screen in the nps flow

commit f111bd9ff438701545ee8fbdb5f0d3214f05f5c8
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Tue Aug 22 11:41:49 2023 +0200

    support(llm): add a beta mention to the tx alerts button in the notifications settings

commit f8fb67491a8dadf6def6b893b018e82bb2db5b78
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Tue Aug 22 11:33:45 2023 +0200

    feat(llm): added a warning to the select recipient screen when there is already a send transaction pending

commit 2cc2e7eb48c18d5679710725cda124e0f458c5cd
Merge: c404482254 dd2f92881c
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 22 11:03:13 2023 +0200

    Merge pull request #4251 from LedgerHQ/feat/LIVE-7618

    [LLD] - [LIVE-7618] - Typescript improvements and rework of the language & locale components across LLD.

commit dd2f92881cccb36e6dcfa82d1e93ce3de76f03f2
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 22 10:44:13 2023 +0200

    Add changeset

commit c404482254771e6af369e720889b4b22a4fd64e0
Merge: 28b212d3e5 e1c18fc218
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 22 10:23:11 2023 +0200

    Merge pull request #4403 from LedgerHQ/feat/LIVE-7620

    [LLD] - [LIVE-7620] - Fixing ts-expect-error's

commit 28b212d3e5baaa2fc2892e4173900e4598e07d6c
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Tue Aug 22 10:01:21 2023 +0200

    fix(deps): update dependency @rnx-kit/metro-resolver-symlinks to v0.1.32 (#4404)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit b8d4e81ea68f232b452b570b2c49dcca5d7056ae
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Tue Aug 22 09:52:42 2023 +0200

    feat(llm): fixed conflict

commit 9470e2429c84996180c6a26857eb2a499dd21623
Merge: 268ebcfd48 d90f58c7b6
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Tue Aug 22 09:51:58 2023 +0200

    Merge branch 'develop' of github.com:LedgerHQ/ledger-live into feat/LIVE-7718-send-tx-pending-indicator-warning

commit 268ebcfd488dcf77802d756eb94dd547943f4fb1
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Tue Aug 22 09:43:12 2023 +0200

    feat(llm): changed the color of the operations to be orange when pending

commit e41cdcc7070f9042bf4cc3319d6829fba6b1ec8e
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Aug 21 15:11:46 2023 +0200

    fix: Remove unused imports + remove unused variable

commit 745241060973aa67adb1da85b434459a262fdf34
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 21 12:35:54 2023 +0000

    test(lld): update screenshots (ubuntu-latest)  lld, test, screenshot

commit d46b4d7c686757eca7abc38ef40d17c5d4cb479a
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 21 11:18:00 2023 +0000

    test(lld): update screenshots (windows-latest)  lld, test, screenshot

commit 2c6e18444f450d123bd53cbc1ae010107157648c
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 21 10:57:10 2023 +0000

    test(lld): update screenshots (macos-latest)  lld, test, screenshot

commit 04a086a54d331855f7e3344bcfcc3809d0912174
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Aug 21 12:17:23 2023 +0200

    fix: Add GenuineCheck to useDynamicUrl + improve i18 variables flow + clean code

commit 76cd11e15437302001246acedae014f436a1bf30
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Aug 21 10:41:44 2023 +0200

    fix: Re-order imports

commit 44d529f8072461a55e3e4e8e03f7d5ce32bf6b1f
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Aug 21 10:41:29 2023 +0200

    fix: Locale to LanguageLocale

commit 03c7e68c5e7a4104b3cdfab12d9fa79815814b77
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Aug 21 10:40:10 2023 +0200

    fix: Remove unused languages files + clean i18 config

commit 9de30feb494f61f02d51327d2f3b7381a8f0cc9e
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 8 16:27:33 2023 +0200

    fix: Fix Locale type + fix default language on region select

commit 82bfff02fde3a4a262e8f9a442ad3433d860af11
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 8 14:10:06 2023 +0200

    fix: Remove unused import

commit 3d84436740afa4f81bd099861086e8f4f6c71bcc
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 8 11:52:29 2023 +0200

    fix: Fix undefined on language device support + fix typecheck issues

commit f7fe027ce7801ba6c652074a0553e00a66627b0f
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Aug 7 15:41:40 2023 +0200

    fix: Code polish + fix lint + fix typings + add comments + buildLocales

commit 74e3d7823542356489866509090c40f324916a42
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Jul 31 12:21:49 2023 +0200

    fix: Change to new Language architecture

commit 6e483024e823396b45c76fc51a35aa9279569958
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Thu Jul 27 09:46:15 2023 +0200

    fix: Cleaning + remove getLanguages

commit 96cadfc3ab31d1d48b2ff90337546e09345a8fd5
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Thu Jul 27 09:30:58 2023 +0200

    fix: Remove EXPERIMENTAL_LANGUAGES env + improve typings on useDynamicUrl

commit d90f58c7b65a67f829627ec2678b96eca7f5934c
Merge: 87cbec4062 b3f6a72ca9
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Mon Aug 21 18:08:01 2023 +0200

    Merge pull request #4395 from LedgerHQ/renovate/i18next-20.x

    fix(deps): update dependency i18next to v20.6.1

commit 87cbec4062f95d2348d7dd134cb4f13f071425d5
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Mon Aug 21 17:54:31 2023 +0200

    Support/llm dependencies upgrade (#4385)

    * chore(llm, native-ui): update dependencies

    * chore(llm, native-ui): lockfiles

    * chore(llm, native-ui): upgrade react-native-svg in native-ui, changesets

    * fix(llm): react-native-svg props

commit 84b865f2edefc12a5ade0e868b423bfbf879aa8b
Merge: d1705f6ee5 9a7748c262
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Mon Aug 21 17:42:12 2023 +0200

    Merge pull request #4400 from LedgerHQ/renovate/patch-nextjs-monorepo

    chore(deps): update nextjs monorepo to v13.4.19 (patch)

commit d1705f6ee51d77bda045c3d188974636eb827704
Merge: aff1ac0024 86038c0ce0
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Mon Aug 21 17:39:30 2023 +0200

    Merge pull request #4391 from LedgerHQ/support/fix-env-typings

    fix: typings on live-env

commit 9a7748c2625bdec9147789b41940efab5acd589e
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 21 15:38:58 2023 +0000

    chore(deps): update nextjs monorepo to v13.4.19

commit aff1ac0024fa934165f51afb61bec27dba78d279
Author: Abdurrahman Sastim <106583189+abdurrahman-ledger@users.noreply.github.com>
Date:   Mon Aug 21 17:17:44 2023 +0200

    [B2CQA-1920] Detox : Fix Android Flaky tests (#4396)

    fix: android flaky tests

commit e1c18fc2185e1251c13629d14c615510b1efd9b5
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Aug 21 16:33:49 2023 +0200

    fix: Removed ts-expect-error & fixed it

commit 86038c0ce0230c50e1a24481f51a9fbc52953d4e
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Mon Aug 21 15:34:04 2023 +0200

    fix: live-common-tools

commit b630bb8c16bdc31c1f7344f2bd6bd6042eaf8310
Author: Hedi EDELBLOUTE <hedi.edelbloute@gmail.com>
Date:   Mon Aug 21 15:15:20 2023 +0200

    rename bot jobs (#4401)

commit f3f4745b20261b877a938a897b5ad24291fca8aa
Author: Hedi EDELBLOUTE <hedi.edelbloute@gmail.com>
Date:   Mon Aug 21 13:50:20 2023 +0200

    Bot : currencies/family filter, disable & mooncake/silicium non reg removed (#4207)

commit afd56df75f5c2edcab8b5565b1a8172f5247d50b
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Mon Aug 21 12:10:18 2023 +0200

    fix: cli typescript errors

commit 1b4321f363b1e2c93e2406dd327cd4d1def7b458
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Mon Aug 21 10:26:34 2023 +0200

    feat: remove env.ts from live-common

commit fde2fe79f1df69fffe80763cd6d9792fe9de1262
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Fri Aug 18 17:36:52 2023 +0200

    feat: rework some env typings for better inference

    feat: rework some env typings for better inference

commit 2cdbc483fa1df4aa1dae4c93c83cf06bb0676927
Author: Martin CAYUELAS <112866305+mcayuelas-ledger@users.noreply.github.com>
Date:   Mon Aug 21 11:56:55 2023 +0200

    🐛 [FIX] : Notifications get re-enabled when updating the app (#4397)

    * 🐛 [FIX] : Notifications get re-enabled when updating the app

    * add changeset

commit c4046d7c65bbc5a74771ce1c4f4377610f3b0f65
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Mon Aug 21 10:16:07 2023 +0100

    fix: use screen name instead of navigation name

commit a4648d5c78e21989c9d5a3de7c7df80e05672eef
Author: Alexandru Pislariu <57287326+AlexandruPislariu@users.noreply.github.com>
Date:   Fri Aug 18 16:59:02 2023 +0300

    Bugfix/multiversx delegation amount miscalculation (#4364)

    * Fixed withdraw modal and types (#17)

    Co-authored-by: Alexandru Pislariu <57287326+AlexandruPislariu@users.noreply.github.com>

    * Fixed the minimum staking balance calculation. (#18)

    * Updated the calculation condition.

    * Fixed the "delegationEnabled" flag.

    * Updated the minimum balance instances with a singular helper function.

    * Added changeset.

    * Fixed missing import.

    ---------

    Co-authored-by: Miro Mărgineanu <miro.margineanu@elrond.com>

commit b3f6a72ca9522f18d7649aba2fb513e3ebb2c5cf
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Fri Aug 18 13:24:34 2023 +0000

    fix(deps): update dependency i18next to v20.6.1

commit 3723b104e48be93e7233837742d8e757422e8e6e
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Fri Aug 18 12:28:38 2023 +0100

    chore: add changeset

commit e00998215f6518b6f51d61987189e467423cff2c
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Fri Aug 18 12:27:09 2023 +0100

    fix: don't pop from live app when verifying address

commit d0e10a779096e1bd3964b2996254f0670eec8ef8
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Fri Aug 18 12:09:03 2023 +0200

    [LLD] - LIVE-4380 - Fix and improve date formatting based on locale (#4319)

    * Fix locale not working on date + improve workflow by adding useDateFormatter hook

    * Typos

    * Removed unused file and replace date formatter

    * Init tests

    * Add tests for utilitary functions

    * Improve test

    * Add useFakeTimers in beforeAll hook

    * Revert dependencies

    * Fix lint

commit 3f36af31273aba263b79b3f161599ac089cfc6e7
Author: Martin CAYUELAS <112866305+mcayuelas-ledger@users.noreply.github.com>
Date:   Fri Aug 18 11:53:54 2023 +0200

    ⚰️ [SUPPORT] :  Remove old implementation of WalletConnect in LL (#4317)

    * Remove Old Wallet Connect from LLM

    * Remove old WalletConnect from LLD

    * 📝 Update doc LLC

    * Add changesets

    * Remove unused files

commit 0d5d7fadf8b2fda392bfc3d35357074370a91ee1
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Fri Aug 18 10:40:22 2023 +0200

    LIVE-5592 - remove RemoteConfig deprecated from LLD (#4380)

    chore: remove RemoteConfig deprecated from LLD - LIVE-5592

commit 10e5816803ffbac2383f75a9d55bb7b4be17a9f1
Merge: f2b3a62602 7569f444db
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Fri Aug 18 10:31:22 2023 +0200

    Merge pull request #4373 from LedgerHQ/renovate/patch-nextjs-monorepo

    chore(deps): update nextjs monorepo to v13.4.18 (patch)

commit f2b3a6260255770301c159b4a3e20c9c8e5c3b34
Merge: d031e69737 f25c592dc9
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Fri Aug 18 10:30:08 2023 +0200

    Merge pull request #4382 from LedgerHQ/support/trigger-release-after-hotfix

    ci: add automatic trigger after using release prepare hotfix

commit f25c592dc94876b292dd05ea0076bb6d1ce88c4d
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Fri Aug 18 10:15:20 2023 +0200

    ci: add automatic trigger after using release prepare hotfix

commit 7569f444db7a992f3210e91ad2c9f53cada5ca17
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Fri Aug 18 07:40:04 2023 +0000

    chore(deps): update nextjs monorepo to v13.4.18

commit d031e69737ac4b4d00890de477408dfa4870faf7
Author: Alon Herbst <aherbst@paypal.com>
Date:   Tue Aug 8 00:09:38 2023 +0300

    Add PYUSD token icon

commit 70b4603a6fa34453c6fa6dd89fb3ed12a1038366
Merge: b76fe4fb37 77cd7fc87c
Author: Kevin Le Seigle <31533861+KVNLS@users.noreply.github.com>
Date:   Thu Aug 17 19:13:49 2023 +0200

    Merge pull request #4379 from LedgerHQ/support/hotfix-merge-conflicts

    :rotating_light: Hotfix merge conflicts

commit 77cd7fc87c765a67348893b83a9dba5e205e76a6
Author: Quentin Jaccarino <quent92100@gmail.com>
Date:   Thu Aug 17 18:32:19 2023 +0200

    ci: empty commit

commit 0ff215ac4c000c731eaa6ec20e72fe6514d841ce
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 17 15:45:38 2023 +0000

    chore(hotfix): :fire: hotfix release [skip ci]

commit 21746bc3bd7e9c4cd56a33779cc757762f1f9e34
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 17 15:35:13 2023 +0000

    chore(hotfix): :fire: hotfix prerelease [LLD(2.66.1-hotfix.0), LLM(3.29.1-hotfix.0)]

commit 27e4a76f6cc66aa6a7480f48329db04d33200c65
Author: KVNLS <kevin.leseigle@gmail.com>
Date:   Thu Aug 17 11:35:53 2023 +0200

    fix: add reactLegacy and nativeLegacy to the list of files included by the package

commit e7c0caf910474f44d27b40a34d8a3a24804bf836
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 17 15:22:42 2023 +0000

    chore(hotfix) :rocket: entering hotfix mode

commit b76fe4fb375cc73bebd2c57653f953fac090224a
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Thu Aug 17 14:30:01 2023 +0200

    fix(lld/deviceaction/error): broken layout (#4371)

commit f19f0b3b1ed57f1f4dc718fa2cdccb45a42c2ab5
Author: Alexandre Magaud <alexandre.magaud@gmail.com>
Date:   Thu Aug 17 14:06:00 2023 +0200

    Feat/LIVE-7596: Genuine check and firmware update check in Early Security Check during Sync Onboarding (#3887)

    * chore: rename resync overlay to desync overlay

    * feat: wip current work on genuine check during early security check

    - Drawer: failed/refused genuine check
    - Drawer: allow manager

    * fix: unlock device during ESC genuine check

    * feat: fw update check during ESC

    * feat: UI for idle early security check

    * feat: wip UI on active early security check

    * feat: handle genuine check refused from device

    * feat: ESC mandatory drawer on close button

    * feat: firmware update available logic and UI in ESC

    * [LIVE-6555] add language change prompt to sync onboarding (#3884)

    * feat: 1st implementation of going to firmware update and coming back from ESC

    * feat: handling user coming back from fw update

    The users can come back either:
    - because the fw update was completed
    - the user left the fw update before completion

    * chore: removing software check from sync onboarding companion

    * chore: update 1st step of sync onboarding companion

    * chore: cancelling the ESC brings back user to device selection

    * chore: add learn more support link for genuine check

    * chore: 1-way path on inf loop fw 1.2.1-il2 -> 1.2.1-il0

    * feat: automatically bypassing genuine check when coming back from fw update in ESC

    * fix: hook file name to get device info

    * feat: adapt error to new get latest available firmware action

    And handle locked device from the parent screen

    * feat: adapted firmware update to ESC

    Removing unnecessary steps during the fw update for a non-seeded device

    * chore: update UI from new design on the ESC

    * chore: handle device in bootloader mode

    Probably from a fw update that went wrong

    * feat: handle UnexpectedBootloader error from polling

    * feat: handle genuine check error and non-genuine case separately

    * fix: bypass unlock device on fw update

    When before onboarding (ESC) and no MCU to flash

    * feat: handle errors during genuine checks

    * chore: cleaning console logs

    * chore: changeset

    * chore: fix linter

    * fix: documentation and correct usage of Text component

    * chore: CheckCard in a separate component

    * feat: new UI rendering component for ESC

    * chore: handle not found entity other error case

    * chore: remove TODO comment

    * fix: rendering correctly bluetooth disabled error

    * chore: QA limiting fw update on all il fw from il2 -> il0

    ---------

    Co-authored-by: Gabriel Restori Soares <gabriel.soares@ledger.fr>

commit 4a2a89aa5494f4625009e9cd98e77e4cbfae500c
Merge: b9a407b49e 5fb60bc6bb
Author: Kevin Le Seigle <31533861+KVNLS@users.noreply.github.com>
Date:   Thu Aug 17 13:29:25 2023 +0200

    Merge pull request #4372 from LedgerHQ/support/fix-icons-legacy

    Fix reactLegacy and nativeLegacy for icons lib

commit 5fb60bc6bb0bc6a9452d580cdace16ca87e478ff
Author: KVNLS <kevin.leseigle@gmail.com>
Date:   Thu Aug 17 11:35:53 2023 +0200

    fix: add reactLegacy and nativeLegacy to the list of files included by the package

commit b9a407b49e1a989bec0f28cd9731becd114d545e
Merge: 41a184849b 45716e91e8
Author: Quentin Jaccarino <quentin.jaccarino@ledger.fr>
Date:   Thu Aug 17 11:10:10 2023 +0200

    Merge pull request #4358 from LedgerHQ/support/release-merge-conflicts

    :rotating_light: Release merge conflicts

commit 45716e91e8fb391bd0508e8c994a475cacb5439a
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Thu Aug 17 10:26:17 2023 +0200

    ci: trigger

commit 41a184849be2f768cca205bc50c0778d483bbbe4
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 17 10:23:01 2023 +0200

    chore(deps): update nextjs monorepo to v13.4.16 (patch) (#4354)

    chore(deps): update nextjs monorepo to v13.4.16

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit aed4a7474ff47a796b24f6953ebec68ba90d51ab
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 17 10:22:40 2023 +0200

    fix(deps): update dependency color to v4 (#4349)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 2847c7c500c108efb7563e898626f3572d6b0891
Merge: a6c6b09926 60992a9b20
Author: Quentin Jaccarino <quentin.jaccarino@ledger.fr>
Date:   Thu Aug 17 10:18:29 2023 +0200

    Merge pull request #4362 from LedgerHQ/support/add-recover-local

    support: add recover local dev support

commit 60992a9b20a23952f75900767f481df2bf69ed18
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 16 16:35:56 2023 +0200

    support: add recover local dev support
    Using minirecover locally you need to set `IGNORE_CERTIFICATE_ERRORS=1`

commit a6c6b099267d03012ba2a82777dc01f7cf0f9a45
Merge: 7c17421460 2f73df6545
Author: Quentin Jaccarino <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 16 16:20:04 2023 +0200

    Merge pull request #4360 from LedgerHQ/bugfix/typeerror-wallet-api

    fix(wallet-api): missing new on error constructor

commit 7c1742146041b9c6bee9937378c579b81fc8e3d1
Merge: 3ee785d1c2 cf35fae21c
Author: Quentin Jaccarino <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 16 16:17:23 2023 +0200

    Merge pull request #4359 from LedgerHQ/bugfix/PROTECT-2292

    fix(RecoverRestore): add onRetry to error handling [PROTECT-2292]

commit 2f73df65457c16cceb632a9c745e4c20a6ae4934
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 16 15:53:56 2023 +0200

    fix(wallet-api): missing new on error constructor

commit cf35fae21c1cda4700ff4ac76739ba79ef89a77b
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 16 15:45:07 2023 +0200

    fix(RecoverRestore): add onRetry to error handling [PROTECT-2292]

commit 3ee785d1c20086cea495215578a40764c4ad5351
Merge: a3d23f1b96 bdc6055d2a
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Wed Aug 16 15:43:42 2023 +0200

    Merge pull request #4345 from LedgerHQ/renovate/ledgerhq-live-app-sdk-0.x

    fix(deps): update dependency @ledgerhq/live-app-sdk to ^0.8.0

commit f6a709af79e833807de2b0c9a68935a1d5aee45b
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Wed Aug 16 13:39:59 2023 +0000

    chore(release): :rocket: prepare release [skip ci]

commit a3d23f1b9670affd032b0a2ef8a1b0261bdc5972
Merge: 1cfd51f86f 67bd32f808
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Wed Aug 16 14:58:49 2023 +0200

    Merge pull request #4347 from LedgerHQ/renovate/nodemon-3.x

    chore(deps): update dependency nodemon to v3

commit 1cfd51f86f08670e47c77dea45ad8f17f68c9041
Author: mitchellv-ledger <105203468+mitchellv-ledger@users.noreply.github.com>
Date:   Wed Aug 16 13:48:52 2023 +0100

    Feat/earn info modals (#4327)

    * feat: add earn info modal

    * chore: add changeset

    * feat: use drawer directly in place of root drawer

    * chore: lint

    * fix: undefined params

    * feat: add earn info modal trigger via redux state

    * chore: lint

    ---------

    Co-authored-by: fstream9 <mvivanti9@gmail.com>

commit e324ab51c934acc933ec7811c9d2d42875099770
Merge: 62310d61cd df24f7f950
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Wed Aug 16 14:06:35 2023 +0200

    Merge pull request #4346 from LedgerHQ/renovate/execa-7.x

    chore(deps): update dependency execa to v7

commit 080903145977861b28d79e5a0e02c0d6e5e5b19c
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Wed Aug 16 09:17:10 2023 +0000

    chore(prerelease): :rocket: release prerelease [LLD(2.66.0-next.3), LLM(3.29.0-next.2)]

commit b0af2c6f65f0fd5f0afa24d41f35fdd6523ed65d
Author: Hakim <59644786+haammar-ledger@users.noreply.github.com>
Date:   Wed Aug 16 11:05:41 2023 +0200

    [bugfix] Avoid conflicts in currency feature flag names in manager (#4339)

    * In manager, look for exact currency name in feature flag

    * Add changeset

    * Use useFeature instead of manually handling flag names

    * Cleanup old comments

commit df24f7f9504062a2989a02b5747f2acae9b7b28b
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Wed Aug 16 10:13:18 2023 +0200

    chore(deps): fix execa new syntax

commit 62310d61cd8c1755ba75e7ced500c6c6aaacc871
Author: Alexandru Pislariu <57287326+AlexandruPislariu@users.noreply.github.com>
Date:   Wed Aug 16 11:54:44 2023 +0300

    MultiversX: Withdraw modal fixes (#4089)

    * Fixed withdraw modal and types (#17)

    Co-authored-by: Alexandru Pislariu <57287326+AlexandruPislariu@users.noreply.github.com>

    * Return account guarded flag

    * Added guarded account warnings

    * isGuarded on Elrond resources type

    * Updated static condition

    * Fixed lint warning on the mobile build.

    * snapshots update

    * Fixes

    * Fixed typecheck issue

    * Add new ESDT tokens

    * Fixes

    * Fixes

    ---------

    Co-authored-by: Miro Mărgineanu <miro.margineanu@elrond.com>

commit 88846cc39d053726800aabb435b04dc299c4c485
Author: hzheng-ledger <71653044+hzheng-ledger@users.noreply.github.com>
Date:   Wed Aug 16 10:52:53 2023 +0200

    Fix: LIVE-8269 cosmos amount string parser (#4281)

    * fix: cosmos amount string parser

    * fix: small refactoring

    * fix: add changeset

commit 67bd32f8089d29bf9542bfcb005de5c3df577690
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 14 09:19:52 2023 +0000

    chore(deps): update dependency nodemon to v3

commit cbd6f783ff1bb7539783423b150f0576791c7978
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 14 09:19:15 2023 +0000

    chore(deps): update dependency execa to v7

commit bdc6055d2a145072e706e5c1ffff5a64dbd0b584
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 14 09:18:38 2023 +0000

    fix(deps): update dependency @ledgerhq/live-app-sdk to ^0.8.0

commit 46f0f999a6a4b850b24cb87905256a2fd8c73976
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 14 10:57:23 2023 +0200

    chore(deps): update dependency regenerator-runtime to v0.14.0 (#4315)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit f597506f91ce1727f4427403d78a9dd2ebd68463
Author: C Ng <138497251+cng-ledger@users.noreply.github.com>
Date:   Mon Aug 14 09:57:04 2023 +0100

    support(test-env): rename test env check fn (#4335)

commit 5a558b58a22ee963ba3873392106c1bba0915b75
Merge: f1db4e0a86 4cfc701c0e
Author: Côme Grellard <come.grellard@ledger.fr>
Date:   Mon Aug 14 09:48:44 2023 +0200

    Merge pull request #3928 from LedgerHQ/feat/LLM-new-deposit-flow

    ✨ [FEAT] :  New deposit flow on LLM

commit f1db4e0a86ac474fe73f3076788ed28f516cf99e
Merge: 193a6e6530 2c9001d5f5
Author: Beth Swingler <beth.swingler-ext@ledger.fr>
Date:   Sat Aug 12 11:07:45 2023 +0100

    Merge pull request #4278 from LedgerHQ/feat/LIVE-7702-earn-fe-update-no-funds-modal-title-dynamically

    bugfix/live 7702 Earn dashboard - update no funds modal title dynamically, upgrade 18next on desktop only

commit 2c9001d5f56d6135d35e9d92ebabd9772ececdb9
Author: Beth Swingler <beth.swingler-ext@ledger.fr>
Date:   Fri Aug 11 18:11:17 2023 +0100

    fix: 18next packages; dynamic NoFundsModal title

commit 8efcab3282ab56396b7d511b2c7b8677a94a9102
Merge: 59abc73c9e b4856b154c
Author: Quentin Jaccarino <quentin.jaccarino@ledger.fr>
Date:   Fri Aug 11 17:12:53 2023 +0200

    Merge pull request #4330 from LedgerHQ/smartling-translations-20230811133611345

    Smartling on-demand translation delivery from release

commit 193a6e6530287eb5cc84efa18f707db733e6258a
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Fri Aug 11 15:49:45 2023 +0200

    ci: small updates on test.yml

commit 4cfc701c0e1fd82506ae2620b892a4f6b8ee412f
Author: Come Grel…
davidecarpini added a commit to vechainfoundation/ledger-live that referenced this pull request Sep 5, 2023
commit e0cc3a08415de84b9d3ce828444248a043a9d699
Author: hzheng-ledger <71653044+hzheng-ledger@users.noreply.github.com>
Date:   Tue Sep 5 15:49:26 2023 +0200

    Support/Live 8495 cosmos chains bot fix (#4510)

    * fix: cosmos empty account

    * fix: cosmos bot tests

    * fix: update changeset

    * fix: cosmos unit tests

    * fix: unit tests

    * fix: cosmos integration test

    * fix: cosmos unit tests

    * fix: update snapshots

    * fix: unit tests

    * chore: refactoring

    * chore: refactoring

    * fix: cosmos bot tests

commit d41e17ff908dacfcfafd840818c537f5952f5438
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Tue Sep 5 11:08:50 2023 +0200

    chore(deps): update dependency jetifier to v2 (#4560)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 432f0936a35cce201b8b5165d95f579e3473e8f4
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Tue Sep 5 10:43:10 2023 +0200

    chore(deps): update dependency @types/unzipper to v0.10.7 (#4550)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 9fac62c03a70a85fdf32e3f1a54b8a1491b7c176
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Tue Sep 5 10:43:00 2023 +0200

    chore(deps): update dependency execa to v8 (#4553)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit f848f100998f577981a45364e3337b5cdbcb2209
Merge: 18b4a47b48 3ec77034ee
Author: Quentin Jaccarino <quentin.jaccarino@ledger.fr>
Date:   Mon Sep 4 15:20:47 2023 +0200

    Merge pull request #4544 from LedgerHQ/support/update-wallet-api

    chore(deps): update dependencies for wallet-api [LIVE-9007]

commit 18b4a47b4878a23695a50096b7770134883b8a2e
Author: hzheng-ledger <71653044+hzheng-ledger@users.noreply.github.com>
Date:   Mon Sep 4 11:52:10 2023 +0200

    Support/LIVE-8495 Fix Elrond bot test (#4578)

    * fix: elrond bot tests

    * fix: update changeset

    * fix: remove unnecessary code

    * fix: remove unnecessary code

commit ea97040266cc0b0b084882739bd38a90908d2b98
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Mon Sep 4 10:34:32 2023 +0200

    Feat/live 8638 LLM Stax Early Security Checks pixel polish (#4519)

    * fix(llm/earlysecuritychecksbody): pixel polish

    * fix(llm/GetDeviceScreen): missing unit warning

    * fix(llm/earlysecuritychecks): icons and layout of drawer

    * fix(llm/error rendering): DRY to make it reusable, w/ new icons

    * fix(llm): lint

    * fix(llm/earlysecuritychecks): rendering of completed steps: title only

    * refactor(llm/BleDevicePairing): use ErrorBody

    * fix(llm/ChangeDeviceLanguagePrompt): pixel polish

    * fix(llm/DeviceLanguageInstalled): pixel polish + new wording

    * style(llm): rename ErrorBody into GenericInformationBody

    * style(llm): lint

    * chore(llm): changeset

    * fix(llm/earlycheck-fwupdate): pixel polish

    * fix(nativeui/verticalstepper): pixel polish

    * refactor(llm/error rendering): replace renderedInType by a context

    * refactor(llm/GenericInformationalDrawer|View): use GenericInformationBody

    * fix(llm/esc): spacing in drawer

    * style(llm): rename DrawerContext to IsInDrawerContext

    * refactor(llm/IsInDrawerContext): add default provider

    * fix(nativeui/VerticalTimeline): fix aspect of lines

    * chore: changeset

    * fix(llm/deviceaction/rendererror): spacing for Bluetooth error

    * fix(llm/GenericInformationalDrawerContent): alignself stretch

commit de5b4d2a4f2909fe94d54df4de6df92fdb86f39c
Merge: 04206a2939 30decb6882
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Fri Sep 1 17:49:47 2023 +0200

    Merge pull request #4575 from LedgerHQ/support/fix-broken-actions

    fix: broken fetch in actions

commit 04206a2939bb8bb807a9f57a175f054c613e3d57
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Fri Sep 1 16:06:40 2023 +0200

    fix(llm/synconboarding): add device to known devices as soon as device is seeded (#4556)

    * fix(llm/synconboarding): add device to known devices as soon as device seeded

    * chore: changeset

commit 8f99e87e43da87ac9cc768eddfb183ebc88cebb2
Author: mitchellv-ledger <105203468+mitchellv-ledger@users.noreply.github.com>
Date:   Fri Sep 1 15:03:36 2023 +0100

    Bugfix/earn reloading infinite (#4569)

    * feat: add new tag to earn in main side bar

    * feat: cache live app manifest

    * Revert "feat: add new tag to earn in main side bar"

    This reverts commit 1ebf470fb4ea0d6292302b64956f10925e3ead94.

    * chore: add changeset

    ---------

    Co-authored-by: fstream9 <mvivanti9@gmail.com>

commit 30decb6882a4a5618362e5bf7e75f5b7d1426284
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Fri Sep 1 15:48:06 2023 +0200

    fix: link to filesystem instead of @develop for bot composite

commit 4f2d90b0f7c95f7377c59c9d1cbee28a6ed7ef27
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Fri Sep 1 14:30:35 2023 +0200

    fix: broken fetch in actions

commit 2fbe4999ff4817ab1918cf218d2c4eb85ad4dadc
Merge: ca8d064bab 6852277c5b
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Fri Sep 1 14:19:08 2023 +0200

    Merge pull request #4509 from LedgerHQ/feat/LIVE-8386

    [LLD] - [LIVE-8386] - Add Storyly SDK to Ledger Live Desktop

commit ca8d064babf4df3babbdd4ba03f4be742d805edb
Author: mitchellv-ledger <105203468+mitchellv-ledger@users.noreply.github.com>
Date:   Fri Sep 1 11:57:52 2023 +0100

    feat: add new tag to earn in main side bar (#4552)

    Co-authored-by: fstream9 <mvivanti9@gmail.com>

commit ea5e58a162d94355722a986192b832ba045d2021
Merge: ee8bfd6b98 6c5a27ac02
Author: Côme Grellard <come.grellard@ledger.fr>
Date:   Fri Sep 1 12:06:37 2023 +0200

    Merge pull request #4557 from LedgerHQ/bugfix/LIVE-9191-deposit-address-verification-device-selection

    Bugfix/live 9191 deposit address verification device selection

commit ee8bfd6b9895bfca40fe83ccf3c9ba1d3e714c88
Merge: c15eab0a94 b2e8c1053e
Author: Kevin Le Seigle <31533861+KVNLS@users.noreply.github.com>
Date:   Fri Sep 1 11:33:41 2023 +0200

    Merge pull request #4476 from LedgerHQ/support/lld-add-modelId-export

    fix: Add modelId and modelIdList to metadata on export

commit c15eab0a946767c8d861db5c01a032bb136dbbcd
Merge: bfd4fef405 282962fef6
Author: Maxence LE GALL <39890664+mle-gall@users.noreply.github.com>
Date:   Fri Sep 1 10:03:08 2023 +0200

    Merge pull request #4562 from LedgerHQ/feat/LIVE-8595-LIVE-8598/finalStaxPolishesLLD

commit 282962fef6c80c52344f2fe5dc20c7fcd461142f
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 31 21:44:40 2023 +0000

    test(lld): update screenshots (ubuntu-latest)  lld, test, screenshot

commit 22aafdce45871dde12890134113890e7bfefa87f
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 31 15:56:29 2023 +0000

    test(lld): update screenshots (windows-latest)  lld, test, screenshot

commit 9e212755afb7b80fbce08545a80bd528a6c4e803
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 31 15:47:00 2023 +0000

    test(lld): update screenshots (macos-latest)  lld, test, screenshot

commit 6852277c5bb8a34cb7715f2987420816526abb7f
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Thu Aug 31 17:34:12 2023 +0200

    Add type on layout + fix lint

commit 808ce40d24b428dabab74b2780057041adadbe2b
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Thu Aug 31 17:04:13 2023 +0200

    Added classic layout as default

commit 63ad53e0be78e01a75c2514b8af3c9c2ced41426
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Thu Aug 31 16:52:39 2023 +0200

    Fix naming for Storyly + Update to latest version of Storyly + add update on lang change

commit 61b1f38193dc53824e35e3cf2d683330846d9f91
Author: male-gal <maxence.le-gall@ledger.fr>
Date:   Thu Aug 31 16:17:57 2023 +0200

    feat(LLD/Stax): Final pixel polishes (Connect device + post onboarding)

commit 6c5a27ac029d473b97e1ba93e7f1842b4aa4ea7c
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Thu Aug 31 16:05:17 2023 +0200

    fix(llm): Deposit
    Fixed the following issue : User cannot select device on device selection screen when verifying address a second time

commit bfd4fef405f832489cc5258330e6483260c896d2
Author: Hakim <59644786+haammar-ledger@users.noreply.github.com>
Date:   Thu Aug 31 15:46:33 2023 +0200

    Hardcode Ledger validator details for Solana (#4540)

    * Hardcode Ledger validator details for Solana

    * Add changeset

    * lint

    * Only use hardcoded data as backup if not available from backend

    * typo

commit d6935a27b4dcfcfcf983e5b861eddfa4a783f168
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 31 14:34:16 2023 +0200

    chore(deps): update dependency eslint-config-prettier to v9 (#4529)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 85a63d38fc83195fda9c072e2d50b63dda608f46
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 31 14:33:35 2023 +0200

    fix(deps): update formatjs monorepo (major) (#4501)

    fix(deps): update formatjs monorepo

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit e9e79a3d4d5ec84cf3995e1227bf750ad2884407
Merge: efd119dc7c 3ec5739f8a
Author: Kieran Allen <132384348+kallen-ledger@users.noreply.github.com>
Date:   Thu Aug 31 13:03:28 2023 +0100

    Merge pull request #4534 from LedgerHQ/feat/LIVE-9136

    [feat/LIVE-9136]: add api and helper hooks for v5 swap transition

commit efd119dc7c320715fff2feeffedbaaf1e78b7583
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Thu Aug 31 11:46:38 2023 +0200

    Bugfix/live 8464 llm contexts improvements (#4453)

    * chore(llm): cleanup dead code DelayedTrackingProvider

    * style(llm): rename AdjustProvider into AdjustSetup (not a provider)

    * refactor(llm/AnalyticsProvider): unused provider

    * style(llm): rename ButtonUseTouchable into ButtonUseTouchableContext

    * refactor(terms): get rid of the useless context, rely solely on react-redux

    * refactor(llm): AnalyticsContext.Provider in its own component

    * docs(llm/terms): improve comment

    * chore: changeset

    * style(llm/SegmentSetup): improve readability

commit d439c49900506c08ebf079a99740b0d9681915fd
Merge: cad1444fbf 7d28d25f15
Author: Stephane Lieumont <118977988+stephane-lieumont-ledger@users.noreply.github.com>
Date:   Thu Aug 31 11:38:31 2023 +0200

    Merge pull request #4543 from LedgerHQ/bugfix/react-ui-checkbox-console-error

    fix(react-ui): fix checkbox component console error

commit cad1444fbfcf7d05992e03c44e28ec8ecb024d0d
Merge: 81f0e92dfa 66f699af1a
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Thu Aug 31 11:37:42 2023 +0200

    Merge pull request #4539 from LedgerHQ/support/update-actions

    Update some actions to remove the use of isomorphic-unfetch in favor of `node`'s fetch

commit 3ec5739f8a4e3ff81da468cd91036b7b271dfd06
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Thu Aug 31 10:27:35 2023 +0100

    fix: update tests, add deps and changeset

commit 7d28d25f154de22bb9e69f57e924de5ad0f1aa57
Author: Stephane Lieumont [LEDGER-EXT] <stephane.lieumont-ext@ledger.fr>
Date:   Thu Aug 31 11:11:55 2023 +0200

    fix(react-ui): remove readOnly

commit 464bd265914d34445883b97b9762fb83cf4dd888
Author: Stephane Lieumont [LEDGER-EXT] <stephane.lieumont-ext@ledger.fr>
Date:   Thu Aug 31 11:05:39 2023 +0200

    fix(react-ui): replace readOnly by onChange property

commit 3ec77034ee8df07e11010cbc723625a79fb286e5
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Thu Aug 31 09:28:57 2023 +0200

    chore(deps): update dependencies for wallet-api [LIVE-9007]

commit a18628b55ad7375ae49acb2b5686d288b804ce08
Author: Stephane Lieumont [LEDGER-EXT] <stephane.lieumont-ext@ledger.fr>
Date:   Thu Aug 31 08:18:25 2023 +0200

    fix(react-ui): linter ci

commit 916d6975e52f4f83291a9ce1a3e7e60dbccb5b20
Author: Stephane Lieumont [LEDGER-EXT] <stephane.lieumont-ext@ledger.fr>
Date:   Thu Aug 31 07:53:15 2023 +0200

    fix(react-ui): fix checkbox component console error

commit 81f0e92dfabfcaf05616a42774f4ce5df0bf1411
Merge: fb4d9f068a 67fafeeeea
Author: Mohammed Almujil <130482667+mohammed-ledger@users.noreply.github.com>
Date:   Wed Aug 30 18:01:10 2023 +0100

    Merge pull request #4537 from LedgerHQ/support/fix-broken-env-link

    Support: fix broken env link

commit 66f699af1af0988a470422143a4b298c7f01e575
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Wed Aug 30 17:57:17 2023 +0200

    chore: update actions

commit 67fafeeeeac31b1993d6297b9660f863bd42cb75
Merge: 46f478c1f1 fb4d9f068a
Author: Mohammed Almujil <mohammed@ledger.fr>
Date:   Wed Aug 30 17:04:14 2023 +0100

    Merge branch 'develop' into support/fix-broken-env-link
    rebase branch

commit 46f478c1f12565b1be24147ad8d2b72a6c5bb6c2
Merge: 3e082826f1 1c6deb2336
Author: Mohammed Almujil <mohammed@ledger.fr>
Date:   Wed Aug 30 15:46:22 2023 +0100

    Merge branch 'develop' into chore/fix-broken-env-link

commit 23acb640e10ceebf60b12e89f58d1c889a029795
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Wed Aug 30 14:37:15 2023 +0100

    feat: add helper functions

commit fb4d9f068a8fb8c839e17d677c384b77670db1d9
Merge: 1c6deb2336 41a38e953b
Author: Maxence LE GALL <39890664+mle-gall@users.noreply.github.com>
Date:   Wed Aug 30 15:02:41 2023 +0200

    Merge pull request #4518 from LedgerHQ/feat/LIVE-8610/ProviderIconsRemoval

    feat(IconsUI/ReactUI): ProviderIcons removal from Design System

commit ec3d96373e46ef3d10c036c9f74b098871bdb837
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Wed Aug 30 13:22:58 2023 +0100

    fix: update test

commit e421b6705157e822ee2ec6719a890a44d005324d
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Wed Aug 30 13:15:52 2023 +0100

    chore: add new line

commit 023991b9c761b4575447b17c8076c034e6eedd92
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Wed Aug 30 13:11:56 2023 +0100

    chore: remove tool-versions

commit a834e9038da978530e51b15189f4474ef5a3a0f0
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Wed Aug 30 13:11:01 2023 +0100

    feat: add helper hooks

commit 0a9340891d60eb078585335c32df0781287d71a3
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Wed Aug 30 13:08:39 2023 +0100

    feat: add api and helper hooks for v5

commit 3e082826f1b0cb099afb52d2109703ac42fa1f72
Author: Mohammed Almujil <mohammed@ledger.fr>
Date:   Wed Aug 30 10:57:02 2023 +0100

    chore: fix broken env link

commit 1c6deb2336a8b76517cc4d367f76dca24f9228dc
Author: Hakim <59644786+haammar-ledger@users.noreply.github.com>
Date:   Wed Aug 30 11:22:50 2023 +0200

    [bugfix] Fix regression when serializing cosmos operation extra (#4528)

    * Fix regression when serialiazing cosmos operation extra

    * Add changeset

    * [WIP]fix: cosmos unit tests (#4532)

    fix: cosmos unit tests

    ---------

    Co-authored-by: hzheng-ledger <71653044+hzheng-ledger@users.noreply.github.com>

commit e0362e580f4f309615b9cb5a905b3483daf9148f
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 29 23:47:37 2023 +0200

    Add Storyly debugger + sort imports

commit 3dc9ba19b73ddd3c1a262df6339e16279d9b0aa7
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Tue Aug 29 14:38:17 2023 +0200

    chore(deps): update dependency @testing-library/react-hooks to v8 (#4514)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 52bb4607d820bca2d1e2d4b3c33b452c333be6df
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Tue Aug 29 14:38:02 2023 +0200

    chore(deps): update dependency @types/node to v18 (#4516)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 41a38e953b17075b5ab7bec307c147d8f74b7501
Author: male-gal <maxence.le-gall@ledger.fr>
Date:   Tue Aug 29 14:32:01 2023 +0200

    feat(IconsUI/ReactUI): ProviderIcons removal from Design System

commit 1a3205b3c7abaefb39276565fce5541a6a7aaed2
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Tue Aug 29 14:26:23 2023 +0200

    chore(deps): update dependency @testing-library/jest-dom to v6 (#4511)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit c6921f497399c9b48b89b460e39cae309571e0d7
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Tue Aug 29 14:20:33 2023 +0200

    chore: update pnpm in actions with same version as prototools (#4515)

commit a46453e291e52f9c832cdcc058d9fa951519888f
Author: @greweb <renaudeau.gaetan@gmail.com>
Date:   Tue Aug 29 12:40:03 2023 +0200

    chore: update pnpm (#4498)

commit 5d20c326a038a430a38f28815ba65af71152118b
Author: sarneijim <38540290+sarneijim@users.noreply.github.com>
Date:   Tue Aug 29 11:39:12 2023 +0100

    feat: support customFees in swap web app mode (#4174)

    * feat: support customFees in swap web app mode

    * fix: add other custom params

    * feat: update wallet-api dependencies

    * fix: fix async call getCustomFeesPerFamily

    * fix: fix typecheck

    * refactor: move getCustomFeesPerFamily to common

    * fix: fix lint

    * fix: remove feesStrategy as mandatory to open swap web app

    * fix: add convertToNonAtomicUnit utils

    * chore: update wallet-api server call after upgrade

    * fix: fix lint

commit 1e5c2e53a38a43cfe21fa00a049c0c879ad52571
Author: Gaëtan Renaudeau <renaudeau.gaetan@gmail.com>
Date:   Tue Aug 29 12:31:14 2023 +0200

    chore: renovate config to allow @electron/* pkgs

commit a35135437bef6fcd44925a240f0f4894eeb565da
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 29 12:19:47 2023 +0200

    Add changeset

commit d398cd62a8bdff0b7d72d7bed7a021c2442fbf77
Merge: e12993f480 074d99c9e0
Author: Stephane Lieumont <118977988+stephane-lieumont-ledger@users.noreply.github.com>
Date:   Tue Aug 29 11:05:20 2023 +0200

    Merge pull request #4468 from LedgerHQ/feat/protect-2420-update-cta-recover-copy

    feat(protect-2420): update recover wording

commit d1824475e77c92774dfa8ca93d3e1eebe3a6b1f3
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 29 09:52:33 2023 +0200

    Add remarks

commit f82da707b20ddd70fa71a2d16957cbd86a76c018
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 29 09:41:12 2023 +0200

    Add comments

commit 5a9da71b9398f6a69a7ea7ee0456009206599a19
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Sat Aug 26 17:43:37 2023 +0200

    Added storily-web, added useStorily hook, add StorilyBase component, add StorilyDefaultStyle

commit e12993f4804443a142db7b52f66a1d912caeab5f
Author: Landry Monga <lvndry@protonmail.com>
Date:   Mon Aug 28 19:40:48 2023 +0200

    Polkadot bridge mock (#4456)

    * polkdadot bridge mock

    * test(lld): update screenshots (macos-latest)  lld, test, screenshot

    ---------

    Co-authored-by: lvndry <lvndry@proton.me>
    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 1f9626aa9f1503cb7f23ef23d431932590fd25da
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Mon Aug 28 17:39:55 2023 +0200

    chore: refine renovate rules

commit 06684aa6d7d90d409138297b606509646c3c730c
Author: @greweb <renaudeau.gaetan@gmail.com>
Date:   Mon Aug 28 17:33:25 2023 +0200

    chore: add /svg-icons in common tools (#4490)

commit 42a90710a7c68ea97b2f6867cda603116c76282f
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Mon Aug 28 16:58:20 2023 +0200

    chore: update renovate config

commit f55c6e4f9027e8277553af44334026a70ee3bdaa
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Mon Aug 28 16:45:11 2023 +0200

    Feat/live 8375 fw update redesign (#4471)

    * feat(llm/fwupdatebanner): new design

    * fix(llm/fwupdatebanner): loading state

    * chore: changeset

    * chore(llm): remove unimported code

    * chore(llm): cleanup comments

    * fix(llm/fwupdatebanner): loader color

commit 4901a78f780d230f29272a1b439914c6df31e991
Merge: 902f2ed757 a51494ccfa
Author: Maxence LE GALL <39890664+mle-gall@users.noreply.github.com>
Date:   Mon Aug 28 15:53:25 2023 +0200

    Merge pull request #4310 from LedgerHQ/feat/LIVE-8596/LLDSyncOnboardingPolish

    feat(LLD/Sync Onboarding): Pixel polishing

commit a51494ccfa4aa0eca08c51f9c3687b2831b0eccf
Author: male-gal <maxence.le-gall@ledger.fr>
Date:   Mon Aug 28 15:19:38 2023 +0200

    feat(LLD/Sync Onboarding): Pixel polishing

commit 902f2ed7570d82cc6aaafd5c1bb9f0372feeb4a5
Merge: 4d5ff97ba3 aed57fdf40
Author: Côme Grellard <come.grellard@ledger.fr>
Date:   Mon Aug 28 15:05:28 2023 +0200

    Merge pull request #4480 from LedgerHQ/support/LIVE-9078-llm-deposit-copy-updates

    support(llm): small deposit copy updates

commit 4d5ff97ba346365a7b88a446ab9ef7d1cbfbc17d
Merge: a3a46a0ce7 51bd69d5ab
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Mon Aug 28 14:14:06 2023 +0200

    Merge pull request #4483 from LedgerHQ/support/live-9091

    chore: prevent SYNC_SOME_ACCOUNTS log with empty accounts[]

commit a3a46a0ce74621851b4893cad77f593c510f328c
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 28 14:10:18 2023 +0200

    fix(deps): update dependency webpack to 4.46 (#4482)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 550fb40887552cab5914cd1cda1968597e296208
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 28 12:32:28 2023 +0200

    fix(deps): update dependency react-i18next to v11.18.6 (#4434)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 51bd69d5ab0332794edf5caff22d493596255c61
Author: Gaëtan Renaudeau <renaudeau.gaetan@gmail.com>
Date:   Mon Aug 28 11:52:26 2023 +0200

    chore: prevent SYNC_SOME_ACCOUNTS log with empty accounts[]

commit aed57fdf40744557c2b1693427ebe74405073ad7
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Mon Aug 28 10:32:12 2023 +0200

    support(llm): small deposit copy updates

commit d936c57630a64798998787717d9d6d1e1e35deb0
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Mon Aug 28 10:28:41 2023 +0200

    support(llm): small deposit copy updates

commit de06c81fd976a46fa8b637cef7d284602d46b16b
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Mon Aug 28 09:51:53 2023 +0200

    feat(llm/earlysecuritychecks): implemented tracking plan (#4475)

    * feat(llm/earlysecuritychecks): implemented tracking plan

    * fix(llm/esc/tracking): error drawer buttons tracking

commit b2e8c1053e57c763575c9c4d77d1daca8ef566fe
Author: KVNLS <kevin.leseigle@gmail.com>
Date:   Fri Aug 25 18:34:14 2023 +0200

    fix: Add modelId and modelIdList to metadata on export

commit 9578233038ecf35b3cbbb39519bfa8d3860d7056
Merge: 9090d33d87 b8d4e81ea6
Author: Côme Grellard <come.grellard@ledger.fr>
Date:   Fri Aug 25 16:49:14 2023 +0200

    Merge pull request #4408 from LedgerHQ/feat/LIVE-7718-send-tx-pending-indicator-warning

    💄 LLM - Send Tx Pending Warning

commit 9090d33d870329e64c36e30f02aad5254c0e7f28
Merge: 0cc83c5588 d68489789b
Author: Côme Grellard <come.grellard@ledger.fr>
Date:   Fri Aug 25 16:49:06 2023 +0200

    Merge pull request #4413 from LedgerHQ/feat/LIVE-7717-send-tx-pending-indicator-warning

    💄 LLM - add warning on send flow when a tx is pending

commit 0cc83c55887bf20bd14c69a355e75bc02df70448
Author: Chelsea Sanders <chelsea.sanders-ext@ledger.fr>
Date:   Fri Aug 25 16:45:52 2023 +0200

    chore: gen e2e screenshots (#4474)

commit c4c16e6a326040767747d38fe87c17ce5dd91b03
Author: Beth Swingler <beth.swingler-ext@ledger.fr>
Date:   Thu Aug 24 18:16:00 2023 +0100

    fix: add reuasable hook to use stake flow actions directly in any navigator; use directly in earn nav

commit 541447c58c98354cd8d211d05ecccf1067533f11
Merge: cd9579816d c4046d7c65
Author: Kieran Allen <132384348+kallen-ledger@users.noreply.github.com>
Date:   Fri Aug 25 14:39:48 2023 +0100

    Merge pull request #4390 from LedgerHQ/bugfix/LIVE-8928

    fix: don't pop from live app when verifying address

commit cd9579816d92807c8e1645b96ff9978fa7f9fc09
Author: sarneijim <38540290+sarneijim@users.noreply.github.com>
Date:   Fri Aug 25 14:09:11 2023 +0100

    fix: add deeplink track to llm and improve deeplink track lld (#4466)

    * fix: add deeplink track to llm and improve deeplink track lld

    * fix: fix typecheck

    * fix: remove decodeURI

    * fix: fix llm test

commit 9154178962b68ef974831ebff36d39d2e27d15e2
Author: Chelsea Sanders <chelsea.sanders-ext@ledger.fr>
Date:   Fri Aug 25 11:23:10 2023 +0200

    feat: web ptx player to load correct manifest (#4212)

commit 074d99c9e00dc2c181cd041e3902a88d8bb43921
Author: Stephane Lieumont <stephane.lieumont-ext@ledger.fr>
Date:   Fri Aug 25 10:20:05 2023 +0200

    feat(protect-2420): update recover wording

commit 1020f276322fe361585a56573091ec647fbd901e
Author: hzheng-ledger <71653044+hzheng-ledger@users.noreply.github.com>
Date:   Thu Aug 24 17:55:06 2023 +0200

    LIVE-8495 Fix: evm integration test (#4452)

commit 2480ba48e9af12b1c93d2d9c147c969d6380c2a3
Merge: b238109174 ed6da731dd
Author: Quentin Jaccarino <quentin.jaccarino@ledger.fr>
Date:   Thu Aug 24 16:51:18 2023 +0200

    Merge pull request #4461 from LedgerHQ/bugfix/access-restore-flow-onboarding

    fix: accessing restore flow from onboarding

commit d68489789bea4c71fa9c46a71ebd618fc45a03be
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Thu Aug 24 15:43:33 2023 +0200

    feat(llm): added a warning to the select recipient screen when there is already a send transaction pending

commit b238109174ab3cad39f9531639b32bf3778abc72
Author: Tim Schmidt <tim@launchbadge.com>
Date:   Thu Aug 24 06:38:34 2023 -0700

    fix: correctly encode transaction hash for hashscan (#3890)

    * fix: correctly encode transaction hash for hashscan

    * fix: snapshot

    * fix: lint

    * fix: add changeset

commit ed6da731dd196a76350b66db2301968bc3df3a05
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Thu Aug 24 15:25:16 2023 +0200

    fix: accessing restore flow from onboarding
    The base was missing to navigate in case the onboarding was the only screen present

commit 8e9df43a0cd00a2065b494439f300f96724b8eb8
Author: Hakim <59644786+haammar-ledger@users.noreply.github.com>
Date:   Thu Aug 24 15:04:21 2023 +0200

    [support] Rework Operation.extra (#4235)

    * Use coin-specific Operation and Operation extra for Algorand

    * Use coin-specific Operation and Operation extra for Polkadot

    * Rework Operation de/serialization

    * Use coin-specific Operation and Operation extra for Cardano

    * Use coin-specific Operation and Operation extra for Celo

    * Use coin-specific Operation and Operation extra for Cosmos

    * Use coin-specific Operation and Operation extra for Elrond

    * Use coin-specific Operation and Operation extra for Crypto.org

    * Better typing of SignedOperation type

    * Remove useless custom operationDetails on LLD for EVM

    * Use coin-specific Operation and Operation extra for InternetComputer

    * Remove unused extra from Ripple operation

    * Use coin-specific Operation and Operation extra for Solana

    * Use coin-specific Operation and Operation extra for Stacks

    * Use coin-specific Operation and Operation extra for Stellar

    * Use coin-specific Operation and Operation extra for Tezos

    * Stronger typing of the Operation.extra field

    * Use coin-specific Operation and Operation extra for Tron

    * Stronger typing for operations in the LLDCoinFamily type

    * Update unit test

    * Update README

    * Add changeset

    * Change definition of Operation to use generics

    * Rename SignedOperation.signatureRaw to rawData

    * Adapt UI to changes of Operation type

    * Fixes for Ethereum & Tron

    * eslint + minor fixes

    * Update README

    * TS fix

    * Fix small regression with Elrond

    * Sanitize validators in cosmos operations extra

    * lint

commit 8da383b3060b6ea58c077196aa658e07d90a1a11
Author: Landry Monga <lvndry@protonmail.com>
Date:   Thu Aug 24 13:08:14 2023 +0200

    Cardano Bridge Mock testing (#4376)

    * cardano bridge mock

    * account.spec.ts has ADA ticker

    * add mock cardanoResources

    * test(lld): update screenshots (macos-latest)  lld, test, screenshot

    * test(lld): update screenshots (ubuntu-latest)  lld, test, screenshot

    * test(lld): update screenshots (windows-latest)  lld, test, screenshot

    * correct error display

    * set transaction mock fees

    ---------

    Co-authored-by: lvndry <lvndry@proton.me>
    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit d1c93c2ef89fdc58651a0fa09c6c59ba56276e2a
Merge: 77f20592de 7889867856
Author: Côme Grellard <come.grellard@ledger.fr>
Date:   Thu Aug 24 11:59:41 2023 +0200

    Merge pull request #4415 from LedgerHQ/support/LIVE-8888-change-nps-copy

    💬  LLM - updated the tile of the enjoy screen in the nps flow

commit 77f20592de9d19b6f5da7534405164ecc89b9e0b
Merge: f9140a309a f111bd9ff4
Author: Côme Grellard <come.grellard@ledger.fr>
Date:   Thu Aug 24 11:46:42 2023 +0200

    Merge pull request #4414 from LedgerHQ/support/LIVE-9031-change-tx-alerts-copy

    💬 LLM - add a beta mention to the tx alerts button in the notifications settings

commit f9140a309ad1927c8ee424c36635451a7da0f3e2
Merge: adae9a8f61 b81268b1ab
Author: Quentin Jaccarino <quentin.jaccarino@ledger.fr>
Date:   Thu Aug 24 10:48:56 2023 +0200

    Merge pull request #4451 from LedgerHQ/bugfix/recover-restore-and-onboarding

    fix: recover restore and onboarding issues

commit adae9a8f61b8ce8f1bfa2f8858c661d3078c04a4
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 24 10:46:49 2023 +0200

    fix(deps): update dependency redux-thunk to v2.4.2 (#4441)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 78898678562b6db37bc0c44fa5f34ee308d9c48f
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Thu Aug 24 10:31:20 2023 +0200

    support(llm): hide original ratings entry point in the settings when the nps is enabled

commit d553f79ff8744494bce42b0e6b5fa00eb6149615
Author: C Ng <138497251+cng-ledger@users.noreply.github.com>
Date:   Thu Aug 24 09:21:09 2023 +0100

    bugfix(LIVE-7623): typings (#4247)

    * fix(LIVE-7623): typings

    * fix(LIVE-7623): changeset

    fix(LIVE-7623): prettier

    * fix(LIVE-7623): refactor exchange body content

    fix(LIVE-7623): replace types

    fix(LIVE-7623): optional rateTypes

    * fix(LIVE-7623): lint

    * fix(LIVE-7623): spelling mistake

    * fix(LIVE-7623): fix tests

    * fix(LIVE-7623): remove @ts-expect-error

commit bafa799361b57bca0d2473a6683bbaa91fa8c635
Author: sarneijim <38540290+sarneijim@users.noreply.github.com>
Date:   Thu Aug 24 09:16:26 2023 +0100

    fix: remove stake banner from nft receive flow (#4439)

    * fix: remove stake banner from receive nft flow

    * fix: add callback dependencies

commit b81268b1ab68c0ce4f70647bd104c32d2b32d844
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 23 20:18:25 2023 +0200

    fix: types because we removed the stax redirect screen types that was allowing anything

commit 2f32d8c86133213de4e921c11361b4387ad9f623
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 23 19:43:18 2023 +0200

    fix: missing recoverManifests

commit 1b1ee1e73b74ad85ca57064815bf193a8797585d
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 23 19:22:09 2023 +0200

    fix: update the redirectTo param for recover

commit f1b3b7ca0268267385319c2c037645843406c6f5
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 23 19:14:38 2023 +0200

    chore: remove the need to add recoverManifests for the deeplinks on mobile
    Also adds `protect-staging-v2` to the manifest list for the recover player header

commit 87a0a8b0dce2d36a34541f890697b4ffba258382
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 23 15:20:46 2023 +0200

    fix: recover restore and onboarding issues
    Fix desktop LNX onboarding back when coming from recover
    Skip genuine check when coming from recover to restore the device (it would be better to allow unseeded device on the genuine check screen instead)
    Send the deviceId to the recover app in order to avoid multiple device selection during the restore process
    Update the podfile to config the build settings with ccache support (You might need to check https://stackoverflow.com/a/70189990 for ccache to work correctly when building with xcode)
    Cleanup old RecoverStaxFlow screen
    Patch react-native-webview to add support for `allowsUnsecureHttps`
    Added `IGNORE_CERTIFICATE_ERRORS=1` to use `allowsUnsecureHttps` in the webview in dev same as for LLD
    Added `protect-local` & `protect-local-dev` manifest support in dev
    Update wallet-api dependencies

commit d6c1984620b1d7d8289cf73f5b782217f241c2e6
Author: Beth Swingler <beth.swingler-ext@ledger.fr>
Date:   Wed Aug 23 14:43:03 2023 +0100

    Bugfix/live 8936 earn llm get coins deeplink (#4407)

    * fix: buy coins navigation flow when no account live-8936

    * fix:  white empty space above Market live-8851, main nav button overlap end of earn screen

    * fix: revert plist, gradle, totalSteps

commit 5b87074232b96d838eacdbc3d7fe1687a53f68d5
Author: Alexandre Chabrolin <9203826+chabroA@users.noreply.github.com>
Date:   Wed Aug 23 15:39:22 2023 +0200

    use specific component in SignTransaction flow (#4417)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit d0948c64990926eee97f0d774b8d71ef87961a92
Merge: 6375c250a9 00c1159356
Author: Kieran Allen <132384348+kallen-ledger@users.noreply.github.com>
Date:   Wed Aug 23 13:58:04 2023 +0100

    Merge pull request #4421 from LedgerHQ/bugfix/LIVE-8914

    [Bugfix/LIVE-8914]: Info message not triggered when user accesses a coin from the Market tab

commit 6375c250a9a58b33e3dd1d6c96a96c7e46150298
Author: Adrien Lacombe <adrien.lacombe@ledger.fr>
Date:   Wed Aug 23 14:25:25 2023 +0200

    CAL update (#4449)

    * feat(ledgerjs): update cardano token

    * feat(ledgerjs-cal): update CAL

commit 032b68731f29a4faad2c84a51bda588507ccf45d
Author: Prateek Rathod <prateek@zondax.ch>
Date:   Wed Aug 23 17:25:34 2023 +0530

    Bugfix/stacks: Parsing unknown txns  (#4402)

    * fix(stx): reading raw txns of type other than token_transfer

    * chore: changeset

    * refac(stx): use maximum limit on txn fetch

    * test(stx): add unit test for op-build bugfix

commit 3aa1ab084a2637bb6bdec9069f37f07cd90c99e6
Author: Hedi EDELBLOUTE <hedi.edelbloute@gmail.com>
Date:   Wed Aug 23 12:19:04 2023 +0200

    change baker whitelist integration test (#4447)

commit 213b66a80f3751e4be7bcbab5bb9de3bc8db366a
Author: mitchellv-ledger <105203468+mitchellv-ledger@users.noreply.github.com>
Date:   Wed Aug 23 10:02:06 2023 +0100

    fix: no market data on market tab switching (#4432)

    * fix: no market data on market tab switching

    * fix: stop potential infinite loop

    ---------

    Co-authored-by: fstream9 <mvivanti9@gmail.com>

commit 5049231835eb2eb6777dea5ee9a8813b95ed1ccb
Author: mitchellv-ledger <105203468+mitchellv-ledger@users.noreply.github.com>
Date:   Wed Aug 23 09:53:39 2023 +0100

    Bugfix/back button hide market details (#4423)

    * fix: remove back button in market details when ptxEarn enabled

    * chore: changeset added

    * chore: add changeset

    ---------

    Co-authored-by: fstream9 <mvivanti9@gmail.com>
    Co-authored-by: sarneijim <sarneijim@gmail.com>

commit f444c5b284335091c81c85f8ab4a0044380606bf
Merge: 2bec4b7f08 36a6802a0d
Author: Kevin Le Seigle <31533861+KVNLS@users.noreply.github.com>
Date:   Wed Aug 23 10:44:21 2023 +0200

    Merge pull request #4445 from LedgerHQ/bugfix/close-nft-fullscreen-cta

    fix: close cta on NFT fullscreen

commit 36a6802a0d2e185c761b46cad1be66e900a06e73
Author: KVNLS <kevin.leseigle@gmail.com>
Date:   Wed Aug 23 09:30:53 2023 +0200

    fix: close cta on NFT fullscreen

commit 2bec4b7f080d6dc9a6b22805c0fa317ff55c7202
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Tue Aug 22 17:42:05 2023 +0200

    fix(llm/customlockscreen): differentiation between error messages (#4426)

    * fix(llm/customlockscreen): differentiation between error messages

    * chore: changeset

    * chore: changeset

commit 7002c6c8f9bcbc5c2387cb064f218c5e27c70315
Author: hzheng-ledger <71653044+hzheng-ledger@users.noreply.github.com>
Date:   Tue Aug 22 16:38:28 2023 +0200

    LIVE-8683 Update coreum staking doc url (#4429)

    chore: update coreum staking doc url

commit 850dad94dfb9f04f48b4c7a5d90cfed6777013d7
Author: mitchellv-ledger <105203468+mitchellv-ledger@users.noreply.github.com>
Date:   Tue Aug 22 14:34:17 2023 +0100

    feat: add safe area inset to earn screen (#4355)

    * feat: add safe area inset to earn screen

    * chore: add changeset

    ---------

    Co-authored-by: fstream9 <mvivanti9@gmail.com>

commit 0d9ad3599bce8872fde97d27c977ab24445afc3a
Author: hzheng-ledger <71653044+hzheng-ledger@users.noreply.github.com>
Date:   Tue Aug 22 15:29:22 2023 +0200

    Support/LIVE-7931 Evm mock test (#4353)

    * chore: add evm mock test

    * fix: add changeset

    * fix: unit tests

    * fix: unit tests

    * fix: update screenshots

    * fix: lld tests

    * test(lld): update screenshots (windows-latest)  lld, test, screenshot

    * test(lld): update screenshots (ubuntu-latest)  lld, test, screenshot

    * test(lld): update screenshots (macos-latest)  lld, test, screenshot

    * fix: refactoring

    * fix: remove useless code

    * fix: remove useless code

    * fix: remove useless code

    ---------

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 00c11593565ac8b370df77af13dc3f1d8de90914
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Tue Aug 22 12:12:56 2023 +0100

    chore: add changeset

commit 48706a552330f729ba748f0cb3365dc90316e06c
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Tue Aug 22 12:11:35 2023 +0100

    bugfix: market alert when click on disabled ptx service button

commit 626636487c4d59a48da76c9892ec16fea626f5f6
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Tue Aug 22 11:48:53 2023 +0200

    support(llm): updated the tile of the enjoy screen in the nps flow

commit f111bd9ff438701545ee8fbdb5f0d3214f05f5c8
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Tue Aug 22 11:41:49 2023 +0200

    support(llm): add a beta mention to the tx alerts button in the notifications settings

commit f8fb67491a8dadf6def6b893b018e82bb2db5b78
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Tue Aug 22 11:33:45 2023 +0200

    feat(llm): added a warning to the select recipient screen when there is already a send transaction pending

commit 2cc2e7eb48c18d5679710725cda124e0f458c5cd
Merge: c404482254 dd2f92881c
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 22 11:03:13 2023 +0200

    Merge pull request #4251 from LedgerHQ/feat/LIVE-7618

    [LLD] - [LIVE-7618] - Typescript improvements and rework of the language & locale components across LLD.

commit dd2f92881cccb36e6dcfa82d1e93ce3de76f03f2
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 22 10:44:13 2023 +0200

    Add changeset

commit c404482254771e6af369e720889b4b22a4fd64e0
Merge: 28b212d3e5 e1c18fc218
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 22 10:23:11 2023 +0200

    Merge pull request #4403 from LedgerHQ/feat/LIVE-7620

    [LLD] - [LIVE-7620] - Fixing ts-expect-error's

commit 28b212d3e5baaa2fc2892e4173900e4598e07d6c
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Tue Aug 22 10:01:21 2023 +0200

    fix(deps): update dependency @rnx-kit/metro-resolver-symlinks to v0.1.32 (#4404)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit b8d4e81ea68f232b452b570b2c49dcca5d7056ae
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Tue Aug 22 09:52:42 2023 +0200

    feat(llm): fixed conflict

commit 9470e2429c84996180c6a26857eb2a499dd21623
Merge: 268ebcfd48 d90f58c7b6
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Tue Aug 22 09:51:58 2023 +0200

    Merge branch 'develop' of github.com:LedgerHQ/ledger-live into feat/LIVE-7718-send-tx-pending-indicator-warning

commit 268ebcfd488dcf77802d756eb94dd547943f4fb1
Author: Come Grellard <come.grellard@ledger.fr>
Date:   Tue Aug 22 09:43:12 2023 +0200

    feat(llm): changed the color of the operations to be orange when pending

commit e41cdcc7070f9042bf4cc3319d6829fba6b1ec8e
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Aug 21 15:11:46 2023 +0200

    fix: Remove unused imports + remove unused variable

commit 745241060973aa67adb1da85b434459a262fdf34
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 21 12:35:54 2023 +0000

    test(lld): update screenshots (ubuntu-latest)  lld, test, screenshot

commit d46b4d7c686757eca7abc38ef40d17c5d4cb479a
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 21 11:18:00 2023 +0000

    test(lld): update screenshots (windows-latest)  lld, test, screenshot

commit 2c6e18444f450d123bd53cbc1ae010107157648c
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 21 10:57:10 2023 +0000

    test(lld): update screenshots (macos-latest)  lld, test, screenshot

commit 04a086a54d331855f7e3344bcfcc3809d0912174
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Aug 21 12:17:23 2023 +0200

    fix: Add GenuineCheck to useDynamicUrl + improve i18 variables flow + clean code

commit 76cd11e15437302001246acedae014f436a1bf30
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Aug 21 10:41:44 2023 +0200

    fix: Re-order imports

commit 44d529f8072461a55e3e4e8e03f7d5ce32bf6b1f
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Aug 21 10:41:29 2023 +0200

    fix: Locale to LanguageLocale

commit 03c7e68c5e7a4104b3cdfab12d9fa79815814b77
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Aug 21 10:40:10 2023 +0200

    fix: Remove unused languages files + clean i18 config

commit 9de30feb494f61f02d51327d2f3b7381a8f0cc9e
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 8 16:27:33 2023 +0200

    fix: Fix Locale type + fix default language on region select

commit 82bfff02fde3a4a262e8f9a442ad3433d860af11
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 8 14:10:06 2023 +0200

    fix: Remove unused import

commit 3d84436740afa4f81bd099861086e8f4f6c71bcc
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Tue Aug 8 11:52:29 2023 +0200

    fix: Fix undefined on language device support + fix typecheck issues

commit f7fe027ce7801ba6c652074a0553e00a66627b0f
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Aug 7 15:41:40 2023 +0200

    fix: Code polish + fix lint + fix typings + add comments + buildLocales

commit 74e3d7823542356489866509090c40f324916a42
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Jul 31 12:21:49 2023 +0200

    fix: Change to new Language architecture

commit 6e483024e823396b45c76fc51a35aa9279569958
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Thu Jul 27 09:46:15 2023 +0200

    fix: Cleaning + remove getLanguages

commit 96cadfc3ab31d1d48b2ff90337546e09345a8fd5
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Thu Jul 27 09:30:58 2023 +0200

    fix: Remove EXPERIMENTAL_LANGUAGES env + improve typings on useDynamicUrl

commit d90f58c7b65a67f829627ec2678b96eca7f5934c
Merge: 87cbec4062 b3f6a72ca9
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Mon Aug 21 18:08:01 2023 +0200

    Merge pull request #4395 from LedgerHQ/renovate/i18next-20.x

    fix(deps): update dependency i18next to v20.6.1

commit 87cbec4062f95d2348d7dd134cb4f13f071425d5
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Mon Aug 21 17:54:31 2023 +0200

    Support/llm dependencies upgrade (#4385)

    * chore(llm, native-ui): update dependencies

    * chore(llm, native-ui): lockfiles

    * chore(llm, native-ui): upgrade react-native-svg in native-ui, changesets

    * fix(llm): react-native-svg props

commit 84b865f2edefc12a5ade0e868b423bfbf879aa8b
Merge: d1705f6ee5 9a7748c262
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Mon Aug 21 17:42:12 2023 +0200

    Merge pull request #4400 from LedgerHQ/renovate/patch-nextjs-monorepo

    chore(deps): update nextjs monorepo to v13.4.19 (patch)

commit d1705f6ee51d77bda045c3d188974636eb827704
Merge: aff1ac0024 86038c0ce0
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Mon Aug 21 17:39:30 2023 +0200

    Merge pull request #4391 from LedgerHQ/support/fix-env-typings

    fix: typings on live-env

commit 9a7748c2625bdec9147789b41940efab5acd589e
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 21 15:38:58 2023 +0000

    chore(deps): update nextjs monorepo to v13.4.19

commit aff1ac0024fa934165f51afb61bec27dba78d279
Author: Abdurrahman Sastim <106583189+abdurrahman-ledger@users.noreply.github.com>
Date:   Mon Aug 21 17:17:44 2023 +0200

    [B2CQA-1920] Detox : Fix Android Flaky tests (#4396)

    fix: android flaky tests

commit e1c18fc2185e1251c13629d14c615510b1efd9b5
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Mon Aug 21 16:33:49 2023 +0200

    fix: Removed ts-expect-error & fixed it

commit 86038c0ce0230c50e1a24481f51a9fbc52953d4e
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Mon Aug 21 15:34:04 2023 +0200

    fix: live-common-tools

commit b630bb8c16bdc31c1f7344f2bd6bd6042eaf8310
Author: Hedi EDELBLOUTE <hedi.edelbloute@gmail.com>
Date:   Mon Aug 21 15:15:20 2023 +0200

    rename bot jobs (#4401)

commit f3f4745b20261b877a938a897b5ad24291fca8aa
Author: Hedi EDELBLOUTE <hedi.edelbloute@gmail.com>
Date:   Mon Aug 21 13:50:20 2023 +0200

    Bot : currencies/family filter, disable & mooncake/silicium non reg removed (#4207)

commit afd56df75f5c2edcab8b5565b1a8172f5247d50b
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Mon Aug 21 12:10:18 2023 +0200

    fix: cli typescript errors

commit 1b4321f363b1e2c93e2406dd327cd4d1def7b458
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Mon Aug 21 10:26:34 2023 +0200

    feat: remove env.ts from live-common

commit fde2fe79f1df69fffe80763cd6d9792fe9de1262
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Fri Aug 18 17:36:52 2023 +0200

    feat: rework some env typings for better inference

    feat: rework some env typings for better inference

commit 2cdbc483fa1df4aa1dae4c93c83cf06bb0676927
Author: Martin CAYUELAS <112866305+mcayuelas-ledger@users.noreply.github.com>
Date:   Mon Aug 21 11:56:55 2023 +0200

    🐛 [FIX] : Notifications get re-enabled when updating the app (#4397)

    * 🐛 [FIX] : Notifications get re-enabled when updating the app

    * add changeset

commit c4046d7c65bbc5a74771ce1c4f4377610f3b0f65
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Mon Aug 21 10:16:07 2023 +0100

    fix: use screen name instead of navigation name

commit a4648d5c78e21989c9d5a3de7c7df80e05672eef
Author: Alexandru Pislariu <57287326+AlexandruPislariu@users.noreply.github.com>
Date:   Fri Aug 18 16:59:02 2023 +0300

    Bugfix/multiversx delegation amount miscalculation (#4364)

    * Fixed withdraw modal and types (#17)

    Co-authored-by: Alexandru Pislariu <57287326+AlexandruPislariu@users.noreply.github.com>

    * Fixed the minimum staking balance calculation. (#18)

    * Updated the calculation condition.

    * Fixed the "delegationEnabled" flag.

    * Updated the minimum balance instances with a singular helper function.

    * Added changeset.

    * Fixed missing import.

    ---------

    Co-authored-by: Miro Mărgineanu <miro.margineanu@elrond.com>

commit b3f6a72ca9522f18d7649aba2fb513e3ebb2c5cf
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Fri Aug 18 13:24:34 2023 +0000

    fix(deps): update dependency i18next to v20.6.1

commit 3723b104e48be93e7233837742d8e757422e8e6e
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Fri Aug 18 12:28:38 2023 +0100

    chore: add changeset

commit e00998215f6518b6f51d61987189e467423cff2c
Author: Kieran Allen <kieran.allen@ledger.fr>
Date:   Fri Aug 18 12:27:09 2023 +0100

    fix: don't pop from live app when verifying address

commit d0e10a779096e1bd3964b2996254f0670eec8ef8
Author: Maxime Aubanel <sshmaxime@gmail.com>
Date:   Fri Aug 18 12:09:03 2023 +0200

    [LLD] - LIVE-4380 - Fix and improve date formatting based on locale (#4319)

    * Fix locale not working on date + improve workflow by adding useDateFormatter hook

    * Typos

    * Removed unused file and replace date formatter

    * Init tests

    * Add tests for utilitary functions

    * Improve test

    * Add useFakeTimers in beforeAll hook

    * Revert dependencies

    * Fix lint

commit 3f36af31273aba263b79b3f161599ac089cfc6e7
Author: Martin CAYUELAS <112866305+mcayuelas-ledger@users.noreply.github.com>
Date:   Fri Aug 18 11:53:54 2023 +0200

    ⚰️ [SUPPORT] :  Remove old implementation of WalletConnect in LL (#4317)

    * Remove Old Wallet Connect from LLM

    * Remove old WalletConnect from LLD

    * 📝 Update doc LLC

    * Add changesets

    * Remove unused files

commit 0d5d7fadf8b2fda392bfc3d35357074370a91ee1
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Fri Aug 18 10:40:22 2023 +0200

    LIVE-5592 - remove RemoteConfig deprecated from LLD (#4380)

    chore: remove RemoteConfig deprecated from LLD - LIVE-5592

commit 10e5816803ffbac2383f75a9d55bb7b4be17a9f1
Merge: f2b3a62602 7569f444db
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Fri Aug 18 10:31:22 2023 +0200

    Merge pull request #4373 from LedgerHQ/renovate/patch-nextjs-monorepo

    chore(deps): update nextjs monorepo to v13.4.18 (patch)

commit f2b3a6260255770301c159b4a3e20c9c8e5c3b34
Merge: d031e69737 f25c592dc9
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Fri Aug 18 10:30:08 2023 +0200

    Merge pull request #4382 from LedgerHQ/support/trigger-release-after-hotfix

    ci: add automatic trigger after using release prepare hotfix

commit f25c592dc94876b292dd05ea0076bb6d1ce88c4d
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Fri Aug 18 10:15:20 2023 +0200

    ci: add automatic trigger after using release prepare hotfix

commit 7569f444db7a992f3210e91ad2c9f53cada5ca17
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Fri Aug 18 07:40:04 2023 +0000

    chore(deps): update nextjs monorepo to v13.4.18

commit d031e69737ac4b4d00890de477408dfa4870faf7
Author: Alon Herbst <aherbst@paypal.com>
Date:   Tue Aug 8 00:09:38 2023 +0300

    Add PYUSD token icon

commit 70b4603a6fa34453c6fa6dd89fb3ed12a1038366
Merge: b76fe4fb37 77cd7fc87c
Author: Kevin Le Seigle <31533861+KVNLS@users.noreply.github.com>
Date:   Thu Aug 17 19:13:49 2023 +0200

    Merge pull request #4379 from LedgerHQ/support/hotfix-merge-conflicts

    :rotating_light: Hotfix merge conflicts

commit 77cd7fc87c765a67348893b83a9dba5e205e76a6
Author: Quentin Jaccarino <quent92100@gmail.com>
Date:   Thu Aug 17 18:32:19 2023 +0200

    ci: empty commit

commit 0ff215ac4c000c731eaa6ec20e72fe6514d841ce
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 17 15:45:38 2023 +0000

    chore(hotfix): :fire: hotfix release [skip ci]

commit 21746bc3bd7e9c4cd56a33779cc757762f1f9e34
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 17 15:35:13 2023 +0000

    chore(hotfix): :fire: hotfix prerelease [LLD(2.66.1-hotfix.0), LLM(3.29.1-hotfix.0)]

commit 27e4a76f6cc66aa6a7480f48329db04d33200c65
Author: KVNLS <kevin.leseigle@gmail.com>
Date:   Thu Aug 17 11:35:53 2023 +0200

    fix: add reactLegacy and nativeLegacy to the list of files included by the package

commit e7c0caf910474f44d27b40a34d8a3a24804bf836
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 17 15:22:42 2023 +0000

    chore(hotfix) :rocket: entering hotfix mode

commit b76fe4fb375cc73bebd2c57653f953fac090224a
Author: ofreyssinet-ledger <91890529+ofreyssinet-ledger@users.noreply.github.com>
Date:   Thu Aug 17 14:30:01 2023 +0200

    fix(lld/deviceaction/error): broken layout (#4371)

commit f19f0b3b1ed57f1f4dc718fa2cdccb45a42c2ab5
Author: Alexandre Magaud <alexandre.magaud@gmail.com>
Date:   Thu Aug 17 14:06:00 2023 +0200

    Feat/LIVE-7596: Genuine check and firmware update check in Early Security Check during Sync Onboarding (#3887)

    * chore: rename resync overlay to desync overlay

    * feat: wip current work on genuine check during early security check

    - Drawer: failed/refused genuine check
    - Drawer: allow manager

    * fix: unlock device during ESC genuine check

    * feat: fw update check during ESC

    * feat: UI for idle early security check

    * feat: wip UI on active early security check

    * feat: handle genuine check refused from device

    * feat: ESC mandatory drawer on close button

    * feat: firmware update available logic and UI in ESC

    * [LIVE-6555] add language change prompt to sync onboarding (#3884)

    * feat: 1st implementation of going to firmware update and coming back from ESC

    * feat: handling user coming back from fw update

    The users can come back either:
    - because the fw update was completed
    - the user left the fw update before completion

    * chore: removing software check from sync onboarding companion

    * chore: update 1st step of sync onboarding companion

    * chore: cancelling the ESC brings back user to device selection

    * chore: add learn more support link for genuine check

    * chore: 1-way path on inf loop fw 1.2.1-il2 -> 1.2.1-il0

    * feat: automatically bypassing genuine check when coming back from fw update in ESC

    * fix: hook file name to get device info

    * feat: adapt error to new get latest available firmware action

    And handle locked device from the parent screen

    * feat: adapted firmware update to ESC

    Removing unnecessary steps during the fw update for a non-seeded device

    * chore: update UI from new design on the ESC

    * chore: handle device in bootloader mode

    Probably from a fw update that went wrong

    * feat: handle UnexpectedBootloader error from polling

    * feat: handle genuine check error and non-genuine case separately

    * fix: bypass unlock device on fw update

    When before onboarding (ESC) and no MCU to flash

    * feat: handle errors during genuine checks

    * chore: cleaning console logs

    * chore: changeset

    * chore: fix linter

    * fix: documentation and correct usage of Text component

    * chore: CheckCard in a separate component

    * feat: new UI rendering component for ESC

    * chore: handle not found entity other error case

    * chore: remove TODO comment

    * fix: rendering correctly bluetooth disabled error

    * chore: QA limiting fw update on all il fw from il2 -> il0

    ---------

    Co-authored-by: Gabriel Restori Soares <gabriel.soares@ledger.fr>

commit 4a2a89aa5494f4625009e9cd98e77e4cbfae500c
Merge: b9a407b49e 5fb60bc6bb
Author: Kevin Le Seigle <31533861+KVNLS@users.noreply.github.com>
Date:   Thu Aug 17 13:29:25 2023 +0200

    Merge pull request #4372 from LedgerHQ/support/fix-icons-legacy

    Fix reactLegacy and nativeLegacy for icons lib

commit 5fb60bc6bb0bc6a9452d580cdace16ca87e478ff
Author: KVNLS <kevin.leseigle@gmail.com>
Date:   Thu Aug 17 11:35:53 2023 +0200

    fix: add reactLegacy and nativeLegacy to the list of files included by the package

commit b9a407b49e1a989bec0f28cd9731becd114d545e
Merge: 41a184849b 45716e91e8
Author: Quentin Jaccarino <quentin.jaccarino@ledger.fr>
Date:   Thu Aug 17 11:10:10 2023 +0200

    Merge pull request #4358 from LedgerHQ/support/release-merge-conflicts

    :rotating_light: Release merge conflicts

commit 45716e91e8fb391bd0508e8c994a475cacb5439a
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Thu Aug 17 10:26:17 2023 +0200

    ci: trigger

commit 41a184849be2f768cca205bc50c0778d483bbbe4
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 17 10:23:01 2023 +0200

    chore(deps): update nextjs monorepo to v13.4.16 (patch) (#4354)

    chore(deps): update nextjs monorepo to v13.4.16

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit aed4a7474ff47a796b24f6953ebec68ba90d51ab
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Thu Aug 17 10:22:40 2023 +0200

    fix(deps): update dependency color to v4 (#4349)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit 2847c7c500c108efb7563e898626f3572d6b0891
Merge: a6c6b09926 60992a9b20
Author: Quentin Jaccarino <quentin.jaccarino@ledger.fr>
Date:   Thu Aug 17 10:18:29 2023 +0200

    Merge pull request #4362 from LedgerHQ/support/add-recover-local

    support: add recover local dev support

commit 60992a9b20a23952f75900767f481df2bf69ed18
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 16 16:35:56 2023 +0200

    support: add recover local dev support
    Using minirecover locally you need to set `IGNORE_CERTIFICATE_ERRORS=1`

commit a6c6b099267d03012ba2a82777dc01f7cf0f9a45
Merge: 7c17421460 2f73df6545
Author: Quentin Jaccarino <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 16 16:20:04 2023 +0200

    Merge pull request #4360 from LedgerHQ/bugfix/typeerror-wallet-api

    fix(wallet-api): missing new on error constructor

commit 7c1742146041b9c6bee9937378c579b81fc8e3d1
Merge: 3ee785d1c2 cf35fae21c
Author: Quentin Jaccarino <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 16 16:17:23 2023 +0200

    Merge pull request #4359 from LedgerHQ/bugfix/PROTECT-2292

    fix(RecoverRestore): add onRetry to error handling [PROTECT-2292]

commit 2f73df65457c16cceb632a9c745e4c20a6ae4934
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 16 15:53:56 2023 +0200

    fix(wallet-api): missing new on error constructor

commit cf35fae21c1cda4700ff4ac76739ba79ef89a77b
Author: Kant <quentin.jaccarino@ledger.fr>
Date:   Wed Aug 16 15:45:07 2023 +0200

    fix(RecoverRestore): add onRetry to error handling [PROTECT-2292]

commit 3ee785d1c20086cea495215578a40764c4ad5351
Merge: a3d23f1b96 bdc6055d2a
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Wed Aug 16 15:43:42 2023 +0200

    Merge pull request #4345 from LedgerHQ/renovate/ledgerhq-live-app-sdk-0.x

    fix(deps): update dependency @ledgerhq/live-app-sdk to ^0.8.0

commit f6a709af79e833807de2b0c9a68935a1d5aee45b
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Wed Aug 16 13:39:59 2023 +0000

    chore(release): :rocket: prepare release [skip ci]

commit a3d23f1b9670affd032b0a2ef8a1b0261bdc5972
Merge: 1cfd51f86f 67bd32f808
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Wed Aug 16 14:58:49 2023 +0200

    Merge pull request #4347 from LedgerHQ/renovate/nodemon-3.x

    chore(deps): update dependency nodemon to v3

commit 1cfd51f86f08670e47c77dea45ad8f17f68c9041
Author: mitchellv-ledger <105203468+mitchellv-ledger@users.noreply.github.com>
Date:   Wed Aug 16 13:48:52 2023 +0100

    Feat/earn info modals (#4327)

    * feat: add earn info modal

    * chore: add changeset

    * feat: use drawer directly in place of root drawer

    * chore: lint

    * fix: undefined params

    * feat: add earn info modal trigger via redux state

    * chore: lint

    ---------

    Co-authored-by: fstream9 <mvivanti9@gmail.com>

commit e324ab51c934acc933ec7811c9d2d42875099770
Merge: 62310d61cd df24f7f950
Author: Valentin D. Pinkman <valentin.d.pinkman@icloud.com>
Date:   Wed Aug 16 14:06:35 2023 +0200

    Merge pull request #4346 from LedgerHQ/renovate/execa-7.x

    chore(deps): update dependency execa to v7

commit 080903145977861b28d79e5a0e02c0d6e5e5b19c
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Wed Aug 16 09:17:10 2023 +0000

    chore(prerelease): :rocket: release prerelease [LLD(2.66.0-next.3), LLM(3.29.0-next.2)]

commit b0af2c6f65f0fd5f0afa24d41f35fdd6523ed65d
Author: Hakim <59644786+haammar-ledger@users.noreply.github.com>
Date:   Wed Aug 16 11:05:41 2023 +0200

    [bugfix] Avoid conflicts in currency feature flag names in manager (#4339)

    * In manager, look for exact currency name in feature flag

    * Add changeset

    * Use useFeature instead of manually handling flag names

    * Cleanup old comments

commit df24f7f9504062a2989a02b5747f2acae9b7b28b
Author: Valentin D. Pinkman <valentin.d.pinkman@hey.com>
Date:   Wed Aug 16 10:13:18 2023 +0200

    chore(deps): fix execa new syntax

commit 62310d61cd8c1755ba75e7ced500c6c6aaacc871
Author: Alexandru Pislariu <57287326+AlexandruPislariu@users.noreply.github.com>
Date:   Wed Aug 16 11:54:44 2023 +0300

    MultiversX: Withdraw modal fixes (#4089)

    * Fixed withdraw modal and types (#17)

    Co-authored-by: Alexandru Pislariu <57287326+AlexandruPislariu@users.noreply.github.com>

    * Return account guarded flag

    * Added guarded account warnings

    * isGuarded on Elrond resources type

    * Updated static condition

    * Fixed lint warning on the mobile build.

    * snapshots update

    * Fixes

    * Fixed typecheck issue

    * Add new ESDT tokens

    * Fixes

    * Fixes

    ---------

    Co-authored-by: Miro Mărgineanu <miro.margineanu@elrond.com>

commit 88846cc39d053726800aabb435b04dc299c4c485
Author: hzheng-ledger <71653044+hzheng-ledger@users.noreply.github.com>
Date:   Wed Aug 16 10:52:53 2023 +0200

    Fix: LIVE-8269 cosmos amount string parser (#4281)

    * fix: cosmos amount string parser

    * fix: small refactoring

    * fix: add changeset

commit 67bd32f8089d29bf9542bfcb005de5c3df577690
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 14 09:19:52 2023 +0000

    chore(deps): update dependency nodemon to v3

commit cbd6f783ff1bb7539783423b150f0576791c7978
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 14 09:19:15 2023 +0000

    chore(deps): update dependency execa to v7

commit bdc6055d2a145072e706e5c1ffff5a64dbd0b584
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 14 09:18:38 2023 +0000

    fix(deps): update dependency @ledgerhq/live-app-sdk to ^0.8.0

commit 46f0f999a6a4b850b24cb87905256a2fd8c73976
Author: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>
Date:   Mon Aug 14 10:57:23 2023 +0200

    chore(deps): update dependency regenerator-runtime to v0.14.0 (#4315)

    Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com>

commit f597506f91ce1727f4427403d78a9dd2ebd68463
Author: C Ng <138497251+cng-ledger@users.noreply.github.com>
Date:   Mon Aug 14 09:57:04 2023 +0100

    support(test-env): rename test env check fn (#4335)

commit 5a558b58a22ee963ba3873392106c1bba0915b75
Merge: f1db4e0a86 4cfc701c0e
Author: Côme Grellard <come.grellard@ledger.fr>
Date:   Mon Aug 14 09:48:44 2023 +0200

    Merge pull request #3928 from LedgerHQ/feat/LLM-new-deposit-flow

    ✨ [FEAT] :  New deposit flow on LLM

commit f1db4e0a86ac474fe73f3076788ed28f516cf99e
Merge: 193a6e6530 2c9001d5f5
Author: Beth Swingler <beth.swingler-ext@ledger.fr>
Date:   Sat Aug 12 11:07:45 2023 +0100

    Merge pull request #4278 from LedgerHQ/feat/LIVE-7702-earn-fe-update-no-funds-modal-title-dynamically

    bugfix/live 7702 Earn dashboard - update no funds modal title dynamically, upgrade 18next on desktop only

commit 2c9001d5f56d6135d35e9d92ebabd9772ececdb9
Author: Beth Swingler <beth.swingler-ext@ledger.fr>
Date:   Fri Aug 11 18:11:17 2023 +0100

    fix: 18next packages; dynamic NoFundsModal title

commit…
This pull request was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
common Has changes in live-common desktop Has changes in LLD fork Pull request base branch comes from a fork. mobile Has changes in LLM
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants