+ {memo ? (
+
setQrTab(v as QrTab)}>
+
+ {t('cryptoOnramp.addressTab')}
+ {t('cryptoOnramp.memoTab')}
+
+
+
+
+
+
+
+
+
+
+
+
+ ) : (
+
+
+
+ )}
+
+
{t('cryptoOnramp.sendExactAmount')}
+
+
+
+
{t('cryptoOnramp.youNeedToSend')}
+
+
+ {amount} {symbol}
+
+
+
+
+
+
+
+
+
{t('cryptoOnramp.toThisAddress')}
+
+ {truncateAddress(address)}
+
+
+
+
+ {memo && (
+ <>
+
+
+
{t('cryptoOnramp.memoTag')}
+
+ {memo}
+
+
+
+ >
+ )}
+
+
+ {chainWarning && (
+
+ )}
+
+ {targetSymbol && (
+
+
+
{t('cryptoOnramp.yourBalance')}
+
+ {isLoadingTargetBalance ? (
+
+ ) : (
+
+ {formatOnrampAmount(targetBalance || '0', targetDecimals)} {targetSymbol}
+
+ )}
+
+
+
+ )}
+
+
+
+ {depositStatus && (
+
+ {depositStatus === 'success' && t('cryptoOnramp.statusSuccess')}
+ {depositStatus === 'pending' && t('cryptoOnramp.statusPending')}
+ {depositStatus === 'failed' && t('cryptoOnramp.statusFailed')}
+
+ )}
+
+