"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.HeaderData = exports.SignBytes = exports.TimestampedSignatureData = exports.SignatureAndData = exports.Misbehaviour = exports.Header = exports.ConsensusState = exports.ClientState = void 0;
//@ts-nocheck
const any_1 = require("../../../../google/protobuf/any");
const binary_1 = require("../../../../binary");
const registry_1 = require("../../../../registry");
const helpers_1 = require("../../../../helpers");
function createBaseClientState() {
return {
sequence: BigInt(0),
isFrozen: false,
consensusState: undefined
};
}
exports.ClientState = {
typeUrl: "/ibc.lightclients.solomachine.v3.ClientState",
aminoType: "cosmos-sdk/ClientState",
is(o) {
return o && (o.$typeUrl === exports.ClientState.typeUrl || typeof o.sequence === "bigint" && typeof o.isFrozen === "boolean");
},
isSDK(o) {
return o && (o.$typeUrl === exports.ClientState.typeUrl || typeof o.sequence === "bigint" && typeof o.is_frozen === "boolean");
},
isAmino(o) {
return o && (o.$typeUrl === exports.ClientState.typeUrl || typeof o.sequence === "bigint" && typeof o.is_frozen === "boolean");
},
encode(message, writer = binary_1.BinaryWriter.create()) {
if (message.sequence !== BigInt(0)) {
writer.uint32(8).uint64(message.sequence);
}
if (message.isFrozen === true) {
writer.uint32(16).bool(message.isFrozen);
}
if (message.consensusState !== undefined) {
exports.ConsensusState.encode(message.consensusState, 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 = createBaseClientState();
while (reader.pos < end) {
const tag = reader.uint32();
switch (tag >>> 3) {
case 1:
message.sequence = reader.uint64();
break;
case 2:
message.isFrozen = reader.bool();
break;
case 3:
message.consensusState = exports.ConsensusState.decode(reader, reader.uint32());
break;
default:
reader.skipType(tag & 7);
break;
}
}
return message;
},
fromPartial(object) {
const message = createBaseClientState();
message.sequence = object.sequence !== undefined && object.sequence !== null ? BigInt(object.sequence.toString()) : BigInt(0);
message.isFrozen = object.isFrozen ?? false;
message.consensusState = object.consensusState !== undefined && object.consensusState !== null ? exports.ConsensusState.fromPartial(object.consensusState) : undefined;
return message;
},
fromAmino(object) {
const message = createBaseClientState();
if (object.sequence !== undefined && object.sequence !== null) {
message.sequence = BigInt(object.sequence);
}
if (object.is_frozen !== undefined && object.is_frozen !== null) {
message.isFrozen = object.is_frozen;
}
if (object.consensus_state !== undefined && object.consensus_state !== null) {
message.consensusState = exports.ConsensusState.fromAmino(object.consensus_state);
}
return message;
},
toAmino(message) {
const obj = {};
obj.sequence = message.sequence !== BigInt(0) ? message.sequence.toString() : undefined;
obj.is_frozen = message.isFrozen === false ? undefined : message.isFrozen;
obj.consensus_state = message.consensusState ? exports.ConsensusState.toAmino(message.consensusState) : undefined;
return obj;
},
fromAminoMsg(object) {
return exports.ClientState.fromAmino(object.value);
},
toAminoMsg(message) {
return {
type: "cosmos-sdk/ClientState",
value: exports.ClientState.toAmino(message)
};
},
fromProtoMsg(message) {
return exports.ClientState.decode(message.value);
},
toProto(message) {
return exports.ClientState.encode(message).finish();
},
toProtoMsg(message) {
return {
typeUrl: "/ibc.lightclients.solomachine.v3.ClientState",
value: exports.ClientState.encode(message).finish()
};
}
};
registry_1.GlobalDecoderRegistry.register(exports.ClientState.typeUrl, exports.ClientState);
registry_1.GlobalDecoderRegistry.registerAminoProtoMapping(exports.ClientState.aminoType, exports.ClientState.typeUrl);
function createBaseConsensusState() {
return {
publicKey: undefined,
diversifier: "",
timestamp: BigInt(0)
};
}
exports.ConsensusState = {
typeUrl: "/ibc.lightclients.solomachine.v3.ConsensusState",
aminoType: "cosmos-sdk/ConsensusState",
is(o) {
return o && (o.$typeUrl === exports.ConsensusState.typeUrl || typeof o.diversifier === "string" && typeof o.timestamp === "bigint");
},
isSDK(o) {
return o && (o.$typeUrl === exports.ConsensusState.typeUrl || typeof o.diversifier === "string" && typeof o.timestamp === "bigint");
},
isAmino(o) {
return o && (o.$typeUrl === exports.ConsensusState.typeUrl || typeof o.diversifier === "string" && typeof o.timestamp === "bigint");
},
encode(message, writer = binary_1.BinaryWriter.create()) {
if (message.publicKey !== undefined) {
any_1.Any.encode(message.publicKey, writer.uint32(10).fork()).ldelim();
}
if (message.diversifier !== "") {
writer.uint32(18).string(message.diversifier);
}
if (message.timestamp !== BigInt(0)) {
writer.uint32(24).uint64(message.timestamp);
}
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 = createBaseConsensusState();
while (reader.pos < end) {
const tag = reader.uint32();
switch (tag >>> 3) {
case 1:
message.publicKey = any_1.Any.decode(reader, reader.uint32());
break;
case 2:
message.diversifier = reader.string();
break;
case 3:
message.timestamp = reader.uint64();
break;
default:
reader.skipType(tag & 7);
break;
}
}
return message;
},
fromPartial(object) {
const message = createBaseConsensusState();
message.publicKey = object.publicKey !== undefined && object.publicKey !== null ? any_1.Any.fromPartial(object.publicKey) : undefined;
message.diversifier = object.diversifier ?? "";
message.timestamp = object.timestamp !== undefined && object.timestamp !== null ? BigInt(object.timestamp.toString()) : BigInt(0);
return message;
},
fromAmino(object) {
const message = createBaseConsensusState();
if (object.public_key !== undefined && object.public_key !== null) {
message.publicKey = any_1.Any.fromAmino(object.public_key);
}
if (object.diversifier !== undefined && object.diversifier !== null) {
message.diversifier = object.diversifier;
}
if (object.timestamp !== undefined && object.timestamp !== null) {
message.timestamp = BigInt(object.timestamp);
}
return message;
},
toAmino(message) {
const obj = {};
obj.public_key = message.publicKey ? any_1.Any.toAmino(message.publicKey) : undefined;
obj.diversifier = message.diversifier === "" ? undefined : message.diversifier;
obj.timestamp = message.timestamp !== BigInt(0) ? message.timestamp.toString() : undefined;
return obj;
},
fromAminoMsg(object) {
return exports.ConsensusState.fromAmino(object.value);
},
toAminoMsg(message) {
return {
type: "cosmos-sdk/ConsensusState",
value: exports.ConsensusState.toAmino(message)
};
},
fromProtoMsg(message) {
return exports.ConsensusState.decode(message.value);
},
toProto(message) {
return exports.ConsensusState.encode(message).finish();
},
toProtoMsg(message) {
return {
typeUrl: "/ibc.lightclients.solomachine.v3.ConsensusState",
value: exports.ConsensusState.encode(message).finish()
};
}
};
registry_1.GlobalDecoderRegistry.register(exports.ConsensusState.typeUrl, exports.ConsensusState);
registry_1.GlobalDecoderRegistry.registerAminoProtoMapping(exports.ConsensusState.aminoType, exports.ConsensusState.typeUrl);
function createBaseHeader() {
return {
timestamp: BigInt(0),
signature: new Uint8Array(),
newPublicKey: undefined,
newDiversifier: ""
};
}
exports.Header = {
typeUrl: "/ibc.lightclients.solomachine.v3.Header",
aminoType: "cosmos-sdk/Header",
is(o) {
return o && (o.$typeUrl === exports.Header.typeUrl || typeof o.timestamp === "bigint" && (o.signature instanceof Uint8Array || typeof o.signature === "string") && typeof o.newDiversifier === "string");
},
isSDK(o) {
return o && (o.$typeUrl === exports.Header.typeUrl || typeof o.timestamp === "bigint" && (o.signature instanceof Uint8Array || typeof o.signature === "string") && typeof o.new_diversifier === "string");
},
isAmino(o) {
return o && (o.$typeUrl === exports.Header.typeUrl || typeof o.timestamp === "bigint" && (o.signature instanceof Uint8Array || typeof o.signature === "string") && typeof o.new_diversifier === "string");
},
encode(message, writer = binary_1.BinaryWriter.create()) {
if (message.timestamp !== BigInt(0)) {
writer.uint32(8).uint64(message.timestamp);
}
if (message.signature.length !== 0) {
writer.uint32(18).bytes(message.signature);
}
if (message.newPublicKey !== undefined) {
any_1.Any.encode(message.newPublicKey, writer.uint32(26).fork()).ldelim();
}
if (message.newDiversifier !== "") {
writer.uint32(34).string(message.newDiversifier);
}
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 = createBaseHeader();
while (reader.pos < end) {
const tag = reader.uint32();
switch (tag >>> 3) {
case 1:
message.timestamp = reader.uint64();
break;
case 2:
message.signature = reader.bytes();
break;
case 3:
message.newPublicKey = any_1.Any.decode(reader, reader.uint32());
break;
case 4:
message.newDiversifier = reader.string();
break;
default:
reader.skipType(tag & 7);
break;
}
}
return message;
},
fromPartial(object) {
const message = createBaseHeader();
message.timestamp = object.timestamp !== undefined && object.timestamp !== null ? BigInt(object.timestamp.toString()) : BigInt(0);
message.signature = object.signature ?? new Uint8Array();
message.newPublicKey = object.newPublicKey !== undefined && object.newPublicKey !== null ? any_1.Any.fromPartial(object.newPublicKey) : undefined;
message.newDiversifier = object.newDiversifier ?? "";
return message;
},
fromAmino(object) {
const message = createBaseHeader();
if (object.timestamp !== undefined && object.timestamp !== null) {
message.timestamp = BigInt(object.timestamp);
}
if (object.signature !== undefined && object.signature !== null) {
message.signature = (0, helpers_1.bytesFromBase64)(object.signature);
}
if (object.new_public_key !== undefined && object.new_public_key !== null) {
message.newPublicKey = any_1.Any.fromAmino(object.new_public_key);
}
if (object.new_diversifier !== undefined && object.new_diversifier !== null) {
message.newDiversifier = object.new_diversifier;
}
return message;
},
toAmino(message) {
const obj = {};
obj.timestamp = message.timestamp !== BigInt(0) ? message.timestamp.toString() : undefined;
obj.signature = message.signature ? (0, helpers_1.base64FromBytes)(message.signature) : undefined;
obj.new_public_key = message.newPublicKey ? any_1.Any.toAmino(message.newPublicKey) : undefined;
obj.new_diversifier = message.newDiversifier === "" ? undefined : message.newDiversifier;
return obj;
},
fromAminoMsg(object) {
return exports.Header.fromAmino(object.value);
},
toAminoMsg(message) {
return {
type: "cosmos-sdk/Header",
value: exports.Header.toAmino(message)
};
},
fromProtoMsg(message) {
return exports.Header.decode(message.value);
},
toProto(message) {
return exports.Header.encode(message).finish();
},
toProtoMsg(message) {
return {
typeUrl: "/ibc.lightclients.solomachine.v3.Header",
value: exports.Header.encode(message).finish()
};
}
};
registry_1.GlobalDecoderRegistry.register(exports.Header.typeUrl, exports.Header);
registry_1.GlobalDecoderRegistry.registerAminoProtoMapping(exports.Header.aminoType, exports.Header.typeUrl);
function createBaseMisbehaviour() {
return {
sequence: BigInt(0),
signatureOne: undefined,
signatureTwo: undefined
};
}
exports.Misbehaviour = {
typeUrl: "/ibc.lightclients.solomachine.v3.Misbehaviour",
aminoType: "cosmos-sdk/Misbehaviour",
is(o) {
return o && (o.$typeUrl === exports.Misbehaviour.typeUrl || typeof o.sequence === "bigint");
},
isSDK(o) {
return o && (o.$typeUrl === exports.Misbehaviour.typeUrl || typeof o.sequence === "bigint");
},
isAmino(o) {
return o && (o.$typeUrl === exports.Misbehaviour.typeUrl || typeof o.sequence === "bigint");
},
encode(message, writer = binary_1.BinaryWriter.create()) {
if (message.sequence !== BigInt(0)) {
writer.uint32(8).uint64(message.sequence);
}
if (message.signatureOne !== undefined) {
exports.SignatureAndData.encode(message.signatureOne, writer.uint32(18).fork()).ldelim();
}
if (message.signatureTwo !== undefined) {
exports.SignatureAndData.encode(message.signatureTwo, 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 = createBaseMisbehaviour();
while (reader.pos < end) {
const tag = reader.uint32();
switch (tag >>> 3) {
case 1:
message.sequence = reader.uint64();
break;
case 2:
message.signatureOne = exports.SignatureAndData.decode(reader, reader.uint32());
break;
case 3:
message.signatureTwo = exports.SignatureAndData.decode(reader, reader.uint32());
break;
default:
reader.skipType(tag & 7);
break;
}
}
return message;
},
fromPartial(object) {
const message = createBaseMisbehaviour();
message.sequence = object.sequence !== undefined && object.sequence !== null ? BigInt(object.sequence.toString()) : BigInt(0);
message.signatureOne = object.signatureOne !== undefined && object.signatureOne !== null ? exports.SignatureAndData.fromPartial(object.signatureOne) : undefined;
message.signatureTwo = object.signatureTwo !== undefined && object.signatureTwo !== null ? exports.SignatureAndData.fromPartial(object.signatureTwo) : undefined;
return message;
},
fromAmino(object) {
const message = createBaseMisbehaviour();
if (object.sequence !== undefined && object.sequence !== null) {
message.sequence = BigInt(object.sequence);
}
if (object.signature_one !== undefined && object.signature_one !== null) {
message.signatureOne = exports.SignatureAndData.fromAmino(object.signature_one);
}
if (object.signature_two !== undefined && object.signature_two !== null) {
message.signatureTwo = exports.SignatureAndData.fromAmino(object.signature_two);
}
return message;
},
toAmino(message) {
const obj = {};
obj.sequence = message.sequence !== BigInt(0) ? message.sequence.toString() : undefined;
obj.signature_one = message.signatureOne ? exports.SignatureAndData.toAmino(message.signatureOne) : undefined;
obj.signature_two = message.signatureTwo ? exports.SignatureAndData.toAmino(message.signatureTwo) : undefined;
return obj;
},
fromAminoMsg(object) {
return exports.Misbehaviour.fromAmino(object.value);
},
toAminoMsg(message) {
return {
type: "cosmos-sdk/Misbehaviour",
value: exports.Misbehaviour.toAmino(message)
};
},
fromProtoMsg(message) {
return exports.Misbehaviour.decode(message.value);
},
toProto(message) {
return exports.Misbehaviour.encode(message).finish();
},
toProtoMsg(message) {
return {
typeUrl: "/ibc.lightclients.solomachine.v3.Misbehaviour",
value: exports.Misbehaviour.encode(message).finish()
};
}
};
registry_1.GlobalDecoderRegistry.register(exports.Misbehaviour.typeUrl, exports.Misbehaviour);
registry_1.GlobalDecoderRegistry.registerAminoProtoMapping(exports.Misbehaviour.aminoType, exports.Misbehaviour.typeUrl);
function createBaseSignatureAndData() {
return {
signature: new Uint8Array(),
path: new Uint8Array(),
data: new Uint8Array(),
timestamp: BigInt(0)
};
}
exports.SignatureAndData = {
typeUrl: "/ibc.lightclients.solomachine.v3.SignatureAndData",
aminoType: "cosmos-sdk/SignatureAndData",
is(o) {
return o && (o.$typeUrl === exports.SignatureAndData.typeUrl || (o.signature instanceof Uint8Array || typeof o.signature === "string") && (o.path instanceof Uint8Array || typeof o.path === "string") && (o.data instanceof Uint8Array || typeof o.data === "string") && typeof o.timestamp === "bigint");
},
isSDK(o) {
return o && (o.$typeUrl === exports.SignatureAndData.typeUrl || (o.signature instanceof Uint8Array || typeof o.signature === "string") && (o.path instanceof Uint8Array || typeof o.path === "string") && (o.data instanceof Uint8Array || typeof o.data === "string") && typeof o.timestamp === "bigint");
},
isAmino(o) {
return o && (o.$typeUrl === exports.SignatureAndData.typeUrl || (o.signature instanceof Uint8Array || typeof o.signature === "string") && (o.path instanceof Uint8Array || typeof o.path === "string") && (o.data instanceof Uint8Array || typeof o.data === "string") && typeof o.timestamp === "bigint");
},
encode(message, writer = binary_1.BinaryWriter.create()) {
if (message.signature.length !== 0) {
writer.uint32(10).bytes(message.signature);
}
if (message.path.length !== 0) {
writer.uint32(18).bytes(message.path);
}
if (message.data.length !== 0) {
writer.uint32(26).bytes(message.data);
}
if (message.timestamp !== BigInt(0)) {
writer.uint32(32).uint64(message.timestamp);
}
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 = createBaseSignatureAndData();
while (reader.pos < end) {
const tag = reader.uint32();
switch (tag >>> 3) {
case 1:
message.signature = reader.bytes();
break;
case 2:
message.path = reader.bytes();
break;
case 3:
message.data = reader.bytes();
break;
case 4:
message.timestamp = reader.uint64();
break;
default:
reader.skipType(tag & 7);
break;
}
}
return message;
},
fromPartial(object) {
const message = createBaseSignatureAndData();
message.signature = object.signature ?? new Uint8Array();
message.path = object.path ?? new Uint8Array();
message.data = object.data ?? new Uint8Array();
message.timestamp = object.timestamp !== undefined && object.timestamp !== null ? BigInt(object.timestamp.toString()) : BigInt(0);
return message;
},
fromAmino(object) {
const message = createBaseSignatureAndData();
if (object.signature !== undefined && object.signature !== null) {
message.signature = (0, helpers_1.bytesFromBase64)(object.signature);
}
if (object.path !== undefined && object.path !== null) {
message.path = (0, helpers_1.bytesFromBase64)(object.path);
}
if (object.data !== undefined && object.data !== null) {
message.data = (0, helpers_1.bytesFromBase64)(object.data);
}
if (object.timestamp !== undefined && object.timestamp !== null) {
message.timestamp = BigInt(object.timestamp);
}
return message;
},
toAmino(message) {
const obj = {};
obj.signature = message.signature ? (0, helpers_1.base64FromBytes)(message.signature) : undefined;
obj.path = message.path ? (0, helpers_1.base64FromBytes)(message.path) : undefined;
obj.data = message.data ? (0, helpers_1.base64FromBytes)(message.data) : undefined;
obj.timestamp = message.timestamp !== BigInt(0) ? message.timestamp.toString() : undefined;
return obj;
},
fromAminoMsg(object) {
return exports.SignatureAndData.fromAmino(object.value);
},
toAminoMsg(message) {
return {
type: "cosmos-sdk/SignatureAndData",
value: exports.SignatureAndData.toAmino(message)
};
},
fromProtoMsg(message) {
return exports.SignatureAndData.decode(message.value);
},
toProto(message) {
return exports.SignatureAndData.encode(message).finish();
},
toProtoMsg(message) {
return {
typeUrl: "/ibc.lightclients.solomachine.v3.SignatureAndData",
value: exports.SignatureAndData.encode(message).finish()
};
}
};
registry_1.GlobalDecoderRegistry.register(exports.SignatureAndData.typeUrl, exports.SignatureAndData);
registry_1.GlobalDecoderRegistry.registerAminoProtoMapping(exports.SignatureAndData.aminoType, exports.SignatureAndData.typeUrl);
function createBaseTimestampedSignatureData() {
return {
signatureData: new Uint8Array(),
timestamp: BigInt(0)
};
}
exports.TimestampedSignatureData = {
typeUrl: "/ibc.lightclients.solomachine.v3.TimestampedSignatureData",
aminoType: "cosmos-sdk/TimestampedSignatureData",
is(o) {
return o && (o.$typeUrl === exports.TimestampedSignatureData.typeUrl || (o.signatureData instanceof Uint8Array || typeof o.signatureData === "string") && typeof o.timestamp === "bigint");
},
isSDK(o) {
return o && (o.$typeUrl === exports.TimestampedSignatureData.typeUrl || (o.signature_data instanceof Uint8Array || typeof o.signature_data === "string") && typeof o.timestamp === "bigint");
},
isAmino(o) {
return o && (o.$typeUrl === exports.TimestampedSignatureData.typeUrl || (o.signature_data instanceof Uint8Array || typeof o.signature_data === "string") && typeof o.timestamp === "bigint");
},
encode(message, writer = binary_1.BinaryWriter.create()) {
if (message.signatureData.length !== 0) {
writer.uint32(10).bytes(message.signatureData);
}
if (message.timestamp !== BigInt(0)) {
writer.uint32(16).uint64(message.timestamp);
}
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 = createBaseTimestampedSignatureData();
while (reader.pos < end) {
const tag = reader.uint32();
switch (tag >>> 3) {
case 1:
message.signatureData = reader.bytes();
break;
case 2:
message.timestamp = reader.uint64();
break;
default:
reader.skipType(tag & 7);
break;
}
}
return message;
},
fromPartial(object) {
const message = createBaseTimestampedSignatureData();
message.signatureData = object.signatureData ?? new Uint8Array();
message.timestamp = object.timestamp !== undefined && object.timestamp !== null ? BigInt(object.timestamp.toString()) : BigInt(0);
return message;
},
fromAmino(object) {
const message = createBaseTimestampedSignatureData();
if (object.signature_data !== undefined && object.signature_data !== null) {
message.signatureData = (0, helpers_1.bytesFromBase64)(object.signature_data);
}
if (object.timestamp !== undefined && object.timestamp !== null) {
message.timestamp = BigInt(object.timestamp);
}
return message;
},
toAmino(message) {
const obj = {};
obj.signature_data = message.signatureData ? (0, helpers_1.base64FromBytes)(message.signatureData) : undefined;
obj.timestamp = message.timestamp !== BigInt(0) ? message.timestamp.toString() : undefined;
return obj;
},
fromAminoMsg(object) {
return exports.TimestampedSignatureData.fromAmino(object.value);
},
toAminoMsg(message) {
return {
type: "cosmos-sdk/TimestampedSignatureData",
value: exports.TimestampedSignatureData.toAmino(message)
};
},
fromProtoMsg(message) {
return exports.TimestampedSignatureData.decode(message.value);
},
toProto(message) {
return exports.TimestampedSignatureData.encode(message).finish();
},
toProtoMsg(message) {
return {
typeUrl: "/ibc.lightclients.solomachine.v3.TimestampedSignatureData",
value: exports.TimestampedSignatureData.encode(message).finish()
};
}
};
registry_1.GlobalDecoderRegistry.register(exports.TimestampedSignatureData.typeUrl, exports.TimestampedSignatureData);
registry_1.GlobalDecoderRegistry.registerAminoProtoMapping(exports.TimestampedSignatureData.aminoType, exports.TimestampedSignatureData.typeUrl);
function createBaseSignBytes() {
return {
sequence: BigInt(0),
timestamp: BigInt(0),
diversifier: "",
path: new Uint8Array(),
data: new Uint8Array()
};
}
exports.SignBytes = {
typeUrl: "/ibc.lightclients.solomachine.v3.SignBytes",
aminoType: "cosmos-sdk/SignBytes",
is(o) {
return o && (o.$typeUrl === exports.SignBytes.typeUrl || typeof o.sequence === "bigint" && typeof o.timestamp === "bigint" && typeof o.diversifier === "string" && (o.path instanceof Uint8Array || typeof o.path === "string") && (o.data instanceof Uint8Array || typeof o.data === "string"));
},
isSDK(o) {
return o && (o.$typeUrl === exports.SignBytes.typeUrl || typeof o.sequence === "bigint" && typeof o.timestamp === "bigint" && typeof o.diversifier === "string" && (o.path instanceof Uint8Array || typeof o.path === "string") && (o.data instanceof Uint8Array || typeof o.data === "string"));
},
isAmino(o) {
return o && (o.$typeUrl === exports.SignBytes.typeUrl || typeof o.sequence === "bigint" && typeof o.timestamp === "bigint" && typeof o.diversifier === "string" && (o.path instanceof Uint8Array || typeof o.path === "string") && (o.data instanceof Uint8Array || typeof o.data === "string"));
},
encode(message, writer = binary_1.BinaryWriter.create()) {
if (message.sequence !== BigInt(0)) {
writer.uint32(8).uint64(message.sequence);
}
if (message.timestamp !== BigInt(0)) {
writer.uint32(16).uint64(message.timestamp);
}
if (message.diversifier !== "") {
writer.uint32(26).string(message.diversifier);
}
if (message.path.length !== 0) {
writer.uint32(34).bytes(message.path);
}
if (message.data.length !== 0) {
writer.uint32(42).bytes(message.data);
}
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 = createBaseSignBytes();
while (reader.pos < end) {
const tag = reader.uint32();
switch (tag >>> 3) {
case 1:
message.sequence = reader.uint64();
break;
case 2:
message.timestamp = reader.uint64();
break;
case 3:
message.diversifier = reader.string();
break;
case 4:
message.path = reader.bytes();
break;
case 5:
message.data = reader.bytes();
break;
default:
reader.skipType(tag & 7);
break;
}
}
return message;
},
fromPartial(object) {
const message = createBaseSignBytes();
message.sequence = object.sequence !== undefined && object.sequence !== null ? BigInt(object.sequence.toString()) : BigInt(0);
message.timestamp = object.timestamp !== undefined && object.timestamp !== null ? BigInt(object.timestamp.toString()) : BigInt(0);
message.diversifier = object.diversifier ?? "";
message.path = object.path ?? new Uint8Array();
message.data = object.data ?? new Uint8Array();
return message;
},
fromAmino(object) {
const message = createBaseSignBytes();
if (object.sequence !== undefined && object.sequence !== null) {
message.sequence = BigInt(object.sequence);
}
if (object.timestamp !== undefined && object.timestamp !== null) {
message.timestamp = BigInt(object.timestamp);
}
if (object.diversifier !== undefined && object.diversifier !== null) {
message.diversifier = object.diversifier;
}
if (object.path !== undefined && object.path !== null) {
message.path = (0, helpers_1.bytesFromBase64)(object.path);
}
if (object.data !== undefined && object.data !== null) {
message.data = (0, helpers_1.bytesFromBase64)(object.data);
}
return message;
},
toAmino(message) {
const obj = {};
obj.sequence = message.sequence !== BigInt(0) ? message.sequence.toString() : undefined;
obj.timestamp = message.timestamp !== BigInt(0) ? message.timestamp.toString() : undefined;
obj.diversifier = message.diversifier === "" ? undefined : message.diversifier;
obj.path = message.path ? (0, helpers_1.base64FromBytes)(message.path) : undefined;
obj.data = message.data ? (0, helpers_1.base64FromBytes)(message.data) : undefined;
return obj;
},
fromAminoMsg(object) {
return exports.SignBytes.fromAmino(object.value);
},
toAminoMsg(message) {
return {
type: "cosmos-sdk/SignBytes",
value: exports.SignBytes.toAmino(message)
};
},
fromProtoMsg(message) {
return exports.SignBytes.decode(message.value);
},
toProto(message) {
return exports.SignBytes.encode(message).finish();
},
toProtoMsg(message) {
return {
typeUrl: "/ibc.lightclients.solomachine.v3.SignBytes",
value: exports.SignBytes.encode(message).finish()
};
}
};
registry_1.GlobalDecoderRegistry.register(exports.SignBytes.typeUrl, exports.SignBytes);
registry_1.GlobalDecoderRegistry.registerAminoProtoMapping(exports.SignBytes.aminoType, exports.SignBytes.typeUrl);
function createBaseHeaderData() {
return {
newPubKey: undefined,
newDiversifier: ""
};
}
exports.HeaderData = {
typeUrl: "/ibc.lightclients.solomachine.v3.HeaderData",
aminoType: "cosmos-sdk/HeaderData",
is(o) {
return o && (o.$typeUrl === exports.HeaderData.typeUrl || typeof o.newDiversifier === "string");
},
isSDK(o) {
return o && (o.$typeUrl === exports.HeaderData.typeUrl || typeof o.new_diversifier === "string");
},
isAmino(o) {
return o && (o.$typeUrl === exports.HeaderData.typeUrl || typeof o.new_diversifier === "string");
},
encode(message, writer = binary_1.BinaryWriter.create()) {
if (message.newPubKey !== undefined) {
any_1.Any.encode(message.newPubKey, writer.uint32(10).fork()).ldelim();
}
if (message.newDiversifier !== "") {
writer.uint32(18).string(message.newDiversifier);
}
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 = createBaseHeaderData();
while (reader.pos < end) {
const tag = reader.uint32();
switch (tag >>> 3) {
case 1:
message.newPubKey = any_1.Any.decode(reader, reader.uint32());
break;
case 2:
message.newDiversifier = reader.string();
break;
default:
reader.skipType(tag & 7);
break;
}
}
return message;
},
fromPartial(object) {
const message = createBaseHeaderData();
message.newPubKey = object.newPubKey !== undefined && object.newPubKey !== null ? any_1.Any.fromPartial(object.newPubKey) : undefined;
message.newDiversifier = object.newDiversifier ?? "";
return message;
},
fromAmino(object) {
const message = createBaseHeaderData();
if (object.new_pub_key !== undefined && object.new_pub_key !== null) {
message.newPubKey = any_1.Any.fromAmino(object.new_pub_key);
}
if (object.new_diversifier !== undefined && object.new_diversifier !== null) {
message.newDiversifier = object.new_diversifier;
}
return message;
},
toAmino(message) {
const obj = {};
obj.new_pub_key = message.newPubKey ? any_1.Any.toAmino(message.newPubKey) : undefined;
obj.new_diversifier = message.newDiversifier === "" ? undefined : message.newDiversifier;
return obj;
},
fromAminoMsg(object) {
return exports.HeaderData.fromAmino(object.value);
},
toAminoMsg(message) {
return {
type: "cosmos-sdk/HeaderData",
value: exports.HeaderData.toAmino(message)
};
},
fromProtoMsg(message) {
return exports.HeaderData.decode(message.value);
},
toProto(message) {
return exports.HeaderData.encode(message).finish();
},
toProtoMsg(message) {
return {
typeUrl: "/ibc.lightclients.solomachine.v3.HeaderData",
value: exports.HeaderData.encode(message).finish()
};
}
};
registry_1.GlobalDecoderRegistry.register(exports.HeaderData.typeUrl, exports.HeaderData);
registry_1.GlobalDecoderRegistry.registerAminoProtoMapping(exports.HeaderData.aminoType, exports.HeaderData.typeUrl);