/** * 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 { BaseExternalPluginAdapterKey, BaseExternalPluginAdapterKeyArgs } from '../types'; export type RemoveCollectionExternalPluginAdapterV1InstructionAccounts = { /** 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 RemoveCollectionExternalPluginAdapterV1InstructionData = { discriminator: number; key: BaseExternalPluginAdapterKey; }; export type RemoveCollectionExternalPluginAdapterV1InstructionDataArgs = { key: BaseExternalPluginAdapterKeyArgs; }; export declare function getRemoveCollectionExternalPluginAdapterV1InstructionDataSerializer(): Serializer; export type RemoveCollectionExternalPluginAdapterV1InstructionArgs = RemoveCollectionExternalPluginAdapterV1InstructionDataArgs; export declare function removeCollectionExternalPluginAdapterV1(context: Pick, input: RemoveCollectionExternalPluginAdapterV1InstructionAccounts & RemoveCollectionExternalPluginAdapterV1InstructionArgs): TransactionBuilder;