coreum-js 2.8.11 → 2.8.12

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.
@@ -215,13 +215,13 @@ exports.MsgMint = {
215
215
  writer.uint32(34).string(message.uri);
216
216
  }
217
217
  if (message.uriHash !== "") {
218
- writer.uint32(50).string(message.uriHash);
218
+ writer.uint32(42).string(message.uriHash);
219
219
  }
220
220
  if (message.data !== undefined) {
221
221
  any_1.Any.encode(message.data, writer.uint32(50).fork()).ldelim();
222
222
  }
223
223
  if (message.recipient !== "") {
224
- writer.uint32(26).string(message.recipient);
224
+ writer.uint32(58).string(message.recipient);
225
225
  }
226
226
  return writer;
227
227
  },
@@ -269,7 +269,7 @@ exports.MsgMint = {
269
269
  message.data = any_1.Any.decode(reader, reader.uint32());
270
270
  continue;
271
271
  case 7:
272
- if (tag != 26) {
272
+ if (tag != 58) {
273
273
  break;
274
274
  }
275
275
  message.recipient = reader.string();
@@ -208,13 +208,13 @@ export const MsgMint = {
208
208
  writer.uint32(34).string(message.uri);
209
209
  }
210
210
  if (message.uriHash !== "") {
211
- writer.uint32(50).string(message.uriHash);
211
+ writer.uint32(42).string(message.uriHash);
212
212
  }
213
213
  if (message.data !== undefined) {
214
214
  Any.encode(message.data, writer.uint32(50).fork()).ldelim();
215
215
  }
216
216
  if (message.recipient !== "") {
217
- writer.uint32(26).string(message.recipient);
217
+ writer.uint32(58).string(message.recipient);
218
218
  }
219
219
  return writer;
220
220
  },
@@ -262,7 +262,7 @@ export const MsgMint = {
262
262
  message.data = Any.decode(reader, reader.uint32());
263
263
  continue;
264
264
  case 7:
265
- if (tag != 26) {
265
+ if (tag != 58) {
266
266
  break;
267
267
  }
268
268
  message.recipient = reader.string();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coreum-js",
3
- "version": "2.8.11",
3
+ "version": "2.8.12",
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",