//@ts-nocheck
import { BinaryReader, BinaryWriter } from "../../../binary";
import { bytesFromBase64, base64FromBytes } from "../../../helpers";
import { GlobalDecoderRegistry } from "../../../registry";
function createBaseMsgIBCSend() {
return {
channel: "",
timeoutHeight: BigInt(0),
timeoutTimestamp: BigInt(0),
data: new Uint8Array()
};
}
export const MsgIBCSend = {
typeUrl: "/cosmwasm.wasm.v1.MsgIBCSend",
aminoType: "wasm/MsgIBCSend",
is(o) {
return o && (o.$typeUrl === MsgIBCSend.typeUrl || typeof o.channel === "string" && typeof o.timeoutHeight === "bigint" && typeof o.timeoutTimestamp === "bigint" && (o.data instanceof Uint8Array || typeof o.data === "string"));
},
isSDK(o) {
return o && (o.$typeUrl === MsgIBCSend.typeUrl || typeof o.channel === "string" && typeof o.timeout_height === "bigint" && typeof o.timeout_timestamp === "bigint" && (o.data instanceof Uint8Array || typeof o.data === "string"));
},
isAmino(o) {
return o && (o.$typeUrl === MsgIBCSend.typeUrl || typeof o.channel === "string" && typeof o.timeout_height === "bigint" && typeof o.timeout_timestamp === "bigint" && (o.data instanceof Uint8Array || typeof o.data === "string"));
},
encode(message, writer = BinaryWriter.create()) {
if (message.channel !== "") {
writer.uint32(18).string(message.channel);
}
if (message.timeoutHeight !== BigInt(0)) {
writer.uint32(32).uint64(message.timeoutHeight);
}
if (message.timeoutTimestamp !== BigInt(0)) {
writer.uint32(40).uint64(message.timeoutTimestamp);
}
if (message.data.length !== 0) {
writer.uint32(50).bytes(message.data);
}
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 = createBaseMsgIBCSend();
while (reader.pos < end) {
const tag = reader.uint32();
switch (tag >>> 3) {
case 2:
message.channel = reader.string();
break;
case 4:
message.timeoutHeight = reader.uint64();
break;
case 5:
message.timeoutTimestamp = reader.uint64();
break;
case 6:
message.data = reader.bytes();
break;
default:
reader.skipType(tag & 7);
break;
}
}
return message;
},
fromPartial(object) {
const message = createBaseMsgIBCSend();
message.channel = object.channel ?? "";
message.timeoutHeight = object.timeoutHeight !== undefined && object.timeoutHeight !== null ? BigInt(object.timeoutHeight.toString()) : BigInt(0);
message.timeoutTimestamp = object.timeoutTimestamp !== undefined && object.timeoutTimestamp !== null ? BigInt(object.timeoutTimestamp.toString()) : BigInt(0);
message.data = object.data ?? new Uint8Array();
return message;
},
fromAmino(object) {
const message = createBaseMsgIBCSend();
if (object.channel !== undefined && object.channel !== null) {
message.channel = object.channel;
}
if (object.timeout_height !== undefined && object.timeout_height !== null) {
message.timeoutHeight = BigInt(object.timeout_height);
}
if (object.timeout_timestamp !== undefined && object.timeout_timestamp !== null) {
message.timeoutTimestamp = BigInt(object.timeout_timestamp);
}
if (object.data !== undefined && object.data !== null) {
message.data = bytesFromBase64(object.data);
}
return message;
},
toAmino(message) {
const obj = {};
obj.channel = message.channel === "" ? undefined : message.channel;
obj.timeout_height = message.timeoutHeight !== BigInt(0) ? message.timeoutHeight.toString() : undefined;
obj.timeout_timestamp = message.timeoutTimestamp !== BigInt(0) ? message.timeoutTimestamp.toString() : undefined;
obj.data = message.data ? base64FromBytes(message.data) : undefined;
return obj;
},
fromAminoMsg(object) {
return MsgIBCSend.fromAmino(object.value);
},
toAminoMsg(message) {
return {
type: "wasm/MsgIBCSend",
value: MsgIBCSend.toAmino(message)
};
},
fromProtoMsg(message) {
return MsgIBCSend.decode(message.value);
},
toProto(message) {
return MsgIBCSend.encode(message).finish();
},
toProtoMsg(message) {
return {
typeUrl: "/cosmwasm.wasm.v1.MsgIBCSend",
value: MsgIBCSend.encode(message).finish()
};
}
};
GlobalDecoderRegistry.register(MsgIBCSend.typeUrl, MsgIBCSend);
GlobalDecoderRegistry.registerAminoProtoMapping(MsgIBCSend.aminoType, MsgIBCSend.typeUrl);
function createBaseMsgIBCSendResponse() {
return {
sequence: BigInt(0)
};
}
export const MsgIBCSendResponse = {
typeUrl: "/cosmwasm.wasm.v1.MsgIBCSendResponse",
aminoType: "wasm/MsgIBCSendResponse",
is(o) {
return o && (o.$typeUrl === MsgIBCSendResponse.typeUrl || typeof o.sequence === "bigint");
},
isSDK(o) {
return o && (o.$typeUrl === MsgIBCSendResponse.typeUrl || typeof o.sequence === "bigint");
},
isAmino(o) {
return o && (o.$typeUrl === MsgIBCSendResponse.typeUrl || typeof o.sequence === "bigint");
},
encode(message, writer = BinaryWriter.create()) {
if (message.sequence !== BigInt(0)) {
writer.uint32(8).uint64(message.sequence);
}
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 = createBaseMsgIBCSendResponse();
while (reader.pos < end) {
const tag = reader.uint32();
switch (tag >>> 3) {
case 1:
message.sequence = reader.uint64();
break;
default:
reader.skipType(tag & 7);
break;
}
}
return message;
},
fromPartial(object) {
const message = createBaseMsgIBCSendResponse();
message.sequence = object.sequence !== undefined && object.sequence !== null ? BigInt(object.sequence.toString()) : BigInt(0);
return message;
},
fromAmino(object) {
const message = createBaseMsgIBCSendResponse();
if (object.sequence !== undefined && object.sequence !== null) {
message.sequence = BigInt(object.sequence);
}
return message;
},
toAmino(message) {
const obj = {};
obj.sequence = message.sequence !== BigInt(0) ? message.sequence.toString() : undefined;
return obj;
},
fromAminoMsg(object) {
return MsgIBCSendResponse.fromAmino(object.value);
},
toAminoMsg(message) {
return {
type: "wasm/MsgIBCSendResponse",
value: MsgIBCSendResponse.toAmino(message)
};
},
fromProtoMsg(message) {
return MsgIBCSendResponse.decode(message.value);
},
toProto(message) {
return MsgIBCSendResponse.encode(message).finish();
},
toProtoMsg(message) {
return {
typeUrl: "/cosmwasm.wasm.v1.MsgIBCSendResponse",
value: MsgIBCSendResponse.encode(message).finish()
};
}
};
GlobalDecoderRegistry.register(MsgIBCSendResponse.typeUrl, MsgIBCSendResponse);
GlobalDecoderRegistry.registerAminoProtoMapping(MsgIBCSendResponse.aminoType, MsgIBCSendResponse.typeUrl);
function createBaseMsgIBCCloseChannel() {
return {
channel: ""
};
}
export const MsgIBCCloseChannel = {
typeUrl: "/cosmwasm.wasm.v1.MsgIBCCloseChannel",
aminoType: "wasm/MsgIBCCloseChannel",
is(o) {
return o && (o.$typeUrl === MsgIBCCloseChannel.typeUrl || typeof o.channel === "string");
},
isSDK(o) {
return o && (o.$typeUrl === MsgIBCCloseChannel.typeUrl || typeof o.channel === "string");
},
isAmino(o) {
return o && (o.$typeUrl === MsgIBCCloseChannel.typeUrl || typeof o.channel === "string");
},
encode(message, writer = BinaryWriter.create()) {
if (message.channel !== "") {
writer.uint32(18).string(message.channel);
}
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 = createBaseMsgIBCCloseChannel();
while (reader.pos < end) {
const tag = reader.uint32();
switch (tag >>> 3) {
case 2:
message.channel = reader.string();
break;
default:
reader.skipType(tag & 7);
break;
}
}
return message;
},
fromPartial(object) {
const message = createBaseMsgIBCCloseChannel();
message.channel = object.channel ?? "";
return message;
},
fromAmino(object) {
const message = createBaseMsgIBCCloseChannel();
if (object.channel !== undefined && object.channel !== null) {
message.channel = object.channel;
}
return message;
},
toAmino(message) {
const obj = {};
obj.channel = message.channel === "" ? undefined : message.channel;
return obj;
},
fromAminoMsg(object) {
return MsgIBCCloseChannel.fromAmino(object.value);
},
toAminoMsg(message) {
return {
type: "wasm/MsgIBCCloseChannel",
value: MsgIBCCloseChannel.toAmino(message)
};
},
fromProtoMsg(message) {
return MsgIBCCloseChannel.decode(message.value);
},
toProto(message) {
return MsgIBCCloseChannel.encode(message).finish();
},
toProtoMsg(message) {
return {
typeUrl: "/cosmwasm.wasm.v1.MsgIBCCloseChannel",
value: MsgIBCCloseChannel.encode(message).finish()
};
}
};
GlobalDecoderRegistry.register(MsgIBCCloseChannel.typeUrl, MsgIBCCloseChannel);
GlobalDecoderRegistry.registerAminoProtoMapping(MsgIBCCloseChannel.aminoType, MsgIBCCloseChannel.typeUrl);