#18095ee2dfc8 Thanks @claudiiafg! - Add a back arrow on the account page when opened from Asset Detail so users can return to the previous screen. Pass accountBackPath from the address list and pop the history stack on back, matching the tx history back-navigation pattern.
#181397e7bd75 Thanks @claudiiafg! - Update Asset Detail address list section and see-all dialog copy from "Addresses" to "Accounts"
#180872c51ffb Thanks @deepyjr! - Show an infinite symbol () instead of a dash for the Asset Detail max supply when a coin is uncapped but has market data
#179554596db9 Thanks @claudiiafg! - Add info tooltips to Asset Detail market stats rows (market cap, circulating supply, max supply, and 24h trading volume)
#18130774fef1 Thanks @deepyjr! - Show empty (zero-balance) accounts in the Asset Detail accounts/addresses section
#177844170470 Thanks @Valentin-Ledger! - Add go-to-swap action to the Borrow live app custom.navigate wallet API handler so the embedded webview can deep-link users into the Swap flow with prefilled currency, token, account, amount and affiliate parameters. Unify the desktop handler naming with mobile (custom.borrow.navigatecustom.navigate), share the handler implementation across apps via a new @ledgerhq/live-common/wallet-api/Borrow/navigate module, and drop the redundant desktop PageHeader now that navigation is driven from the webview.
#179079901502 Thanks @deepyjr! - Add assetDiscoverability param to lwmWallet40 and expose shouldDisplayAssetDiscoverability in usePortfolioViewModel and MainAppLayout
#18239cb3d141 Thanks @LucasWerey! - Align asset chart point granularity per date range with the product spec (LIVE-31777). Adds a shared per-range resampler in live-common and wires it into both apps: desktop targets finer intervals (e.g. 1D 5min, 1M 2h, All 7d) while mobile uses coarser ones (e.g. 1D 10min, 1M 6h, All 1mo) for render performance. The resampler only coarsens, so ranges where the API serves coarser data than requested (desktop 6M) gracefully fall back to the available resolution.
#180569d43eda Thanks @mcayuelas-ledger! - Add transaction dots to the Asset Detail price chart with hover tooltips (Received/Sent fiat values), color single transactions by direction (green received, red sent) and group same-day transactions, alongside min/max markers. Also extend the chart range selector with 6M and 5Y options.
#182756128380 Thanks @mcayuelas-ledger! - Fix Analytics page percentage variation not updating when changing the time range
#178138d78462 Thanks @qperrot! - Fix: warn user that delegation will fail if their Sei account has not yet been linked on-chain (no prior outbound transaction)
#18015fe05001 Thanks @mcayuelas-ledger! - Sync the asset detail market price with chart scrubbing: hovering the line chart now updates the displayed price and date to the scrubbed point (hiding the percentage and fiat variation while scrubbing), wired through a shared ScrubbedPriceContext.
#1823239a21c5 Thanks @LucasWerey! - Enable magnetic points on the asset line chart so the cursor snaps to the nearest data point
#17901fd81ba0 Thanks @lysyi3m! - Implements the Celo fee currency selection plugin across mobile and desktop. Users can now select a fee currency (CELO or supported tokens) to pay transaction fees. Updates include UI integration, gas estimation adjustments, and descriptor enhancements for Celo transactions.
#1809014c87ea Thanks @amaslakov! - Earning-choice modal on Tezos LWM: tap "Stake" now routes via the shared getTezosEarnFlow helper to NoFunds / EarnRewards (delegate or stake) / DelegationStarted / DelegationSummary depending on funds, delegation state and the llmTezosStaking flag. Helper hoisted to live-common.
#180487eb1ec7 Thanks @YazhuEth! - Fetch pending staking rewards for Cosmos-EVM hybrid chains (Sei) via the Cosmos distribution REST endpoint so Stake.amountRewarded is populated, and wire the per-row "Claim rewards" action on desktop so it opens the claim flow pre-selected on the chosen validator.
#181747584ec2 Thanks @ysitbon! - Pass the current app language to the feature-flags middleware (getAppLanguage selector in configureStore) so it can apply language filtering during resolution, making language-gated remote flags (languages_whitelisted / languages_blacklisted) resolve correctly.
#18152c49b7a5 Thanks @LucasWerey! - Fix Asset Detail graph showing all-time high/low values that differed from the market stats table. On the "All" range, the graph's min/max markers are now anchored to the market all-time high/low, so both surfaces stay consistent.
#18106e607d08 Thanks @claudiiafg! - Fix chart timeframe selector overlapping the Asset Detail sticky navbar on scroll
#17977cc8ac1a Thanks @claudiiafg! - Fix Asset Detail analytics to match the tracking plan: add button_clicked tracking on the action bar, chart timeframe, addresses, favourites/hide, staking, market-stat and available-balance tooltips, and transactions; enrich transaction_clicked with page and currency; report currency as ledger currency id instead of ticker.
#18175c32dafe Thanks @claudiiafg! - Fix asset detail market price hover date formatting by range to match spec without changing chart axis formatting.
#18093314c95a Thanks @claudiiafg! - Fix Asset Detail analytics: report page name as Asset, set market banner as navigation source when opening from the portfolio market banner, and track average entry price tooltip via market_stat_definition.
#18107e2ce03c Thanks @claudiiafg! - Fix asset detail address list showing default account names instead of user-renamed names from wallet state.
#18109ef35323 Thanks @claudiiafg! - Exclude hidden-from-portfolio assets from the global wallet balance and portfolio graph on desktop and mobile
#1810855e0169 Thanks @claudiiafg! - Fix missing scrollbars on the transaction history page: keep column headers fixed above the list and show the vertical scrollbar on the scrollable body only.
#18214689bfcb Thanks @LucasWerey! - Fix portfolio realised/unrealised return on Desktop differing from Mobile for the same synced accounts. The portfolio PnL view model passed an already-flattened accounts list to computePortfolioPnL, which flattens internally, double-counting token sub-accounts and inflating the returns. It now passes the top-level (non-flattened) accounts, matching Mobile.
#179636bb9e6d Thanks @claudiiafg! - Fix tx history back navigation when opened from the top bar. Pass the originating route as historyBackPath, accept any safe in-app return path, and pop the history stack on back instead of pushing a duplicate entry that trapped users between asset detail and tx history.