UniDevKit - v2.1.1
    Preparing search index...

    Interface GetPositionResponse

    Complete position data with initialized SDK instances. Returns fully usable Position and Pool objects from the Uniswap V4 SDK.

    interface GetPositionResponse {
        currency0: Currency;
        currency1: Currency;
        currentTick: number;
        pool: Pool;
        poolId: `0x${string}`;
        position: Position;
        tokenId: string;
    }
    Index

    Properties

    currency0: Currency

    The first token in the pool pair

    currency1: Currency

    The second token in the pool pair

    currentTick: number

    The current price tick of the pool

    pool: Pool

    The pool instance from Uniswap V4 SDK with current state

    poolId: `0x${string}`

    The unique identifier of the pool

    position: Position

    The position instance from Uniswap V4 SDK

    tokenId: string

    The unique identifier of the position