Documentation
    Preparing search index...

    Type Alias InitTickArrayParams

    Parameters to initialize a TickArray account.

    PublicKey for the whirlpool that the initialized tick-array will host ticks for.

    PDA for the tick array account that will be initialized

    The starting tick index for this tick-array. Has to be a multiple of TickArray size & the tick spacing of this pool.

    The account that would fund the creation of this account

    type InitTickArrayParams = {
        funder: PublicKey;
        startTick: number;
        tickArrayPda: PDA;
        whirlpool: PublicKey;
    }
    Index

    Properties

    funder: PublicKey
    startTick: number
    tickArrayPda: PDA
    whirlpool: PublicKey