@circle-fin/usdckit - v0.18.0
    Preparing search index...

    Type Alias QuoteExactInputSingleParams

    Parameters for the quoteExactInputSingle function.

    type QuoteExactInputSingleParams = {
        amountIn: NativeUnits | BaseUnits;
        chain?: Chain;
        fee?: number;
        sqrtPriceLimitX96?: bigint;
        tokenIn: Address | ChainContract;
        tokenOut: Address | ChainContract;
    }
    Index

    Properties

    The amount to be transferred. Can be specified directly or as a function that returns a promise resolving to the amount.

    chain?: Chain

    The blockchain network on which the transaction will be executed.

    fee?: number

    Fee pool

    sqrtPriceLimitX96?: bigint

    Used to set the limit for the price the swap will push the pool to

    tokenIn: Address | ChainContract

    The address of the token or chain contract, if applicable.

    tokenOut: Address | ChainContract

    The address of the token or chain contract, if applicable.