diff --git a/src/components/transactions/Swap/helpers/cow/rates.helpers.ts b/src/components/transactions/Swap/helpers/cow/rates.helpers.ts index 695ba80609..06cf2b7f4f 100644 --- a/src/components/transactions/Swap/helpers/cow/rates.helpers.ts +++ b/src/components/transactions/Swap/helpers/cow/rates.helpers.ts @@ -198,8 +198,8 @@ export async function getCowProtocolSellRates({ .toString(); const destSpotAmount = side === 'sell' - ? orderBookQuote.quoteResults.amountsAndCosts.beforeNetworkCosts.sellAmount.toString() - : orderBookQuote.quoteResults.amountsAndCosts.afterNetworkCosts.sellAmount.toString(); + ? orderBookQuote.quoteResults.amountsAndCosts.afterNetworkCosts.sellAmount.toString() + : orderBookQuote.quoteResults.amountsAndCosts.beforeNetworkCosts.sellAmount.toString(); const destSpotUSD = BigNumber(srcTokenPriceUsd) .multipliedBy(BigNumber(destSpotAmount).dividedBy(10 ** srcDecimals)) .toString();