Documentation
    Preparing search index...

    Type Alias SetFeeRateParams

    Parameters to set fee rate for a Whirlpool.

    PublicKey for the whirlpool to update. This whirlpool has to be part of the provided WhirlpoolsConfig space.

    The public key for the WhirlpoolsConfig this pool is initialized in

    Authority authorized in the WhirlpoolsConfig to set default fee rates.

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

    type SetFeeRateParams = {
        feeAuthority: PublicKey;
        feeRate: number;
        whirlpool: PublicKey;
        whirlpoolsConfig: PublicKey;
    }
    Index

    Properties

    feeAuthority: PublicKey
    feeRate: number
    whirlpool: PublicKey
    whirlpoolsConfig: PublicKey