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.burnRate !== "") {
238
- writer.uint32(90).string(message.burnRate);
237
+ if (message.uri !== "") {
238
+ writer.uint32(90).string(message.uri);
239
239
  }
240
- if (message.sendCommissionRate !== "") {
241
- writer.uint32(98).string(message.sendCommissionRate);
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.burnRate !== "") {
229
- writer.uint32(90).string(message.burnRate);
228
+ if (message.uri !== "") {
229
+ writer.uint32(90).string(message.uri);
230
230
  }
231
- if (message.sendCommissionRate !== "") {
232
- writer.uint32(98).string(message.sendCommissionRate);
231
+ if (message.uriHash !== "") {
232
+ writer.uint32(98).string(message.uriHash);
233
233
  }
234
234
  return writer;
235
235
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coreum-js",
3
- "version": "2.8.18",
3
+ "version": "2.8.19",
4
4
  "description": "JS/TS Library to to easily make use of the Coreum Blockchain",
5
5
  "main": "dist/main/index.js",
6
6
  "module": "dist/module/index.js",