@sparkdreamnft/sparkdreamjs 0.0.11 → 0.0.13

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.
Files changed (106) hide show
  1. package/esm/nested-amino.js +52 -0
  2. package/esm/sparkdream/blog/v1/tx.amino.js +14 -14
  3. package/esm/sparkdream/blog/v1/tx.js +98 -0
  4. package/esm/sparkdream/collect/v1/tx.amino.js +25 -25
  5. package/esm/sparkdream/collect/v1/tx.js +175 -0
  6. package/esm/sparkdream/commons/v1/query.js +379 -1
  7. package/esm/sparkdream/commons/v1/query.lcd.js +21 -0
  8. package/esm/sparkdream/commons/v1/query.rpc.Query.js +24 -1
  9. package/esm/sparkdream/commons/v1/tx.amino.js +80 -41
  10. package/esm/sparkdream/commons/v1/tx.js +91 -0
  11. package/esm/sparkdream/federation/v1/tx.amino.js +24 -24
  12. package/esm/sparkdream/federation/v1/tx.js +168 -0
  13. package/esm/sparkdream/forum/v1/tx.amino.js +33 -33
  14. package/esm/sparkdream/forum/v1/tx.js +231 -0
  15. package/esm/sparkdream/futarchy/v1/tx.amino.js +4 -4
  16. package/esm/sparkdream/futarchy/v1/tx.js +28 -0
  17. package/esm/sparkdream/name/v1/name_record.js +33 -2
  18. package/esm/sparkdream/name/v1/query.js +166 -0
  19. package/esm/sparkdream/name/v1/query.lcd.js +13 -0
  20. package/esm/sparkdream/name/v1/query.rpc.Query.js +12 -1
  21. package/esm/sparkdream/name/v1/tx.amino.js +21 -6
  22. package/esm/sparkdream/name/v1/tx.js +500 -0
  23. package/esm/sparkdream/name/v1/tx.registry.js +56 -2
  24. package/esm/sparkdream/name/v1/tx.rpc.msg.js +24 -1
  25. package/esm/sparkdream/rep/v1/query.js +204 -0
  26. package/esm/sparkdream/rep/v1/query.lcd.js +5 -0
  27. package/esm/sparkdream/rep/v1/query.rpc.Query.js +10 -1
  28. package/esm/sparkdream/rep/v1/tx.amino.js +45 -45
  29. package/esm/sparkdream/rep/v1/tx.js +315 -0
  30. package/esm/sparkdream/reveal/v1/tx.amino.js +9 -9
  31. package/esm/sparkdream/reveal/v1/tx.js +63 -0
  32. package/esm/sparkdream/season/v1/tx.amino.js +25 -25
  33. package/esm/sparkdream/season/v1/tx.js +175 -0
  34. package/esm/sparkdream/session/v1/tx.amino.js +33 -11
  35. package/esm/sparkdream/session/v1/tx.js +21 -0
  36. package/esm/sparkdream/shield/v1/tx.amino.js +4 -4
  37. package/esm/sparkdream/shield/v1/tx.js +28 -0
  38. package/nested-amino.d.ts +76 -0
  39. package/nested-amino.js +57 -0
  40. package/package.json +1 -1
  41. package/sparkdream/blog/v1/tx.amino.js +14 -14
  42. package/sparkdream/blog/v1/tx.d.ts +42 -14
  43. package/sparkdream/blog/v1/tx.js +98 -0
  44. package/sparkdream/bundle.d.ts +661 -6
  45. package/sparkdream/client.d.ts +21 -6
  46. package/sparkdream/collect/v1/tx.amino.js +25 -25
  47. package/sparkdream/collect/v1/tx.d.ts +75 -25
  48. package/sparkdream/collect/v1/tx.js +175 -0
  49. package/sparkdream/commons/v1/query.d.ts +243 -1
  50. package/sparkdream/commons/v1/query.js +379 -1
  51. package/sparkdream/commons/v1/query.lcd.d.ts +3 -1
  52. package/sparkdream/commons/v1/query.lcd.js +21 -0
  53. package/sparkdream/commons/v1/query.rpc.Query.d.ts +16 -1
  54. package/sparkdream/commons/v1/query.rpc.Query.js +23 -0
  55. package/sparkdream/commons/v1/tx.amino.d.ts +6 -5
  56. package/sparkdream/commons/v1/tx.amino.js +82 -42
  57. package/sparkdream/commons/v1/tx.d.ts +39 -13
  58. package/sparkdream/commons/v1/tx.js +91 -0
  59. package/sparkdream/federation/v1/tx.amino.js +24 -24
  60. package/sparkdream/federation/v1/tx.d.ts +72 -24
  61. package/sparkdream/federation/v1/tx.js +168 -0
  62. package/sparkdream/forum/v1/tx.amino.js +33 -33
  63. package/sparkdream/forum/v1/tx.d.ts +99 -33
  64. package/sparkdream/forum/v1/tx.js +231 -0
  65. package/sparkdream/futarchy/v1/tx.amino.js +4 -4
  66. package/sparkdream/futarchy/v1/tx.d.ts +12 -4
  67. package/sparkdream/futarchy/v1/tx.js +28 -0
  68. package/sparkdream/name/v1/name_record.d.ts +46 -3
  69. package/sparkdream/name/v1/name_record.js +33 -2
  70. package/sparkdream/name/v1/query.d.ts +95 -0
  71. package/sparkdream/name/v1/query.js +167 -1
  72. package/sparkdream/name/v1/query.lcd.d.ts +2 -1
  73. package/sparkdream/name/v1/query.lcd.js +13 -0
  74. package/sparkdream/name/v1/query.rpc.Query.d.ts +9 -1
  75. package/sparkdream/name/v1/query.rpc.Query.js +11 -0
  76. package/sparkdream/name/v1/tx.amino.d.ts +16 -1
  77. package/sparkdream/name/v1/tx.amino.js +20 -5
  78. package/sparkdream/name/v1/tx.d.ts +336 -5
  79. package/sparkdream/name/v1/tx.js +501 -1
  80. package/sparkdream/name/v1/tx.registry.d.ts +37 -1
  81. package/sparkdream/name/v1/tx.registry.js +55 -1
  82. package/sparkdream/name/v1/tx.rpc.msg.d.ts +21 -1
  83. package/sparkdream/name/v1/tx.rpc.msg.js +23 -0
  84. package/sparkdream/rep/v1/query.d.ts +153 -1
  85. package/sparkdream/rep/v1/query.js +205 -1
  86. package/sparkdream/rep/v1/query.lcd.d.ts +2 -1
  87. package/sparkdream/rep/v1/query.lcd.js +5 -0
  88. package/sparkdream/rep/v1/query.rpc.Query.d.ts +5 -1
  89. package/sparkdream/rep/v1/query.rpc.Query.js +9 -0
  90. package/sparkdream/rep/v1/tx.amino.js +45 -45
  91. package/sparkdream/rep/v1/tx.d.ts +135 -45
  92. package/sparkdream/rep/v1/tx.js +315 -0
  93. package/sparkdream/reveal/v1/tx.amino.js +9 -9
  94. package/sparkdream/reveal/v1/tx.d.ts +27 -9
  95. package/sparkdream/reveal/v1/tx.js +63 -0
  96. package/sparkdream/rpc.query.d.ts +4 -0
  97. package/sparkdream/season/v1/tx.amino.js +25 -25
  98. package/sparkdream/season/v1/tx.d.ts +75 -25
  99. package/sparkdream/season/v1/tx.js +175 -0
  100. package/sparkdream/session/v1/tx.amino.d.ts +3 -3
  101. package/sparkdream/session/v1/tx.amino.js +33 -11
  102. package/sparkdream/session/v1/tx.d.ts +9 -3
  103. package/sparkdream/session/v1/tx.js +21 -0
  104. package/sparkdream/shield/v1/tx.amino.js +4 -4
  105. package/sparkdream/shield/v1/tx.d.ts +12 -4
  106. package/sparkdream/shield/v1/tx.js +28 -0
