import { Params, ParamsAmino, ParamsSDKType } from "./params"; import { GenesisState as GenesisState1 } from "../fixationstore/fixation"; import { GenesisStateAmino as GenesisState1Amino } from "../fixationstore/fixation"; import { GenesisStateSDKType as GenesisState1SDKType } from "../fixationstore/fixation"; import { GenesisState as GenesisState2 } from "../timerstore/timer"; import { GenesisStateAmino as GenesisState2Amino } from "../timerstore/timer"; import { GenesisStateSDKType as GenesisState2SDKType } from "../timerstore/timer"; import { Adjustment, AdjustmentAmino, AdjustmentSDKType } from "./adjustment"; import { BinaryReader, BinaryWriter } from "../../../binary"; import { JsonSafe } from "../../../json-safe"; /** GenesisState defines the subscription module's genesis state. */ export interface GenesisState { params: Params; subsFS: GenesisState1; subsTS: GenesisState2; cuTrackerFS: GenesisState1; cuTrackerTS: GenesisState2; adjustments: Adjustment[]; } export interface GenesisStateProtoMsg { typeUrl: "/lavanet.lava.subscription.GenesisState"; value: Uint8Array; } /** GenesisState defines the subscription module's genesis state. */ export interface GenesisStateAmino { params?: ParamsAmino; subsFS?: GenesisState1Amino; subsTS?: GenesisState2Amino; cuTrackerFS?: GenesisState1Amino; cuTrackerTS?: GenesisState2Amino; adjustments?: AdjustmentAmino[]; } export interface GenesisStateAminoMsg { type: "/lavanet.lava.subscription.GenesisState"; value: GenesisStateAmino; } /** GenesisState defines the subscription module's genesis state. */ export interface GenesisStateSDKType { params: ParamsSDKType; subsFS: GenesisState1SDKType; subsTS: GenesisState2SDKType; cuTrackerFS: GenesisState1SDKType; cuTrackerTS: GenesisState2SDKType; adjustments: AdjustmentSDKType[]; } export declare const GenesisState: { typeUrl: string; 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; };