diff --git a/src/components/fee-compare-client.tsx b/src/components/fee-compare-client.tsx index a7ada7a7..59c816dd 100644 --- a/src/components/fee-compare-client.tsx +++ b/src/components/fee-compare-client.tsx @@ -741,24 +741,29 @@ function WalletSide({ return (
Volume
+Total position value
{fmtUsd(volume)}
+ Sum of (collateral × leverage) across all trades in the period. +
Taker fees
{fmtUsd(gW.feesUsdc)}
- OI vault fee{" "} - OI imbalance surcharge -
-- +{fmtUsd(gW.vaultFeesUsdc)} + <> +
Vault fee
++ +{fmtUsd(gW.vaultFeesUsdc)} +
++ Gains charges an extra fee to LPs when your trade increases the long/short imbalance. Hyperliquid does not have this — it uses funding rates instead.
-{fmtUsd(netCost)}
{fmtUsd(t.tradingFee)} taker - {hasVault ? ` +${fmtUsd(t.vaultFee)} vault` : ""} + {hasVault ? ` +${fmtUsd(t.vaultFee)} vault LP` : ""} {t.borrowingFee > 0.001 ? ` +${fmtUsd(t.borrowingFee)} borrow` : ""} {Math.abs(t.fundingFee) > 0.001 ? ` ${t.fundingFee > 0 ? "+" : "−"}${fmtUsd(Math.abs(t.fundingFee))} fund`