diff --git a/src/components/fee-compare-client.tsx b/src/components/fee-compare-client.tsx index c2872b9a..8ee1279d 100644 --- a/src/components/fee-compare-client.tsx +++ b/src/components/fee-compare-client.tsx @@ -490,11 +490,9 @@ function SimBox({ )} {sim.fundingUsd !== undefined && Math.abs(sim.fundingUsd) > 0.5 && (

- +{" "} {sim.fundingUsd > 0 - ? `${fmtUsd(sim.fundingUsd)} funding received` - : `${fmtUsd(Math.abs(sim.fundingUsd))} funding paid`}{" "} - on {thisName} + ? `+ ${fmtUsd(sim.fundingUsd)} funding received on ${thisName}` + : `− ${fmtUsd(Math.abs(sim.fundingUsd))} funding paid on ${thisName}`}

)} @@ -589,10 +587,9 @@ function WalletSide({

)}

- {fmt(Math.abs(avgBps), 2)} bps avg - {venue.slug === "hyperliquid" && (w as HlWalletData).fundingUsd !== 0 && ( - · net of funding - )} + {venue.effectiveRateBps !== undefined + ? `${fmt(venue.effectiveRateBps, 2)} bps net` + : `${fmt(Math.abs(avgBps), 2)} bps avg`}