/** * 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 { Plugin, PluginArgs } from '../types'; export type UpdateCollectionPluginV1InstructionAccounts = { /** The address of the asset */ collection: PublicKey | Pda; /** The account paying for the storage fees */ payer?: Signer; /** The owner or delegate of the asset */ authority?: Signer; /** The system program */ systemProgram?: PublicKey | Pda; /** The SPL Noop Program */ logWrapper?: PublicKey | Pda; }; export type UpdateCollectionPluginV1InstructionData = { discriminator: number; plugin: Plugin; }; export type UpdateCollectionPluginV1InstructionDataArgs = { plugin: PluginArgs; }; export declare function getUpdateCollectionPluginV1InstructionDataSerializer(): Serializer; export type UpdateCollectionPluginV1InstructionArgs = UpdateCollectionPluginV1InstructionDataArgs; export declare function updateCollectionPluginV1(context: Pick, input: UpdateCollectionPluginV1InstructionAccounts & UpdateCollectionPluginV1InstructionArgs): TransactionBuilder;