Documentation
    Preparing search index...

    Type Alias SetDefaultBaseFeeRateParams

    Parameters to set the default base fee rate for an AdaptiveFeeTier.

    The public key for the WhirlpoolsConfig this fee-tier is initialized in

    Authority authorized in the WhirlpoolsConfig to set default fee rates.

    The tick spacing of the fee-tier that we would like to update.

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

    type SetDefaultBaseFeeRateParams = {
        adaptiveFeeTier: PublicKey;
        defaultBaseFeeRate: number;
        feeAuthority: PublicKey;
        whirlpoolsConfig: PublicKey;
    }
    Index

    Properties

    adaptiveFeeTier: PublicKey
    defaultBaseFeeRate: number
    feeAuthority: PublicKey
    whirlpoolsConfig: PublicKey