Find Best Paths
Function input params
fromToken
: the token address about from.toToken
: the token address about to.byAmountIn
: If set true, it means fixed amount of input token, otherwise fixed amount of output token.amount
: when byAmountIn set true, it means amount of input token, otherwise means amount of output token.maxHops
(Option): the max hops number, default set 2.
Result Params
combinedPaths
: the detail about router path.basicPaths
: the detail about one hop(in one pool)poolAddress
: the address of clmm pooldecimal0
: the decimal of token0 of pool.decimal1
: the decimal of token1 of pool.a2b
: the swap direction.byAmountIn
: the fixed direction in this pool, the same as input params.isExceed
: is exceed in this pool.feeAmount
: the amount of fee.feeRate
: the fee rate of pool.currentSqrtPrice
: the sqrt price of pool before swap.afterSqrtPrice
: the sqrt price of pool after swap.amountIn
(Option): the amount of input in this pool.amountOut
(Option): the amount of output in this pool.
amountIn
: the amount of input in this combined path.amountOut
: the amount of output in this combined path.isExceed
: is this combined path exceed.feeAmount
: the total amount of fee in this combined path.percent
: the percent of input/output amount(base of byAmountIn).
amountIn
: the amount of input.amountOut
: the amount of output.isExceed
: the router result is exceed.feeAmount
: the amount of fee.byAmountIn
: the same as input params.priceImpact
: the impact between swaped price and init price.amountTooSmall
: if input amount is too small when fixed input amount(byAmountIn = true).
Example
Last updated