UNPKG

@bandprotocol/bandchain.js

Version:

Library for interacting with BandChain in browser and Node.js environments

469 lines (438 loc) 15.1 kB
// source: ibc/applications/interchain_accounts/host/v1/host.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')() goog.exportSymbol( 'proto.ibc.applications.interchain_accounts.host.v1.Params', null, global, ) goog.exportSymbol( 'proto.ibc.applications.interchain_accounts.host.v1.QueryRequest', 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.host.v1.Params = function ( opt_data, ) { jspb.Message.initialize( this, opt_data, 0, -1, proto.ibc.applications.interchain_accounts.host.v1.Params.repeatedFields_, null, ) } goog.inherits( proto.ibc.applications.interchain_accounts.host.v1.Params, jspb.Message, ) if (goog.DEBUG && !COMPILED) { /** * @public * @override */ proto.ibc.applications.interchain_accounts.host.v1.Params.displayName = 'proto.ibc.applications.interchain_accounts.host.v1.Params' } /** * 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.host.v1.QueryRequest = function ( opt_data, ) { jspb.Message.initialize(this, opt_data, 0, -1, null, null) } goog.inherits( proto.ibc.applications.interchain_accounts.host.v1.QueryRequest, jspb.Message, ) if (goog.DEBUG && !COMPILED) { /** * @public * @override */ proto.ibc.applications.interchain_accounts.host.v1.QueryRequest.displayName = 'proto.ibc.applications.interchain_accounts.host.v1.QueryRequest' } /** * List of repeated fields within this message type. * @private {!Array<number>} * @const */ proto.ibc.applications.interchain_accounts.host.v1.Params.repeatedFields_ = [2] 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.host.v1.Params.prototype.toObject = function (opt_includeInstance) { return proto.ibc.applications.interchain_accounts.host.v1.Params.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.host.v1.Params} msg The msg instance to transform. * @return {!Object} * @suppress {unusedLocalVariables} f is only used for nested messages */ proto.ibc.applications.interchain_accounts.host.v1.Params.toObject = function (includeInstance, msg) { var f, obj = { hostEnabled: jspb.Message.getBooleanFieldWithDefault(msg, 1, false), allowMessagesList: (f = jspb.Message.getRepeatedField(msg, 2)) == null ? undefined : f, } 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.host.v1.Params} */ proto.ibc.applications.interchain_accounts.host.v1.Params.deserializeBinary = function (bytes) { var reader = new jspb.BinaryReader(bytes) var msg = new proto.ibc.applications.interchain_accounts.host.v1.Params() return proto.ibc.applications.interchain_accounts.host.v1.Params.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.host.v1.Params} msg The message object to deserialize into. * @param {!jspb.BinaryReader} reader The BinaryReader to use. * @return {!proto.ibc.applications.interchain_accounts.host.v1.Params} */ proto.ibc.applications.interchain_accounts.host.v1.Params.deserializeBinaryFromReader = function (msg, reader) { while (reader.nextField()) { if (reader.isEndGroup()) { break } var field = reader.getFieldNumber() switch (field) { case 1: var value = /** @type {boolean} */ (reader.readBool()) msg.setHostEnabled(value) break case 2: var value = /** @type {string} */ (reader.readString()) msg.addAllowMessages(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.host.v1.Params.prototype.serializeBinary = function () { var writer = new jspb.BinaryWriter() proto.ibc.applications.interchain_accounts.host.v1.Params.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.host.v1.Params} message * @param {!jspb.BinaryWriter} writer * @suppress {unusedLocalVariables} f is only used for nested messages */ proto.ibc.applications.interchain_accounts.host.v1.Params.serializeBinaryToWriter = function (message, writer) { var f = undefined f = message.getHostEnabled() if (f) { writer.writeBool(1, f) } f = message.getAllowMessagesList() if (f.length > 0) { writer.writeRepeatedString(2, f) } } /** * optional bool host_enabled = 1; * @return {boolean} */ proto.ibc.applications.interchain_accounts.host.v1.Params.prototype.getHostEnabled = function () { return /** @type {boolean} */ ( jspb.Message.getBooleanFieldWithDefault(this, 1, false) ) } /** * @param {boolean} value * @return {!proto.ibc.applications.interchain_accounts.host.v1.Params} returns this */ proto.ibc.applications.interchain_accounts.host.v1.Params.prototype.setHostEnabled = function (value) { return jspb.Message.setProto3BooleanField(this, 1, value) } /** * repeated string allow_messages = 2; * @return {!Array<string>} */ proto.ibc.applications.interchain_accounts.host.v1.Params.prototype.getAllowMessagesList = function () { return /** @type {!Array<string>} */ ( jspb.Message.getRepeatedField(this, 2) ) } /** * @param {!Array<string>} value * @return {!proto.ibc.applications.interchain_accounts.host.v1.Params} returns this */ proto.ibc.applications.interchain_accounts.host.v1.Params.prototype.setAllowMessagesList = function (value) { return jspb.Message.setField(this, 2, value || []) } /** * @param {string} value * @param {number=} opt_index * @return {!proto.ibc.applications.interchain_accounts.host.v1.Params} returns this */ proto.ibc.applications.interchain_accounts.host.v1.Params.prototype.addAllowMessages = function (value, opt_index) { return jspb.Message.addToRepeatedField(this, 2, value, opt_index) } /** * Clears the list making it empty but non-null. * @return {!proto.ibc.applications.interchain_accounts.host.v1.Params} returns this */ proto.ibc.applications.interchain_accounts.host.v1.Params.prototype.clearAllowMessagesList = function () { return this.setAllowMessagesList([]) } 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.host.v1.QueryRequest.prototype.toObject = function (opt_includeInstance) { return proto.ibc.applications.interchain_accounts.host.v1.QueryRequest.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.host.v1.QueryRequest} msg The msg instance to transform. * @return {!Object} * @suppress {unusedLocalVariables} f is only used for nested messages */ proto.ibc.applications.interchain_accounts.host.v1.QueryRequest.toObject = function (includeInstance, msg) { var f, obj = { path: jspb.Message.getFieldWithDefault(msg, 1, ''), data: msg.getData_asB64(), } 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.host.v1.QueryRequest} */ proto.ibc.applications.interchain_accounts.host.v1.QueryRequest.deserializeBinary = function (bytes) { var reader = new jspb.BinaryReader(bytes) var msg = new proto.ibc.applications.interchain_accounts.host.v1.QueryRequest() return proto.ibc.applications.interchain_accounts.host.v1.QueryRequest.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.host.v1.QueryRequest} msg The message object to deserialize into. * @param {!jspb.BinaryReader} reader The BinaryReader to use. * @return {!proto.ibc.applications.interchain_accounts.host.v1.QueryRequest} */ proto.ibc.applications.interchain_accounts.host.v1.QueryRequest.deserializeBinaryFromReader = function (msg, reader) { while (reader.nextField()) { if (reader.isEndGroup()) { break } var field = reader.getFieldNumber() switch (field) { case 1: var value = /** @type {string} */ (reader.readString()) msg.setPath(value) break case 2: var value = /** @type {!Uint8Array} */ (reader.readBytes()) msg.setData(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.host.v1.QueryRequest.prototype.serializeBinary = function () { var writer = new jspb.BinaryWriter() proto.ibc.applications.interchain_accounts.host.v1.QueryRequest.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.host.v1.QueryRequest} message * @param {!jspb.BinaryWriter} writer * @suppress {unusedLocalVariables} f is only used for nested messages */ proto.ibc.applications.interchain_accounts.host.v1.QueryRequest.serializeBinaryToWriter = function (message, writer) { var f = undefined f = message.getPath() if (f.length > 0) { writer.writeString(1, f) } f = message.getData_asU8() if (f.length > 0) { writer.writeBytes(2, f) } } /** * optional string path = 1; * @return {string} */ proto.ibc.applications.interchain_accounts.host.v1.QueryRequest.prototype.getPath = function () { return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, '')) } /** * @param {string} value * @return {!proto.ibc.applications.interchain_accounts.host.v1.QueryRequest} returns this */ proto.ibc.applications.interchain_accounts.host.v1.QueryRequest.prototype.setPath = function (value) { return jspb.Message.setProto3StringField(this, 1, value) } /** * optional bytes data = 2; * @return {!(string|Uint8Array)} */ proto.ibc.applications.interchain_accounts.host.v1.QueryRequest.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.host.v1.QueryRequest.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.host.v1.QueryRequest.prototype.getData_asU8 = function () { return /** @type {!Uint8Array} */ (jspb.Message.bytesAsU8(this.getData())) } /** * @param {!(string|Uint8Array)} value * @return {!proto.ibc.applications.interchain_accounts.host.v1.QueryRequest} returns this */ proto.ibc.applications.interchain_accounts.host.v1.QueryRequest.prototype.setData = function (value) { return jspb.Message.setProto3BytesField(this, 2, value) } goog.object.extend(exports, proto.ibc.applications.interchain_accounts.host.v1)