IQuoterV2

Supports quoting the calculated amounts from exact input or exact output swaps.

For each pool also tells you the number of initialized ticks crossed and the sqrt price of the pool after the swap.

These functions are not marked view because they rely on calling non-view functions and reverting to compute the result. They are also not gas efficient and should not be called on-chain.

Functions

quoteExactInput

Returns the amount out received for a given exact input swap without executing the swap

function quoteExactInput(bytes memory path, uint256 amountIn)
    external
    returns (
        uint256 amountOut,
        uint160[] memory sqrtPriceX96AfterList,
        uint32[] memory initializedTicksCrossedList,
        uint256 gasEstimate
    );

Parameters

Returns

quoteExactInputSingle

Returns the amount out received for a given exact input but for a swap of a single pool

function quoteExactInputSingle(QuoteExactInputSingleParams memory params)
    external
    returns (uint256 amountOut, uint160 sqrtPriceX96After, uint32 initializedTicksCrossed, uint256 gasEstimate);

Parameters

Returns

quoteExactOutput

Returns the amount in required for a given exact output swap without executing the swap

function quoteExactOutput(bytes memory path, uint256 amountOut)
    external
    returns (
        uint256 amountIn,
        uint160[] memory sqrtPriceX96AfterList,
        uint32[] memory initializedTicksCrossedList,
        uint256 gasEstimate
    );

Parameters

Returns

quoteExactOutputSingle

Returns the amount in required to receive the given exact output amount but for a swap of a single pool

function quoteExactOutputSingle(QuoteExactOutputSingleParams memory params)
    external
    returns (uint256 amountIn, uint160 sqrtPriceX96After, uint32 initializedTicksCrossed, uint256 gasEstimate);

Parameters

Returns

Structs

QuoteExactInputSingleParams

struct QuoteExactInputSingleParams {
    address tokenIn;
    address tokenOut;
    uint256 amountIn;
    uint24 fee;
    uint160 sqrtPriceLimitX96;
}

QuoteExactOutputSingleParams

struct QuoteExactOutputSingleParams {
    address tokenIn;
    address tokenOut;
    uint256 amount;
    uint24 fee;
    uint160 sqrtPriceLimitX96;
}

Last updated