@@ -7,47 +7,47 @@ export const AminoConverter = {
7
7
  fromAmino: MsgUpdateParams.fromAmino
8
8
  },
9
9
  "/sparkdream.reveal.v1.MsgPropose": {
10
- aminoType: "/sparkdream.reveal.v1.MsgPropose",
10
+ aminoType: "sparkdream/x/reveal/MsgPropose",
11
11
  toAmino: MsgPropose.toAmino,
12
12
  fromAmino: MsgPropose.fromAmino
13
13
  },
14
14
  "/sparkdream.reveal.v1.MsgApprove": {
15
- aminoType: "/sparkdream.reveal.v1.MsgApprove",
15
+ aminoType: "sparkdream/x/reveal/MsgApprove",
16
16
  toAmino: MsgApprove.toAmino,
17
17
  fromAmino: MsgApprove.fromAmino
18
18
  },
19
19
  "/sparkdream.reveal.v1.MsgReject": {
20
- aminoType: "/sparkdream.reveal.v1.MsgReject",
20
+ aminoType: "sparkdream/x/reveal/MsgReject",
21
21
  toAmino: MsgReject.toAmino,
22
22
  fromAmino: MsgReject.fromAmino
23
23
  },
24
24
  "/sparkdream.reveal.v1.MsgStake": {
25
- aminoType: "/sparkdream.reveal.v1.MsgStake",
25
+ aminoType: "sparkdream/x/reveal/MsgStake",
26
26
  toAmino: MsgStake.toAmino,
27
27
  fromAmino: MsgStake.fromAmino
28
28
  },
