import { Params, type ParamsSDKType } from './params.js'; import { UserRedemptionRecord, type UserRedemptionRecordSDKType, EpochUnbondingRecord, type EpochUnbondingRecordSDKType, DepositRecord, type DepositRecordSDKType, LSMTokenDeposit, type LSMTokenDepositSDKType } from './records.js'; import { BinaryReader, BinaryWriter } from '../../binary.js'; import { type JsonSafe } from '../../json-safe.js'; /** GenesisState defines the records module's genesis state. */ export interface GenesisState { params: Params; portId: string; userRedemptionRecordList: UserRedemptionRecord[]; userRedemptionRecordCount: bigint; epochUnbondingRecordList: EpochUnbondingRecord[]; depositRecordList: DepositRecord[]; depositRecordCount: bigint; lsmTokenDepositList: LSMTokenDeposit[]; } export interface GenesisStateProtoMsg { typeUrl: '/stride.records.GenesisState'; value: Uint8Array; } /** GenesisState defines the records module's genesis state. */ export interface GenesisStateSDKType { params: ParamsSDKType; port_id: string; user_redemption_record_list: UserRedemptionRecordSDKType[]; user_redemption_record_count: bigint; epoch_unbonding_record_list: EpochUnbondingRecordSDKType[]; deposit_record_list: DepositRecordSDKType[]; deposit_record_count: bigint; lsm_token_deposit_list: LSMTokenDepositSDKType[]; } export declare const GenesisState: { typeUrl: "/stride.records.GenesisState"; 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