import { BinaryReader, BinaryWriter } from "../../../../binary"; export declare const protobufPackage = "ibc.applications.transfer.v1"; /** * DenomTrace contains the base denomination for ICS20 fungible tokens and the * source tracing information path. */ /** @deprecated */ export interface DenomTrace { /** * path defines the chain of port/channel identifiers used for tracing the * source of the fungible token. */ path: string; /** base denomination of the relayed fungible token. */ baseDenom: string; } export interface DenomTraceProtoMsg { typeUrl: "/ibc.applications.transfer.v1.DenomTrace"; value: Uint8Array; } /** * DenomTrace contains the base denomination for ICS20 fungible tokens and the * source tracing information path. */ /** @deprecated */ export interface DenomTraceAmino { /** * path defines the chain of port/channel identifiers used for tracing the * source of the fungible token. */ path?: string; /** base denomination of the relayed fungible token. */ base_denom?: string; } export interface DenomTraceAminoMsg { type: "cosmos-sdk/DenomTrace"; value: DenomTraceAmino; } export declare const DenomTrace: { typeUrl: string; encode(message: DenomTrace, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): DenomTrace; fromJSON(object: any): DenomTrace; toJSON(message: DenomTrace): unknown; fromPartial(object: Partial): DenomTrace; fromAmino(object: DenomTraceAmino): DenomTrace; toAmino(message: DenomTrace): DenomTraceAmino; fromAminoMsg(object: DenomTraceAminoMsg): DenomTrace; toAminoMsg(message: DenomTrace): DenomTraceAminoMsg; fromProtoMsg(message: DenomTraceProtoMsg): DenomTrace; toProto(message: DenomTrace): Uint8Array; toProtoMsg(message: DenomTrace): DenomTraceProtoMsg; };