29
29
  "/sparkdream.reveal.v1.MsgWithdraw": {
30
- aminoType: "/sparkdream.reveal.v1.MsgWithdraw",
30
+ aminoType: "sparkdream/x/reveal/MsgWithdraw",
31
31
  toAmino: MsgWithdraw.toAmino,
32
32
  fromAmino: MsgWithdraw.fromAmino
33
33
  },
34
34
  "/sparkdream.reveal.v1.MsgReveal": {
35
- aminoType: "/sparkdream.reveal.v1.MsgReveal",
35
+ aminoType: "sparkdream/x/reveal/MsgReveal",
36
36
  toAmino: MsgReveal.toAmino,
37
37
  fromAmino: MsgReveal.fromAmino
38
38
  },
39
39
  "/sparkdream.reveal.v1.MsgVerify": {
40
- aminoType: "/sparkdream.reveal.v1.MsgVerify",
40
+ aminoType: "sparkdream/x/reveal/MsgVerify",
41
41
  toAmino: MsgVerify.toAmino,
42
42
  fromAmino: MsgVerify.fromAmino
43
43
  },
44
44
  "/sparkdream.reveal.v1.MsgCancel": {
45
- aminoType: "/sparkdream.reveal.v1.MsgCancel",
45
+ aminoType: "sparkdream/x/reveal/MsgCancel",
46
46
  toAmino: MsgCancel.toAmino,
47
47
  fromAmino: MsgCancel.fromAmino
48
48
  },
49
49
  "/sparkdream.reveal.v1.MsgResolveDispute": {
50
- aminoType: "/sparkdream.reveal.v1.MsgResolveDispute",
50
+ aminoType: "sparkdream/x/reveal/MsgResolveDispute",
51
51
  toAmino: MsgResolveDispute.toAmino,
52
52
  fromAmino: MsgResolveDispute.fromAmino
53
53
  }
