From f8e579c86861bf706ebb4e9263123749960fd877 Mon Sep 17 00:00:00 2001 From: Jonathan Tzeng Date: Fri, 24 Jul 2026 17:34:47 -0700 Subject: [PATCH] Label native NYM wallet network as Nyx The wallet details scene network-context title used the deprecated currencyInfo.displayName ('Nym'), rendering 'Nym Network'. Nym is the asset and ecosystem name; the native chain is Nyx. Source the title from chainDisplayName so it reads 'Nyx Network'. Asset-context labels are unchanged. --- CHANGELOG.md | 1 + src/components/scenes/WalletDetailsScene.tsx | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 230b8c5991c..42b553e3b1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,7 @@ - fixed: Staked "locked" balance in the wallet view no longer gets cut off. The crypto amount is truncated to an exchange-rate-appropriate number of decimals, and the text is no longer clamped to a fraction of the card width. - fixed: Improve the unstake error experience by replacing the popup alert and generic "unknown error occurred" with the real error in the scene's error field, and showing a clear message when the wallet lacks the balance to cover the unstaking network fee. - fixed: Restore Banxa and Paybis sell (off-ramp) payout methods that stopped appearing after the providers changed their payment-method codes (Banxa EUR card payout, BRL PIX, AUD bank transfer; Paybis US card payout). +- fixed: Native NYM wallet details now label the network as "Nyx Network" (the native chain) instead of "Nym Network", while asset labels remain Nym. ## 4.50.0 (2026-07-21) diff --git a/src/components/scenes/WalletDetailsScene.tsx b/src/components/scenes/WalletDetailsScene.tsx index 644c56686e7..a15947e4691 100644 --- a/src/components/scenes/WalletDetailsScene.tsx +++ b/src/components/scenes/WalletDetailsScene.tsx @@ -484,7 +484,7 @@ export const WalletDetailsTitle: React.FC<{ customTitle?: string }> = ({ const wallet = account.currencyWallets[route.params.walletId] const computedTitle = sprintf( lstrings.create_wallet_account_metadata_name, - wallet?.currencyInfo.displayName + wallet?.currencyInfo.chainDisplayName ) const title = customTitle ?? computedTitle return