import { DenomTrace, type DenomTraceSDKType, Params, type ParamsSDKType } from './transfer.js'; import { Coin, type CoinSDKType } from '../../../../cosmos/base/v1beta1/coin.js'; import { BinaryReader, BinaryWriter } from '../../../../binary.js'; import { type JsonSafe } from '../../../../json-safe.js'; /** GenesisState defines the ibc-transfer genesis state */ export interface GenesisState { portId: string; denomTraces: DenomTrace[]; params: Params; /** * total_escrowed contains the total amount of tokens escrowed * by the transfer module */ totalEscrowed: Coin[]; } export interface GenesisStateProtoMsg { typeUrl: '/ibc.applications.transfer.v1.GenesisState'; value: Uint8Array; } /** GenesisState defines the ibc-transfer genesis state */ export interface GenesisStateSDKType { port_id: string; denom_traces: DenomTraceSDKType[]; params: ParamsSDKType; total_escrowed: CoinSDKType[]; } export declare const GenesisState: { typeUrl: "/ibc.applications.transfer.v1.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