import { BinaryReader, BinaryWriter } from "../../../binary.js"; import { DeepPartial } from "../../../helpers.js"; import { Any, AnyAmino } from "../../../google/protobuf/any.js"; import { Params, ParamsAmino } from "./auth.js"; //#region src/cosmos/auth/v1beta1/genesis.d.ts /** * GenesisState defines the auth module's genesis state. * @name GenesisState * @package cosmos.auth.v1beta1 * @see proto type: cosmos.auth.v1beta1.GenesisState */ interface GenesisState { /** * params defines all the parameters of the module. */ params: Params; /** * accounts are the accounts present at genesis. */ accounts: Any[]; } interface GenesisStateProtoMsg { typeUrl: "/cosmos.auth.v1beta1.GenesisState"; value: Uint8Array; } /** * GenesisState defines the auth module's genesis state. * @name GenesisStateAmino * @package cosmos.auth.v1beta1 * @see proto type: cosmos.auth.v1beta1.GenesisState */ interface GenesisStateAmino { /** * params defines all the parameters of the module. */ params: ParamsAmino; /** * accounts are the accounts present at genesis. */ accounts: AnyAmino[]; } interface GenesisStateAminoMsg { type: "cosmos-sdk/GenesisState"; value: GenesisStateAmino; } /** * GenesisState defines the auth module's genesis state. * @name GenesisState * @package cosmos.auth.v1beta1 * @see proto type: cosmos.auth.v1beta1.GenesisState */ declare const GenesisState: { typeUrl: string; aminoType: string; is(o: any): o is GenesisState; isAmino(o: any): o is GenesisStateAmino; encode(message: GenesisState, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): GenesisState; fromPartial(object: DeepPartial): GenesisState; 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; registerTypeUrl(): void; }; //#endregion export { GenesisState, GenesisStateAmino, GenesisStateAminoMsg, GenesisStateProtoMsg };