/** * This code was AUTOGENERATED using the kinobi library. * Please DO NOT EDIT THIS FILE, instead use visitors * to add features, then rerun kinobi to update it. * * @see https://github.com/metaplex-foundation/kinobi */ import { Context, Pda, PublicKey, Signer, TransactionBuilder } from '@metaplex-foundation/umi'; import { Serializer } from '@metaplex-foundation/umi/serializers'; import { UpdateType, UpdateTypeArgs } from '../types'; export type UpdateCollectionInfoV1InstructionAccounts = { /** The address of the asset */ collection: PublicKey | Pda; /** Bubblegum PDA signer */ bubblegumSigner: Signer; }; export type UpdateCollectionInfoV1InstructionData = { discriminator: number; updateType: UpdateType; amount: number; }; export type UpdateCollectionInfoV1InstructionDataArgs = { updateType: UpdateTypeArgs; amount: number; }; export declare function getUpdateCollectionInfoV1InstructionDataSerializer(): Serializer; export type UpdateCollectionInfoV1InstructionArgs = UpdateCollectionInfoV1InstructionDataArgs; export declare function updateCollectionInfoV1(context: Pick, input: UpdateCollectionInfoV1InstructionAccounts & UpdateCollectionInfoV1InstructionArgs): TransactionBuilder;