@metaplex-foundation/mpl-token-metadata-kit - v0.0.1
    Preparing search index...

    Type Alias CollectInstruction<TProgram, TAccountAuthority, TAccountRecipient, TRemainingAccounts>

    CollectInstruction: Instruction<TProgram> & InstructionWithData<
        ReadonlyUint8Array,
    > & InstructionWithAccounts<
        [
            TAccountAuthority extends string
                ? ReadonlySignerAccount<TAccountAuthority> & AccountSignerMeta<
                    TAccountAuthority,
                >
                : TAccountAuthority,
            TAccountRecipient extends string
                ? ReadonlyAccount<TAccountRecipient>
                : TAccountRecipient,
            ...TRemainingAccounts,
        ],
    >

    Type Parameters

    • TProgram extends string = typeof MPL_TOKEN_METADATA_PROGRAM_ADDRESS
    • TAccountAuthority extends string | AccountMeta<string> = string
    • TAccountRecipient extends string | AccountMeta<string> = string
    • TRemainingAccounts extends readonly AccountMeta<string>[] = []