/** * 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'; export type ExecuteV1InstructionAccounts = { /** The address of the asset */ asset: PublicKey | Pda; /** The collection to which the asset belongs */ collection?: PublicKey | Pda; /** The signing PDA for the asset */ assetSigner?: PublicKey | Pda; /** The account paying for the storage fees */ payer?: PublicKey | Pda | Signer; /** The owner or delegate of the asset */ authority?: Signer; /** The system program */ systemProgram?: PublicKey | Pda; /** The program id of the instruction */ programId?: PublicKey | Pda; }; export type ExecuteV1InstructionData = { discriminator: number; instructionData: Uint8Array; }; export type ExecuteV1InstructionDataArgs = { instructionData: Uint8Array; }; export declare function getExecuteV1InstructionDataSerializer(): Serializer; export type ExecuteV1InstructionArgs = ExecuteV1InstructionDataArgs; export declare function executeV1(context: Pick, input: ExecuteV1InstructionAccounts & ExecuteV1InstructionArgs): TransactionBuilder;