Documentation
    Preparing search index...

    Type Alias SetFeeRateByDelegatedFeeAuthorityInstruction<TProgram, TAccountWhirlpool, TAccountAdaptiveFeeTier, TAccountDelegatedFeeAuthority, TRemainingAccounts>

    SetFeeRateByDelegatedFeeAuthorityInstruction: IInstruction<TProgram> & IInstructionWithData<
        Uint8Array,
    > & IInstructionWithAccounts<
        [
            TAccountWhirlpool extends string
                ? WritableAccount<TAccountWhirlpool>
                : TAccountWhirlpool,
            TAccountAdaptiveFeeTier extends string
                ? ReadonlyAccount<TAccountAdaptiveFeeTier>
                : TAccountAdaptiveFeeTier,
            TAccountDelegatedFeeAuthority extends string
                ? ReadonlySignerAccount<TAccountDelegatedFeeAuthority> & IAccountSignerMeta<
                    TAccountDelegatedFeeAuthority,
                >
                : TAccountDelegatedFeeAuthority,
            ...TRemainingAccounts,
        ],
    >

    Type Parameters

    • TProgram extends string = typeof WHIRLPOOL_PROGRAM_ADDRESS
    • TAccountWhirlpool extends string | IAccountMeta<string> = string
    • TAccountAdaptiveFeeTier extends string | IAccountMeta<string> = string
    • TAccountDelegatedFeeAuthority extends string | IAccountMeta<string> = string
    • TRemainingAccounts extends readonly IAccountMeta<string>[] = []