Skip to content

Commit

Permalink
handle SOR's effective price when outputAmount is 0 (#916)
Browse files Browse the repository at this point in the history
  • Loading branch information
gmbronco committed Sep 9, 2024
1 parent 86cdb2c commit 1516a1b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/six-pans-rhyme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'backend': patch
---

handle SOR's effective price when outputAmount is 0
10 changes: 8 additions & 2 deletions modules/sor/sorV2/sorPathService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ class SorPathService implements SwapService {
const returnAmount = swapKind === SwapKind.GivenIn ? outputAmount : inputAmount;
const swapAmount = swapKind === SwapKind.GivenIn ? inputAmount : outputAmount;

const effectivePrice = inputAmount.divDownFixed(outputAmount.scale18);
const effectivePrice = outputAmount.amount > 0 ? inputAmount.divDownFixed(outputAmount.scale18) : Infinity;
const effectivePriceReversed = outputAmount.divDownFixed(inputAmount.scale18);

return {
Expand All @@ -348,7 +348,13 @@ class SorPathService implements SwapService {
swapAmountRaw: swapAmount.amount.toString(),
returnAmount: formatUnits(returnAmount.amount, returnAmount.token.decimals),
returnAmountRaw: returnAmount.amount.toString(),
effectivePrice: formatUnits(effectivePrice.amount, effectivePrice.token.decimals),
effectivePrice:
effectivePrice === Infinity
? 'Infinity'
: formatUnits(
(effectivePrice as TokenAmount).amount,
(effectivePrice as TokenAmount).token.decimals,
),
effectivePriceReversed: formatUnits(effectivePriceReversed.amount, effectivePriceReversed.token.decimals),
routes: this.mapRoutes(paths, pools),
priceImpact: {
Expand Down

0 comments on commit 1516a1b

Please sign in to comment.