import { Class, ClassAmino, ClassSDKType, NFT, NFTAmino, NFTSDKType } from "./nft"; import { BinaryReader, BinaryWriter } from "../../../binary"; import { DeepPartial } from "../../../helpers"; export declare const protobufPackage = "cosmos.nft.v1beta1"; /** GenesisState defines the nft module's genesis state. */ export interface GenesisState { /** class defines the class of the nft type. */ classes: Class[]; /** entry defines all nft owned by a person. */ entries: Entry[]; } export interface GenesisStateProtoMsg { typeUrl: "/cosmos.nft.v1beta1.GenesisState"; value: Uint8Array; } /** GenesisState defines the nft module's genesis state. */ export interface GenesisStateAmino { /** class defines the class of the nft type. */ classes?: ClassAmino[]; /** entry defines all nft owned by a person. */ entries?: EntryAmino[]; } export interface GenesisStateAminoMsg { type: "cosmos-sdk/GenesisState"; value: GenesisStateAmino; } /** GenesisState defines the nft module's genesis state. */ export interface GenesisStateSDKType { classes: ClassSDKType[]; entries: EntrySDKType[]; } /** Entry Defines all nft owned by a person */ export interface Entry { /** owner is the owner address of the following nft */ owner: string; /** nfts is a group of nfts of the same owner */ nfts: NFT[]; } export interface EntryProtoMsg { typeUrl: "/cosmos.nft.v1beta1.Entry"; value: Uint8Array; } /** Entry Defines all nft owned by a person */ export interface EntryAmino { /** owner is the owner address of the following nft */ owner?: string; /** nfts is a group of nfts of the same owner */ nfts?: NFTAmino[]; } export interface EntryAminoMsg { type: "cosmos-sdk/Entry"; value: EntryAmino; } /** Entry Defines all nft owned by a person */ export interface EntrySDKType { owner: string; nfts: NFTSDKType[]; } export declare const GenesisState: { typeUrl: string; aminoType: string; is(o: any): o is GenesisState; isSDK(o: any): o is GenesisStateSDKType; isAmino(o: any): o is GenesisStateAmino; encode(message: GenesisState, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): GenesisState; fromJSON(object: any): GenesisState; toJSON(message: GenesisState): unknown; fromPartial(object: DeepPartial): GenesisState; fromSDK(object: GenesisStateSDKType): GenesisState; toSDK(message: GenesisState): GenesisStateSDKType; fromAmino(object: GenesisStateAmino): GenesisState; toAmino(message: GenesisState): GenesisStateAmino; fromAminoMsg(object: GenesisStateAminoMsg): GenesisState; toAminoMsg(message: GenesisState): GenesisStateAminoMsg; fromProtoMsg(message: GenesisStateProtoMsg): GenesisState; toProto(message: GenesisState): Uint8Array; toProtoMsg(message: GenesisState): GenesisStateProtoMsg; }; export declare const Entry: { typeUrl: string; aminoType: string; is(o: any): o is Entry; isSDK(o: any): o is EntrySDKType; isAmino(o: any): o is EntryAmino; encode(message: Entry, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): Entry; fromJSON(object: any): Entry; toJSON(message: Entry): unknown; fromPartial(object: DeepPartial): Entry; fromSDK(object: EntrySDKType): Entry; toSDK(message: Entry): EntrySDKType; fromAmino(object: EntryAmino): Entry; toAmino(message: Entry): EntryAmino; fromAminoMsg(object: EntryAminoMsg): Entry; toAminoMsg(message: Entry): EntryAminoMsg; fromProtoMsg(message: EntryProtoMsg): Entry; toProto(message: Entry): Uint8Array; toProtoMsg(message: Entry): EntryProtoMsg; };