Documentation
    Preparing search index...

    Type Alias SetDelegatedFeeAuthorityInstruction<TProgram, TAccountWhirlpoolsConfig, TAccountAdaptiveFeeTier, TAccountFeeAuthority, TAccountNewDelegatedFeeAuthority, TRemainingAccounts>

    SetDelegatedFeeAuthorityInstruction: IInstruction<TProgram> & IInstructionWithData<
        Uint8Array,
    > & IInstructionWithAccounts<
        [
            TAccountWhirlpoolsConfig extends string
                ? ReadonlyAccount<TAccountWhirlpoolsConfig>
                : TAccountWhirlpoolsConfig,
            TAccountAdaptiveFeeTier extends string
                ? WritableAccount<TAccountAdaptiveFeeTier>
                : TAccountAdaptiveFeeTier,
            TAccountFeeAuthority extends string
                ? ReadonlySignerAccount<TAccountFeeAuthority> & IAccountSignerMeta<
                    TAccountFeeAuthority,
                >
                : TAccountFeeAuthority,
            TAccountNewDelegatedFeeAuthority extends string
                ? ReadonlyAccount<TAccountNewDelegatedFeeAuthority>
                : TAccountNewDelegatedFeeAuthority,
            ...TRemainingAccounts,
        ],
    >

    Type Parameters

    • TProgram extends string = typeof WHIRLPOOL_PROGRAM_ADDRESS
    • TAccountWhirlpoolsConfig extends string | IAccountMeta<string> = string
    • TAccountAdaptiveFeeTier extends string | IAccountMeta<string> = string
    • TAccountFeeAuthority extends string | IAccountMeta<string> = string
    • TAccountNewDelegatedFeeAuthority extends string | IAccountMeta<string> = string
    • TRemainingAccounts extends readonly IAccountMeta<string>[] = []