/** * Channel defines pipeline for exactly-once packet delivery between specific modules on separate blockchains, which has at least one end capable of sending packets and one end capable of receiving packets. */ export interface Channelv1Channel { /** * State defines if a channel is in one of the following states: * CLOSED, INIT, TRYOPEN, OPEN or UNINITIALIZED. * * - STATE_UNINITIALIZED_UNSPECIFIED: Default State * - STATE_INIT: A channel has just started the opening handshake. * - STATE_TRYOPEN: A channel has acknowledged the handshake step on the counterparty chain. * - STATE_OPEN: A channel has completed the handshake. Open channels are * ready to send and receive packets. * - STATE_CLOSED: A channel has been closed and can no longer be used to send or receive * packets. */ state?: V1State; /** * - ORDER_NONE_UNSPECIFIED: zero-value for channel ordering * - ORDER_UNORDERED: packets can be delivered in any order, which may differ from the order in * which they were sent. * - ORDER_ORDERED: packets are delivered exactly in the order which they were sent */ ordering?: V1Order; counterparty?: V1Counterparty; connection_hops?: string[]; version?: string; } /** * `Any` contains an arbitrary serialized protocol buffer message along with a URL that describes the type of the serialized message. Protobuf library provides support to pack/unpack Any values in the form of utility functions or additional generated methods of the Any type. Example 1: Pack and unpack a message in C++. Foo foo = ...; Any any; any.PackFrom(foo); ... if (any.UnpackTo(&foo)) { ... } Example 2: Pack and unpack a message in Java. Foo foo = ...; Any any = Any.pack(foo); ... if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() any.Pack(foo) ... if any.Is(Foo.DESCRIPTOR): any.Unpack(foo) ... Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) if err != nil { ... } ... foo := &pb.Foo{} if err := any.UnmarshalTo(foo); err != nil { ... } The pack methods provided by protobuf library will by default use 'type.googleapis.com/full.type.name' as the type URL and the unpack methods only use the fully qualified type name after the last '/' in the type URL, for example "foo.bar.com/x/y.z" will yield type name "y.z". JSON ==== The JSON representation of an `Any` value uses the regular representation of the deserialized, embedded message, with an additional field `@type` which contains the type URL. Example: package google.profile; message Person { string first_name = 1; string last_name = 2; } { "@type": "type.googleapis.com/google.profile.Person", "firstName": , "lastName": } If the embedded message type is well-known and has a custom JSON representation, that representation will be embedded adding a field `value` which holds the custom JSON in addition to the `@type` field. Example (for message [google.protobuf.Duration][]): { "@type": "type.googleapis.com/google.protobuf.Duration", "value": "1.212s" } */ export interface ProtobufAny { /** * A URL/resource name that uniquely identifies the type of the serialized * protocol buffer message. This string must contain at least * one "/" character. The last segment of the URL's path must represent * the fully qualified name of the type (as in * `path/google.protobuf.Duration`). The name should be in a canonical form * (e.g., leading "." is not accepted). * * In practice, teams usually precompile into the binary all types that they * expect it to use in the context of Any. However, for URLs which use the * scheme `http`, `https`, or no scheme, one can optionally set up a type * server that maps type URLs to message definitions as follows: * * * If no scheme is provided, `https` is assumed. * * An HTTP GET on the URL must yield a [google.protobuf.Type][] * value in binary format, or produce an error. * * Applications are allowed to cache lookup results based on the * URL, or have them precompiled into a binary to avoid any * lookup. Therefore, binary compatibility needs to be preserved * on changes to types. (Use versioned type names to manage * breaking changes.) * * Note: this functionality is not currently available in the official * protobuf release, and it is not used for type URLs beginning with * type.googleapis.com. * * Schemes other than `http`, `https` (or the empty scheme) might be * used with implementation specific semantics. */ "@type"?: string; } export interface RpcStatus { /** @format int32 */ code?: number; message?: string; details?: ProtobufAny[]; } export interface V1Counterparty { /** port on the counterparty chain which owns the other end of the channel. */ port_id?: string; channel_id?: string; } /** * Normally the RevisionHeight is incremented at each height while keeping RevisionNumber the same. However some consensus algorithms may choose to reset the height in certain conditions e.g. hard forks, state-machine breaking changes In these cases, the RevisionNumber is incremented so that height continues to be monitonically increasing even as the RevisionHeight gets reset */ export interface V1Height { /** @format uint64 */ revision_number?: string; /** @format uint64 */ revision_height?: string; } /** * IdentifiedChannel defines a channel with additional port and channel identifier fields. */ export interface V1IdentifiedChannel { /** * State defines if a channel is in one of the following states: * CLOSED, INIT, TRYOPEN, OPEN or UNINITIALIZED. * * - STATE_UNINITIALIZED_UNSPECIFIED: Default State * - STATE_INIT: A channel has just started the opening handshake. * - STATE_TRYOPEN: A channel has acknowledged the handshake step on the counterparty chain. * - STATE_OPEN: A channel has completed the handshake. Open channels are * ready to send and receive packets. * - STATE_CLOSED: A channel has been closed and can no longer be used to send or receive * packets. */ state?: V1State; /** * - ORDER_NONE_UNSPECIFIED: zero-value for channel ordering * - ORDER_UNORDERED: packets can be delivered in any order, which may differ from the order in * which they were sent. * - ORDER_ORDERED: packets are delivered exactly in the order which they were sent */ ordering?: V1Order; counterparty?: V1Counterparty; connection_hops?: string[]; version?: string; port_id?: string; channel_id?: string; } /** * IdentifiedClientState defines a client state with an additional client identifier field. */ export interface V1IdentifiedClientState { client_id?: string; /** * `Any` contains an arbitrary serialized protocol buffer message along with a * URL that describes the type of the serialized message. * * Protobuf library provides support to pack/unpack Any values in the form * of utility functions or additional generated methods of the Any type. * * Example 1: Pack and unpack a message in C++. * * Foo foo = ...; * Any any; * any.PackFrom(foo); * ... * if (any.UnpackTo(&foo)) { * ... * } * * Example 2: Pack and unpack a message in Java. * * Foo foo = ...; * Any any = Any.pack(foo); * ... * if (any.is(Foo.class)) { * foo = any.unpack(Foo.class); * } * * Example 3: Pack and unpack a message in Python. * * foo = Foo(...) * any = Any() * any.Pack(foo) * ... * if any.Is(Foo.DESCRIPTOR): * any.Unpack(foo) * ... * * Example 4: Pack and unpack a message in Go * * foo := &pb.Foo{...} * any, err := anypb.New(foo) * if err != nil { * ... * } * ... * foo := &pb.Foo{} * if err := any.UnmarshalTo(foo); err != nil { * ... * } * * The pack methods provided by protobuf library will by default use * 'type.googleapis.com/full.type.name' as the type URL and the unpack * methods only use the fully qualified type name after the last '/' * in the type URL, for example "foo.bar.com/x/y.z" will yield type * name "y.z". * * * JSON * ==== * The JSON representation of an `Any` value uses the regular * representation of the deserialized, embedded message, with an * additional field `@type` which contains the type URL. Example: * * package google.profile; * message Person { * string first_name = 1; * string last_name = 2; * } * * { * "@type": "type.googleapis.com/google.profile.Person", * "firstName": , * "lastName": * } * * If the embedded message type is well-known and has a custom JSON * representation, that representation will be embedded adding a field * `value` which holds the custom JSON in addition to the `@type` * field. Example (for message [google.protobuf.Duration][]): * * { * "@type": "type.googleapis.com/google.protobuf.Duration", * "value": "1.212s" * } */ client_state?: ProtobufAny; } /** * MsgAcknowledgementResponse defines the Msg/Acknowledgement response type. */ export interface V1MsgAcknowledgementResponse { /** * - RESPONSE_RESULT_TYPE_UNSPECIFIED: Default zero value enumeration * - 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_SUCCESS: The message was executed successfully */ result?: V1ResponseResultType; } /** * MsgChannelCloseConfirmResponse defines the Msg/ChannelCloseConfirm response type. */ export type V1MsgChannelCloseConfirmResponse = object; /** * MsgChannelCloseInitResponse defines the Msg/ChannelCloseInit response type. */ export type V1MsgChannelCloseInitResponse = object; /** * MsgChannelOpenAckResponse defines the Msg/ChannelOpenAck response type. */ export type V1MsgChannelOpenAckResponse = object; /** * MsgChannelOpenConfirmResponse defines the Msg/ChannelOpenConfirm response type. */ export type V1MsgChannelOpenConfirmResponse = object; /** * MsgChannelOpenInitResponse defines the Msg/ChannelOpenInit response type. */ export interface V1MsgChannelOpenInitResponse { channel_id?: string; version?: string; } /** * MsgChannelOpenTryResponse defines the Msg/ChannelOpenTry response type. */ export interface V1MsgChannelOpenTryResponse { version?: string; } /** * MsgRecvPacketResponse defines the Msg/RecvPacket response type. */ export interface V1MsgRecvPacketResponse { /** * - RESPONSE_RESULT_TYPE_UNSPECIFIED: Default zero value enumeration * - 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_SUCCESS: The message was executed successfully */ result?: V1ResponseResultType; } /** * MsgTimeoutOnCloseResponse defines the Msg/TimeoutOnClose response type. */ export interface V1MsgTimeoutOnCloseResponse { /** * - RESPONSE_RESULT_TYPE_UNSPECIFIED: Default zero value enumeration * - 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_SUCCESS: The message was executed successfully */ result?: V1ResponseResultType; } /** * MsgTimeoutResponse defines the Msg/Timeout response type. */ export interface V1MsgTimeoutResponse { /** * - RESPONSE_RESULT_TYPE_UNSPECIFIED: Default zero value enumeration * - 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_SUCCESS: The message was executed successfully */ result?: V1ResponseResultType; } /** * - ORDER_NONE_UNSPECIFIED: zero-value for channel ordering - ORDER_UNORDERED: packets can be delivered in any order, which may differ from the order in which they were sent. - ORDER_ORDERED: packets are delivered exactly in the order which they were sent */ export declare enum V1Order { ORDER_NONE_UNSPECIFIED = "ORDER_NONE_UNSPECIFIED", ORDER_UNORDERED = "ORDER_UNORDERED", ORDER_ORDERED = "ORDER_ORDERED" } export interface V1Packet { /** * number corresponds to the order of sends and receives, where a Packet * with an earlier sequence number must be sent and received before a Packet * with a later sequence number. * @format uint64 */ sequence?: string; /** identifies the port on the sending chain. */ source_port?: string; /** identifies the channel end on the sending chain. */ source_channel?: string; /** identifies the port on the receiving chain. */ destination_port?: string; /** identifies the channel end on the receiving chain. */ destination_channel?: string; /** @format byte */ data?: string; /** * Normally the RevisionHeight is incremented at each height while keeping * RevisionNumber the same. However some consensus algorithms may choose to * reset the height in certain conditions e.g. hard forks, state-machine * breaking changes In these cases, the RevisionNumber is incremented so that * height continues to be monitonically increasing even as the RevisionHeight * gets reset */ timeout_height?: V1Height; /** @format uint64 */ timeout_timestamp?: string; } /** * PacketState defines the generic type necessary to retrieve and store packet commitments, acknowledgements, and receipts. Caller is responsible for knowing the context necessary to interpret this state as a commitment, acknowledgement, or a receipt. */ export interface V1PacketState { /** channel port identifier. */ port_id?: string; /** channel unique identifier. */ channel_id?: string; /** * packet sequence. * @format uint64 */ sequence?: string; /** * embedded data that represents packet state. * @format byte */ data?: string; } export interface V1QueryChannelClientStateResponse { /** * IdentifiedClientState defines a client state with an additional client * identifier field. */ identified_client_state?: V1IdentifiedClientState; /** @format byte */ proof?: string; /** * Normally the RevisionHeight is incremented at each height while keeping * RevisionNumber the same. However some consensus algorithms may choose to * reset the height in certain conditions e.g. hard forks, state-machine * breaking changes In these cases, the RevisionNumber is incremented so that * height continues to be monitonically increasing even as the RevisionHeight * gets reset */ proof_height?: V1Height; } export interface V1QueryChannelConsensusStateResponse { /** * `Any` contains an arbitrary serialized protocol buffer message along with a * URL that describes the type of the serialized message. * * Protobuf library provides support to pack/unpack Any values in the form * of utility functions or additional generated methods of the Any type. * * Example 1: Pack and unpack a message in C++. * * Foo foo = ...; * Any any; * any.PackFrom(foo); * ... * if (any.UnpackTo(&foo)) { * ... * } * * Example 2: Pack and unpack a message in Java. * * Foo foo = ...; * Any any = Any.pack(foo); * ... * if (any.is(Foo.class)) { * foo = any.unpack(Foo.class); * } * * Example 3: Pack and unpack a message in Python. * * foo = Foo(...) * any = Any() * any.Pack(foo) * ... * if any.Is(Foo.DESCRIPTOR): * any.Unpack(foo) * ... * * Example 4: Pack and unpack a message in Go * * foo := &pb.Foo{...} * any, err := anypb.New(foo) * if err != nil { * ... * } * ... * foo := &pb.Foo{} * if err := any.UnmarshalTo(foo); err != nil { * ... * } * * The pack methods provided by protobuf library will by default use * 'type.googleapis.com/full.type.name' as the type URL and the unpack * methods only use the fully qualified type name after the last '/' * in the type URL, for example "foo.bar.com/x/y.z" will yield type * name "y.z". * * * JSON * ==== * The JSON representation of an `Any` value uses the regular * representation of the deserialized, embedded message, with an * additional field `@type` which contains the type URL. Example: * * package google.profile; * message Person { * string first_name = 1; * string last_name = 2; * } * * { * "@type": "type.googleapis.com/google.profile.Person", * "firstName": , * "lastName": * } * * If the embedded message type is well-known and has a custom JSON * representation, that representation will be embedded adding a field * `value` which holds the custom JSON in addition to the `@type` * field. Example (for message [google.protobuf.Duration][]): * * { * "@type": "type.googleapis.com/google.protobuf.Duration", * "value": "1.212s" * } */ consensus_state?: ProtobufAny; client_id?: string; /** @format byte */ proof?: string; /** * Normally the RevisionHeight is incremented at each height while keeping * RevisionNumber the same. However some consensus algorithms may choose to * reset the height in certain conditions e.g. hard forks, state-machine * breaking changes In these cases, the RevisionNumber is incremented so that * height continues to be monitonically increasing even as the RevisionHeight * gets reset */ proof_height?: V1Height; } /** * QueryChannelResponse is the response type for the Query/Channel RPC method. Besides the Channel end, it includes a proof and the height from which the proof was retrieved. */ export interface V1QueryChannelResponse { /** * Channel defines pipeline for exactly-once packet delivery between specific * modules on separate blockchains, which has at least one end capable of * sending packets and one end capable of receiving packets. */ channel?: Channelv1Channel; /** @format byte */ proof?: string; /** * Normally the RevisionHeight is incremented at each height while keeping * RevisionNumber the same. However some consensus algorithms may choose to * reset the height in certain conditions e.g. hard forks, state-machine * breaking changes In these cases, the RevisionNumber is incremented so that * height continues to be monitonically increasing even as the RevisionHeight * gets reset */ proof_height?: V1Height; } /** * QueryChannelsResponse is the response type for the Query/Channels RPC method. */ export interface V1QueryChannelsResponse { /** list of stored channels of the chain. */ channels?: V1IdentifiedChannel[]; /** * PageResponse is to be embedded in gRPC response messages where the * corresponding request message has used PageRequest. * * message SomeResponse { * repeated Bar results = 1; * PageResponse page = 2; * } */ pagination?: V1Beta1PageResponse; /** * Normally the RevisionHeight is incremented at each height while keeping * RevisionNumber the same. However some consensus algorithms may choose to * reset the height in certain conditions e.g. hard forks, state-machine * breaking changes In these cases, the RevisionNumber is incremented so that * height continues to be monitonically increasing even as the RevisionHeight * gets reset */ height?: V1Height; } export interface V1QueryConnectionChannelsResponse { /** list of channels associated with a connection. */ channels?: V1IdentifiedChannel[]; /** * PageResponse is to be embedded in gRPC response messages where the * corresponding request message has used PageRequest. * * message SomeResponse { * repeated Bar results = 1; * PageResponse page = 2; * } */ pagination?: V1Beta1PageResponse; /** * Normally the RevisionHeight is incremented at each height while keeping * RevisionNumber the same. However some consensus algorithms may choose to * reset the height in certain conditions e.g. hard forks, state-machine * breaking changes In these cases, the RevisionNumber is incremented so that * height continues to be monitonically increasing even as the RevisionHeight * gets reset */ height?: V1Height; } export interface V1QueryNextSequenceReceiveResponse { /** @format uint64 */ next_sequence_receive?: string; /** @format byte */ proof?: string; /** * Normally the RevisionHeight is incremented at each height while keeping * RevisionNumber the same. However some consensus algorithms may choose to * reset the height in certain conditions e.g. hard forks, state-machine * breaking changes In these cases, the RevisionNumber is incremented so that * height continues to be monitonically increasing even as the RevisionHeight * gets reset */ proof_height?: V1Height; } export interface V1QueryPacketAcknowledgementResponse { /** @format byte */ acknowledgement?: string; /** @format byte */ proof?: string; /** * Normally the RevisionHeight is incremented at each height while keeping * RevisionNumber the same. However some consensus algorithms may choose to * reset the height in certain conditions e.g. hard forks, state-machine * breaking changes In these cases, the RevisionNumber is incremented so that * height continues to be monitonically increasing even as the RevisionHeight * gets reset */ proof_height?: V1Height; } export interface V1QueryPacketAcknowledgementsResponse { acknowledgements?: V1PacketState[]; /** * PageResponse is to be embedded in gRPC response messages where the * corresponding request message has used PageRequest. * * message SomeResponse { * repeated Bar results = 1; * PageResponse page = 2; * } */ pagination?: V1Beta1PageResponse; /** * Normally the RevisionHeight is incremented at each height while keeping * RevisionNumber the same. However some consensus algorithms may choose to * reset the height in certain conditions e.g. hard forks, state-machine * breaking changes In these cases, the RevisionNumber is incremented so that * height continues to be monitonically increasing even as the RevisionHeight * gets reset */ height?: V1Height; } export interface V1QueryPacketCommitmentResponse { /** @format byte */ commitment?: string; /** @format byte */ proof?: string; /** * Normally the RevisionHeight is incremented at each height while keeping * RevisionNumber the same. However some consensus algorithms may choose to * reset the height in certain conditions e.g. hard forks, state-machine * breaking changes In these cases, the RevisionNumber is incremented so that * height continues to be monitonically increasing even as the RevisionHeight * gets reset */ proof_height?: V1Height; } export interface V1QueryPacketCommitmentsResponse { commitments?: V1PacketState[]; /** * PageResponse is to be embedded in gRPC response messages where the * corresponding request message has used PageRequest. * * message SomeResponse { * repeated Bar results = 1; * PageResponse page = 2; * } */ pagination?: V1Beta1PageResponse; /** * Normally the RevisionHeight is incremented at each height while keeping * RevisionNumber the same. However some consensus algorithms may choose to * reset the height in certain conditions e.g. hard forks, state-machine * breaking changes In these cases, the RevisionNumber is incremented so that * height continues to be monitonically increasing even as the RevisionHeight * gets reset */ height?: V1Height; } export interface V1QueryPacketReceiptResponse { received?: boolean; /** @format byte */ proof?: string; /** * Normally the RevisionHeight is incremented at each height while keeping * RevisionNumber the same. However some consensus algorithms may choose to * reset the height in certain conditions e.g. hard forks, state-machine * breaking changes In these cases, the RevisionNumber is incremented so that * height continues to be monitonically increasing even as the RevisionHeight * gets reset */ proof_height?: V1Height; } export interface V1QueryUnreceivedAcksResponse { sequences?: string[]; /** * Normally the RevisionHeight is incremented at each height while keeping * RevisionNumber the same. However some consensus algorithms may choose to * reset the height in certain conditions e.g. hard forks, state-machine * breaking changes In these cases, the RevisionNumber is incremented so that * height continues to be monitonically increasing even as the RevisionHeight * gets reset */ height?: V1Height; } export interface V1QueryUnreceivedPacketsResponse { sequences?: string[]; /** * Normally the RevisionHeight is incremented at each height while keeping * RevisionNumber the same. However some consensus algorithms may choose to * reset the height in certain conditions e.g. hard forks, state-machine * breaking changes In these cases, the RevisionNumber is incremented so that * height continues to be monitonically increasing even as the RevisionHeight * gets reset */ height?: V1Height; } /** * - RESPONSE_RESULT_TYPE_UNSPECIFIED: Default zero value enumeration - 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_SUCCESS: The message was executed successfully */ export declare enum V1ResponseResultType { RESPONSE_RESULT_TYPE_UNSPECIFIED = "RESPONSE_RESULT_TYPE_UNSPECIFIED", RESPONSE_RESULT_TYPE_NOOP = "RESPONSE_RESULT_TYPE_NOOP", RESPONSE_RESULT_TYPE_SUCCESS = "RESPONSE_RESULT_TYPE_SUCCESS" } /** * State defines if a channel is in one of the following states: CLOSED, INIT, TRYOPEN, OPEN or UNINITIALIZED. - STATE_UNINITIALIZED_UNSPECIFIED: Default State - STATE_INIT: A channel has just started the opening handshake. - STATE_TRYOPEN: A channel has acknowledged the handshake step on the counterparty chain. - STATE_OPEN: A channel has completed the handshake. Open channels are ready to send and receive packets. - STATE_CLOSED: A channel has been closed and can no longer be used to send or receive packets. */ export declare enum V1State { STATE_UNINITIALIZED_UNSPECIFIED = "STATE_UNINITIALIZED_UNSPECIFIED", STATE_INIT = "STATE_INIT", STATE_TRYOPEN = "STATE_TRYOPEN", STATE_OPEN = "STATE_OPEN", STATE_CLOSED = "STATE_CLOSED" } /** * message SomeRequest { Foo some_parameter = 1; PageRequest pagination = 2; } */ export interface V1Beta1PageRequest { /** * key is a value returned in PageResponse.next_key to begin * querying the next page most efficiently. Only one of offset or key * should be set. * @format byte */ key?: string; /** * offset is a numeric offset that can be used when key is unavailable. * It is less efficient than using key. Only one of offset or key should * be set. * @format uint64 */ offset?: string; /** * limit is the total number of results to be returned in the result page. * If left empty it will default to a value to be set by each app. * @format uint64 */ limit?: string; /** * count_total is set to true to indicate that the result set should include * a count of the total number of items available for pagination in UIs. * count_total is only respected when offset is used. It is ignored when key * is set. */ count_total?: boolean; } /** * PageResponse is to be embedded in gRPC response messages where the corresponding request message has used PageRequest. message SomeResponse { repeated Bar results = 1; PageResponse page = 2; } */ export interface V1Beta1PageResponse { /** @format byte */ next_key?: string; /** @format uint64 */ total?: string; } export type QueryParamsType = Record; export type ResponseFormat = keyof Omit; export interface FullRequestParams extends Omit { /** set parameter to `true` for call `securityWorker` for this request */ secure?: boolean; /** request path */ path: string; /** content type of request body */ type?: ContentType; /** query params */ query?: QueryParamsType; /** format of response (i.e. response.json() -> format: "json") */ format?: keyof Omit; /** request body */ body?: unknown; /** base url */ baseUrl?: string; /** request cancellation token */ cancelToken?: CancelToken; } export type RequestParams = Omit; export interface ApiConfig { baseUrl?: string; baseApiParams?: Omit; securityWorker?: (securityData: SecurityDataType) => RequestParams | void; } export interface HttpResponse extends Response { data: D; error: E; } type CancelToken = Symbol | string | number; export declare enum ContentType { Json = "application/json", FormData = "multipart/form-data", UrlEncoded = "application/x-www-form-urlencoded" } export declare class HttpClient { baseUrl: string; private securityData; private securityWorker; private abortControllers; private baseApiParams; constructor(apiConfig?: ApiConfig); setSecurityData: (data: SecurityDataType) => void; private addQueryParam; protected toQueryString(rawQuery?: QueryParamsType): string; protected addQueryParams(rawQuery?: QueryParamsType): string; private contentFormatters; private mergeRequestParams; private createAbortSignal; abortRequest: (cancelToken: CancelToken) => void; request: ({ body, secure, path, type, query, format, baseUrl, cancelToken, ...params }: FullRequestParams) => Promise>; } /** * @title ibc/core/channel/v1/channel.proto * @version version not set */ export declare class Api extends HttpClient { /** * No description * * @tags Query * @name QueryChannels * @summary Channels queries all the IBC channels of a chain. * @request GET:/ibc/core/channel/v1/channels */ queryChannels: (query?: { "pagination.key"?: string; "pagination.offset"?: string; "pagination.limit"?: string; "pagination.count_total"?: boolean; }, params?: RequestParams) => Promise>; /** * No description * * @tags Query * @name QueryChannel * @summary Channel queries an IBC Channel. * @request GET:/ibc/core/channel/v1/channels/{channel_id}/ports/{port_id} */ queryChannel: (channel_id: string, port_id: string, params?: RequestParams) => Promise>; /** * No description * * @tags Query * @name QueryChannelClientState * @summary ChannelClientState queries for the client state for the channel associated with the provided channel identifiers. * @request GET:/ibc/core/channel/v1/channels/{channel_id}/ports/{port_id}/client_state */ queryChannelClientState: (channel_id: string, port_id: string, params?: RequestParams) => Promise>; /** * No description * * @tags Query * @name QueryChannelConsensusState * @summary ChannelConsensusState queries for the consensus state for the channel associated with the provided channel identifiers. * @request GET:/ibc/core/channel/v1/channels/{channel_id}/ports/{port_id}/consensus_state/revision/{revision_number}/height/{revision_height} */ queryChannelConsensusState: (channel_id: string, port_id: string, revision_number: string, revision_height: string, params?: RequestParams) => Promise>; /** * No description * * @tags Query * @name QueryNextSequenceReceive * @summary NextSequenceReceive returns the next receive sequence for a given channel. * @request GET:/ibc/core/channel/v1/channels/{channel_id}/ports/{port_id}/next_sequence */ queryNextSequenceReceive: (channel_id: string, port_id: string, params?: RequestParams) => Promise>; /** * No description * * @tags Query * @name QueryPacketAcknowledgements * @summary PacketAcknowledgements returns all the packet acknowledgements associated with a channel. * @request GET:/ibc/core/channel/v1/channels/{channel_id}/ports/{port_id}/packet_acknowledgements */ queryPacketAcknowledgements: (channel_id: string, port_id: string, query?: { "pagination.key"?: string; "pagination.offset"?: string; "pagination.limit"?: string; "pagination.count_total"?: boolean; packet_commitment_sequences?: string[]; }, params?: RequestParams) => Promise>; /** * No description * * @tags Query * @name QueryPacketAcknowledgement * @summary PacketAcknowledgement queries a stored packet acknowledgement hash. * @request GET:/ibc/core/channel/v1/channels/{channel_id}/ports/{port_id}/packet_acks/{sequence} */ queryPacketAcknowledgement: (channel_id: string, port_id: string, sequence: string, params?: RequestParams) => Promise>; /** * No description * * @tags Query * @name QueryPacketCommitments * @summary PacketCommitments returns all the packet commitments hashes associated with a channel. * @request GET:/ibc/core/channel/v1/channels/{channel_id}/ports/{port_id}/packet_commitments */ queryPacketCommitments: (channel_id: string, port_id: string, query?: { "pagination.key"?: string; "pagination.offset"?: string; "pagination.limit"?: string; "pagination.count_total"?: boolean; }, params?: RequestParams) => Promise>; /** * No description * * @tags Query * @name QueryUnreceivedAcks * @summary UnreceivedAcks returns all the unreceived IBC acknowledgements associated with a channel and sequences. * @request GET:/ibc/core/channel/v1/channels/{channel_id}/ports/{port_id}/packet_commitments/{packet_ack_sequences}/unreceived_acks */ queryUnreceivedAcks: (channel_id: string, port_id: string, packet_ack_sequences: string[], params?: RequestParams) => Promise>; /** * No description * * @tags Query * @name QueryUnreceivedPackets * @summary UnreceivedPackets returns all the unreceived IBC packets associated with a channel and sequences. * @request GET:/ibc/core/channel/v1/channels/{channel_id}/ports/{port_id}/packet_commitments/{packet_commitment_sequences}/unreceived_packets */ queryUnreceivedPackets: (channel_id: string, port_id: string, packet_commitment_sequences: string[], params?: RequestParams) => Promise>; /** * No description * * @tags Query * @name QueryPacketCommitment * @summary PacketCommitment queries a stored packet commitment hash. * @request GET:/ibc/core/channel/v1/channels/{channel_id}/ports/{port_id}/packet_commitments/{sequence} */ queryPacketCommitment: (channel_id: string, port_id: string, sequence: string, params?: RequestParams) => Promise>; /** * No description * * @tags Query * @name QueryPacketReceipt * @summary PacketReceipt queries if a given packet sequence has been received on the queried chain * @request GET:/ibc/core/channel/v1/channels/{channel_id}/ports/{port_id}/packet_receipts/{sequence} */ queryPacketReceipt: (channel_id: string, port_id: string, sequence: string, params?: RequestParams) => Promise>; /** * No description * * @tags Query * @name QueryConnectionChannels * @summary ConnectionChannels queries all the channels associated with a connection end. * @request GET:/ibc/core/channel/v1/connections/{connection}/channels */ queryConnectionChannels: (connection: string, query?: { "pagination.key"?: string; "pagination.offset"?: string; "pagination.limit"?: string; "pagination.count_total"?: boolean; }, params?: RequestParams) => Promise>; } export {};