Type Alias SetRewardAuthorityBySuperAuthorityInstruction<TProgram, TAccountWhirlpoolsConfig, TAccountWhirlpool, TAccountRewardEmissionsSuperAuthority, TAccountNewRewardAuthority, TRemainingAccounts>

SetRewardAuthorityBySuperAuthorityInstruction: IInstruction<TProgram> & IInstructionWithData<
    Uint8Array,
> & IInstructionWithAccounts<
    [
        TAccountWhirlpoolsConfig extends string
            ? ReadonlyAccount<TAccountWhirlpoolsConfig>
            : TAccountWhirlpoolsConfig,
        TAccountWhirlpool extends string
            ? WritableAccount<TAccountWhirlpool>
            : TAccountWhirlpool,
        TAccountRewardEmissionsSuperAuthority extends string
            ? ReadonlySignerAccount<TAccountRewardEmissionsSuperAuthority> & IAccountSignerMeta<
                TAccountRewardEmissionsSuperAuthority,
            >
            : TAccountRewardEmissionsSuperAuthority,
        TAccountNewRewardAuthority extends string
            ? ReadonlyAccount<TAccountNewRewardAuthority>
            : TAccountNewRewardAuthority,
        ...TRemainingAccounts,
    ],
>

Type Parameters

  • TProgram extends string = typeof WHIRLPOOL_PROGRAM_ADDRESS
  • TAccountWhirlpoolsConfig extends string | IAccountMeta<string> = string
  • TAccountWhirlpool extends string | IAccountMeta<string> = string
  • TAccountRewardEmissionsSuperAuthority extends string | IAccountMeta<string> = string
  • TAccountNewRewardAuthority extends string | IAccountMeta<string> = string
  • TRemainingAccounts extends readonly IAccountMeta<string>[] = []