Transactions
{{ transactions.length }}
Volume (USD)
${{ totalVolume }}
Total Fees
${{ totalFees }}
Net P&L
{{ netPnl >= 0 ? '+' : '' }}${{ Math.abs(netPnl).toFixed(2) }}
๐ฑ Currency Converter
โ ๏ธ High fee alert! This transaction carries a {{ (preview.feeRate * 100).toFixed(2) }}% service fee โ above 1.5% threshold.
{{ fmtCurrency(preview.converted, form.to) }}
Enter an amount to preview the conversion
๐ Live Exchange Rates
Base currency: USD ยท Source: ExchangeRate-API
| Currency | Rate (per USD) | Change |
|---|---|---|
| {{ c.flag }} {{ c.code }} {{ c.name }} | {{ c.code === 'JPY' ? rates[c.code].toFixed(2) : rates[c.code].toFixed(4) }} | {{ rateChange[c.code] > 0 ? 'โฒ' : rateChange[c.code] < 0 ? 'โผ' : 'โ' }} {{ Math.abs(rateChange[c.code]).toFixed(2) }}% |
Service fee: 0.5% โ 2.0% (randomised per transaction) ยท
Fees >1.5% trigger high-fee alert
๐งพ Transaction History
{{ transactions.length }} transaction{{ transactions.length !== 1 ? 's' : '' }}
No transactions recorded yet. Make your first conversion above!
{{ fmtCurrency(tx.amount, tx.from) }} {{ tx.from }}
โ
{{ fmtCurrency(tx.converted, tx.to) }} {{ tx.to }}