@bandprotocol/bandchain.js
Version:
TypeScript library for Cosmos SDK and BandChain
860 lines (859 loc) • 33.6 kB
JavaScript
//@ts-nocheck
import { PageRequest, PageResponse } from "../../../../cosmos/base/query/v1beta1/pagination";
import { ConnectionEnd, IdentifiedConnection } from "./connection";
import { Height, IdentifiedClientState } from "../../client/v1/client";
import { Any } from "../../../../google/protobuf/any";
import { BinaryReader, BinaryWriter } from "../../../../binary";
import { bytesFromBase64, base64FromBytes } from "../../../../helpers";
function createBaseQueryConnectionRequest() {
return {
connectionId: ""
};
}
export const QueryConnectionRequest = {
typeUrl: "/ibc.core.connection.v1.QueryConnectionRequest",
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()
};
}
};
function createBaseQueryConnectionResponse() {
return {
connection: undefined,
proof: new Uint8Array(),
proofHeight: Height.fromPartial({})
};
}
export const QueryConnectionResponse = {
typeUrl: "/ibc.core.connection.v1.QueryConnectionResponse",
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()
};
}
};
function createBaseQueryConnectionsRequest() {
return {
pagination: undefined
};
}
export const QueryConnectionsRequest = {
typeUrl: "/ibc.core.connection.v1.QueryConnectionsRequest",
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()
};
}
};
function createBaseQueryConnectionsResponse() {
return {
connections: [],
pagination: undefined,
height: Height.fromPartial({})
};
}
export const QueryConnectionsResponse = {
typeUrl: "/ibc.core.connection.v1.QueryConnectionsResponse",
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()
};
}
};
function createBaseQueryClientConnectionsRequest() {
return {
clientId: ""
};
}
export const QueryClientConnectionsRequest = {
typeUrl: "/ibc.core.connection.v1.QueryClientConnectionsRequest",
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()
};
}
};
function createBaseQueryClientConnectionsResponse() {
return {
connectionPaths: [],
proof: new Uint8Array(),
proofHeight: Height.fromPartial({})
};
}
export const QueryClientConnectionsResponse = {
typeUrl: "/ibc.core.connection.v1.QueryClientConnectionsResponse",
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()
};
}
};
function createBaseQueryConnectionClientStateRequest() {
return {
connectionId: ""
};
}
export const QueryConnectionClientStateRequest = {
typeUrl: "/ibc.core.connection.v1.QueryConnectionClientStateRequest",
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()
};
}
};
function createBaseQueryConnectionClientStateResponse() {
return {
identifiedClientState: undefined,
proof: new Uint8Array(),
proofHeight: Height.fromPartial({})
};
}
export const QueryConnectionClientStateResponse = {
typeUrl: "/ibc.core.connection.v1.QueryConnectionClientStateResponse",
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()
};
}
};
function createBaseQueryConnectionConsensusStateRequest() {
return {
connectionId: "",
revisionNumber: BigInt(0),
revisionHeight: BigInt(0)
};
}
export const QueryConnectionConsensusStateRequest = {
typeUrl: "/ibc.core.connection.v1.QueryConnectionConsensusStateRequest",
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()
};
}
};
function createBaseQueryConnectionConsensusStateResponse() {
return {
consensusState: undefined,
clientId: "",
proof: new Uint8Array(),
proofHeight: Height.fromPartial({})
};
}
export const QueryConnectionConsensusStateResponse = {
typeUrl: "/ibc.core.connection.v1.QueryConnectionConsensusStateResponse",
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()
};
}
};