/** * 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, Option, OptionOrNullable, Pda, PublicKey, Signer, TransactionBuilder } from '@metaplex-foundation/umi'; import { Serializer } from '@metaplex-foundation/umi/serializers'; export type UpdateGroupV1InstructionAccounts = { /** The address of the group to update */ group: PublicKey | Pda; /** The account paying for the storage fees */ payer?: Signer; /** The update authority of the group */ authority?: Signer; /** The new update authority of the group */ newUpdateAuthority?: PublicKey | Pda; /** The system program */ systemProgram?: PublicKey | Pda; }; export type UpdateGroupV1InstructionData = { discriminator: number; newName: Option; newUri: Option; }; export type UpdateGroupV1InstructionDataArgs = { newName?: OptionOrNullable; newUri?: OptionOrNullable; }; export declare function getUpdateGroupV1InstructionDataSerializer(): Serializer; export type UpdateGroupV1InstructionArgs = UpdateGroupV1InstructionDataArgs; export declare function updateGroupV1(context: Pick, input: UpdateGroupV1InstructionAccounts & UpdateGroupV1InstructionArgs): TransactionBuilder;