Coda by Ian Macalinao
    Preparing search index...

    Type Alias UpdateCollectionInfoV1Instruction<TProgram, TAccountCollection, TAccountBubblegumSigner, TRemainingAccounts>

    UpdateCollectionInfoV1Instruction: Instruction<TProgram> & InstructionWithData<
        ReadonlyUint8Array,
    > & InstructionWithAccounts<
        [
            TAccountCollection extends string
                ? WritableAccount<TAccountCollection>
                : TAccountCollection,
            TAccountBubblegumSigner extends string
                ? ReadonlySignerAccount<TAccountBubblegumSigner> & AccountSignerMeta<
                    TAccountBubblegumSigner,
                >
                : TAccountBubblegumSigner,
            ...TRemainingAccounts,
        ],
    >

    Type Parameters

    • TProgram extends string = typeof MPL_CORE_PROGRAM_PROGRAM_ADDRESS
    • TAccountCollection extends string | AccountMeta<string> = string
    • TAccountBubblegumSigner extends string | AccountMeta<string> = string
    • TRemainingAccounts extends readonly AccountMeta<string>[] = []