UniDevKit - v2.1.1
    Preparing search index...

    Interface PoolArgs

    Parameters for retrieving a Uniswap V4 pool instance. Aligned with Uniswap V4 SDK Pool constructor parameters.

    interface PoolArgs {
        currencyA: `0x${string}`;
        currencyB: `0x${string}`;
        fee: FeeTier;
        hooks?: `0x${string}`;
        tickSpacing?: number;
    }
    Index

    Properties

    currencyA: `0x${string}`

    First currency in the pool pair

    currencyB: `0x${string}`

    Second currency in the pool pair

    fee: FeeTier

    Fee tier of the pool (default: FeeTier.MEDIUM)

    hooks?: `0x${string}`

    Hooks contract address (default: DEFAULT_HOOKS)

    tickSpacing?: number

    Tick spacing for the pool (default: derived from fee tier)