/** * 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 { RelationshipEntry, RelationshipEntryArgs } from '../types'; export type CreateGroupV1InstructionAccounts = { /** The address of the new group */ group: Signer; /** The authority of the new group */ updateAuthority?: Signer; /** The account paying for the storage fees */ payer?: Signer; /** The system program */ systemProgram?: PublicKey | Pda; }; export type CreateGroupV1InstructionData = { discriminator: number; name: string; uri: string; relationships: Array; }; export type CreateGroupV1InstructionDataArgs = { name: string; uri: string; relationships: Array; }; export declare function getCreateGroupV1InstructionDataSerializer(): Serializer; export type CreateGroupV1InstructionArgs = CreateGroupV1InstructionDataArgs; export declare function createGroupV1(context: Pick, input: CreateGroupV1InstructionAccounts & CreateGroupV1InstructionArgs): TransactionBuilder;