Coda by Ian Macalinao
    Preparing search index...

    Type Alias ParsedUpdateCollectionInfoV1Instruction<TProgram, TAccountMetas>

    type ParsedUpdateCollectionInfoV1Instruction<
        TProgram extends string = typeof MPL_CORE_PROGRAM_PROGRAM_ADDRESS,
        TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[],
    > = {
        accounts: {
            bubblegumSigner: TAccountMetas[1];
            collection: TAccountMetas[0];
        };
        data: UpdateCollectionInfoV1InstructionData;
        programAddress: Address<TProgram>;
    }

    Type Parameters

    Index

    Properties

    accounts: { bubblegumSigner: TAccountMetas[1]; collection: TAccountMetas[0] }

    Type Declaration

    programAddress: Address<TProgram>