@bandprotocol/bandchain.js
Version:
Library for interacting with BandChain in browser and Node.js environments
505 lines (473 loc) • 16.4 kB
JavaScript
// source: ibc/applications/interchain_accounts/v1/packet.proto
/**
* @fileoverview
* @enhanceable
* @suppress {missingRequire} reports error on implicit type usages.
* @suppress {messageConventions} JS Compiler reports an error if a variable or
* field starts with 'MSG_' and isn't a translatable message.
* @public
*/
// GENERATED CODE -- DO NOT EDIT!
/* eslint-disable */
// @ts-nocheck
var jspb = require('google-protobuf')
var goog = jspb
var global = Function('return this')()
var google_protobuf_any_pb = require('google-protobuf/google/protobuf/any_pb.js')
goog.object.extend(proto, google_protobuf_any_pb)
var gogoproto_gogo_pb = require('../../../../gogoproto/gogo_pb.js')
goog.object.extend(proto, gogoproto_gogo_pb)
goog.exportSymbol(
'proto.ibc.applications.interchain_accounts.v1.CosmosTx',
null,
global,
)
goog.exportSymbol(
'proto.ibc.applications.interchain_accounts.v1.InterchainAccountPacketData',
null,
global,
)
goog.exportSymbol(
'proto.ibc.applications.interchain_accounts.v1.Type',
null,
global,
)
/**
* Generated by JsPbCodeGenerator.
* @param {Array=} opt_data Optional initial data array, typically from a
* server response, or constructed directly in Javascript. The array is used
* in place and becomes part of the constructed object. It is not cloned.
* If no data is provided, the constructed object will be empty, but still
* valid.
* @extends {jspb.Message}
* @constructor
*/
proto.ibc.applications.interchain_accounts.v1.InterchainAccountPacketData =
function (opt_data) {
jspb.Message.initialize(this, opt_data, 0, -1, null, null)
}
goog.inherits(
proto.ibc.applications.interchain_accounts.v1.InterchainAccountPacketData,
jspb.Message,
)
if (goog.DEBUG && !COMPILED) {
/**
* @public
* @override
*/
proto.ibc.applications.interchain_accounts.v1.InterchainAccountPacketData.displayName =
'proto.ibc.applications.interchain_accounts.v1.InterchainAccountPacketData'
}
/**
* Generated by JsPbCodeGenerator.
* @param {Array=} opt_data Optional initial data array, typically from a
* server response, or constructed directly in Javascript. The array is used
* in place and becomes part of the constructed object. It is not cloned.
* If no data is provided, the constructed object will be empty, but still
* valid.
* @extends {jspb.Message}
* @constructor
*/
proto.ibc.applications.interchain_accounts.v1.CosmosTx = function (opt_data) {
jspb.Message.initialize(
this,
opt_data,
0,
-1,
proto.ibc.applications.interchain_accounts.v1.CosmosTx.repeatedFields_,
null,
)
}
goog.inherits(
proto.ibc.applications.interchain_accounts.v1.CosmosTx,
jspb.Message,
)
if (goog.DEBUG && !COMPILED) {
/**
* @public
* @override
*/
proto.ibc.applications.interchain_accounts.v1.CosmosTx.displayName =
'proto.ibc.applications.interchain_accounts.v1.CosmosTx'
}
if (jspb.Message.GENERATE_TO_OBJECT) {
/**
* Creates an object representation of this proto.
* Field names that are reserved in JavaScript and will be renamed to pb_name.
* Optional fields that are not set will be set to undefined.
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
* For the list of reserved names please see:
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
* JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @return {!Object}
*/
proto.ibc.applications.interchain_accounts.v1.InterchainAccountPacketData.prototype.toObject =
function (opt_includeInstance) {
return proto.ibc.applications.interchain_accounts.v1.InterchainAccountPacketData.toObject(
opt_includeInstance,
this,
)
}
/**
* Static version of the {@see toObject} method.
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
* the JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @param {!proto.ibc.applications.interchain_accounts.v1.InterchainAccountPacketData} msg The msg instance to transform.
* @return {!Object}
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.ibc.applications.interchain_accounts.v1.InterchainAccountPacketData.toObject =
function (includeInstance, msg) {
var f,
obj = {
type: jspb.Message.getFieldWithDefault(msg, 1, 0),
data: msg.getData_asB64(),
memo: jspb.Message.getFieldWithDefault(msg, 3, ''),
}
if (includeInstance) {
obj.$jspbMessageInstance = msg
}
return obj
}
}
/**
* Deserializes binary data (in protobuf wire format).
* @param {jspb.ByteSource} bytes The bytes to deserialize.
* @return {!proto.ibc.applications.interchain_accounts.v1.InterchainAccountPacketData}
*/
proto.ibc.applications.interchain_accounts.v1.InterchainAccountPacketData.deserializeBinary =
function (bytes) {
var reader = new jspb.BinaryReader(bytes)
var msg =
new proto.ibc.applications.interchain_accounts.v1.InterchainAccountPacketData()
return proto.ibc.applications.interchain_accounts.v1.InterchainAccountPacketData.deserializeBinaryFromReader(
msg,
reader,
)
}
/**
* Deserializes binary data (in protobuf wire format) from the
* given reader into the given message object.
* @param {!proto.ibc.applications.interchain_accounts.v1.InterchainAccountPacketData} msg The message object to deserialize into.
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
* @return {!proto.ibc.applications.interchain_accounts.v1.InterchainAccountPacketData}
*/
proto.ibc.applications.interchain_accounts.v1.InterchainAccountPacketData.deserializeBinaryFromReader =
function (msg, reader) {
while (reader.nextField()) {
if (reader.isEndGroup()) {
break
}
var field = reader.getFieldNumber()
switch (field) {
case 1:
var value =
/** @type {!proto.ibc.applications.interchain_accounts.v1.Type} */ (
reader.readEnum()
)
msg.setType(value)
break
case 2:
var value = /** @type {!Uint8Array} */ (reader.readBytes())
msg.setData(value)
break
case 3:
var value = /** @type {string} */ (reader.readString())
msg.setMemo(value)
break
default:
reader.skipField()
break
}
}
return msg
}
/**
* Serializes the message to binary data (in protobuf wire format).
* @return {!Uint8Array}
*/
proto.ibc.applications.interchain_accounts.v1.InterchainAccountPacketData.prototype.serializeBinary =
function () {
var writer = new jspb.BinaryWriter()
proto.ibc.applications.interchain_accounts.v1.InterchainAccountPacketData.serializeBinaryToWriter(
this,
writer,
)
return writer.getResultBuffer()
}
/**
* Serializes the given message to binary data (in protobuf wire
* format), writing to the given BinaryWriter.
* @param {!proto.ibc.applications.interchain_accounts.v1.InterchainAccountPacketData} message
* @param {!jspb.BinaryWriter} writer
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.ibc.applications.interchain_accounts.v1.InterchainAccountPacketData.serializeBinaryToWriter =
function (message, writer) {
var f = undefined
f = message.getType()
if (f !== 0.0) {
writer.writeEnum(1, f)
}
f = message.getData_asU8()
if (f.length > 0) {
writer.writeBytes(2, f)
}
f = message.getMemo()
if (f.length > 0) {
writer.writeString(3, f)
}
}
/**
* optional Type type = 1;
* @return {!proto.ibc.applications.interchain_accounts.v1.Type}
*/
proto.ibc.applications.interchain_accounts.v1.InterchainAccountPacketData.prototype.getType =
function () {
return /** @type {!proto.ibc.applications.interchain_accounts.v1.Type} */ (
jspb.Message.getFieldWithDefault(this, 1, 0)
)
}
/**
* @param {!proto.ibc.applications.interchain_accounts.v1.Type} value
* @return {!proto.ibc.applications.interchain_accounts.v1.InterchainAccountPacketData} returns this
*/
proto.ibc.applications.interchain_accounts.v1.InterchainAccountPacketData.prototype.setType =
function (value) {
return jspb.Message.setProto3EnumField(this, 1, value)
}
/**
* optional bytes data = 2;
* @return {!(string|Uint8Array)}
*/
proto.ibc.applications.interchain_accounts.v1.InterchainAccountPacketData.prototype.getData =
function () {
return /** @type {!(string|Uint8Array)} */ (
jspb.Message.getFieldWithDefault(this, 2, '')
)
}
/**
* optional bytes data = 2;
* This is a type-conversion wrapper around `getData()`
* @return {string}
*/
proto.ibc.applications.interchain_accounts.v1.InterchainAccountPacketData.prototype.getData_asB64 =
function () {
return /** @type {string} */ (jspb.Message.bytesAsB64(this.getData()))
}
/**
* optional bytes data = 2;
* Note that Uint8Array is not supported on all browsers.
* @see http://caniuse.com/Uint8Array
* This is a type-conversion wrapper around `getData()`
* @return {!Uint8Array}
*/
proto.ibc.applications.interchain_accounts.v1.InterchainAccountPacketData.prototype.getData_asU8 =
function () {
return /** @type {!Uint8Array} */ (jspb.Message.bytesAsU8(this.getData()))
}
/**
* @param {!(string|Uint8Array)} value
* @return {!proto.ibc.applications.interchain_accounts.v1.InterchainAccountPacketData} returns this
*/
proto.ibc.applications.interchain_accounts.v1.InterchainAccountPacketData.prototype.setData =
function (value) {
return jspb.Message.setProto3BytesField(this, 2, value)
}
/**
* optional string memo = 3;
* @return {string}
*/
proto.ibc.applications.interchain_accounts.v1.InterchainAccountPacketData.prototype.getMemo =
function () {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ''))
}
/**
* @param {string} value
* @return {!proto.ibc.applications.interchain_accounts.v1.InterchainAccountPacketData} returns this
*/
proto.ibc.applications.interchain_accounts.v1.InterchainAccountPacketData.prototype.setMemo =
function (value) {
return jspb.Message.setProto3StringField(this, 3, value)
}
/**
* List of repeated fields within this message type.
* @private {!Array<number>}
* @const
*/
proto.ibc.applications.interchain_accounts.v1.CosmosTx.repeatedFields_ = [1]
if (jspb.Message.GENERATE_TO_OBJECT) {
/**
* Creates an object representation of this proto.
* Field names that are reserved in JavaScript and will be renamed to pb_name.
* Optional fields that are not set will be set to undefined.
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
* For the list of reserved names please see:
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
* JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @return {!Object}
*/
proto.ibc.applications.interchain_accounts.v1.CosmosTx.prototype.toObject =
function (opt_includeInstance) {
return proto.ibc.applications.interchain_accounts.v1.CosmosTx.toObject(
opt_includeInstance,
this,
)
}
/**
* Static version of the {@see toObject} method.
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
* the JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @param {!proto.ibc.applications.interchain_accounts.v1.CosmosTx} msg The msg instance to transform.
* @return {!Object}
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.ibc.applications.interchain_accounts.v1.CosmosTx.toObject = function (
includeInstance,
msg,
) {
var f,
obj = {
messagesList: jspb.Message.toObjectList(
msg.getMessagesList(),
google_protobuf_any_pb.Any.toObject,
includeInstance,
),
}
if (includeInstance) {
obj.$jspbMessageInstance = msg
}
return obj
}
}
/**
* Deserializes binary data (in protobuf wire format).
* @param {jspb.ByteSource} bytes The bytes to deserialize.
* @return {!proto.ibc.applications.interchain_accounts.v1.CosmosTx}
*/
proto.ibc.applications.interchain_accounts.v1.CosmosTx.deserializeBinary =
function (bytes) {
var reader = new jspb.BinaryReader(bytes)
var msg = new proto.ibc.applications.interchain_accounts.v1.CosmosTx()
return proto.ibc.applications.interchain_accounts.v1.CosmosTx.deserializeBinaryFromReader(
msg,
reader,
)
}
/**
* Deserializes binary data (in protobuf wire format) from the
* given reader into the given message object.
* @param {!proto.ibc.applications.interchain_accounts.v1.CosmosTx} msg The message object to deserialize into.
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
* @return {!proto.ibc.applications.interchain_accounts.v1.CosmosTx}
*/
proto.ibc.applications.interchain_accounts.v1.CosmosTx.deserializeBinaryFromReader =
function (msg, reader) {
while (reader.nextField()) {
if (reader.isEndGroup()) {
break
}
var field = reader.getFieldNumber()
switch (field) {
case 1:
var value = new google_protobuf_any_pb.Any()
reader.readMessage(
value,
google_protobuf_any_pb.Any.deserializeBinaryFromReader,
)
msg.addMessages(value)
break
default:
reader.skipField()
break
}
}
return msg
}
/**
* Serializes the message to binary data (in protobuf wire format).
* @return {!Uint8Array}
*/
proto.ibc.applications.interchain_accounts.v1.CosmosTx.prototype.serializeBinary =
function () {
var writer = new jspb.BinaryWriter()
proto.ibc.applications.interchain_accounts.v1.CosmosTx.serializeBinaryToWriter(
this,
writer,
)
return writer.getResultBuffer()
}
/**
* Serializes the given message to binary data (in protobuf wire
* format), writing to the given BinaryWriter.
* @param {!proto.ibc.applications.interchain_accounts.v1.CosmosTx} message
* @param {!jspb.BinaryWriter} writer
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.ibc.applications.interchain_accounts.v1.CosmosTx.serializeBinaryToWriter =
function (message, writer) {
var f = undefined
f = message.getMessagesList()
if (f.length > 0) {
writer.writeRepeatedMessage(
1,
f,
google_protobuf_any_pb.Any.serializeBinaryToWriter,
)
}
}
/**
* repeated google.protobuf.Any messages = 1;
* @return {!Array<!proto.google.protobuf.Any>}
*/
proto.ibc.applications.interchain_accounts.v1.CosmosTx.prototype.getMessagesList =
function () {
return /** @type{!Array<!proto.google.protobuf.Any>} */ (
jspb.Message.getRepeatedWrapperField(this, google_protobuf_any_pb.Any, 1)
)
}
/**
* @param {!Array<!proto.google.protobuf.Any>} value
* @return {!proto.ibc.applications.interchain_accounts.v1.CosmosTx} returns this
*/
proto.ibc.applications.interchain_accounts.v1.CosmosTx.prototype.setMessagesList =
function (value) {
return jspb.Message.setRepeatedWrapperField(this, 1, value)
}
/**
* @param {!proto.google.protobuf.Any=} opt_value
* @param {number=} opt_index
* @return {!proto.google.protobuf.Any}
*/
proto.ibc.applications.interchain_accounts.v1.CosmosTx.prototype.addMessages =
function (opt_value, opt_index) {
return jspb.Message.addToRepeatedWrapperField(
this,
1,
opt_value,
proto.google.protobuf.Any,
opt_index,
)
}
/**
* Clears the list making it empty but non-null.
* @return {!proto.ibc.applications.interchain_accounts.v1.CosmosTx} returns this
*/
proto.ibc.applications.interchain_accounts.v1.CosmosTx.prototype.clearMessagesList =
function () {
return this.setMessagesList([])
}
/**
* @enum {number}
*/
proto.ibc.applications.interchain_accounts.v1.Type = {
TYPE_UNSPECIFIED: 0,
TYPE_EXECUTE_TX: 1,
}
goog.object.extend(exports, proto.ibc.applications.interchain_accounts.v1)