examples icon indicating copy to clipboard operation
examples copied to clipboard

quote.ts problem with direction

Open rico2009 opened this issue 2 years ago • 2 comments

examples/v3-sdk/quoting/src/libs/quote.ts

line 21: const quotedAmountOut = await quoterContract.callStatic.quoteExactInputSingle( poolConstants.token0, poolConstants.token1, poolConstants.fee, fromReadableAmount( CurrentConfig.tokens.amountIn, CurrentConfig.tokens.in.decimals ).toString(), 0 )

poolConstants.token0 and token1=> two tokens of the pool , sorted by address some time will reverse input and output address ~

rico2009 avatar Oct 11 '23 05:10 rico2009

@rico2009 hi, i encountered the same issue and agreed with your opinion. Finally I solved this by changing poolConstants.token0 to CurrentConfig.tokens.in.address, and poolConstants.token1 to CurrentConfig.tokens.out.address.

michaeltang608 avatar Dec 28 '23 01:12 michaeltang608

@rico2009 hi, i encountered the same issue and agreed with your opinion. Finally I solved this by changing poolConstants.token0 to CurrentConfig.tokens.in.address, and poolConstants.token1 to CurrentConfig.tokens.out.address.

I second this.

davedavinci avatar Mar 27 '24 17:03 davedavinci