import { Channel, type ChannelSDKType, Packet, type PacketSDKType, State } from './channel.js'; import { Height, type HeightSDKType, Params, type ParamsSDKType } from '../../client/v1/client.js'; import { UpgradeFields, type UpgradeFieldsSDKType, Upgrade, type UpgradeSDKType, ErrorReceipt, type ErrorReceiptSDKType } from './upgrade.js'; import { BinaryReader, BinaryWriter } from '../../../../binary.js'; import { type JsonSafe } from '../../../../json-safe.js'; /** ResponseResultType defines the possible outcomes of the execution of a message */ export declare enum ResponseResultType { /** RESPONSE_RESULT_TYPE_UNSPECIFIED - Default zero value enumeration */ RESPONSE_RESULT_TYPE_UNSPECIFIED = 0, /** RESPONSE_RESULT_TYPE_NOOP - The message did not call the IBC application callbacks (because, for example, the packet had already been relayed) */ RESPONSE_RESULT_TYPE_NOOP = 1, /** RESPONSE_RESULT_TYPE_SUCCESS - The message was executed successfully */ RESPONSE_RESULT_TYPE_SUCCESS = 2, /** RESPONSE_RESULT_TYPE_FAILURE - The message was executed unsuccessfully */ RESPONSE_RESULT_TYPE_FAILURE = 3, UNRECOGNIZED = -1 } export declare const ResponseResultTypeSDKType: typeof ResponseResultType; export declare function responseResultTypeFromJSON(object: any): ResponseResultType; export declare function responseResultTypeToJSON(object: ResponseResultType): string; /** * MsgChannelOpenInit defines an sdk.Msg to initialize a channel handshake. It * is called by a relayer on Chain A. */ export interface MsgChannelOpenInit { portId: string; channel: Channel; signer: string; } export interface MsgChannelOpenInitProtoMsg { typeUrl: '/ibc.core.channel.v1.MsgChannelOpenInit'; value: Uint8Array; } /** * MsgChannelOpenInit defines an sdk.Msg to initialize a channel handshake. It * is called by a relayer on Chain A. */ export interface MsgChannelOpenInitSDKType { port_id: string; channel: ChannelSDKType; signer: string; } /** MsgChannelOpenInitResponse defines the Msg/ChannelOpenInit response type. */ export interface MsgChannelOpenInitResponse { channelId: string; version: string; } export interface MsgChannelOpenInitResponseProtoMsg { typeUrl: '/ibc.core.channel.v1.MsgChannelOpenInitResponse'; value: Uint8Array; } /** MsgChannelOpenInitResponse defines the Msg/ChannelOpenInit response type. */ export interface MsgChannelOpenInitResponseSDKType { channel_id: string; version: string; } /** * MsgChannelOpenInit defines a msg sent by a Relayer to try to open a channel * on Chain B. The version field within the Channel field has been deprecated. Its * value will be ignored by core IBC. */ export interface MsgChannelOpenTry { portId: string; /** Deprecated: this field is unused. Crossing hello's are no longer supported in core IBC. */ /** @deprecated */ previousChannelId: string; /** NOTE: the version field within the channel has been deprecated. Its value will be ignored by core IBC. */ channel: Channel; counterpartyVersion: string; proofInit: Uint8Array; proofHeight: Height; signer: string; } export interface MsgChannelOpenTryProtoMsg { typeUrl: '/ibc.core.channel.v1.MsgChannelOpenTry'; value: Uint8Array; } /** * MsgChannelOpenInit defines a msg sent by a Relayer to try to open a channel * on Chain B. The version field within the Channel field has been deprecated. Its * value will be ignored by core IBC. */ export interface MsgChannelOpenTrySDKType { port_id: string; /** @deprecated */ previous_channel_id: string; channel: ChannelSDKType; counterparty_version: string; proof_init: Uint8Array; proof_height: HeightSDKType; signer: string; } /** MsgChannelOpenTryResponse defines the Msg/ChannelOpenTry response type. */ export interface MsgChannelOpenTryResponse { version: string; channelId: string; } export interface MsgChannelOpenTryResponseProtoMsg { typeUrl: '/ibc.core.channel.v1.MsgChannelOpenTryResponse'; value: Uint8Array; } /** MsgChannelOpenTryResponse defines the Msg/ChannelOpenTry response type. */ export interface MsgChannelOpenTryResponseSDKType { version: string; channel_id: string; } /** * MsgChannelOpenAck defines a msg sent by a Relayer to Chain A to acknowledge * the change of channel state to TRYOPEN on Chain B. * WARNING: a channel upgrade MUST NOT initialize an upgrade for this channel * in the same block as executing this message otherwise the counterparty will * be incapable of opening. */ export interface MsgChannelOpenAck { portId: string; channelId: string; counterpartyChannelId: string; counterpartyVersion: string; proofTry: Uint8Array; proofHeight: Height; signer: string; } export interface MsgChannelOpenAckProtoMsg { typeUrl: '/ibc.core.channel.v1.MsgChannelOpenAck'; value: Uint8Array; } /** * MsgChannelOpenAck defines a msg sent by a Relayer to Chain A to acknowledge * the change of channel state to TRYOPEN on Chain B. * WARNING: a channel upgrade MUST NOT initialize an upgrade for this channel * in the same block as executing this message otherwise the counterparty will * be incapable of opening. */ export interface MsgChannelOpenAckSDKType { port_id: string; channel_id: string; counterparty_channel_id: string; counterparty_version: string; proof_try: Uint8Array; proof_height: HeightSDKType; signer: string; } /** MsgChannelOpenAckResponse defines the Msg/ChannelOpenAck response type. */ export interface MsgChannelOpenAckResponse { } export interface MsgChannelOpenAckResponseProtoMsg { typeUrl: '/ibc.core.channel.v1.MsgChannelOpenAckResponse'; value: Uint8Array; } /** MsgChannelOpenAckResponse defines the Msg/ChannelOpenAck response type. */ export interface MsgChannelOpenAckResponseSDKType { } /** * MsgChannelOpenConfirm defines a msg sent by a Relayer to Chain B to * acknowledge the change of channel state to OPEN on Chain A. */ export interface MsgChannelOpenConfirm { portId: string; channelId: string; proofAck: Uint8Array; proofHeight: Height; signer: string; } export interface MsgChannelOpenConfirmProtoMsg { typeUrl: '/ibc.core.channel.v1.MsgChannelOpenConfirm'; value: Uint8Array; } /** * MsgChannelOpenConfirm defines a msg sent by a Relayer to Chain B to * acknowledge the change of channel state to OPEN on Chain A. */ export interface MsgChannelOpenConfirmSDKType { port_id: string; channel_id: string; proof_ack: Uint8Array; proof_height: HeightSDKType; signer: string; } /** * MsgChannelOpenConfirmResponse defines the Msg/ChannelOpenConfirm response * type. */ export interface MsgChannelOpenConfirmResponse { } export interface MsgChannelOpenConfirmResponseProtoMsg { typeUrl: '/ibc.core.channel.v1.MsgChannelOpenConfirmResponse'; value: Uint8Array; } /** * MsgChannelOpenConfirmResponse defines the Msg/ChannelOpenConfirm response * type. */ export interface MsgChannelOpenConfirmResponseSDKType { } /** * MsgChannelCloseInit defines a msg sent by a Relayer to Chain A * to close a channel with Chain B. */ export interface MsgChannelCloseInit { portId: string; channelId: string; signer: string; } export interface MsgChannelCloseInitProtoMsg { typeUrl: '/ibc.core.channel.v1.MsgChannelCloseInit'; value: Uint8Array; } /** * MsgChannelCloseInit defines a msg sent by a Relayer to Chain A * to close a channel with Chain B. */ export interface MsgChannelCloseInitSDKType { port_id: string; channel_id: string; signer: string; } /** MsgChannelCloseInitResponse defines the Msg/ChannelCloseInit response type. */ export interface MsgChannelCloseInitResponse { } export interface MsgChannelCloseInitResponseProtoMsg { typeUrl: '/ibc.core.channel.v1.MsgChannelCloseInitResponse'; value: Uint8Array; } /** MsgChannelCloseInitResponse defines the Msg/ChannelCloseInit response type. */ export interface MsgChannelCloseInitResponseSDKType { } /** * MsgChannelCloseConfirm defines a msg sent by a Relayer to Chain B * to acknowledge the change of channel state to CLOSED on Chain A. */ export interface MsgChannelCloseConfirm { portId: string; channelId: string; proofInit: Uint8Array; proofHeight: Height; signer: string; counterpartyUpgradeSequence: bigint; } export interface MsgChannelCloseConfirmProtoMsg { typeUrl: '/ibc.core.channel.v1.MsgChannelCloseConfirm'; value: Uint8Array; } /** * MsgChannelCloseConfirm defines a msg sent by a Relayer to Chain B * to acknowledge the change of channel state to CLOSED on Chain A. */ export interface MsgChannelCloseConfirmSDKType { port_id: string; channel_id: string; proof_init: Uint8Array; proof_height: HeightSDKType; signer: string; counterparty_upgrade_sequence: bigint; } /** * MsgChannelCloseConfirmResponse defines the Msg/ChannelCloseConfirm response * type. */ export interface MsgChannelCloseConfirmResponse { } export interface MsgChannelCloseConfirmResponseProtoMsg { typeUrl: '/ibc.core.channel.v1.MsgChannelCloseConfirmResponse'; value: Uint8Array; } /** * MsgChannelCloseConfirmResponse defines the Msg/ChannelCloseConfirm response * type. */ export interface MsgChannelCloseConfirmResponseSDKType { } /** MsgRecvPacket receives incoming IBC packet */ export interface MsgRecvPacket { packet: Packet; proofCommitment: Uint8Array; proofHeight: Height; signer: string; } export interface MsgRecvPacketProtoMsg { typeUrl: '/ibc.core.channel.v1.MsgRecvPacket'; value: Uint8Array; } /** MsgRecvPacket receives incoming IBC packet */ export interface MsgRecvPacketSDKType { packet: PacketSDKType; proof_commitment: Uint8Array; proof_height: HeightSDKType; signer: string; } /** MsgRecvPacketResponse defines the Msg/RecvPacket response type. */ export interface MsgRecvPacketResponse { result: ResponseResultType; } export interface MsgRecvPacketResponseProtoMsg { typeUrl: '/ibc.core.channel.v1.MsgRecvPacketResponse'; value: Uint8Array; } /** MsgRecvPacketResponse defines the Msg/RecvPacket response type. */ export interface MsgRecvPacketResponseSDKType { result: ResponseResultType; } /** MsgTimeout receives timed-out packet */ export interface MsgTimeout { packet: Packet; proofUnreceived: Uint8Array; proofHeight: Height; nextSequenceRecv: bigint; signer: string; } export interface MsgTimeoutProtoMsg { typeUrl: '/ibc.core.channel.v1.MsgTimeout'; value: Uint8Array; } /** MsgTimeout receives timed-out packet */ export interface MsgTimeoutSDKType { packet: PacketSDKType; proof_unreceived: Uint8Array; proof_height: HeightSDKType; next_sequence_recv: bigint; signer: string; } /** MsgTimeoutResponse defines the Msg/Timeout response type. */ export interface MsgTimeoutResponse { result: ResponseResultType; } export interface MsgTimeoutResponseProtoMsg { typeUrl: '/ibc.core.channel.v1.MsgTimeoutResponse'; value: Uint8Array; } /** MsgTimeoutResponse defines the Msg/Timeout response type. */ export interface MsgTimeoutResponseSDKType { result: ResponseResultType; } /** MsgTimeoutOnClose timed-out packet upon counterparty channel closure. */ export interface MsgTimeoutOnClose { packet: Packet; proofUnreceived: Uint8Array; proofClose: Uint8Array; proofHeight: Height; nextSequenceRecv: bigint; signer: string; counterpartyUpgradeSequence: bigint; } export interface MsgTimeoutOnCloseProtoMsg { typeUrl: '/ibc.core.channel.v1.MsgTimeoutOnClose'; value: Uint8Array; } /** MsgTimeoutOnClose timed-out packet upon counterparty channel closure. */ export interface MsgTimeoutOnCloseSDKType { packet: PacketSDKType; proof_unreceived: Uint8Array; proof_close: Uint8Array; proof_height: HeightSDKType; next_sequence_recv: bigint; signer: string; counterparty_upgrade_sequence: bigint; } /** MsgTimeoutOnCloseResponse defines the Msg/TimeoutOnClose response type. */ export interface MsgTimeoutOnCloseResponse { result: ResponseResultType; } export interface MsgTimeoutOnCloseResponseProtoMsg { typeUrl: '/ibc.core.channel.v1.MsgTimeoutOnCloseResponse'; value: Uint8Array; } /** MsgTimeoutOnCloseResponse defines the Msg/TimeoutOnClose response type. */ export interface MsgTimeoutOnCloseResponseSDKType { result: ResponseResultType; } /** MsgAcknowledgement receives incoming IBC acknowledgement */ export interface MsgAcknowledgement { packet: Packet; acknowledgement: Uint8Array; proofAcked: Uint8Array; proofHeight: Height; signer: string; } export interface MsgAcknowledgementProtoMsg { typeUrl: '/ibc.core.channel.v1.MsgAcknowledgement'; value: Uint8Array; } /** MsgAcknowledgement receives incoming IBC acknowledgement */ export interface MsgAcknowledgementSDKType { packet: PacketSDKType; acknowledgement: Uint8Array; proof_acked: Uint8Array; proof_height: HeightSDKType; signer: string; } /** MsgAcknowledgementResponse defines the Msg/Acknowledgement response type. */ export interface MsgAcknowledgementResponse { result: ResponseResultType; } export interface MsgAcknowledgementResponseProtoMsg { typeUrl: '/ibc.core.channel.v1.MsgAcknowledgementResponse'; value: Uint8Array; } /** MsgAcknowledgementResponse defines the Msg/Acknowledgement response type. */ export interface MsgAcknowledgementResponseSDKType { result: ResponseResultType; } /** * MsgChannelUpgradeInit defines the request type for the ChannelUpgradeInit rpc * WARNING: Initializing a channel upgrade in the same block as opening the channel * may result in the counterparty being incapable of opening. */ export interface MsgChannelUpgradeInit { portId: string; channelId: string; fields: UpgradeFields; signer: string; } export interface MsgChannelUpgradeInitProtoMsg { typeUrl: '/ibc.core.channel.v1.MsgChannelUpgradeInit'; value: Uint8Array; } /** * MsgChannelUpgradeInit defines the request type for the ChannelUpgradeInit rpc * WARNING: Initializing a channel upgrade in the same block as opening the channel * may result in the counterparty being incapable of opening. */ export interface MsgChannelUpgradeInitSDKType { port_id: string; channel_id: string; fields: UpgradeFieldsSDKType; signer: string; } /** MsgChannelUpgradeInitResponse defines the MsgChannelUpgradeInit response type */ export interface MsgChannelUpgradeInitResponse { upgrade: Upgrade; upgradeSequence: bigint; } export interface MsgChannelUpgradeInitResponseProtoMsg { typeUrl: '/ibc.core.channel.v1.MsgChannelUpgradeInitResponse'; value: Uint8Array; } /** MsgChannelUpgradeInitResponse defines the MsgChannelUpgradeInit response type */ export interface MsgChannelUpgradeInitResponseSDKType { upgrade: UpgradeSDKType; upgrade_sequence: bigint; } /** MsgChannelUpgradeTry defines the request type for the ChannelUpgradeTry rpc */ export interface MsgChannelUpgradeTry { portId: string; channelId: string; proposedUpgradeConnectionHops: string[]; counterpartyUpgradeFields: UpgradeFields; counterpartyUpgradeSequence: bigint; proofChannel: Uint8Array; proofUpgrade: Uint8Array; proofHeight: Height; signer: string; } export interface MsgChannelUpgradeTryProtoMsg { typeUrl: '/ibc.core.channel.v1.MsgChannelUpgradeTry'; value: Uint8Array; } /** MsgChannelUpgradeTry defines the request type for the ChannelUpgradeTry rpc */ export interface MsgChannelUpgradeTrySDKType { port_id: string; channel_id: string; proposed_upgrade_connection_hops: string[]; counterparty_upgrade_fields: UpgradeFieldsSDKType; counterparty_upgrade_sequence: bigint; proof_channel: Uint8Array; proof_upgrade: Uint8Array; proof_height: HeightSDKType; signer: string; } /** MsgChannelUpgradeTryResponse defines the MsgChannelUpgradeTry response type */ export interface MsgChannelUpgradeTryResponse { upgrade: Upgrade; upgradeSequence: bigint; result: ResponseResultType; } export interface MsgChannelUpgradeTryResponseProtoMsg { typeUrl: '/ibc.core.channel.v1.MsgChannelUpgradeTryResponse'; value: Uint8Array; } /** MsgChannelUpgradeTryResponse defines the MsgChannelUpgradeTry response type */ export interface MsgChannelUpgradeTryResponseSDKType { upgrade: UpgradeSDKType; upgrade_sequence: bigint; result: ResponseResultType; } /** MsgChannelUpgradeAck defines the request type for the ChannelUpgradeAck rpc */ export interface MsgChannelUpgradeAck { portId: string; channelId: string; counterpartyUpgrade: Upgrade; proofChannel: Uint8Array; proofUpgrade: Uint8Array; proofHeight: Height; signer: string; } export interface MsgChannelUpgradeAckProtoMsg { typeUrl: '/ibc.core.channel.v1.MsgChannelUpgradeAck'; value: Uint8Array; } /** MsgChannelUpgradeAck defines the request type for the ChannelUpgradeAck rpc */ export interface MsgChannelUpgradeAckSDKType { port_id: string; channel_id: string; counterparty_upgrade: UpgradeSDKType; proof_channel: Uint8Array; proof_upgrade: Uint8Array; proof_height: HeightSDKType; signer: string; } /** MsgChannelUpgradeAckResponse defines MsgChannelUpgradeAck response type */ export interface MsgChannelUpgradeAckResponse { result: ResponseResultType; } export interface MsgChannelUpgradeAckResponseProtoMsg { typeUrl: '/ibc.core.channel.v1.MsgChannelUpgradeAckResponse'; value: Uint8Array; } /** MsgChannelUpgradeAckResponse defines MsgChannelUpgradeAck response type */ export interface MsgChannelUpgradeAckResponseSDKType { result: ResponseResultType; } /** MsgChannelUpgradeConfirm defines the request type for the ChannelUpgradeConfirm rpc */ export interface MsgChannelUpgradeConfirm { portId: string; channelId: string; counterpartyChannelState: State; counterpartyUpgrade: Upgrade; proofChannel: Uint8Array; proofUpgrade: Uint8Array; proofHeight: Height; signer: string; } export interface MsgChannelUpgradeConfirmProtoMsg { typeUrl: '/ibc.core.channel.v1.MsgChannelUpgradeConfirm'; value: Uint8Array; } /** MsgChannelUpgradeConfirm defines the request type for the ChannelUpgradeConfirm rpc */ export interface MsgChannelUpgradeConfirmSDKType { port_id: string; channel_id: string; counterparty_channel_state: State; counterparty_upgrade: UpgradeSDKType; proof_channel: Uint8Array; proof_upgrade: Uint8Array; proof_height: HeightSDKType; signer: string; } /** MsgChannelUpgradeConfirmResponse defines MsgChannelUpgradeConfirm response type */ export interface MsgChannelUpgradeConfirmResponse { result: ResponseResultType; } export interface MsgChannelUpgradeConfirmResponseProtoMsg { typeUrl: '/ibc.core.channel.v1.MsgChannelUpgradeConfirmResponse'; value: Uint8Array; } /** MsgChannelUpgradeConfirmResponse defines MsgChannelUpgradeConfirm response type */ export interface MsgChannelUpgradeConfirmResponseSDKType { result: ResponseResultType; } /** MsgChannelUpgradeOpen defines the request type for the ChannelUpgradeOpen rpc */ export interface MsgChannelUpgradeOpen { portId: string; channelId: string; counterpartyChannelState: State; counterpartyUpgradeSequence: bigint; proofChannel: Uint8Array; proofHeight: Height; signer: string; } export interface MsgChannelUpgradeOpenProtoMsg { typeUrl: '/ibc.core.channel.v1.MsgChannelUpgradeOpen'; value: Uint8Array; } /** MsgChannelUpgradeOpen defines the request type for the ChannelUpgradeOpen rpc */ export interface MsgChannelUpgradeOpenSDKType { port_id: string; channel_id: string; counterparty_channel_state: State; counterparty_upgrade_sequence: bigint; proof_channel: Uint8Array; proof_height: HeightSDKType; signer: string; } /** MsgChannelUpgradeOpenResponse defines the MsgChannelUpgradeOpen response type */ export interface MsgChannelUpgradeOpenResponse { } export interface MsgChannelUpgradeOpenResponseProtoMsg { typeUrl: '/ibc.core.channel.v1.MsgChannelUpgradeOpenResponse'; value: Uint8Array; } /** MsgChannelUpgradeOpenResponse defines the MsgChannelUpgradeOpen response type */ export interface MsgChannelUpgradeOpenResponseSDKType { } /** MsgChannelUpgradeTimeout defines the request type for the ChannelUpgradeTimeout rpc */ export interface MsgChannelUpgradeTimeout { portId: string; channelId: string; counterpartyChannel: Channel; proofChannel: Uint8Array; proofHeight: Height; signer: string; } export interface MsgChannelUpgradeTimeoutProtoMsg { typeUrl: '/ibc.core.channel.v1.MsgChannelUpgradeTimeout'; value: Uint8Array; } /** MsgChannelUpgradeTimeout defines the request type for the ChannelUpgradeTimeout rpc */ export interface MsgChannelUpgradeTimeoutSDKType { port_id: string; channel_id: string; counterparty_channel: ChannelSDKType; proof_channel: Uint8Array; proof_height: HeightSDKType; signer: string; } /** MsgChannelUpgradeTimeoutRepsonse defines the MsgChannelUpgradeTimeout response type */ export interface MsgChannelUpgradeTimeoutResponse { } export interface MsgChannelUpgradeTimeoutResponseProtoMsg { typeUrl: '/ibc.core.channel.v1.MsgChannelUpgradeTimeoutResponse'; value: Uint8Array; } /** MsgChannelUpgradeTimeoutRepsonse defines the MsgChannelUpgradeTimeout response type */ export interface MsgChannelUpgradeTimeoutResponseSDKType { } /** MsgChannelUpgradeCancel defines the request type for the ChannelUpgradeCancel rpc */ export interface MsgChannelUpgradeCancel { portId: string; channelId: string; errorReceipt: ErrorReceipt; proofErrorReceipt: Uint8Array; proofHeight: Height; signer: string; } export interface MsgChannelUpgradeCancelProtoMsg { typeUrl: '/ibc.core.channel.v1.MsgChannelUpgradeCancel'; value: Uint8Array; } /** MsgChannelUpgradeCancel defines the request type for the ChannelUpgradeCancel rpc */ export interface MsgChannelUpgradeCancelSDKType { port_id: string; channel_id: string; error_receipt: ErrorReceiptSDKType; proof_error_receipt: Uint8Array; proof_height: HeightSDKType; signer: string; } /** MsgChannelUpgradeCancelResponse defines the MsgChannelUpgradeCancel response type */ export interface MsgChannelUpgradeCancelResponse { } export interface MsgChannelUpgradeCancelResponseProtoMsg { typeUrl: '/ibc.core.channel.v1.MsgChannelUpgradeCancelResponse'; value: Uint8Array; } /** MsgChannelUpgradeCancelResponse defines the MsgChannelUpgradeCancel response type */ export interface MsgChannelUpgradeCancelResponseSDKType { } /** MsgUpdateParams is the MsgUpdateParams request type. */ export interface MsgUpdateParams { /** authority is the address that controls the module (defaults to x/gov unless overwritten). */ authority: string; /** * params defines the channel parameters to update. * * NOTE: All parameters must be supplied. */ params: Params; } export interface MsgUpdateParamsProtoMsg { typeUrl: '/ibc.core.channel.v1.MsgUpdateParams'; value: Uint8Array; } /** MsgUpdateParams is the MsgUpdateParams request type. */ export interface MsgUpdateParamsSDKType { authority: string; params: ParamsSDKType; } /** MsgUpdateParamsResponse defines the MsgUpdateParams response type. */ export interface MsgUpdateParamsResponse { } export interface MsgUpdateParamsResponseProtoMsg { typeUrl: '/ibc.core.channel.v1.MsgUpdateParamsResponse'; value: Uint8Array; } /** MsgUpdateParamsResponse defines the MsgUpdateParams response type. */ export interface MsgUpdateParamsResponseSDKType { } /** MsgPruneAcknowledgements defines the request type for the PruneAcknowledgements rpc. */ export interface MsgPruneAcknowledgements { portId: string; channelId: string; limit: bigint; signer: string; } export interface MsgPruneAcknowledgementsProtoMsg { typeUrl: '/ibc.core.channel.v1.MsgPruneAcknowledgements'; value: Uint8Array; } /** MsgPruneAcknowledgements defines the request type for the PruneAcknowledgements rpc. */ export interface MsgPruneAcknowledgementsSDKType { port_id: string; channel_id: string; limit: bigint; signer: string; } /** MsgPruneAcknowledgementsResponse defines the response type for the PruneAcknowledgements rpc. */ export interface MsgPruneAcknowledgementsResponse { /** Number of sequences pruned (includes both packet acknowledgements and packet receipts where appropriate). */ totalPrunedSequences: bigint; /** Number of sequences left after pruning. */ totalRemainingSequences: bigint; } export interface MsgPruneAcknowledgementsResponseProtoMsg { typeUrl: '/ibc.core.channel.v1.MsgPruneAcknowledgementsResponse'; value: Uint8Array; } /** MsgPruneAcknowledgementsResponse defines the response type for the PruneAcknowledgements rpc. */ export interface MsgPruneAcknowledgementsResponseSDKType { total_pruned_sequences: bigint; total_remaining_sequences: bigint; } export declare const MsgChannelOpenInit: { typeUrl: "/ibc.core.channel.v1.MsgChannelOpenInit"; encode(message: MsgChannelOpenInit, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelOpenInit; fromJSON(object: any): MsgChannelOpenInit; toJSON(message: MsgChannelOpenInit): JsonSafe; fromPartial(object: Partial): MsgChannelOpenInit; fromProtoMsg(message: MsgChannelOpenInitProtoMsg): MsgChannelOpenInit; toProto(message: MsgChannelOpenInit): Uint8Array; toProtoMsg(message: MsgChannelOpenInit): MsgChannelOpenInitProtoMsg; }; export declare const MsgChannelOpenInitResponse: { typeUrl: "/ibc.core.channel.v1.MsgChannelOpenInitResponse"; encode(message: MsgChannelOpenInitResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelOpenInitResponse; fromJSON(object: any): MsgChannelOpenInitResponse; toJSON(message: MsgChannelOpenInitResponse): JsonSafe; fromPartial(object: Partial): MsgChannelOpenInitResponse; fromProtoMsg(message: MsgChannelOpenInitResponseProtoMsg): MsgChannelOpenInitResponse; toProto(message: MsgChannelOpenInitResponse): Uint8Array; toProtoMsg(message: MsgChannelOpenInitResponse): MsgChannelOpenInitResponseProtoMsg; }; export declare const MsgChannelOpenTry: { typeUrl: "/ibc.core.channel.v1.MsgChannelOpenTry"; encode(message: MsgChannelOpenTry, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelOpenTry; fromJSON(object: any): MsgChannelOpenTry; toJSON(message: MsgChannelOpenTry): JsonSafe; fromPartial(object: Partial): MsgChannelOpenTry; fromProtoMsg(message: MsgChannelOpenTryProtoMsg): MsgChannelOpenTry; toProto(message: MsgChannelOpenTry): Uint8Array; toProtoMsg(message: MsgChannelOpenTry): MsgChannelOpenTryProtoMsg; }; export declare const MsgChannelOpenTryResponse: { typeUrl: "/ibc.core.channel.v1.MsgChannelOpenTryResponse"; encode(message: MsgChannelOpenTryResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelOpenTryResponse; fromJSON(object: any): MsgChannelOpenTryResponse; toJSON(message: MsgChannelOpenTryResponse): JsonSafe; fromPartial(object: Partial): MsgChannelOpenTryResponse; fromProtoMsg(message: MsgChannelOpenTryResponseProtoMsg): MsgChannelOpenTryResponse; toProto(message: MsgChannelOpenTryResponse): Uint8Array; toProtoMsg(message: MsgChannelOpenTryResponse): MsgChannelOpenTryResponseProtoMsg; }; export declare const MsgChannelOpenAck: { typeUrl: "/ibc.core.channel.v1.MsgChannelOpenAck"; encode(message: MsgChannelOpenAck, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelOpenAck; fromJSON(object: any): MsgChannelOpenAck; toJSON(message: MsgChannelOpenAck): JsonSafe; fromPartial(object: Partial): MsgChannelOpenAck; fromProtoMsg(message: MsgChannelOpenAckProtoMsg): MsgChannelOpenAck; toProto(message: MsgChannelOpenAck): Uint8Array; toProtoMsg(message: MsgChannelOpenAck): MsgChannelOpenAckProtoMsg; }; export declare const MsgChannelOpenAckResponse: { typeUrl: "/ibc.core.channel.v1.MsgChannelOpenAckResponse"; encode(_: MsgChannelOpenAckResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelOpenAckResponse; fromJSON(_: any): MsgChannelOpenAckResponse; toJSON(_: MsgChannelOpenAckResponse): JsonSafe; fromPartial(_: Partial): MsgChannelOpenAckResponse; fromProtoMsg(message: MsgChannelOpenAckResponseProtoMsg): MsgChannelOpenAckResponse; toProto(message: MsgChannelOpenAckResponse): Uint8Array; toProtoMsg(message: MsgChannelOpenAckResponse): MsgChannelOpenAckResponseProtoMsg; }; export declare const MsgChannelOpenConfirm: { typeUrl: "/ibc.core.channel.v1.MsgChannelOpenConfirm"; encode(message: MsgChannelOpenConfirm, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelOpenConfirm; fromJSON(object: any): MsgChannelOpenConfirm; toJSON(message: MsgChannelOpenConfirm): JsonSafe; fromPartial(object: Partial): MsgChannelOpenConfirm; fromProtoMsg(message: MsgChannelOpenConfirmProtoMsg): MsgChannelOpenConfirm; toProto(message: MsgChannelOpenConfirm): Uint8Array; toProtoMsg(message: MsgChannelOpenConfirm): MsgChannelOpenConfirmProtoMsg; }; export declare const MsgChannelOpenConfirmResponse: { typeUrl: "/ibc.core.channel.v1.MsgChannelOpenConfirmResponse"; encode(_: MsgChannelOpenConfirmResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelOpenConfirmResponse; fromJSON(_: any): MsgChannelOpenConfirmResponse; toJSON(_: MsgChannelOpenConfirmResponse): JsonSafe; fromPartial(_: Partial): MsgChannelOpenConfirmResponse; fromProtoMsg(message: MsgChannelOpenConfirmResponseProtoMsg): MsgChannelOpenConfirmResponse; toProto(message: MsgChannelOpenConfirmResponse): Uint8Array; toProtoMsg(message: MsgChannelOpenConfirmResponse): MsgChannelOpenConfirmResponseProtoMsg; }; export declare const MsgChannelCloseInit: { typeUrl: "/ibc.core.channel.v1.MsgChannelCloseInit"; encode(message: MsgChannelCloseInit, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelCloseInit; fromJSON(object: any): MsgChannelCloseInit; toJSON(message: MsgChannelCloseInit): JsonSafe; fromPartial(object: Partial): MsgChannelCloseInit; fromProtoMsg(message: MsgChannelCloseInitProtoMsg): MsgChannelCloseInit; toProto(message: MsgChannelCloseInit): Uint8Array; toProtoMsg(message: MsgChannelCloseInit): MsgChannelCloseInitProtoMsg; }; export declare const MsgChannelCloseInitResponse: { typeUrl: "/ibc.core.channel.v1.MsgChannelCloseInitResponse"; encode(_: MsgChannelCloseInitResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelCloseInitResponse; fromJSON(_: any): MsgChannelCloseInitResponse; toJSON(_: MsgChannelCloseInitResponse): JsonSafe; fromPartial(_: Partial): MsgChannelCloseInitResponse; fromProtoMsg(message: MsgChannelCloseInitResponseProtoMsg): MsgChannelCloseInitResponse; toProto(message: MsgChannelCloseInitResponse): Uint8Array; toProtoMsg(message: MsgChannelCloseInitResponse): MsgChannelCloseInitResponseProtoMsg; }; export declare const MsgChannelCloseConfirm: { typeUrl: "/ibc.core.channel.v1.MsgChannelCloseConfirm"; encode(message: MsgChannelCloseConfirm, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelCloseConfirm; fromJSON(object: any): MsgChannelCloseConfirm; toJSON(message: MsgChannelCloseConfirm): JsonSafe; fromPartial(object: Partial): MsgChannelCloseConfirm; fromProtoMsg(message: MsgChannelCloseConfirmProtoMsg): MsgChannelCloseConfirm; toProto(message: MsgChannelCloseConfirm): Uint8Array; toProtoMsg(message: MsgChannelCloseConfirm): MsgChannelCloseConfirmProtoMsg; }; export declare const MsgChannelCloseConfirmResponse: { typeUrl: "/ibc.core.channel.v1.MsgChannelCloseConfirmResponse"; encode(_: MsgChannelCloseConfirmResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelCloseConfirmResponse; fromJSON(_: any): MsgChannelCloseConfirmResponse; toJSON(_: MsgChannelCloseConfirmResponse): JsonSafe; fromPartial(_: Partial): MsgChannelCloseConfirmResponse; fromProtoMsg(message: MsgChannelCloseConfirmResponseProtoMsg): MsgChannelCloseConfirmResponse; toProto(message: MsgChannelCloseConfirmResponse): Uint8Array; toProtoMsg(message: MsgChannelCloseConfirmResponse): MsgChannelCloseConfirmResponseProtoMsg; }; export declare const MsgRecvPacket: { typeUrl: "/ibc.core.channel.v1.MsgRecvPacket"; encode(message: MsgRecvPacket, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgRecvPacket; fromJSON(object: any): MsgRecvPacket; toJSON(message: MsgRecvPacket): JsonSafe; fromPartial(object: Partial): MsgRecvPacket; fromProtoMsg(message: MsgRecvPacketProtoMsg): MsgRecvPacket; toProto(message: MsgRecvPacket): Uint8Array; toProtoMsg(message: MsgRecvPacket): MsgRecvPacketProtoMsg; }; export declare const MsgRecvPacketResponse: { typeUrl: "/ibc.core.channel.v1.MsgRecvPacketResponse"; encode(message: MsgRecvPacketResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgRecvPacketResponse; fromJSON(object: any): MsgRecvPacketResponse; toJSON(message: MsgRecvPacketResponse): JsonSafe; fromPartial(object: Partial): MsgRecvPacketResponse; fromProtoMsg(message: MsgRecvPacketResponseProtoMsg): MsgRecvPacketResponse; toProto(message: MsgRecvPacketResponse): Uint8Array; toProtoMsg(message: MsgRecvPacketResponse): MsgRecvPacketResponseProtoMsg; }; export declare const MsgTimeout: { typeUrl: "/ibc.core.channel.v1.MsgTimeout"; encode(message: MsgTimeout, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgTimeout; fromJSON(object: any): MsgTimeout; toJSON(message: MsgTimeout): JsonSafe; fromPartial(object: Partial): MsgTimeout; fromProtoMsg(message: MsgTimeoutProtoMsg): MsgTimeout; toProto(message: MsgTimeout): Uint8Array; toProtoMsg(message: MsgTimeout): MsgTimeoutProtoMsg; }; export declare const MsgTimeoutResponse: { typeUrl: "/ibc.core.channel.v1.MsgTimeoutResponse"; encode(message: MsgTimeoutResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgTimeoutResponse; fromJSON(object: any): MsgTimeoutResponse; toJSON(message: MsgTimeoutResponse): JsonSafe; fromPartial(object: Partial): MsgTimeoutResponse; fromProtoMsg(message: MsgTimeoutResponseProtoMsg): MsgTimeoutResponse; toProto(message: MsgTimeoutResponse): Uint8Array; toProtoMsg(message: MsgTimeoutResponse): MsgTimeoutResponseProtoMsg; }; export declare const MsgTimeoutOnClose: { typeUrl: "/ibc.core.channel.v1.MsgTimeoutOnClose"; encode(message: MsgTimeoutOnClose, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgTimeoutOnClose; fromJSON(object: any): MsgTimeoutOnClose; toJSON(message: MsgTimeoutOnClose): JsonSafe; fromPartial(object: Partial): MsgTimeoutOnClose; fromProtoMsg(message: MsgTimeoutOnCloseProtoMsg): MsgTimeoutOnClose; toProto(message: MsgTimeoutOnClose): Uint8Array; toProtoMsg(message: MsgTimeoutOnClose): MsgTimeoutOnCloseProtoMsg; }; export declare const MsgTimeoutOnCloseResponse: { typeUrl: "/ibc.core.channel.v1.MsgTimeoutOnCloseResponse"; encode(message: MsgTimeoutOnCloseResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgTimeoutOnCloseResponse; fromJSON(object: any): MsgTimeoutOnCloseResponse; toJSON(message: MsgTimeoutOnCloseResponse): JsonSafe; fromPartial(object: Partial): MsgTimeoutOnCloseResponse; fromProtoMsg(message: MsgTimeoutOnCloseResponseProtoMsg): MsgTimeoutOnCloseResponse; toProto(message: MsgTimeoutOnCloseResponse): Uint8Array; toProtoMsg(message: MsgTimeoutOnCloseResponse): MsgTimeoutOnCloseResponseProtoMsg; }; export declare const MsgAcknowledgement: { typeUrl: "/ibc.core.channel.v1.MsgAcknowledgement"; encode(message: MsgAcknowledgement, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgAcknowledgement; fromJSON(object: any): MsgAcknowledgement; toJSON(message: MsgAcknowledgement): JsonSafe; fromPartial(object: Partial): MsgAcknowledgement; fromProtoMsg(message: MsgAcknowledgementProtoMsg): MsgAcknowledgement; toProto(message: MsgAcknowledgement): Uint8Array; toProtoMsg(message: MsgAcknowledgement): MsgAcknowledgementProtoMsg; }; export declare const MsgAcknowledgementResponse: { typeUrl: "/ibc.core.channel.v1.MsgAcknowledgementResponse"; encode(message: MsgAcknowledgementResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgAcknowledgementResponse; fromJSON(object: any): MsgAcknowledgementResponse; toJSON(message: MsgAcknowledgementResponse): JsonSafe; fromPartial(object: Partial): MsgAcknowledgementResponse; fromProtoMsg(message: MsgAcknowledgementResponseProtoMsg): MsgAcknowledgementResponse; toProto(message: MsgAcknowledgementResponse): Uint8Array; toProtoMsg(message: MsgAcknowledgementResponse): MsgAcknowledgementResponseProtoMsg; }; export declare const MsgChannelUpgradeInit: { typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeInit"; encode(message: MsgChannelUpgradeInit, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelUpgradeInit; fromJSON(object: any): MsgChannelUpgradeInit; toJSON(message: MsgChannelUpgradeInit): JsonSafe; fromPartial(object: Partial): MsgChannelUpgradeInit; fromProtoMsg(message: MsgChannelUpgradeInitProtoMsg): MsgChannelUpgradeInit; toProto(message: MsgChannelUpgradeInit): Uint8Array; toProtoMsg(message: MsgChannelUpgradeInit): MsgChannelUpgradeInitProtoMsg; }; export declare const MsgChannelUpgradeInitResponse: { typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeInitResponse"; encode(message: MsgChannelUpgradeInitResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelUpgradeInitResponse; fromJSON(object: any): MsgChannelUpgradeInitResponse; toJSON(message: MsgChannelUpgradeInitResponse): JsonSafe; fromPartial(object: Partial): MsgChannelUpgradeInitResponse; fromProtoMsg(message: MsgChannelUpgradeInitResponseProtoMsg): MsgChannelUpgradeInitResponse; toProto(message: MsgChannelUpgradeInitResponse): Uint8Array; toProtoMsg(message: MsgChannelUpgradeInitResponse): MsgChannelUpgradeInitResponseProtoMsg; }; export declare const MsgChannelUpgradeTry: { typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeTry"; encode(message: MsgChannelUpgradeTry, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelUpgradeTry; fromJSON(object: any): MsgChannelUpgradeTry; toJSON(message: MsgChannelUpgradeTry): JsonSafe; fromPartial(object: Partial): MsgChannelUpgradeTry; fromProtoMsg(message: MsgChannelUpgradeTryProtoMsg): MsgChannelUpgradeTry; toProto(message: MsgChannelUpgradeTry): Uint8Array; toProtoMsg(message: MsgChannelUpgradeTry): MsgChannelUpgradeTryProtoMsg; }; export declare const MsgChannelUpgradeTryResponse: { typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeTryResponse"; encode(message: MsgChannelUpgradeTryResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelUpgradeTryResponse; fromJSON(object: any): MsgChannelUpgradeTryResponse; toJSON(message: MsgChannelUpgradeTryResponse): JsonSafe; fromPartial(object: Partial): MsgChannelUpgradeTryResponse; fromProtoMsg(message: MsgChannelUpgradeTryResponseProtoMsg): MsgChannelUpgradeTryResponse; toProto(message: MsgChannelUpgradeTryResponse): Uint8Array; toProtoMsg(message: MsgChannelUpgradeTryResponse): MsgChannelUpgradeTryResponseProtoMsg; }; export declare const MsgChannelUpgradeAck: { typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeAck"; encode(message: MsgChannelUpgradeAck, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelUpgradeAck; fromJSON(object: any): MsgChannelUpgradeAck; toJSON(message: MsgChannelUpgradeAck): JsonSafe; fromPartial(object: Partial): MsgChannelUpgradeAck; fromProtoMsg(message: MsgChannelUpgradeAckProtoMsg): MsgChannelUpgradeAck; toProto(message: MsgChannelUpgradeAck): Uint8Array; toProtoMsg(message: MsgChannelUpgradeAck): MsgChannelUpgradeAckProtoMsg; }; export declare const MsgChannelUpgradeAckResponse: { typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeAckResponse"; encode(message: MsgChannelUpgradeAckResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelUpgradeAckResponse; fromJSON(object: any): MsgChannelUpgradeAckResponse; toJSON(message: MsgChannelUpgradeAckResponse): JsonSafe; fromPartial(object: Partial): MsgChannelUpgradeAckResponse; fromProtoMsg(message: MsgChannelUpgradeAckResponseProtoMsg): MsgChannelUpgradeAckResponse; toProto(message: MsgChannelUpgradeAckResponse): Uint8Array; toProtoMsg(message: MsgChannelUpgradeAckResponse): MsgChannelUpgradeAckResponseProtoMsg; }; export declare const MsgChannelUpgradeConfirm: { typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeConfirm"; encode(message: MsgChannelUpgradeConfirm, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelUpgradeConfirm; fromJSON(object: any): MsgChannelUpgradeConfirm; toJSON(message: MsgChannelUpgradeConfirm): JsonSafe; fromPartial(object: Partial): MsgChannelUpgradeConfirm; fromProtoMsg(message: MsgChannelUpgradeConfirmProtoMsg): MsgChannelUpgradeConfirm; toProto(message: MsgChannelUpgradeConfirm): Uint8Array; toProtoMsg(message: MsgChannelUpgradeConfirm): MsgChannelUpgradeConfirmProtoMsg; }; export declare const MsgChannelUpgradeConfirmResponse: { typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeConfirmResponse"; encode(message: MsgChannelUpgradeConfirmResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelUpgradeConfirmResponse; fromJSON(object: any): MsgChannelUpgradeConfirmResponse; toJSON(message: MsgChannelUpgradeConfirmResponse): JsonSafe; fromPartial(object: Partial): MsgChannelUpgradeConfirmResponse; fromProtoMsg(message: MsgChannelUpgradeConfirmResponseProtoMsg): MsgChannelUpgradeConfirmResponse; toProto(message: MsgChannelUpgradeConfirmResponse): Uint8Array; toProtoMsg(message: MsgChannelUpgradeConfirmResponse): MsgChannelUpgradeConfirmResponseProtoMsg; }; export declare const MsgChannelUpgradeOpen: { typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeOpen"; encode(message: MsgChannelUpgradeOpen, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelUpgradeOpen; fromJSON(object: any): MsgChannelUpgradeOpen; toJSON(message: MsgChannelUpgradeOpen): JsonSafe; fromPartial(object: Partial): MsgChannelUpgradeOpen; fromProtoMsg(message: MsgChannelUpgradeOpenProtoMsg): MsgChannelUpgradeOpen; toProto(message: MsgChannelUpgradeOpen): Uint8Array; toProtoMsg(message: MsgChannelUpgradeOpen): MsgChannelUpgradeOpenProtoMsg; }; export declare const MsgChannelUpgradeOpenResponse: { typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeOpenResponse"; encode(_: MsgChannelUpgradeOpenResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelUpgradeOpenResponse; fromJSON(_: any): MsgChannelUpgradeOpenResponse; toJSON(_: MsgChannelUpgradeOpenResponse): JsonSafe; fromPartial(_: Partial): MsgChannelUpgradeOpenResponse; fromProtoMsg(message: MsgChannelUpgradeOpenResponseProtoMsg): MsgChannelUpgradeOpenResponse; toProto(message: MsgChannelUpgradeOpenResponse): Uint8Array; toProtoMsg(message: MsgChannelUpgradeOpenResponse): MsgChannelUpgradeOpenResponseProtoMsg; }; export declare const MsgChannelUpgradeTimeout: { typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeTimeout"; encode(message: MsgChannelUpgradeTimeout, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelUpgradeTimeout; fromJSON(object: any): MsgChannelUpgradeTimeout; toJSON(message: MsgChannelUpgradeTimeout): JsonSafe; fromPartial(object: Partial): MsgChannelUpgradeTimeout; fromProtoMsg(message: MsgChannelUpgradeTimeoutProtoMsg): MsgChannelUpgradeTimeout; toProto(message: MsgChannelUpgradeTimeout): Uint8Array; toProtoMsg(message: MsgChannelUpgradeTimeout): MsgChannelUpgradeTimeoutProtoMsg; }; export declare const MsgChannelUpgradeTimeoutResponse: { typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeTimeoutResponse"; encode(_: MsgChannelUpgradeTimeoutResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelUpgradeTimeoutResponse; fromJSON(_: any): MsgChannelUpgradeTimeoutResponse; toJSON(_: MsgChannelUpgradeTimeoutResponse): JsonSafe; fromPartial(_: Partial): MsgChannelUpgradeTimeoutResponse; fromProtoMsg(message: MsgChannelUpgradeTimeoutResponseProtoMsg): MsgChannelUpgradeTimeoutResponse; toProto(message: MsgChannelUpgradeTimeoutResponse): Uint8Array; toProtoMsg(message: MsgChannelUpgradeTimeoutResponse): MsgChannelUpgradeTimeoutResponseProtoMsg; }; export declare const MsgChannelUpgradeCancel: { typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeCancel"; encode(message: MsgChannelUpgradeCancel, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelUpgradeCancel; fromJSON(object: any): MsgChannelUpgradeCancel; toJSON(message: MsgChannelUpgradeCancel): JsonSafe; fromPartial(object: Partial): MsgChannelUpgradeCancel; fromProtoMsg(message: MsgChannelUpgradeCancelProtoMsg): MsgChannelUpgradeCancel; toProto(message: MsgChannelUpgradeCancel): Uint8Array; toProtoMsg(message: MsgChannelUpgradeCancel): MsgChannelUpgradeCancelProtoMsg; }; export declare const MsgChannelUpgradeCancelResponse: { typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeCancelResponse"; encode(_: MsgChannelUpgradeCancelResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelUpgradeCancelResponse; fromJSON(_: any): MsgChannelUpgradeCancelResponse; toJSON(_: MsgChannelUpgradeCancelResponse): JsonSafe; fromPartial(_: Partial): MsgChannelUpgradeCancelResponse; fromProtoMsg(message: MsgChannelUpgradeCancelResponseProtoMsg): MsgChannelUpgradeCancelResponse; toProto(message: MsgChannelUpgradeCancelResponse): Uint8Array; toProtoMsg(message: MsgChannelUpgradeCancelResponse): MsgChannelUpgradeCancelResponseProtoMsg; }; export declare const MsgUpdateParams: { typeUrl: "/ibc.core.channel.v1.MsgUpdateParams"; encode(message: MsgUpdateParams, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateParams; fromJSON(object: any): MsgUpdateParams; toJSON(message: MsgUpdateParams): JsonSafe; fromPartial(object: Partial): MsgUpdateParams; fromProtoMsg(message: MsgUpdateParamsProtoMsg): MsgUpdateParams; toProto(message: MsgUpdateParams): Uint8Array; toProtoMsg(message: MsgUpdateParams): MsgUpdateParamsProtoMsg; }; export declare const MsgUpdateParamsResponse: { typeUrl: "/ibc.core.channel.v1.MsgUpdateParamsResponse"; encode(_: MsgUpdateParamsResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateParamsResponse; fromJSON(_: any): MsgUpdateParamsResponse; toJSON(_: MsgUpdateParamsResponse): JsonSafe; fromPartial(_: Partial): MsgUpdateParamsResponse; fromProtoMsg(message: MsgUpdateParamsResponseProtoMsg): MsgUpdateParamsResponse; toProto(message: MsgUpdateParamsResponse): Uint8Array; toProtoMsg(message: MsgUpdateParamsResponse): MsgUpdateParamsResponseProtoMsg; }; export declare const MsgPruneAcknowledgements: { typeUrl: "/ibc.core.channel.v1.MsgPruneAcknowledgements"; encode(message: MsgPruneAcknowledgements, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgPruneAcknowledgements; fromJSON(object: any): MsgPruneAcknowledgements; toJSON(message: MsgPruneAcknowledgements): JsonSafe; fromPartial(object: Partial): MsgPruneAcknowledgements; fromProtoMsg(message: MsgPruneAcknowledgementsProtoMsg): MsgPruneAcknowledgements; toProto(message: MsgPruneAcknowledgements): Uint8Array; toProtoMsg(message: MsgPruneAcknowledgements): MsgPruneAcknowledgementsProtoMsg; }; export declare const MsgPruneAcknowledgementsResponse: { typeUrl: "/ibc.core.channel.v1.MsgPruneAcknowledgementsResponse"; encode(message: MsgPruneAcknowledgementsResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgPruneAcknowledgementsResponse; fromJSON(object: any): MsgPruneAcknowledgementsResponse; toJSON(message: MsgPruneAcknowledgementsResponse): JsonSafe; fromPartial(object: Partial): MsgPruneAcknowledgementsResponse; fromProtoMsg(message: MsgPruneAcknowledgementsResponseProtoMsg): MsgPruneAcknowledgementsResponse; toProto(message: MsgPruneAcknowledgementsResponse): Uint8Array; toProtoMsg(message: MsgPruneAcknowledgementsResponse): MsgPruneAcknowledgementsResponseProtoMsg; }; //# sourceMappingURL=tx.d.ts.map