/** * 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 { PickPartial } from '../shared'; import { MetadataArgs, MetadataArgsArgs } from '../types'; export declare type UnverifyCreatorInstructionAccounts = { treeConfig?: PublicKey | Pda; leafOwner: PublicKey | Pda; leafDelegate?: PublicKey | Pda; merkleTree: PublicKey | Pda; payer?: Signer; creator: Signer; logWrapper?: PublicKey | Pda; compressionProgram?: PublicKey | Pda; systemProgram?: PublicKey | Pda; }; export declare type UnverifyCreatorInstructionData = { discriminator: Array; root: Uint8Array; dataHash: Uint8Array; creatorHash: Uint8Array; nonce: bigint; index: number; metadata: MetadataArgs; }; export declare type UnverifyCreatorInstructionDataArgs = { root: Uint8Array; dataHash: Uint8Array; creatorHash: Uint8Array; nonce: number | bigint; index: number; metadata: MetadataArgsArgs; }; export declare function getUnverifyCreatorInstructionDataSerializer(): Serializer; export declare type UnverifyCreatorInstructionExtraArgs = { proof: Array; }; export declare type UnverifyCreatorInstructionArgs = PickPartial; export declare function unverifyCreator(context: Pick, input: UnverifyCreatorInstructionAccounts & UnverifyCreatorInstructionArgs): TransactionBuilder;