import { Minter, MinterAmino, MinterSDKType, Params, ParamsAmino, ParamsSDKType } from "./mint"; import { BinaryReader, BinaryWriter } from "../../../binary"; import { JsonSafe } from "../../../json-safe"; /** GenesisState defines the mint module's genesis state. */ export interface GenesisState { /** minter is a space for holding current inflation information. */ minter: Minter; /** params defines all the paramaters of the module. */ params: Params; } export interface GenesisStateProtoMsg { typeUrl: "/intento.mint.v1.GenesisState"; value: Uint8Array; } /** * GenesisState defines the mint module's genesis state. * @name GenesisStateAmino * @package intento.mint.v1 * @see proto type: intento.mint.v1.GenesisState */ export interface GenesisStateAmino { /** * minter is a space for holding current inflation information. */ minter?: MinterAmino; /** * params defines all the paramaters of the module. */ params?: ParamsAmino; } export interface GenesisStateAminoMsg { type: "/intento.mint.v1.GenesisState"; value: GenesisStateAmino; } /** GenesisState defines the mint module's genesis state. */ export interface GenesisStateSDKType { minter: MinterSDKType; params: ParamsSDKType; } export declare const GenesisState: { typeUrl: 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): JsonSafe; fromPartial(object: Partial): GenesisState; fromAmino(object: GenesisStateAmino): GenesisState; toAmino(message: GenesisState): GenesisStateAmino; fromAminoMsg(object: GenesisStateAminoMsg): GenesisState; fromProtoMsg(message: GenesisStateProtoMsg): GenesisState; toProto(message: GenesisState): Uint8Array; toProtoMsg(message: GenesisState): GenesisStateProtoMsg; };