@injectivelabs/indexer-proto-ts
Advanced tools
Comparing version 1.11.21 to 1.11.22
@@ -123,2 +123,4 @@ import { grpc } from "@injectivelabs/grpc-web"; | ||
masterBalance: string; | ||
/** Guild description, set by master of the guild */ | ||
description: string; | ||
} | ||
@@ -125,0 +127,0 @@ export interface CampaignSummary { |
@@ -123,2 +123,4 @@ import { grpc } from "@injectivelabs/grpc-web"; | ||
masterBalance: string; | ||
/** Guild description, set by master of the guild */ | ||
description: string; | ||
} | ||
@@ -125,0 +127,0 @@ export interface CampaignSummary { |
@@ -664,2 +664,3 @@ /* eslint-disable */ | ||
masterBalance: "", | ||
description: "", | ||
}; | ||
@@ -711,2 +712,5 @@ } | ||
} | ||
if (message.description !== "") { | ||
writer.uint32(130).string(message.description); | ||
} | ||
return writer; | ||
@@ -763,2 +767,5 @@ }, | ||
break; | ||
case 16: | ||
message.description = reader.string(); | ||
break; | ||
default: | ||
@@ -787,2 +794,3 @@ reader.skipType(tag & 7); | ||
masterBalance: isSet(object.masterBalance) ? String(object.masterBalance) : "", | ||
description: isSet(object.description) ? String(object.description) : "", | ||
}; | ||
@@ -806,2 +814,3 @@ }, | ||
message.masterBalance !== undefined && (obj.masterBalance = message.masterBalance); | ||
message.description !== undefined && (obj.description = message.description); | ||
return obj; | ||
@@ -813,3 +822,3 @@ }, | ||
fromPartial(object) { | ||
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p; | ||
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q; | ||
const message = createBaseGuild(); | ||
@@ -830,2 +839,3 @@ message.campaignContract = (_a = object.campaignContract) !== null && _a !== void 0 ? _a : ""; | ||
message.masterBalance = (_p = object.masterBalance) !== null && _p !== void 0 ? _p : ""; | ||
message.description = (_q = object.description) !== null && _q !== void 0 ? _q : ""; | ||
return message; | ||
@@ -832,0 +842,0 @@ }, |
{ | ||
"name": "@injectivelabs/indexer-proto-ts", | ||
"version": "1.11.21", | ||
"version": "1.11.22", | ||
"description": "Injective Indexer API client with generated gRPC bindings.", | ||
@@ -5,0 +5,0 @@ "sideEffects": "false", |
Sorry, the diff of this file is too big to display
3048598
72438