Coda by Ian Macalinao
    Preparing search index...

    Type Alias RemoveCollectionPluginV1Instruction<TProgram, TAccountCollection, TAccountPayer, TAccountAuthority, TAccountSystemProgram, TAccountLogWrapper, TRemainingAccounts>

    RemoveCollectionPluginV1Instruction: Instruction<TProgram> & InstructionWithData<
        ReadonlyUint8Array,
    > & InstructionWithAccounts<
        [
            TAccountCollection extends string
                ? WritableAccount<TAccountCollection>
                : TAccountCollection,
            TAccountPayer extends string
                ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<
                    TAccountPayer,
                >
                : TAccountPayer,
            TAccountAuthority extends string
                ? ReadonlySignerAccount<TAccountAuthority> & AccountSignerMeta<
                    TAccountAuthority,
                >
                : TAccountAuthority,
            TAccountSystemProgram extends string
                ? ReadonlyAccount<TAccountSystemProgram>
                : TAccountSystemProgram,
            TAccountLogWrapper extends string
                ? ReadonlyAccount<TAccountLogWrapper>
                : TAccountLogWrapper,
            ...TRemainingAccounts,
        ],
    >

    Type Parameters

    • TProgram extends string = typeof MPL_CORE_PROGRAM_PROGRAM_ADDRESS
    • TAccountCollection extends string | AccountMeta<string> = string
    • TAccountPayer extends string | AccountMeta<string> = string
    • TAccountAuthority extends string | AccountMeta<string> = string
    • TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111"
    • TAccountLogWrapper extends string | AccountMeta<string> = string
    • TRemainingAccounts extends readonly AccountMeta<string>[] = []