coreum-js 2.8.18 → 2.8.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -234,11 +234,11 @@ exports.Token = {
|
|
|
234
234
|
if (message.sendCommissionRate !== "") {
|
|
235
235
|
writer.uint32(82).string(message.sendCommissionRate);
|
|
236
236
|
}
|
|
237
|
-
if (message.
|
|
238
|
-
writer.uint32(90).string(message.
|
|
237
|
+
if (message.uri !== "") {
|
|
238
|
+
writer.uint32(90).string(message.uri);
|
|
239
239
|
}
|
|
240
|
-
if (message.
|
|
241
|
-
writer.uint32(98).string(message.
|
|
240
|
+
if (message.uriHash !== "") {
|
|
241
|
+
writer.uint32(98).string(message.uriHash);
|
|
242
242
|
}
|
|
243
243
|
return writer;
|
|
244
244
|
},
|
|
@@ -225,11 +225,11 @@ export const Token = {
|
|
|
225
225
|
if (message.sendCommissionRate !== "") {
|
|
226
226
|
writer.uint32(82).string(message.sendCommissionRate);
|
|
227
227
|
}
|
|
228
|
-
if (message.
|
|
229
|
-
writer.uint32(90).string(message.
|
|
228
|
+
if (message.uri !== "") {
|
|
229
|
+
writer.uint32(90).string(message.uri);
|
|
230
230
|
}
|
|
231
|
-
if (message.
|
|
232
|
-
writer.uint32(98).string(message.
|
|
231
|
+
if (message.uriHash !== "") {
|
|
232
|
+
writer.uint32(98).string(message.uriHash);
|
|
233
233
|
}
|
|
234
234
|
return writer;
|
|
235
235
|
},
|