/** * 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 CreateIdempotentAssociatedTokenInstructionAccounts = { payer?: Signer; ata: PublicKey | Pda; owner: PublicKey | Pda; mint: PublicKey | Pda; systemProgram?: PublicKey | Pda; tokenProgram?: PublicKey | Pda; }; export type CreateIdempotentAssociatedTokenInstructionData = { discriminator: number; }; export type CreateIdempotentAssociatedTokenInstructionDataArgs = {}; export declare function getCreateIdempotentAssociatedTokenInstructionDataSerializer(): Serializer; export declare function createIdempotentAssociatedToken(context: Pick, input: CreateIdempotentAssociatedTokenInstructionAccounts): TransactionBuilder;