Documentation
    Preparing search index...

    Type Alias InitFeeTierParams

    Parameters to initialize a FeeTier account.

    PublicKey for the whirlpool config space that the fee-tier will be initialized for.

    PDA for the fee-tier account that will be initialized

    The tick spacing this fee tier recommends its default fee rate for.

    The default fee rate for this fee-tier. Stored as a hundredths of a basis point.

    Authority authorized to initialize fee-tiers and set customs fees.

    The account that would fund the creation of this account

    type InitFeeTierParams = {
        defaultFeeRate: number;
        feeAuthority: PublicKey;
        feeTierPda: PDA;
        funder: PublicKey;
        tickSpacing: number;
        whirlpoolsConfig: PublicKey;
    }
    Index

    Properties

    defaultFeeRate: number
    feeAuthority: PublicKey
    feeTierPda: PDA
    funder: PublicKey
    tickSpacing: number
    whirlpoolsConfig: PublicKey