Interface UniswapQuoteParams

Quote parameters for Uniswap V3 style quoters (fee-based)

interface UniswapQuoteParams {
    tokenIn: `0x${string}`;
    tokenOut: `0x${string}`;
    amountIn: bigint;
    fee: number;
    sqrtPriceLimitX96?: bigint;
}

Hierarchy (View Summary)

Properties

tokenIn: `0x${string}`
tokenOut: `0x${string}`
amountIn: bigint
fee: number
sqrtPriceLimitX96?: bigint