import { ContinuousFund, type ContinuousFundSDKType, Params, type ParamsSDKType } from './types.js'; import { BinaryReader, BinaryWriter } from '../../../binary.js'; import { type JsonSafe } from '../../../json-safe.js'; /** * GenesisState defines the protocolpool module's genesis state. * @name GenesisState * @package cosmos.protocolpool.v1 * @see proto type: cosmos.protocolpool.v1.GenesisState */ export interface GenesisState { /** * ContinuousFunds defines the continuous funds at genesis. */ continuousFunds: ContinuousFund[]; /** * Params defines the parameters of this module, currently only contains the * denoms that will be used for continuous fund distributions. */ params: Params; } export interface GenesisStateProtoMsg { typeUrl: '/cosmos.protocolpool.v1.GenesisState'; value: Uint8Array; } /** * GenesisState defines the protocolpool module's genesis state. * @name GenesisStateSDKType * @package cosmos.protocolpool.v1 * @see proto type: cosmos.protocolpool.v1.GenesisState */ export interface GenesisStateSDKType { continuous_funds: ContinuousFundSDKType[]; params: ParamsSDKType; } /** * GenesisState defines the protocolpool module's genesis state. * @name GenesisState * @package cosmos.protocolpool.v1 * @see proto type: cosmos.protocolpool.v1.GenesisState */ export declare const GenesisState: { typeUrl: "/cosmos.protocolpool.v1.GenesisState"; aminoType: "cosmos-sdk/GenesisState"; is(o: any): o is GenesisState; isSDK(o: any): o is GenesisStateSDKType; 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; fromProtoMsg(message: GenesisStateProtoMsg): GenesisState; toProto(message: GenesisState): Uint8Array; toProtoMsg(message: GenesisState): GenesisStateProtoMsg; }; //# sourceMappingURL=genesis.d.ts.map