Documentation
    Preparing search index...

    Type Alias SetFeeRateByDelegatedFeeAuthorityParams

    Parameters to set fee rate for a Whirlpool by the delegated fee authority.

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

    The public key for the AdaptiveFeeTier this pool is initialized with.

    Delegated authority authorized in the AdaptiveFeeTier to set fee rates.

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

    type SetFeeRateByDelegatedFeeAuthorityParams = {
        adaptiveFeeTier: PublicKey;
        delegatedFeeAuthority: PublicKey;
        feeRate: number;
        whirlpool: PublicKey;
    }
    Index

    Properties

    adaptiveFeeTier: PublicKey
    delegatedFeeAuthority: PublicKey
    feeRate: number
    whirlpool: PublicKey