Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion src/components/scenes/WalletDetailsScene.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 <HeaderTitle title={title} />
Expand Down
Loading