@@ -173,6 +173,7 @@ function createBaseMsgPropose() {
173
173
  */
174
174
  export const MsgPropose = {
175
175
  typeUrl: "/sparkdream.reveal.v1.MsgPropose",
176
+ aminoType: "sparkdream/x/reveal/MsgPropose",
176
177
  encode(message, writer = BinaryWriter.create()) {
177
178
  if (message.contributor !== "") {
178
179
  writer.uint32(10).string(message.contributor);
@@ -285,6 +286,12 @@ export const MsgPropose = {
285
286
  fromAminoMsg(object) {
286
287
  return MsgPropose.fromAmino(object.value);
287
288
  },
289
+ toAminoMsg(message) {
290
+ return {
291
+ type: "sparkdream/x/reveal/MsgPropose",
292
+ value: MsgPropose.toAmino(message)
293
+ };
294
+ },
288
295
  fromProtoMsg(message) {
289
296
  return MsgPropose.decode(message.value);
290
297
  },
@@ -384,6 +391,7 @@ function createBaseMsgApprove() {
384
391
  */
385
392
  export const MsgApprove = {
386
393
  typeUrl: "/sparkdream.reveal.v1.MsgApprove",
394
+ aminoType: "sparkdream/x/reveal/MsgApprove",
387
395
  encode(message, writer = BinaryWriter.create()) {
388
396
  if (message.authority !== "") {
389
397
  writer.uint32(10).string(message.authority);
@@ -449,6 +457,12 @@ export const MsgApprove = {
449
457
  fromAminoMsg(object) {
450
458
  return MsgApprove.fromAmino(object.value);
451
459
  },
460
+ toAminoMsg(message) {
461
+ return {
462
+ type: "sparkdream/x/reveal/MsgApprove",
463
+ value: MsgApprove.toAmino(message)
464
+ };
465
+ },
452
466
  fromProtoMsg(message) {
453
467
  return MsgApprove.decode(message.value);
454
468
  },
@@ -534,6 +548,7 @@ function createBaseMsgReject() {
534
548
  */
535
549
  export const MsgReject = {
536
550
  typeUrl: "/sparkdream.reveal.v1.MsgReject",
551
+ aminoType: "sparkdream/x/reveal/MsgReject",
537
552
  encode(message, writer = BinaryWriter.create()) {
538
553
  if (message.authority !== "") {
539
554
  writer.uint32(10).string(message.authority);
@@ -610,6 +625,12 @@ export const MsgReject = {
610
625
  fromAminoMsg(object) {
611
626
  return MsgReject.fromAmino(object.value);
612
627
  },
628
+ toAminoMsg(message) {
629
+ return {
630
+ type: "sparkdream/x/reveal/MsgReject",
631
+ value: MsgReject.toAmino(message)
632
+ };
633
+ },
613
634
  fromProtoMsg(message) {
614
635
  return MsgReject.decode(message.value);
615
636
  },
@@ -700,6 +721,7 @@ function createBaseMsgStake() {
700
721
  */
701
722
  export const MsgStake = {
702
723
  typeUrl: "/sparkdream.reveal.v1.MsgStake",
724
+ aminoType: "sparkdream/x/reveal/MsgStake",
703
725
  encode(message, writer = BinaryWriter.create()) {
704
726
  if (message.staker !== "") {
705
727
  writer.uint32(10).string(message.staker);
@@ -776,6 +798,12 @@ export const MsgStake = {
776
798
  fromAminoMsg(object) {
777
799
  return MsgStake.fromAmino(object.value);
778
800
  },
801
+ toAminoMsg(message) {
802
+ return {
803
+ type: "sparkdream/x/reveal/MsgStake",
804
+ value: MsgStake.toAmino(message)
805
+ };
806
+ },
779
807
  fromProtoMsg(message) {
780
808
  return MsgStake.decode(message.value);
781
809
  },
@@ -872,6 +900,7 @@ function createBaseMsgWithdraw() {
872
900
  */
873
901
  export const MsgWithdraw = {
874
902
  typeUrl: "/sparkdream.reveal.v1.MsgWithdraw",
903
+ aminoType: "sparkdream/x/reveal/MsgWithdraw",
875
904
  encode(message, writer = BinaryWriter.create()) {
876
905
  if (message.staker !== "") {
877
906
  writer.uint32(10).string(message.staker);
@@ -926,6 +955,12 @@ export const MsgWithdraw = {
926
955
  fromAminoMsg(object) {
927
956
  return MsgWithdraw.fromAmino(object.value);
928
957
  },
958
+ toAminoMsg(message) {
959
+ return {
960
+ type: "sparkdream/x/reveal/MsgWithdraw",
961
+ value: MsgWithdraw.toAmino(message)
962
+ };
963
+ },
929
964
  fromProtoMsg(message) {
930
965
  return MsgWithdraw.decode(message.value);
931
966
  },
@@ -1012,6 +1047,7 @@ function createBaseMsgReveal() {
1012
1047
  */
1013
1048
  export const MsgReveal = {
1014
1049
  typeUrl: "/sparkdream.reveal.v1.MsgReveal",
1050
+ aminoType: "sparkdream/x/reveal/MsgReveal",
1015
1051
  encode(message, writer = BinaryWriter.create()) {
1016
1052
  if (message.contributor !== "") {
1017
1053
  writer.uint32(10).string(message.contributor);
@@ -1110,6 +1146,12 @@ export const MsgReveal = {
1110
1146
  fromAminoMsg(object) {
1111
1147
  return MsgReveal.fromAmino(object.value);
1112
1148
  },
1149
+ toAminoMsg(message) {
1150
+ return {
1151
+ type: "sparkdream/x/reveal/MsgReveal",
1152
+ value: MsgReveal.toAmino(message)
1153
+ };
1154
+ },
1113
1155
  fromProtoMsg(message) {
1114
1156
  return MsgReveal.decode(message.value);
1115
1157
  },
@@ -1197,6 +1239,7 @@ function createBaseMsgVerify() {
1197
1239
  */
1198
1240
  export const MsgVerify = {
1199
1241
  typeUrl: "/sparkdream.reveal.v1.MsgVerify",
1242
+ aminoType: "sparkdream/x/reveal/MsgVerify",
1200
1243
  encode(message, writer = BinaryWriter.create()) {
1201
1244
  if (message.voter !== "") {
1202
1245
  writer.uint32(10).string(message.voter);
@@ -1295,6 +1338,12 @@ export const MsgVerify = {
1295
1338
  fromAminoMsg(object) {
1296
1339
  return MsgVerify.fromAmino(object.value);
1297
1340
  },
1341
+ toAminoMsg(message) {
1342
+ return {
1343
+ type: "sparkdream/x/reveal/MsgVerify",
1344
+ value: MsgVerify.toAmino(message)
1345
+ };
1346
+ },
1298
1347
  fromProtoMsg(message) {
1299
1348
  return MsgVerify.decode(message.value);
1300
1349
  },
@@ -1379,6 +1428,7 @@ function createBaseMsgCancel() {
1379
1428
  */
1380
1429
  export const MsgCancel = {
1381
1430
  typeUrl: "/sparkdream.reveal.v1.MsgCancel",
1431
+ aminoType: "sparkdream/x/reveal/MsgCancel",
1382
1432
  encode(message, writer = BinaryWriter.create()) {
1383
1433
  if (message.authority !== "") {
1384
1434
  writer.uint32(10).string(message.authority);
@@ -1444,6 +1494,12 @@ export const MsgCancel = {
1444
1494
  fromAminoMsg(object) {
1445
1495
  return MsgCancel.fromAmino(object.value);
1446
1496
  },
1497
+ toAminoMsg(message) {
1498
+ return {
1499
+ type: "sparkdream/x/reveal/MsgCancel",
1500
+ value: MsgCancel.toAmino(message)
1501
+ };
1502
+ },
1447
1503
  fromProtoMsg(message) {
1448
1504
  return MsgCancel.decode(message.value);
1449
1505
  },
@@ -1531,6 +1587,7 @@ function createBaseMsgResolveDispute() {
1531
1587
  */
1532
1588
  export const MsgResolveDispute = {
1533
1589
  typeUrl: "/sparkdream.reveal.v1.MsgResolveDispute",
1590
+ aminoType: "sparkdream/x/reveal/MsgResolveDispute",
1534
1591
  encode(message, writer = BinaryWriter.create()) {
1535
1592
  if (message.authority !== "") {
1536
1593
  writer.uint32(10).string(message.authority);
@@ -1629,6 +1686,12 @@ export const MsgResolveDispute = {
1629
1686
  fromAminoMsg(object) {
1630
1687
  return MsgResolveDispute.fromAmino(object.value);
1631
1688
  },
1689
+ toAminoMsg(message) {
1690
+ return {
1691
+ type: "sparkdream/x/reveal/MsgResolveDispute",
1692
+ value: MsgResolveDispute.toAmino(message)
1693
+ };
1694
+ },
1632
1695
  fromProtoMsg(message) {
1633
1696
  return MsgResolveDispute.decode(message.value);
1634
1697
  },
@@ -12,102 +12,102 @@ export const AminoConverter = {
12
12
  fromAmino: MsgUpdateOperationalParams.fromAmino
13
13
  },
14
14
  "/sparkdream.season.v1.MsgSetDisplayName": {
15
- aminoType: "/sparkdream.season.v1.MsgSetDisplayName",
15
+ aminoType: "sparkdream/x/season/MsgSetDisplayName",
16
16
  toAmino: MsgSetDisplayName.toAmino,
17
17
  fromAmino: MsgSetDisplayName.fromAmino
18
18
  },
19
19
  "/sparkdream.season.v1.MsgSetUsername": {
20
- aminoType: "/sparkdream.season.v1.MsgSetUsername",
20
+ aminoType: "sparkdream/x/season/MsgSetUsername",
21
21
  toAmino: MsgSetUsername.toAmino,
22
22
  fromAmino: MsgSetUsername.fromAmino
23
23
  },
24
24
  "/sparkdream.season.v1.MsgSetDisplayTitle": {
25
- aminoType: "/sparkdream.season.v1.MsgSetDisplayTitle",
25
+ aminoType: "sparkdream/x/season/MsgSetDisplayTitle",
26
26
  toAmino: MsgSetDisplayTitle.toAmino,
27
27
  fromAmino: MsgSetDisplayTitle.fromAmino
28
28
  },
29
29
  "/sparkdream.season.v1.MsgCreateGuild": {
30
- aminoType: "/sparkdream.season.v1.MsgCreateGuild",
30
+ aminoType: "sparkdream/x/season/MsgCreateGuild",
31
31
  toAmino: MsgCreateGuild.toAmino,
32
32
  fromAmino: MsgCreateGuild.fromAmino
33
33
  },
34
34
  "/sparkdream.season.v1.MsgJoinGuild": {
35
- aminoType: "/sparkdream.season.v1.MsgJoinGuild",
35
+ aminoType: "sparkdream/x/season/MsgJoinGuild",
36
36
  toAmino: MsgJoinGuild.toAmino,
37
37
  fromAmino: MsgJoinGuild.fromAmino
38
38
  },
39
39
  "/sparkdream.season.v1.MsgLeaveGuild": {
40
- aminoType: "/sparkdream.season.v1.MsgLeaveGuild",
40
+ aminoType: "sparkdream/x/season/MsgLeaveGuild",
41
41
  toAmino: MsgLeaveGuild.toAmino,
42
42
  fromAmino: MsgLeaveGuild.fromAmino
43
43
  },
44
44
  "/sparkdream.season.v1.MsgTransferGuildFounder": {
45
- aminoType: "/sparkdream.season.v1.MsgTransferGuildFounder",
45
+ aminoType: "sparkdream/x/season/MsgTransferGuildFounder",
46
46
  toAmino: MsgTransferGuildFounder.toAmino,
47
47
  fromAmino: MsgTransferGuildFounder.fromAmino
48
48
  },
49
49
  "/sparkdream.season.v1.MsgDissolveGuild": {
50
- aminoType: "/sparkdream.season.v1.MsgDissolveGuild",
50
+ aminoType: "sparkdream/x/season/MsgDissolveGuild",
51
51
  toAmino: MsgDissolveGuild.toAmino,
52
52
  fromAmino: MsgDissolveGuild.fromAmino
53
53
  },
54
54
  "/sparkdream.season.v1.MsgPromoteToOfficer": {
55
- aminoType: "/sparkdream.season.v1.MsgPromoteToOfficer",
55
+ aminoType: "sparkdream/x/season/MsgPromoteToOfficer",
56
56
  toAmino: MsgPromoteToOfficer.toAmino,
57
57
  fromAmino: MsgPromoteToOfficer.fromAmino
58
58
  },
59
59
  "/sparkdream.season.v1.MsgDemoteOfficer": {
60
- aminoType: "/sparkdream.season.v1.MsgDemoteOfficer",
60
+ aminoType: "sparkdream/x/season/MsgDemoteOfficer",
61
61
  toAmino: MsgDemoteOfficer.toAmino,
62
62
  fromAmino: MsgDemoteOfficer.fromAmino
63
63
  },
64
64
  "/sparkdream.season.v1.MsgInviteToGuild": {
65
- aminoType: "/sparkdream.season.v1.MsgInviteToGuild",
65
+ aminoType: "sparkdream/x/season/MsgInviteToGuild",
66
66
  toAmino: MsgInviteToGuild.toAmino,
67
67
  fromAmino: MsgInviteToGuild.fromAmino
68
68
  },
69
69
  "/sparkdream.season.v1.MsgAcceptGuildInvite": {
70
- aminoType: "/sparkdream.season.v1.MsgAcceptGuildInvite",
70
+ aminoType: "sparkdream/x/season/MsgAcceptGuildInvite",
71
71
  toAmino: MsgAcceptGuildInvite.toAmino,
72
72
  fromAmino: MsgAcceptGuildInvite.fromAmino
73
73
  },
74
74
  "/sparkdream.season.v1.MsgRevokeGuildInvite": {
75
- aminoType: "/sparkdream.season.v1.MsgRevokeGuildInvite",
75
+ aminoType: "sparkdream/x/season/MsgRevokeGuildInvite",
76
76
  toAmino: MsgRevokeGuildInvite.toAmino,
77
77
  fromAmino: MsgRevokeGuildInvite.fromAmino
78
78
  },
79
79
  "/sparkdream.season.v1.MsgSetGuildInviteOnly": {
80
- aminoType: "/sparkdream.season.v1.MsgSetGuildInviteOnly",
80
+ aminoType: "sparkdream/x/season/MsgSetGuildInviteOnly",
81
81
  toAmino: MsgSetGuildInviteOnly.toAmino,
82
82
  fromAmino: MsgSetGuildInviteOnly.fromAmino
83
83
  },
84
84
  "/sparkdream.season.v1.MsgUpdateGuildDescription": {
85
- aminoType: "/sparkdream.season.v1.MsgUpdateGuildDescription",
85
+ aminoType: "sparkdream/x/season/MsgUpdateGuildDescription",
86
86
  toAmino: MsgUpdateGuildDescription.toAmino,
87
87
  fromAmino: MsgUpdateGuildDescription.fromAmino
88
88
  },
89
89
  "/sparkdream.season.v1.MsgKickFromGuild": {
90
- aminoType: "/sparkdream.season.v1.MsgKickFromGuild",
90
+ aminoType: "sparkdream/x/season/MsgKickFromGuild",
91
91
  toAmino: MsgKickFromGuild.toAmino,
92
92
  fromAmino: MsgKickFromGuild.fromAmino
93
93
  },
94
94
  "/sparkdream.season.v1.MsgClaimGuildFounder": {
95
- aminoType: "/sparkdream.season.v1.MsgClaimGuildFounder",
95
+ aminoType: "sparkdream/x/season/MsgClaimGuildFounder",
96
96
  toAmino: MsgClaimGuildFounder.toAmino,
97
97
  fromAmino: MsgClaimGuildFounder.fromAmino
98
98
  },
99
99
  "/sparkdream.season.v1.MsgStartQuest": {
100
- aminoType: "/sparkdream.season.v1.MsgStartQuest",
100
+ aminoType: "sparkdream/x/season/MsgStartQuest",
101
101
  toAmino: MsgStartQuest.toAmino,
102
102
  fromAmino: MsgStartQuest.fromAmino
103
103
  },
104
104
  "/sparkdream.season.v1.MsgClaimQuestReward": {
105
- aminoType: "/sparkdream.season.v1.MsgClaimQuestReward",
105
+ aminoType: "sparkdream/x/season/MsgClaimQuestReward",
106
106
  toAmino: MsgClaimQuestReward.toAmino,
107
107
  fromAmino: MsgClaimQuestReward.fromAmino
108
108
  },
109
109
  "/sparkdream.season.v1.MsgAbandonQuest": {
110
- aminoType: "/sparkdream.season.v1.MsgAbandonQuest",
110
+ aminoType: "sparkdream/x/season/MsgAbandonQuest",
111
111
  toAmino: MsgAbandonQuest.toAmino,
112
112
  fromAmino: MsgAbandonQuest.fromAmino
113
113
  },
@@ -147,12 +147,12 @@ export const AminoConverter = {
147
147
  fromAmino: MsgSkipTransitionPhase.fromAmino
148
148
  },
149
149
  "/sparkdream.season.v1.MsgReportDisplayName": {
150
- aminoType: "/sparkdream.season.v1.MsgReportDisplayName",
150
+ aminoType: "sparkdream/x/season/MsgReportDisplayName",
151
151
  toAmino: MsgReportDisplayName.toAmino,
152
152
  fromAmino: MsgReportDisplayName.fromAmino
153
153
  },
154
154
  "/sparkdream.season.v1.MsgAppealDisplayNameModeration": {
155
- aminoType: "/sparkdream.season.v1.MsgAppealDisplayNameModeration",
155
+ aminoType: "sparkdream/x/season/MsgAppealDisplayNameModeration",
156
156
  toAmino: MsgAppealDisplayNameModeration.toAmino,
157
157
  fromAmino: MsgAppealDisplayNameModeration.fromAmino
158
158
  },
@@ -202,17 +202,17 @@ export const AminoConverter = {
202
202
  fromAmino: MsgResolveUnappealedModeration.fromAmino
203
203
  },
204
204
  "/sparkdream.season.v1.MsgNominate": {
205
- aminoType: "/sparkdream.season.v1.MsgNominate",
205
+ aminoType: "sparkdream/x/season/MsgNominate",
206
206
  toAmino: MsgNominate.toAmino,
207
207
  fromAmino: MsgNominate.fromAmino
208
208
  },
209
209
  "/sparkdream.season.v1.MsgStakeNomination": {
210
- aminoType: "/sparkdream.season.v1.MsgStakeNomination",
210
+ aminoType: "sparkdream/x/season/MsgStakeNomination",
211
211
  toAmino: MsgStakeNomination.toAmino,
212
212
  fromAmino: MsgStakeNomination.fromAmino
213
213
  },
214
214
  "/sparkdream.season.v1.MsgUnstakeNomination": {
215
- aminoType: "/sparkdream.season.v1.MsgUnstakeNomination",
215
+ aminoType: "sparkdream/x/season/MsgUnstakeNomination",
216
216
  toAmino: MsgUnstakeNomination.toAmino,
217
217
  fromAmino: MsgUnstakeNomination.fromAmino
218
218
  }