Documentation
    Preparing search index...

    Type Alias ParsedSetFeeAuthorityInstruction<TProgram, TAccountMetas>

    type ParsedSetFeeAuthorityInstruction<
        TProgram extends string = typeof WHIRLPOOL_PROGRAM_ADDRESS,
        TAccountMetas extends readonly IAccountMeta[] = readonly IAccountMeta[],
    > = {
        accounts: {
            feeAuthority: TAccountMetas[1];
            newFeeAuthority: TAccountMetas[2];
            whirlpoolsConfig: TAccountMetas[0];
        };
        data: SetFeeAuthorityInstructionData;
        programAddress: Address<TProgram>;
    }

    Type Parameters

    • TProgram extends string = typeof WHIRLPOOL_PROGRAM_ADDRESS
    • TAccountMetas extends readonly IAccountMeta[] = readonly IAccountMeta[]
    Index

    Properties

    accounts: {
        feeAuthority: TAccountMetas[1];
        newFeeAuthority: TAccountMetas[2];
        whirlpoolsConfig: TAccountMetas[0];
    }
    programAddress: Address<TProgram>