Coda by Ian Macalinao
    Preparing search index...

    Type Alias FarmsIdlMissingTypesInstruction<TProgram, TAccountGlobalAdmin, TAccountGlobalConfig, TRemainingAccounts>

    FarmsIdlMissingTypesInstruction: Instruction<TProgram> & InstructionWithData<
        ReadonlyUint8Array,
    > & InstructionWithAccounts<
        [
            TAccountGlobalAdmin extends string
                ? ReadonlySignerAccount<TAccountGlobalAdmin> & AccountSignerMeta<
                    TAccountGlobalAdmin,
                >
                : TAccountGlobalAdmin,
            TAccountGlobalConfig extends string
                ? WritableAccount<TAccountGlobalConfig>
                : TAccountGlobalConfig,
            ...TRemainingAccounts,
        ],
    >

    Type Parameters

    • TProgram extends string = typeof FARMS_PROGRAM_ADDRESS
    • TAccountGlobalAdmin extends string | AccountMeta = string
    • TAccountGlobalConfig extends string | AccountMeta = string
    • TRemainingAccounts extends readonly AccountMeta[] = []