UNPKG

interchainjs

Version:

InterchainJS is a JavaScript library for interacting with Cosmos SDK based blockchains.

1,203 lines (1,202 loc) 47.6 kB
import { PageRequest, PageResponse } from "../../../../cosmos/base/query/v1beta1/pagination"; import { ConnectionEnd, IdentifiedConnection } from "./connection"; import { Height, IdentifiedClientState, Params } from "../../client/v1/client"; import { Any } from "../../../../google/protobuf/any"; import { BinaryReader, BinaryWriter } from "../../../../binary"; import { bytesFromBase64, base64FromBytes } from "../../../../helpers"; import { GlobalDecoderRegistry } from "../../../../registry"; function createBaseQueryConnectionRequest() { return { connectionId: "" }; } /** * QueryConnectionRequest is the request type for the Query/Connection RPC * method * @name QueryConnectionRequest * @package ibc.core.connection.v1 * @see proto type: ibc.core.connection.v1.QueryConnectionRequest */ export const QueryConnectionRequest = { typeUrl: "/ibc.core.connection.v1.QueryConnectionRequest", aminoType: "cosmos-sdk/QueryConnectionRequest", is(o) { return o && (o.$typeUrl === QueryConnectionRequest.typeUrl || typeof o.connectionId === "string"); }, isAmino(o) { return o && (o.$typeUrl === QueryConnectionRequest.typeUrl || typeof o.connection_id === "string"); }, encode(message, writer = BinaryWriter.create()) { if (message.connectionId !== "") { writer.uint32(10).string(message.connectionId); } return writer; }, decode(input, length) { const reader = input instanceof BinaryReader ? input : new BinaryReader(input); let end = length === undefined ? reader.len : reader.pos + length; const message = createBaseQueryConnectionRequest(); while (reader.pos < end) { const tag = reader.uint32(); switch (tag >>> 3) { case 1: message.connectionId = reader.string(); break; default: reader.skipType(tag & 7); break; } } return message; }, fromPartial(object) { const message = createBaseQueryConnectionRequest(); message.connectionId = object.connectionId ?? ""; return message; }, fromAmino(object) { const message = createBaseQueryConnectionRequest(); if (object.connection_id !== undefined && object.connection_id !== null) { message.connectionId = object.connection_id; } return message; }, toAmino(message) { const obj = {}; obj.connection_id = message.connectionId === "" ? undefined : message.connectionId; return obj; }, fromAminoMsg(object) { return QueryConnectionRequest.fromAmino(object.value); }, toAminoMsg(message) { return { type: "cosmos-sdk/QueryConnectionRequest", value: QueryConnectionRequest.toAmino(message) }; }, fromProtoMsg(message) { return QueryConnectionRequest.decode(message.value); }, toProto(message) { return QueryConnectionRequest.encode(message).finish(); }, toProtoMsg(message) { return { typeUrl: "/ibc.core.connection.v1.QueryConnectionRequest", value: QueryConnectionRequest.encode(message).finish() }; }, registerTypeUrl() { } }; function createBaseQueryConnectionResponse() { return { connection: undefined, proof: new Uint8Array(), proofHeight: Height.fromPartial({}) }; } /** * QueryConnectionResponse is the response type for the Query/Connection RPC * method. Besides the connection end, it includes a proof and the height from * which the proof was retrieved. * @name QueryConnectionResponse * @package ibc.core.connection.v1 * @see proto type: ibc.core.connection.v1.QueryConnectionResponse */ export const QueryConnectionResponse = { typeUrl: "/ibc.core.connection.v1.QueryConnectionResponse", aminoType: "cosmos-sdk/QueryConnectionResponse", is(o) { return o && (o.$typeUrl === QueryConnectionResponse.typeUrl || (o.proof instanceof Uint8Array || typeof o.proof === "string") && Height.is(o.proofHeight)); }, isAmino(o) { return o && (o.$typeUrl === QueryConnectionResponse.typeUrl || (o.proof instanceof Uint8Array || typeof o.proof === "string") && Height.isAmino(o.proof_height)); }, encode(message, writer = BinaryWriter.create()) { if (message.connection !== undefined) { ConnectionEnd.encode(message.connection, writer.uint32(10).fork()).ldelim(); } if (message.proof.length !== 0) { writer.uint32(18).bytes(message.proof); } if (message.proofHeight !== undefined) { Height.encode(message.proofHeight, writer.uint32(26).fork()).ldelim(); } return writer; }, decode(input, length) { const reader = input instanceof BinaryReader ? input : new BinaryReader(input); let end = length === undefined ? reader.len : reader.pos + length; const message = createBaseQueryConnectionResponse(); while (reader.pos < end) { const tag = reader.uint32(); switch (tag >>> 3) { case 1: message.connection = ConnectionEnd.decode(reader, reader.uint32()); break; case 2: message.proof = reader.bytes(); break; case 3: message.proofHeight = Height.decode(reader, reader.uint32()); break; default: reader.skipType(tag & 7); break; } } return message; }, fromPartial(object) { const message = createBaseQueryConnectionResponse(); message.connection = object.connection !== undefined && object.connection !== null ? ConnectionEnd.fromPartial(object.connection) : undefined; message.proof = object.proof ?? new Uint8Array(); message.proofHeight = object.proofHeight !== undefined && object.proofHeight !== null ? Height.fromPartial(object.proofHeight) : undefined; return message; }, fromAmino(object) { const message = createBaseQueryConnectionResponse(); if (object.connection !== undefined && object.connection !== null) { message.connection = ConnectionEnd.fromAmino(object.connection); } if (object.proof !== undefined && object.proof !== null) { message.proof = bytesFromBase64(object.proof); } if (object.proof_height !== undefined && object.proof_height !== null) { message.proofHeight = Height.fromAmino(object.proof_height); } return message; }, toAmino(message) { const obj = {}; obj.connection = message.connection ? ConnectionEnd.toAmino(message.connection) : undefined; obj.proof = message.proof ? base64FromBytes(message.proof) : undefined; obj.proof_height = message.proofHeight ? Height.toAmino(message.proofHeight) : {}; return obj; }, fromAminoMsg(object) { return QueryConnectionResponse.fromAmino(object.value); }, toAminoMsg(message) { return { type: "cosmos-sdk/QueryConnectionResponse", value: QueryConnectionResponse.toAmino(message) }; }, fromProtoMsg(message) { return QueryConnectionResponse.decode(message.value); }, toProto(message) { return QueryConnectionResponse.encode(message).finish(); }, toProtoMsg(message) { return { typeUrl: "/ibc.core.connection.v1.QueryConnectionResponse", value: QueryConnectionResponse.encode(message).finish() }; }, registerTypeUrl() { if (!GlobalDecoderRegistry.registerExistingTypeUrl(QueryConnectionResponse.typeUrl)) { return; } ConnectionEnd.registerTypeUrl(); Height.registerTypeUrl(); } }; function createBaseQueryConnectionsRequest() { return { pagination: undefined }; } /** * QueryConnectionsRequest is the request type for the Query/Connections RPC * method * @name QueryConnectionsRequest * @package ibc.core.connection.v1 * @see proto type: ibc.core.connection.v1.QueryConnectionsRequest */ export const QueryConnectionsRequest = { typeUrl: "/ibc.core.connection.v1.QueryConnectionsRequest", aminoType: "cosmos-sdk/QueryConnectionsRequest", is(o) { return o && o.$typeUrl === QueryConnectionsRequest.typeUrl; }, isAmino(o) { return o && o.$typeUrl === QueryConnectionsRequest.typeUrl; }, encode(message, writer = BinaryWriter.create()) { if (message.pagination !== undefined) { PageRequest.encode(message.pagination, writer.uint32(10).fork()).ldelim(); } return writer; }, decode(input, length) { const reader = input instanceof BinaryReader ? input : new BinaryReader(input); let end = length === undefined ? reader.len : reader.pos + length; const message = createBaseQueryConnectionsRequest(); while (reader.pos < end) { const tag = reader.uint32(); switch (tag >>> 3) { case 1: message.pagination = PageRequest.decode(reader, reader.uint32()); break; default: reader.skipType(tag & 7); break; } } return message; }, fromPartial(object) { const message = createBaseQueryConnectionsRequest(); message.pagination = object.pagination !== undefined && object.pagination !== null ? PageRequest.fromPartial(object.pagination) : undefined; return message; }, fromAmino(object) { const message = createBaseQueryConnectionsRequest(); if (object.pagination !== undefined && object.pagination !== null) { message.pagination = PageRequest.fromAmino(object.pagination); } return message; }, toAmino(message) { const obj = {}; obj.pagination = message.pagination ? PageRequest.toAmino(message.pagination) : undefined; return obj; }, fromAminoMsg(object) { return QueryConnectionsRequest.fromAmino(object.value); }, toAminoMsg(message) { return { type: "cosmos-sdk/QueryConnectionsRequest", value: QueryConnectionsRequest.toAmino(message) }; }, fromProtoMsg(message) { return QueryConnectionsRequest.decode(message.value); }, toProto(message) { return QueryConnectionsRequest.encode(message).finish(); }, toProtoMsg(message) { return { typeUrl: "/ibc.core.connection.v1.QueryConnectionsRequest", value: QueryConnectionsRequest.encode(message).finish() }; }, registerTypeUrl() { if (!GlobalDecoderRegistry.registerExistingTypeUrl(QueryConnectionsRequest.typeUrl)) { return; } PageRequest.registerTypeUrl(); } }; function createBaseQueryConnectionsResponse() { return { connections: [], pagination: undefined, height: Height.fromPartial({}) }; } /** * QueryConnectionsResponse is the response type for the Query/Connections RPC * method. * @name QueryConnectionsResponse * @package ibc.core.connection.v1 * @see proto type: ibc.core.connection.v1.QueryConnectionsResponse */ export const QueryConnectionsResponse = { typeUrl: "/ibc.core.connection.v1.QueryConnectionsResponse", aminoType: "cosmos-sdk/QueryConnectionsResponse", is(o) { return o && (o.$typeUrl === QueryConnectionsResponse.typeUrl || Array.isArray(o.connections) && (!o.connections.length || IdentifiedConnection.is(o.connections[0])) && Height.is(o.height)); }, isAmino(o) { return o && (o.$typeUrl === QueryConnectionsResponse.typeUrl || Array.isArray(o.connections) && (!o.connections.length || IdentifiedConnection.isAmino(o.connections[0])) && Height.isAmino(o.height)); }, encode(message, writer = BinaryWriter.create()) { for (const v of message.connections) { IdentifiedConnection.encode(v, writer.uint32(10).fork()).ldelim(); } if (message.pagination !== undefined) { PageResponse.encode(message.pagination, writer.uint32(18).fork()).ldelim(); } if (message.height !== undefined) { Height.encode(message.height, writer.uint32(26).fork()).ldelim(); } return writer; }, decode(input, length) { const reader = input instanceof BinaryReader ? input : new BinaryReader(input); let end = length === undefined ? reader.len : reader.pos + length; const message = createBaseQueryConnectionsResponse(); while (reader.pos < end) { const tag = reader.uint32(); switch (tag >>> 3) { case 1: message.connections.push(IdentifiedConnection.decode(reader, reader.uint32())); break; case 2: message.pagination = PageResponse.decode(reader, reader.uint32()); break; case 3: message.height = Height.decode(reader, reader.uint32()); break; default: reader.skipType(tag & 7); break; } } return message; }, fromPartial(object) { const message = createBaseQueryConnectionsResponse(); message.connections = object.connections?.map(e => IdentifiedConnection.fromPartial(e)) || []; message.pagination = object.pagination !== undefined && object.pagination !== null ? PageResponse.fromPartial(object.pagination) : undefined; message.height = object.height !== undefined && object.height !== null ? Height.fromPartial(object.height) : undefined; return message; }, fromAmino(object) { const message = createBaseQueryConnectionsResponse(); message.connections = object.connections?.map(e => IdentifiedConnection.fromAmino(e)) || []; if (object.pagination !== undefined && object.pagination !== null) { message.pagination = PageResponse.fromAmino(object.pagination); } if (object.height !== undefined && object.height !== null) { message.height = Height.fromAmino(object.height); } return message; }, toAmino(message) { const obj = {}; if (message.connections) { obj.connections = message.connections.map(e => e ? IdentifiedConnection.toAmino(e) : undefined); } else { obj.connections = message.connections; } obj.pagination = message.pagination ? PageResponse.toAmino(message.pagination) : undefined; obj.height = message.height ? Height.toAmino(message.height) : {}; return obj; }, fromAminoMsg(object) { return QueryConnectionsResponse.fromAmino(object.value); }, toAminoMsg(message) { return { type: "cosmos-sdk/QueryConnectionsResponse", value: QueryConnectionsResponse.toAmino(message) }; }, fromProtoMsg(message) { return QueryConnectionsResponse.decode(message.value); }, toProto(message) { return QueryConnectionsResponse.encode(message).finish(); }, toProtoMsg(message) { return { typeUrl: "/ibc.core.connection.v1.QueryConnectionsResponse", value: QueryConnectionsResponse.encode(message).finish() }; }, registerTypeUrl() { if (!GlobalDecoderRegistry.registerExistingTypeUrl(QueryConnectionsResponse.typeUrl)) { return; } IdentifiedConnection.registerTypeUrl(); PageResponse.registerTypeUrl(); Height.registerTypeUrl(); } }; function createBaseQueryClientConnectionsRequest() { return { clientId: "" }; } /** * QueryClientConnectionsRequest is the request type for the * Query/ClientConnections RPC method * @name QueryClientConnectionsRequest * @package ibc.core.connection.v1 * @see proto type: ibc.core.connection.v1.QueryClientConnectionsRequest */ export const QueryClientConnectionsRequest = { typeUrl: "/ibc.core.connection.v1.QueryClientConnectionsRequest", aminoType: "cosmos-sdk/QueryClientConnectionsRequest", is(o) { return o && (o.$typeUrl === QueryClientConnectionsRequest.typeUrl || typeof o.clientId === "string"); }, isAmino(o) { return o && (o.$typeUrl === QueryClientConnectionsRequest.typeUrl || typeof o.client_id === "string"); }, encode(message, writer = BinaryWriter.create()) { if (message.clientId !== "") { writer.uint32(10).string(message.clientId); } return writer; }, decode(input, length) { const reader = input instanceof BinaryReader ? input : new BinaryReader(input); let end = length === undefined ? reader.len : reader.pos + length; const message = createBaseQueryClientConnectionsRequest(); while (reader.pos < end) { const tag = reader.uint32(); switch (tag >>> 3) { case 1: message.clientId = reader.string(); break; default: reader.skipType(tag & 7); break; } } return message; }, fromPartial(object) { const message = createBaseQueryClientConnectionsRequest(); message.clientId = object.clientId ?? ""; return message; }, fromAmino(object) { const message = createBaseQueryClientConnectionsRequest(); if (object.client_id !== undefined && object.client_id !== null) { message.clientId = object.client_id; } return message; }, toAmino(message) { const obj = {}; obj.client_id = message.clientId === "" ? undefined : message.clientId; return obj; }, fromAminoMsg(object) { return QueryClientConnectionsRequest.fromAmino(object.value); }, toAminoMsg(message) { return { type: "cosmos-sdk/QueryClientConnectionsRequest", value: QueryClientConnectionsRequest.toAmino(message) }; }, fromProtoMsg(message) { return QueryClientConnectionsRequest.decode(message.value); }, toProto(message) { return QueryClientConnectionsRequest.encode(message).finish(); }, toProtoMsg(message) { return { typeUrl: "/ibc.core.connection.v1.QueryClientConnectionsRequest", value: QueryClientConnectionsRequest.encode(message).finish() }; }, registerTypeUrl() { } }; function createBaseQueryClientConnectionsResponse() { return { connectionPaths: [], proof: new Uint8Array(), proofHeight: Height.fromPartial({}) }; } /** * QueryClientConnectionsResponse is the response type for the * Query/ClientConnections RPC method * @name QueryClientConnectionsResponse * @package ibc.core.connection.v1 * @see proto type: ibc.core.connection.v1.QueryClientConnectionsResponse */ export const QueryClientConnectionsResponse = { typeUrl: "/ibc.core.connection.v1.QueryClientConnectionsResponse", aminoType: "cosmos-sdk/QueryClientConnectionsResponse", is(o) { return o && (o.$typeUrl === QueryClientConnectionsResponse.typeUrl || Array.isArray(o.connectionPaths) && (!o.connectionPaths.length || typeof o.connectionPaths[0] === "string") && (o.proof instanceof Uint8Array || typeof o.proof === "string") && Height.is(o.proofHeight)); }, isAmino(o) { return o && (o.$typeUrl === QueryClientConnectionsResponse.typeUrl || Array.isArray(o.connection_paths) && (!o.connection_paths.length || typeof o.connection_paths[0] === "string") && (o.proof instanceof Uint8Array || typeof o.proof === "string") && Height.isAmino(o.proof_height)); }, encode(message, writer = BinaryWriter.create()) { for (const v of message.connectionPaths) { writer.uint32(10).string(v); } if (message.proof.length !== 0) { writer.uint32(18).bytes(message.proof); } if (message.proofHeight !== undefined) { Height.encode(message.proofHeight, writer.uint32(26).fork()).ldelim(); } return writer; }, decode(input, length) { const reader = input instanceof BinaryReader ? input : new BinaryReader(input); let end = length === undefined ? reader.len : reader.pos + length; const message = createBaseQueryClientConnectionsResponse(); while (reader.pos < end) { const tag = reader.uint32(); switch (tag >>> 3) { case 1: message.connectionPaths.push(reader.string()); break; case 2: message.proof = reader.bytes(); break; case 3: message.proofHeight = Height.decode(reader, reader.uint32()); break; default: reader.skipType(tag & 7); break; } } return message; }, fromPartial(object) { const message = createBaseQueryClientConnectionsResponse(); message.connectionPaths = object.connectionPaths?.map(e => e) || []; message.proof = object.proof ?? new Uint8Array(); message.proofHeight = object.proofHeight !== undefined && object.proofHeight !== null ? Height.fromPartial(object.proofHeight) : undefined; return message; }, fromAmino(object) { const message = createBaseQueryClientConnectionsResponse(); message.connectionPaths = object.connection_paths?.map(e => e) || []; if (object.proof !== undefined && object.proof !== null) { message.proof = bytesFromBase64(object.proof); } if (object.proof_height !== undefined && object.proof_height !== null) { message.proofHeight = Height.fromAmino(object.proof_height); } return message; }, toAmino(message) { const obj = {}; if (message.connectionPaths) { obj.connection_paths = message.connectionPaths.map(e => e); } else { obj.connection_paths = message.connectionPaths; } obj.proof = message.proof ? base64FromBytes(message.proof) : undefined; obj.proof_height = message.proofHeight ? Height.toAmino(message.proofHeight) : {}; return obj; }, fromAminoMsg(object) { return QueryClientConnectionsResponse.fromAmino(object.value); }, toAminoMsg(message) { return { type: "cosmos-sdk/QueryClientConnectionsResponse", value: QueryClientConnectionsResponse.toAmino(message) }; }, fromProtoMsg(message) { return QueryClientConnectionsResponse.decode(message.value); }, toProto(message) { return QueryClientConnectionsResponse.encode(message).finish(); }, toProtoMsg(message) { return { typeUrl: "/ibc.core.connection.v1.QueryClientConnectionsResponse", value: QueryClientConnectionsResponse.encode(message).finish() }; }, registerTypeUrl() { if (!GlobalDecoderRegistry.registerExistingTypeUrl(QueryClientConnectionsResponse.typeUrl)) { return; } Height.registerTypeUrl(); } }; function createBaseQueryConnectionClientStateRequest() { return { connectionId: "" }; } /** * QueryConnectionClientStateRequest is the request type for the * Query/ConnectionClientState RPC method * @name QueryConnectionClientStateRequest * @package ibc.core.connection.v1 * @see proto type: ibc.core.connection.v1.QueryConnectionClientStateRequest */ export const QueryConnectionClientStateRequest = { typeUrl: "/ibc.core.connection.v1.QueryConnectionClientStateRequest", aminoType: "cosmos-sdk/QueryConnectionClientStateRequest", is(o) { return o && (o.$typeUrl === QueryConnectionClientStateRequest.typeUrl || typeof o.connectionId === "string"); }, isAmino(o) { return o && (o.$typeUrl === QueryConnectionClientStateRequest.typeUrl || typeof o.connection_id === "string"); }, encode(message, writer = BinaryWriter.create()) { if (message.connectionId !== "") { writer.uint32(10).string(message.connectionId); } return writer; }, decode(input, length) { const reader = input instanceof BinaryReader ? input : new BinaryReader(input); let end = length === undefined ? reader.len : reader.pos + length; const message = createBaseQueryConnectionClientStateRequest(); while (reader.pos < end) { const tag = reader.uint32(); switch (tag >>> 3) { case 1: message.connectionId = reader.string(); break; default: reader.skipType(tag & 7); break; } } return message; }, fromPartial(object) { const message = createBaseQueryConnectionClientStateRequest(); message.connectionId = object.connectionId ?? ""; return message; }, fromAmino(object) { const message = createBaseQueryConnectionClientStateRequest(); if (object.connection_id !== undefined && object.connection_id !== null) { message.connectionId = object.connection_id; } return message; }, toAmino(message) { const obj = {}; obj.connection_id = message.connectionId === "" ? undefined : message.connectionId; return obj; }, fromAminoMsg(object) { return QueryConnectionClientStateRequest.fromAmino(object.value); }, toAminoMsg(message) { return { type: "cosmos-sdk/QueryConnectionClientStateRequest", value: QueryConnectionClientStateRequest.toAmino(message) }; }, fromProtoMsg(message) { return QueryConnectionClientStateRequest.decode(message.value); }, toProto(message) { return QueryConnectionClientStateRequest.encode(message).finish(); }, toProtoMsg(message) { return { typeUrl: "/ibc.core.connection.v1.QueryConnectionClientStateRequest", value: QueryConnectionClientStateRequest.encode(message).finish() }; }, registerTypeUrl() { } }; function createBaseQueryConnectionClientStateResponse() { return { identifiedClientState: undefined, proof: new Uint8Array(), proofHeight: Height.fromPartial({}) }; } /** * QueryConnectionClientStateResponse is the response type for the * Query/ConnectionClientState RPC method * @name QueryConnectionClientStateResponse * @package ibc.core.connection.v1 * @see proto type: ibc.core.connection.v1.QueryConnectionClientStateResponse */ export const QueryConnectionClientStateResponse = { typeUrl: "/ibc.core.connection.v1.QueryConnectionClientStateResponse", aminoType: "cosmos-sdk/QueryConnectionClientStateResponse", is(o) { return o && (o.$typeUrl === QueryConnectionClientStateResponse.typeUrl || (o.proof instanceof Uint8Array || typeof o.proof === "string") && Height.is(o.proofHeight)); }, isAmino(o) { return o && (o.$typeUrl === QueryConnectionClientStateResponse.typeUrl || (o.proof instanceof Uint8Array || typeof o.proof === "string") && Height.isAmino(o.proof_height)); }, encode(message, writer = BinaryWriter.create()) { if (message.identifiedClientState !== undefined) { IdentifiedClientState.encode(message.identifiedClientState, writer.uint32(10).fork()).ldelim(); } if (message.proof.length !== 0) { writer.uint32(18).bytes(message.proof); } if (message.proofHeight !== undefined) { Height.encode(message.proofHeight, writer.uint32(26).fork()).ldelim(); } return writer; }, decode(input, length) { const reader = input instanceof BinaryReader ? input : new BinaryReader(input); let end = length === undefined ? reader.len : reader.pos + length; const message = createBaseQueryConnectionClientStateResponse(); while (reader.pos < end) { const tag = reader.uint32(); switch (tag >>> 3) { case 1: message.identifiedClientState = IdentifiedClientState.decode(reader, reader.uint32()); break; case 2: message.proof = reader.bytes(); break; case 3: message.proofHeight = Height.decode(reader, reader.uint32()); break; default: reader.skipType(tag & 7); break; } } return message; }, fromPartial(object) { const message = createBaseQueryConnectionClientStateResponse(); message.identifiedClientState = object.identifiedClientState !== undefined && object.identifiedClientState !== null ? IdentifiedClientState.fromPartial(object.identifiedClientState) : undefined; message.proof = object.proof ?? new Uint8Array(); message.proofHeight = object.proofHeight !== undefined && object.proofHeight !== null ? Height.fromPartial(object.proofHeight) : undefined; return message; }, fromAmino(object) { const message = createBaseQueryConnectionClientStateResponse(); if (object.identified_client_state !== undefined && object.identified_client_state !== null) { message.identifiedClientState = IdentifiedClientState.fromAmino(object.identified_client_state); } if (object.proof !== undefined && object.proof !== null) { message.proof = bytesFromBase64(object.proof); } if (object.proof_height !== undefined && object.proof_height !== null) { message.proofHeight = Height.fromAmino(object.proof_height); } return message; }, toAmino(message) { const obj = {}; obj.identified_client_state = message.identifiedClientState ? IdentifiedClientState.toAmino(message.identifiedClientState) : undefined; obj.proof = message.proof ? base64FromBytes(message.proof) : undefined; obj.proof_height = message.proofHeight ? Height.toAmino(message.proofHeight) : {}; return obj; }, fromAminoMsg(object) { return QueryConnectionClientStateResponse.fromAmino(object.value); }, toAminoMsg(message) { return { type: "cosmos-sdk/QueryConnectionClientStateResponse", value: QueryConnectionClientStateResponse.toAmino(message) }; }, fromProtoMsg(message) { return QueryConnectionClientStateResponse.decode(message.value); }, toProto(message) { return QueryConnectionClientStateResponse.encode(message).finish(); }, toProtoMsg(message) { return { typeUrl: "/ibc.core.connection.v1.QueryConnectionClientStateResponse", value: QueryConnectionClientStateResponse.encode(message).finish() }; }, registerTypeUrl() { if (!GlobalDecoderRegistry.registerExistingTypeUrl(QueryConnectionClientStateResponse.typeUrl)) { return; } IdentifiedClientState.registerTypeUrl(); Height.registerTypeUrl(); } }; function createBaseQueryConnectionConsensusStateRequest() { return { connectionId: "", revisionNumber: BigInt(0), revisionHeight: BigInt(0) }; } /** * QueryConnectionConsensusStateRequest is the request type for the * Query/ConnectionConsensusState RPC method * @name QueryConnectionConsensusStateRequest * @package ibc.core.connection.v1 * @see proto type: ibc.core.connection.v1.QueryConnectionConsensusStateRequest */ export const QueryConnectionConsensusStateRequest = { typeUrl: "/ibc.core.connection.v1.QueryConnectionConsensusStateRequest", aminoType: "cosmos-sdk/QueryConnectionConsensusStateRequest", is(o) { return o && (o.$typeUrl === QueryConnectionConsensusStateRequest.typeUrl || typeof o.connectionId === "string" && typeof o.revisionNumber === "bigint" && typeof o.revisionHeight === "bigint"); }, isAmino(o) { return o && (o.$typeUrl === QueryConnectionConsensusStateRequest.typeUrl || typeof o.connection_id === "string" && typeof o.revision_number === "bigint" && typeof o.revision_height === "bigint"); }, encode(message, writer = BinaryWriter.create()) { if (message.connectionId !== "") { writer.uint32(10).string(message.connectionId); } if (message.revisionNumber !== BigInt(0)) { writer.uint32(16).uint64(message.revisionNumber); } if (message.revisionHeight !== BigInt(0)) { writer.uint32(24).uint64(message.revisionHeight); } return writer; }, decode(input, length) { const reader = input instanceof BinaryReader ? input : new BinaryReader(input); let end = length === undefined ? reader.len : reader.pos + length; const message = createBaseQueryConnectionConsensusStateRequest(); while (reader.pos < end) { const tag = reader.uint32(); switch (tag >>> 3) { case 1: message.connectionId = reader.string(); break; case 2: message.revisionNumber = reader.uint64(); break; case 3: message.revisionHeight = reader.uint64(); break; default: reader.skipType(tag & 7); break; } } return message; }, fromPartial(object) { const message = createBaseQueryConnectionConsensusStateRequest(); message.connectionId = object.connectionId ?? ""; message.revisionNumber = object.revisionNumber !== undefined && object.revisionNumber !== null ? BigInt(object.revisionNumber.toString()) : BigInt(0); message.revisionHeight = object.revisionHeight !== undefined && object.revisionHeight !== null ? BigInt(object.revisionHeight.toString()) : BigInt(0); return message; }, fromAmino(object) { const message = createBaseQueryConnectionConsensusStateRequest(); if (object.connection_id !== undefined && object.connection_id !== null) { message.connectionId = object.connection_id; } if (object.revision_number !== undefined && object.revision_number !== null) { message.revisionNumber = BigInt(object.revision_number); } if (object.revision_height !== undefined && object.revision_height !== null) { message.revisionHeight = BigInt(object.revision_height); } return message; }, toAmino(message) { const obj = {}; obj.connection_id = message.connectionId === "" ? undefined : message.connectionId; obj.revision_number = message.revisionNumber !== BigInt(0) ? message.revisionNumber?.toString() : undefined; obj.revision_height = message.revisionHeight !== BigInt(0) ? message.revisionHeight?.toString() : undefined; return obj; }, fromAminoMsg(object) { return QueryConnectionConsensusStateRequest.fromAmino(object.value); }, toAminoMsg(message) { return { type: "cosmos-sdk/QueryConnectionConsensusStateRequest", value: QueryConnectionConsensusStateRequest.toAmino(message) }; }, fromProtoMsg(message) { return QueryConnectionConsensusStateRequest.decode(message.value); }, toProto(message) { return QueryConnectionConsensusStateRequest.encode(message).finish(); }, toProtoMsg(message) { return { typeUrl: "/ibc.core.connection.v1.QueryConnectionConsensusStateRequest", value: QueryConnectionConsensusStateRequest.encode(message).finish() }; }, registerTypeUrl() { } }; function createBaseQueryConnectionConsensusStateResponse() { return { consensusState: undefined, clientId: "", proof: new Uint8Array(), proofHeight: Height.fromPartial({}) }; } /** * QueryConnectionConsensusStateResponse is the response type for the * Query/ConnectionConsensusState RPC method * @name QueryConnectionConsensusStateResponse * @package ibc.core.connection.v1 * @see proto type: ibc.core.connection.v1.QueryConnectionConsensusStateResponse */ export const QueryConnectionConsensusStateResponse = { typeUrl: "/ibc.core.connection.v1.QueryConnectionConsensusStateResponse", aminoType: "cosmos-sdk/QueryConnectionConsensusStateResponse", is(o) { return o && (o.$typeUrl === QueryConnectionConsensusStateResponse.typeUrl || typeof o.clientId === "string" && (o.proof instanceof Uint8Array || typeof o.proof === "string") && Height.is(o.proofHeight)); }, isAmino(o) { return o && (o.$typeUrl === QueryConnectionConsensusStateResponse.typeUrl || typeof o.client_id === "string" && (o.proof instanceof Uint8Array || typeof o.proof === "string") && Height.isAmino(o.proof_height)); }, encode(message, writer = BinaryWriter.create()) { if (message.consensusState !== undefined) { Any.encode(message.consensusState, writer.uint32(10).fork()).ldelim(); } if (message.clientId !== "") { writer.uint32(18).string(message.clientId); } if (message.proof.length !== 0) { writer.uint32(26).bytes(message.proof); } if (message.proofHeight !== undefined) { Height.encode(message.proofHeight, writer.uint32(34).fork()).ldelim(); } return writer; }, decode(input, length) { const reader = input instanceof BinaryReader ? input : new BinaryReader(input); let end = length === undefined ? reader.len : reader.pos + length; const message = createBaseQueryConnectionConsensusStateResponse(); while (reader.pos < end) { const tag = reader.uint32(); switch (tag >>> 3) { case 1: message.consensusState = Any.decode(reader, reader.uint32()); break; case 2: message.clientId = reader.string(); break; case 3: message.proof = reader.bytes(); break; case 4: message.proofHeight = Height.decode(reader, reader.uint32()); break; default: reader.skipType(tag & 7); break; } } return message; }, fromPartial(object) { const message = createBaseQueryConnectionConsensusStateResponse(); message.consensusState = object.consensusState !== undefined && object.consensusState !== null ? Any.fromPartial(object.consensusState) : undefined; message.clientId = object.clientId ?? ""; message.proof = object.proof ?? new Uint8Array(); message.proofHeight = object.proofHeight !== undefined && object.proofHeight !== null ? Height.fromPartial(object.proofHeight) : undefined; return message; }, fromAmino(object) { const message = createBaseQueryConnectionConsensusStateResponse(); if (object.consensus_state !== undefined && object.consensus_state !== null) { message.consensusState = Any.fromAmino(object.consensus_state); } if (object.client_id !== undefined && object.client_id !== null) { message.clientId = object.client_id; } if (object.proof !== undefined && object.proof !== null) { message.proof = bytesFromBase64(object.proof); } if (object.proof_height !== undefined && object.proof_height !== null) { message.proofHeight = Height.fromAmino(object.proof_height); } return message; }, toAmino(message) { const obj = {}; obj.consensus_state = message.consensusState ? Any.toAmino(message.consensusState) : undefined; obj.client_id = message.clientId === "" ? undefined : message.clientId; obj.proof = message.proof ? base64FromBytes(message.proof) : undefined; obj.proof_height = message.proofHeight ? Height.toAmino(message.proofHeight) : {}; return obj; }, fromAminoMsg(object) { return QueryConnectionConsensusStateResponse.fromAmino(object.value); }, toAminoMsg(message) { return { type: "cosmos-sdk/QueryConnectionConsensusStateResponse", value: QueryConnectionConsensusStateResponse.toAmino(message) }; }, fromProtoMsg(message) { return QueryConnectionConsensusStateResponse.decode(message.value); }, toProto(message) { return QueryConnectionConsensusStateResponse.encode(message).finish(); }, toProtoMsg(message) { return { typeUrl: "/ibc.core.connection.v1.QueryConnectionConsensusStateResponse", value: QueryConnectionConsensusStateResponse.encode(message).finish() }; }, registerTypeUrl() { if (!GlobalDecoderRegistry.registerExistingTypeUrl(QueryConnectionConsensusStateResponse.typeUrl)) { return; } Height.registerTypeUrl(); } }; function createBaseQueryConnectionParamsRequest() { return {}; } /** * QueryConnectionParamsRequest is the request type for the Query/ConnectionParams RPC method. * @name QueryConnectionParamsRequest * @package ibc.core.connection.v1 * @see proto type: ibc.core.connection.v1.QueryConnectionParamsRequest */ export const QueryConnectionParamsRequest = { typeUrl: "/ibc.core.connection.v1.QueryConnectionParamsRequest", aminoType: "cosmos-sdk/QueryConnectionParamsRequest", is(o) { return o && o.$typeUrl === QueryConnectionParamsRequest.typeUrl; }, isAmino(o) { return o && o.$typeUrl === QueryConnectionParamsRequest.typeUrl; }, encode(_, writer = BinaryWriter.create()) { return writer; }, decode(input, length) { const reader = input instanceof BinaryReader ? input : new BinaryReader(input); let end = length === undefined ? reader.len : reader.pos + length; const message = createBaseQueryConnectionParamsRequest(); while (reader.pos < end) { const tag = reader.uint32(); switch (tag >>> 3) { default: reader.skipType(tag & 7); break; } } return message; }, fromPartial(_) { const message = createBaseQueryConnectionParamsRequest(); return message; }, fromAmino(_) { const message = createBaseQueryConnectionParamsRequest(); return message; }, toAmino(_) { const obj = {}; return obj; }, fromAminoMsg(object) { return QueryConnectionParamsRequest.fromAmino(object.value); }, toAminoMsg(message) { return { type: "cosmos-sdk/QueryConnectionParamsRequest", value: QueryConnectionParamsRequest.toAmino(message) }; }, fromProtoMsg(message) { return QueryConnectionParamsRequest.decode(message.value); }, toProto(message) { return QueryConnectionParamsRequest.encode(message).finish(); }, toProtoMsg(message) { return { typeUrl: "/ibc.core.connection.v1.QueryConnectionParamsRequest", value: QueryConnectionParamsRequest.encode(message).finish() }; }, registerTypeUrl() { } }; function createBaseQueryConnectionParamsResponse() { return { params: undefined }; } /** * QueryConnectionParamsResponse is the response type for the Query/ConnectionParams RPC method. * @name QueryConnectionParamsResponse * @package ibc.core.connection.v1 * @see proto type: ibc.core.connection.v1.QueryConnectionParamsResponse */ export const QueryConnectionParamsResponse = { typeUrl: "/ibc.core.connection.v1.QueryConnectionParamsResponse", aminoType: "cosmos-sdk/QueryConnectionParamsResponse", is(o) { return o && o.$typeUrl === QueryConnectionParamsResponse.typeUrl; }, isAmino(o) { return o && o.$typeUrl === QueryConnectionParamsResponse.typeUrl; }, encode(message, writer = BinaryWriter.create()) { if (message.params !== undefined) { Params.encode(message.params, writer.uint32(10).fork()).ldelim(); } return writer; }, decode(input, length) { const reader = input instanceof BinaryReader ? input : new BinaryReader(input); let end = length === undefined ? reader.len : reader.pos + length; const message = createBaseQueryConnectionParamsResponse(); while (reader.pos < end) { const tag = reader.uint32(); switch (tag >>> 3) { case 1: message.params = Params.decode(reader, reader.uint32()); break; default: reader.skipType(tag & 7); break; } } return message; }, fromPartial(object) { const message = createBaseQueryConnectionParamsResponse(); message.params = object.params !== undefined && object.params !== null ? Params.fromPartial(object.params) : undefined; return message; }, fromAmino(object) { const message = createBaseQueryConnectionParamsResponse(); if (object.params !== undefined && object.params !== null) { message.params = Params.fromAmino(object.params); } return message; }, toAmino(message) { const obj = {}; obj.params = message.params ? Params.toAmino(message.params) : undefined; return obj; }, fromAminoMsg(object) { return QueryConnectionParamsResponse.fromAmino(object.value); }, toAminoMsg(message) { return { type: "cosmos-sdk/QueryConnectionParamsResponse", value: QueryConnectionParamsResponse.toAmino(message) }; }, fromProtoMsg(message) { return QueryConnectionParamsResponse.decode(message.value); }, toProto(message) { return QueryConnectionParamsResponse.encode(message).finish(); }, toProtoMsg(message) { return { typeUrl: "/ibc.core.connection.v1.QueryConnectionParamsResponse", value: QueryConnectionParamsResponse.encode(message).finish() }; }, registerTypeUrl() { if (!GlobalDecoderRegistry.registerExistingTypeUrl(QueryConnectionParamsResponse.typeUrl)) { return; } Params.registerTypeUrl(); } };