Send Send cash or coins to another user
{currentTransferTypeLabel}
Cash ($)
Coins
{#if transferType === 'COIN'}
{currentCoinLabel} {#each coinHoldings as holding} *{holding.symbol} ({holding.quantity.toFixed(6)} available) {/each}
{/if}

Available: {transferType === 'CASH' ? `$${userBalance.toFixed(2)}` : selectedCoinHolding ? `${selectedCoinHolding.quantity.toFixed(6)} ${selectedCoinSymbol}` : '0'}

{#if transferType === 'COIN' && estimatedValue > 0}

≈ ${estimatedValue.toFixed(2)}

{/if}
{#if !hasEnoughFunds && hasValidAmount} Insufficient {transferType === 'CASH' ? 'funds' : 'coins'} {/if} {#if hasValidAmount && hasEnoughFunds && hasValidRecipient}
You're sending:
{transferType === 'CASH' ? `$${numericAmount.toFixed(2)}` : `${numericAmount.toFixed(6)} ${selectedCoinSymbol}`} {#if transferType === 'COIN' && estimatedValue > 0} ≈ ${estimatedValue.toFixed(2)} USD {/if}
To: @{recipientUsername}
{/if}