Coda by Ian Macalinao
    Preparing search index...

    Interface SetProtocolFeeRateInput<TAccountWhirlpoolsConfig, TAccountWhirlpool, TAccountFeeAuthority>

    interface SetProtocolFeeRateInput<
        TAccountWhirlpoolsConfig extends string = string,
        TAccountWhirlpool extends string = string,
        TAccountFeeAuthority extends string = string,
    > {
        feeAuthority: TransactionSigner<TAccountFeeAuthority>;
        protocolFeeRate: number;
        whirlpool: Address<TAccountWhirlpool>;
        whirlpoolsConfig: Address<TAccountWhirlpoolsConfig>;
    }

    Type Parameters

    • TAccountWhirlpoolsConfig extends string = string
    • TAccountWhirlpool extends string = string
    • TAccountFeeAuthority extends string = string
    Index

    Properties

    feeAuthority: TransactionSigner<TAccountFeeAuthority>
    protocolFeeRate: number
    whirlpool: Address<TAccountWhirlpool>
    whirlpoolsConfig: Address<TAccountWhirlpoolsConfig>