@bandprotocol/bandchain.js
Version:
TypeScript library for Cosmos SDK and BandChain
863 lines (862 loc) • 35.4 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.QueryConnectionConsensusStateResponse = exports.QueryConnectionConsensusStateRequest = exports.QueryConnectionClientStateResponse = exports.QueryConnectionClientStateRequest = exports.QueryClientConnectionsResponse = exports.QueryClientConnectionsRequest = exports.QueryConnectionsResponse = exports.QueryConnectionsRequest = exports.QueryConnectionResponse = exports.QueryConnectionRequest = void 0;
//@ts-nocheck
const pagination_1 = require("../../../../cosmos/base/query/v1beta1/pagination");
const connection_1 = require("./connection");
const client_1 = require("../../client/v1/client");
const any_1 = require("../../../../google/protobuf/any");
const binary_1 = require("../../../../binary");
const helpers_1 = require("../../../../helpers");
function createBaseQueryConnectionRequest() {
return {
connectionId: ""
};
}
exports.QueryConnectionRequest = {
typeUrl: "/ibc.core.connection.v1.QueryConnectionRequest",
encode(message, writer = binary_1.BinaryWriter.create()) {
if (message.connectionId !== "") {
writer.uint32(10).string(message.connectionId);
}
return writer;
},
decode(input, length) {
const reader = input instanceof binary_1.BinaryReader ? input : new binary_1.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 exports.QueryConnectionRequest.fromAmino(object.value);
},
toAminoMsg(message) {
return {
type: "cosmos-sdk/QueryConnectionRequest",
value: exports.QueryConnectionRequest.toAmino(message)
};
},
fromProtoMsg(message) {
return exports.QueryConnectionRequest.decode(message.value);
},
toProto(message) {
return exports.QueryConnectionRequest.encode(message).finish();
},
toProtoMsg(message) {
return {
typeUrl: "/ibc.core.connection.v1.QueryConnectionRequest",
value: exports.QueryConnectionRequest.encode(message).finish()
};
}
};
function createBaseQueryConnectionResponse() {
return {
connection: undefined,
proof: new Uint8Array(),
proofHeight: client_1.Height.fromPartial({})
};
}
exports.QueryConnectionResponse = {
typeUrl: "/ibc.core.connection.v1.QueryConnectionResponse",
encode(message, writer = binary_1.BinaryWriter.create()) {
if (message.connection !== undefined) {
connection_1.ConnectionEnd.encode(message.connection, writer.uint32(10).fork()).ldelim();
}
if (message.proof.length !== 0) {
writer.uint32(18).bytes(message.proof);
}
if (message.proofHeight !== undefined) {
client_1.Height.encode(message.proofHeight, writer.uint32(26).fork()).ldelim();
}
return writer;
},
decode(input, length) {
const reader = input instanceof binary_1.BinaryReader ? input : new binary_1.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 = connection_1.ConnectionEnd.decode(reader, reader.uint32());
break;
case 2:
message.proof = reader.bytes();
break;
case 3:
message.proofHeight = client_1.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 ? connection_1.ConnectionEnd.fromPartial(object.connection) : undefined;
message.proof = object.proof ?? new Uint8Array();
message.proofHeight = object.proofHeight !== undefined && object.proofHeight !== null ? client_1.Height.fromPartial(object.proofHeight) : undefined;
return message;
},
fromAmino(object) {
const message = createBaseQueryConnectionResponse();
if (object.connection !== undefined && object.connection !== null) {
message.connection = connection_1.ConnectionEnd.fromAmino(object.connection);
}
if (object.proof !== undefined && object.proof !== null) {
message.proof = (0, helpers_1.bytesFromBase64)(object.proof);
}
if (object.proof_height !== undefined && object.proof_height !== null) {
message.proofHeight = client_1.Height.fromAmino(object.proof_height);
}
return message;
},
toAmino(message) {
const obj = {};
obj.connection = message.connection ? connection_1.ConnectionEnd.toAmino(message.connection) : undefined;
obj.proof = message.proof ? (0, helpers_1.base64FromBytes)(message.proof) : undefined;
obj.proof_height = message.proofHeight ? client_1.Height.toAmino(message.proofHeight) : {};
return obj;
},
fromAminoMsg(object) {
return exports.QueryConnectionResponse.fromAmino(object.value);
},
toAminoMsg(message) {
return {
type: "cosmos-sdk/QueryConnectionResponse",
value: exports.QueryConnectionResponse.toAmino(message)
};
},
fromProtoMsg(message) {
return exports.QueryConnectionResponse.decode(message.value);
},
toProto(message) {
return exports.QueryConnectionResponse.encode(message).finish();
},
toProtoMsg(message) {
return {
typeUrl: "/ibc.core.connection.v1.QueryConnectionResponse",
value: exports.QueryConnectionResponse.encode(message).finish()
};
}
};
function createBaseQueryConnectionsRequest() {
return {
pagination: undefined
};
}
exports.QueryConnectionsRequest = {
typeUrl: "/ibc.core.connection.v1.QueryConnectionsRequest",
encode(message, writer = binary_1.BinaryWriter.create()) {
if (message.pagination !== undefined) {
pagination_1.PageRequest.encode(message.pagination, writer.uint32(10).fork()).ldelim();
}
return writer;
},
decode(input, length) {
const reader = input instanceof binary_1.BinaryReader ? input : new binary_1.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 = pagination_1.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 ? pagination_1.PageRequest.fromPartial(object.pagination) : undefined;
return message;
},
fromAmino(object) {
const message = createBaseQueryConnectionsRequest();
if (object.pagination !== undefined && object.pagination !== null) {
message.pagination = pagination_1.PageRequest.fromAmino(object.pagination);
}
return message;
},
toAmino(message) {
const obj = {};
obj.pagination = message.pagination ? pagination_1.PageRequest.toAmino(message.pagination) : undefined;
return obj;
},
fromAminoMsg(object) {
return exports.QueryConnectionsRequest.fromAmino(object.value);
},
toAminoMsg(message) {
return {
type: "cosmos-sdk/QueryConnectionsRequest",
value: exports.QueryConnectionsRequest.toAmino(message)
};
},
fromProtoMsg(message) {
return exports.QueryConnectionsRequest.decode(message.value);
},
toProto(message) {
return exports.QueryConnectionsRequest.encode(message).finish();
},
toProtoMsg(message) {
return {
typeUrl: "/ibc.core.connection.v1.QueryConnectionsRequest",
value: exports.QueryConnectionsRequest.encode(message).finish()
};
}
};
function createBaseQueryConnectionsResponse() {
return {
connections: [],
pagination: undefined,
height: client_1.Height.fromPartial({})
};
}
exports.QueryConnectionsResponse = {
typeUrl: "/ibc.core.connection.v1.QueryConnectionsResponse",
encode(message, writer = binary_1.BinaryWriter.create()) {
for (const v of message.connections) {
connection_1.IdentifiedConnection.encode(v, writer.uint32(10).fork()).ldelim();
}
if (message.pagination !== undefined) {
pagination_1.PageResponse.encode(message.pagination, writer.uint32(18).fork()).ldelim();
}
if (message.height !== undefined) {
client_1.Height.encode(message.height, writer.uint32(26).fork()).ldelim();
}
return writer;
},
decode(input, length) {
const reader = input instanceof binary_1.BinaryReader ? input : new binary_1.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(connection_1.IdentifiedConnection.decode(reader, reader.uint32()));
break;
case 2:
message.pagination = pagination_1.PageResponse.decode(reader, reader.uint32());
break;
case 3:
message.height = client_1.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 => connection_1.IdentifiedConnection.fromPartial(e)) || [];
message.pagination = object.pagination !== undefined && object.pagination !== null ? pagination_1.PageResponse.fromPartial(object.pagination) : undefined;
message.height = object.height !== undefined && object.height !== null ? client_1.Height.fromPartial(object.height) : undefined;
return message;
},
fromAmino(object) {
const message = createBaseQueryConnectionsResponse();
message.connections = object.connections?.map(e => connection_1.IdentifiedConnection.fromAmino(e)) || [];
if (object.pagination !== undefined && object.pagination !== null) {
message.pagination = pagination_1.PageResponse.fromAmino(object.pagination);
}
if (object.height !== undefined && object.height !== null) {
message.height = client_1.Height.fromAmino(object.height);
}
return message;
},
toAmino(message) {
const obj = {};
if (message.connections) {
obj.connections = message.connections.map(e => e ? connection_1.IdentifiedConnection.toAmino(e) : undefined);
}
else {
obj.connections = message.connections;
}
obj.pagination = message.pagination ? pagination_1.PageResponse.toAmino(message.pagination) : undefined;
obj.height = message.height ? client_1.Height.toAmino(message.height) : {};
return obj;
},
fromAminoMsg(object) {
return exports.QueryConnectionsResponse.fromAmino(object.value);
},
toAminoMsg(message) {
return {
type: "cosmos-sdk/QueryConnectionsResponse",
value: exports.QueryConnectionsResponse.toAmino(message)
};
},
fromProtoMsg(message) {
return exports.QueryConnectionsResponse.decode(message.value);
},
toProto(message) {
return exports.QueryConnectionsResponse.encode(message).finish();
},
toProtoMsg(message) {
return {
typeUrl: "/ibc.core.connection.v1.QueryConnectionsResponse",
value: exports.QueryConnectionsResponse.encode(message).finish()
};
}
};
function createBaseQueryClientConnectionsRequest() {
return {
clientId: ""
};
}
exports.QueryClientConnectionsRequest = {
typeUrl: "/ibc.core.connection.v1.QueryClientConnectionsRequest",
encode(message, writer = binary_1.BinaryWriter.create()) {
if (message.clientId !== "") {
writer.uint32(10).string(message.clientId);
}
return writer;
},
decode(input, length) {
const reader = input instanceof binary_1.BinaryReader ? input : new binary_1.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 exports.QueryClientConnectionsRequest.fromAmino(object.value);
},
toAminoMsg(message) {
return {
type: "cosmos-sdk/QueryClientConnectionsRequest",
value: exports.QueryClientConnectionsRequest.toAmino(message)
};
},
fromProtoMsg(message) {
return exports.QueryClientConnectionsRequest.decode(message.value);
},
toProto(message) {
return exports.QueryClientConnectionsRequest.encode(message).finish();
},
toProtoMsg(message) {
return {
typeUrl: "/ibc.core.connection.v1.QueryClientConnectionsRequest",
value: exports.QueryClientConnectionsRequest.encode(message).finish()
};
}
};
function createBaseQueryClientConnectionsResponse() {
return {
connectionPaths: [],
proof: new Uint8Array(),
proofHeight: client_1.Height.fromPartial({})
};
}
exports.QueryClientConnectionsResponse = {
typeUrl: "/ibc.core.connection.v1.QueryClientConnectionsResponse",
encode(message, writer = binary_1.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) {
client_1.Height.encode(message.proofHeight, writer.uint32(26).fork()).ldelim();
}
return writer;
},
decode(input, length) {
const reader = input instanceof binary_1.BinaryReader ? input : new binary_1.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 = client_1.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 ? client_1.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 = (0, helpers_1.bytesFromBase64)(object.proof);
}
if (object.proof_height !== undefined && object.proof_height !== null) {
message.proofHeight = client_1.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 ? (0, helpers_1.base64FromBytes)(message.proof) : undefined;
obj.proof_height = message.proofHeight ? client_1.Height.toAmino(message.proofHeight) : {};
return obj;
},
fromAminoMsg(object) {
return exports.QueryClientConnectionsResponse.fromAmino(object.value);
},
toAminoMsg(message) {
return {
type: "cosmos-sdk/QueryClientConnectionsResponse",
value: exports.QueryClientConnectionsResponse.toAmino(message)
};
},
fromProtoMsg(message) {
return exports.QueryClientConnectionsResponse.decode(message.value);
},
toProto(message) {
return exports.QueryClientConnectionsResponse.encode(message).finish();
},
toProtoMsg(message) {
return {
typeUrl: "/ibc.core.connection.v1.QueryClientConnectionsResponse",
value: exports.QueryClientConnectionsResponse.encode(message).finish()
};
}
};
function createBaseQueryConnectionClientStateRequest() {
return {
connectionId: ""
};
}
exports.QueryConnectionClientStateRequest = {
typeUrl: "/ibc.core.connection.v1.QueryConnectionClientStateRequest",
encode(message, writer = binary_1.BinaryWriter.create()) {
if (message.connectionId !== "") {
writer.uint32(10).string(message.connectionId);
}
return writer;
},
decode(input, length) {
const reader = input instanceof binary_1.BinaryReader ? input : new binary_1.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 exports.QueryConnectionClientStateRequest.fromAmino(object.value);
},
toAminoMsg(message) {
return {
type: "cosmos-sdk/QueryConnectionClientStateRequest",
value: exports.QueryConnectionClientStateRequest.toAmino(message)
};
},
fromProtoMsg(message) {
return exports.QueryConnectionClientStateRequest.decode(message.value);
},
toProto(message) {
return exports.QueryConnectionClientStateRequest.encode(message).finish();
},
toProtoMsg(message) {
return {
typeUrl: "/ibc.core.connection.v1.QueryConnectionClientStateRequest",
value: exports.QueryConnectionClientStateRequest.encode(message).finish()
};
}
};
function createBaseQueryConnectionClientStateResponse() {
return {
identifiedClientState: undefined,
proof: new Uint8Array(),
proofHeight: client_1.Height.fromPartial({})
};
}
exports.QueryConnectionClientStateResponse = {
typeUrl: "/ibc.core.connection.v1.QueryConnectionClientStateResponse",
encode(message, writer = binary_1.BinaryWriter.create()) {
if (message.identifiedClientState !== undefined) {
client_1.IdentifiedClientState.encode(message.identifiedClientState, writer.uint32(10).fork()).ldelim();
}
if (message.proof.length !== 0) {
writer.uint32(18).bytes(message.proof);
}
if (message.proofHeight !== undefined) {
client_1.Height.encode(message.proofHeight, writer.uint32(26).fork()).ldelim();
}
return writer;
},
decode(input, length) {
const reader = input instanceof binary_1.BinaryReader ? input : new binary_1.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 = client_1.IdentifiedClientState.decode(reader, reader.uint32());
break;
case 2:
message.proof = reader.bytes();
break;
case 3:
message.proofHeight = client_1.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 ? client_1.IdentifiedClientState.fromPartial(object.identifiedClientState) : undefined;
message.proof = object.proof ?? new Uint8Array();
message.proofHeight = object.proofHeight !== undefined && object.proofHeight !== null ? client_1.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 = client_1.IdentifiedClientState.fromAmino(object.identified_client_state);
}
if (object.proof !== undefined && object.proof !== null) {
message.proof = (0, helpers_1.bytesFromBase64)(object.proof);
}
if (object.proof_height !== undefined && object.proof_height !== null) {
message.proofHeight = client_1.Height.fromAmino(object.proof_height);
}
return message;
},
toAmino(message) {
const obj = {};
obj.identified_client_state = message.identifiedClientState ? client_1.IdentifiedClientState.toAmino(message.identifiedClientState) : undefined;
obj.proof = message.proof ? (0, helpers_1.base64FromBytes)(message.proof) : undefined;
obj.proof_height = message.proofHeight ? client_1.Height.toAmino(message.proofHeight) : {};
return obj;
},
fromAminoMsg(object) {
return exports.QueryConnectionClientStateResponse.fromAmino(object.value);
},
toAminoMsg(message) {
return {
type: "cosmos-sdk/QueryConnectionClientStateResponse",
value: exports.QueryConnectionClientStateResponse.toAmino(message)
};
},
fromProtoMsg(message) {
return exports.QueryConnectionClientStateResponse.decode(message.value);
},
toProto(message) {
return exports.QueryConnectionClientStateResponse.encode(message).finish();
},
toProtoMsg(message) {
return {
typeUrl: "/ibc.core.connection.v1.QueryConnectionClientStateResponse",
value: exports.QueryConnectionClientStateResponse.encode(message).finish()
};
}
};
function createBaseQueryConnectionConsensusStateRequest() {
return {
connectionId: "",
revisionNumber: BigInt(0),
revisionHeight: BigInt(0)
};
}
exports.QueryConnectionConsensusStateRequest = {
typeUrl: "/ibc.core.connection.v1.QueryConnectionConsensusStateRequest",
encode(message, writer = binary_1.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 binary_1.BinaryReader ? input : new binary_1.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 exports.QueryConnectionConsensusStateRequest.fromAmino(object.value);
},
toAminoMsg(message) {
return {
type: "cosmos-sdk/QueryConnectionConsensusStateRequest",
value: exports.QueryConnectionConsensusStateRequest.toAmino(message)
};
},
fromProtoMsg(message) {
return exports.QueryConnectionConsensusStateRequest.decode(message.value);
},
toProto(message) {
return exports.QueryConnectionConsensusStateRequest.encode(message).finish();
},
toProtoMsg(message) {
return {
typeUrl: "/ibc.core.connection.v1.QueryConnectionConsensusStateRequest",
value: exports.QueryConnectionConsensusStateRequest.encode(message).finish()
};
}
};
function createBaseQueryConnectionConsensusStateResponse() {
return {
consensusState: undefined,
clientId: "",
proof: new Uint8Array(),
proofHeight: client_1.Height.fromPartial({})
};
}
exports.QueryConnectionConsensusStateResponse = {
typeUrl: "/ibc.core.connection.v1.QueryConnectionConsensusStateResponse",
encode(message, writer = binary_1.BinaryWriter.create()) {
if (message.consensusState !== undefined) {
any_1.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) {
client_1.Height.encode(message.proofHeight, writer.uint32(34).fork()).ldelim();
}
return writer;
},
decode(input, length) {
const reader = input instanceof binary_1.BinaryReader ? input : new binary_1.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_1.Any.decode(reader, reader.uint32());
break;
case 2:
message.clientId = reader.string();
break;
case 3:
message.proof = reader.bytes();
break;
case 4:
message.proofHeight = client_1.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_1.Any.fromPartial(object.consensusState) : undefined;
message.clientId = object.clientId ?? "";
message.proof = object.proof ?? new Uint8Array();
message.proofHeight = object.proofHeight !== undefined && object.proofHeight !== null ? client_1.Height.fromPartial(object.proofHeight) : undefined;
return message;
},
fromAmino(object) {
const message = createBaseQueryConnectionConsensusStateResponse();
if (object.consensus_state !== undefined && object.consensus_state !== null) {
message.consensusState = any_1.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 = (0, helpers_1.bytesFromBase64)(object.proof);
}
if (object.proof_height !== undefined && object.proof_height !== null) {
message.proofHeight = client_1.Height.fromAmino(object.proof_height);
}
return message;
},
toAmino(message) {
const obj = {};
obj.consensus_state = message.consensusState ? any_1.Any.toAmino(message.consensusState) : undefined;
obj.client_id = message.clientId === "" ? undefined : message.clientId;
obj.proof = message.proof ? (0, helpers_1.base64FromBytes)(message.proof) : undefined;
obj.proof_height = message.proofHeight ? client_1.Height.toAmino(message.proofHeight) : {};
return obj;
},
fromAminoMsg(object) {
return exports.QueryConnectionConsensusStateResponse.fromAmino(object.value);
},
toAminoMsg(message) {
return {
type: "cosmos-sdk/QueryConnectionConsensusStateResponse",
value: exports.QueryConnectionConsensusStateResponse.toAmino(message)
};
},
fromProtoMsg(message) {
return exports.QueryConnectionConsensusStateResponse.decode(message.value);
},
toProto(message) {
return exports.QueryConnectionConsensusStateResponse.encode(message).finish();
},
toProtoMsg(message) {
return {
typeUrl: "/ibc.core.connection.v1.QueryConnectionConsensusStateResponse",
value: exports.QueryConnectionConsensusStateResponse.encode(message).finish()
};
}
};