@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.
- package/esm/nested-amino.js +52 -0
- package/esm/sparkdream/blog/v1/tx.amino.js +14 -14
- package/esm/sparkdream/blog/v1/tx.js +98 -0
- package/esm/sparkdream/collect/v1/tx.amino.js +25 -25
- package/esm/sparkdream/collect/v1/tx.js +175 -0
- package/esm/sparkdream/commons/v1/query.js +379 -1
- package/esm/sparkdream/commons/v1/query.lcd.js +21 -0
- package/esm/sparkdream/commons/v1/query.rpc.Query.js +24 -1
- package/esm/sparkdream/commons/v1/tx.amino.js +80 -41
- package/esm/sparkdream/commons/v1/tx.js +91 -0
- package/esm/sparkdream/federation/v1/tx.amino.js +24 -24
- package/esm/sparkdream/federation/v1/tx.js +168 -0
- package/esm/sparkdream/forum/v1/tx.amino.js +33 -33
- package/esm/sparkdream/forum/v1/tx.js +231 -0
- package/esm/sparkdream/futarchy/v1/tx.amino.js +4 -4
- package/esm/sparkdream/futarchy/v1/tx.js +28 -0
- package/esm/sparkdream/name/v1/name_record.js +33 -2
- package/esm/sparkdream/name/v1/query.js +166 -0
- package/esm/sparkdream/name/v1/query.lcd.js +13 -0
- package/esm/sparkdream/name/v1/query.rpc.Query.js +12 -1
- package/esm/sparkdream/name/v1/tx.amino.js +21 -6
- package/esm/sparkdream/name/v1/tx.js +500 -0
- package/esm/sparkdream/name/v1/tx.registry.js +56 -2
- package/esm/sparkdream/name/v1/tx.rpc.msg.js +24 -1
- package/esm/sparkdream/rep/v1/query.js +204 -0
- package/esm/sparkdream/rep/v1/query.lcd.js +5 -0
- package/esm/sparkdream/rep/v1/query.rpc.Query.js +10 -1
- package/esm/sparkdream/rep/v1/tx.amino.js +45 -45
- package/esm/sparkdream/rep/v1/tx.js +315 -0
- package/esm/sparkdream/reveal/v1/tx.amino.js +9 -9
- package/esm/sparkdream/reveal/v1/tx.js +63 -0
- package/esm/sparkdream/season/v1/tx.amino.js +25 -25
- package/esm/sparkdream/season/v1/tx.js +175 -0
- package/esm/sparkdream/session/v1/tx.amino.js +33 -11
- package/esm/sparkdream/session/v1/tx.js +21 -0
- package/esm/sparkdream/shield/v1/tx.amino.js +4 -4
- package/esm/sparkdream/shield/v1/tx.js +28 -0
- package/nested-amino.d.ts +76 -0
- package/nested-amino.js +57 -0
- package/package.json +1 -1
- package/sparkdream/blog/v1/tx.amino.js +14 -14
- package/sparkdream/blog/v1/tx.d.ts +42 -14
- package/sparkdream/blog/v1/tx.js +98 -0
- package/sparkdream/bundle.d.ts +661 -6
- package/sparkdream/client.d.ts +21 -6
- package/sparkdream/collect/v1/tx.amino.js +25 -25
- package/sparkdream/collect/v1/tx.d.ts +75 -25
- package/sparkdream/collect/v1/tx.js +175 -0
- package/sparkdream/commons/v1/query.d.ts +243 -1
- package/sparkdream/commons/v1/query.js +379 -1
- package/sparkdream/commons/v1/query.lcd.d.ts +3 -1
- package/sparkdream/commons/v1/query.lcd.js +21 -0
- package/sparkdream/commons/v1/query.rpc.Query.d.ts +16 -1
- package/sparkdream/commons/v1/query.rpc.Query.js +23 -0
- package/sparkdream/commons/v1/tx.amino.d.ts +6 -5
- package/sparkdream/commons/v1/tx.amino.js +82 -42
- package/sparkdream/commons/v1/tx.d.ts +39 -13
- package/sparkdream/commons/v1/tx.js +91 -0
- package/sparkdream/federation/v1/tx.amino.js +24 -24
- package/sparkdream/federation/v1/tx.d.ts +72 -24
- package/sparkdream/federation/v1/tx.js +168 -0
- package/sparkdream/forum/v1/tx.amino.js +33 -33
- package/sparkdream/forum/v1/tx.d.ts +99 -33
- package/sparkdream/forum/v1/tx.js +231 -0
- package/sparkdream/futarchy/v1/tx.amino.js +4 -4
- package/sparkdream/futarchy/v1/tx.d.ts +12 -4
- package/sparkdream/futarchy/v1/tx.js +28 -0
- package/sparkdream/name/v1/name_record.d.ts +46 -3
- package/sparkdream/name/v1/name_record.js +33 -2
- package/sparkdream/name/v1/query.d.ts +95 -0
- package/sparkdream/name/v1/query.js +167 -1
- package/sparkdream/name/v1/query.lcd.d.ts +2 -1
- package/sparkdream/name/v1/query.lcd.js +13 -0
- package/sparkdream/name/v1/query.rpc.Query.d.ts +9 -1
- package/sparkdream/name/v1/query.rpc.Query.js +11 -0
- package/sparkdream/name/v1/tx.amino.d.ts +16 -1
- package/sparkdream/name/v1/tx.amino.js +20 -5
- package/sparkdream/name/v1/tx.d.ts +336 -5
- package/sparkdream/name/v1/tx.js +501 -1
- package/sparkdream/name/v1/tx.registry.d.ts +37 -1
- package/sparkdream/name/v1/tx.registry.js +55 -1
- package/sparkdream/name/v1/tx.rpc.msg.d.ts +21 -1
- package/sparkdream/name/v1/tx.rpc.msg.js +23 -0
- package/sparkdream/rep/v1/query.d.ts +153 -1
- package/sparkdream/rep/v1/query.js +205 -1
- package/sparkdream/rep/v1/query.lcd.d.ts +2 -1
- package/sparkdream/rep/v1/query.lcd.js +5 -0
- package/sparkdream/rep/v1/query.rpc.Query.d.ts +5 -1
- package/sparkdream/rep/v1/query.rpc.Query.js +9 -0
- package/sparkdream/rep/v1/tx.amino.js +45 -45
- package/sparkdream/rep/v1/tx.d.ts +135 -45
- package/sparkdream/rep/v1/tx.js +315 -0
- package/sparkdream/reveal/v1/tx.amino.js +9 -9
- package/sparkdream/reveal/v1/tx.d.ts +27 -9
- package/sparkdream/reveal/v1/tx.js +63 -0
- package/sparkdream/rpc.query.d.ts +4 -0
- package/sparkdream/season/v1/tx.amino.js +25 -25
- package/sparkdream/season/v1/tx.d.ts +75 -25
- package/sparkdream/season/v1/tx.js +175 -0
- package/sparkdream/session/v1/tx.amino.d.ts +3 -3
- package/sparkdream/session/v1/tx.amino.js +33 -11
- package/sparkdream/session/v1/tx.d.ts +9 -3
- package/sparkdream/session/v1/tx.js +21 -0
- package/sparkdream/shield/v1/tx.amino.js +4 -4
- package/sparkdream/shield/v1/tx.d.ts +12 -4
- package/sparkdream/shield/v1/tx.js +28 -0
|
@@ -348,6 +348,7 @@ function createBaseMsgInviteMember() {
|
|
|
348
348
|
*/
|
|
349
349
|
export const MsgInviteMember = {
|
|
350
350
|
typeUrl: "/sparkdream.rep.v1.MsgInviteMember",
|
|
351
|
+
aminoType: "sparkdream/x/rep/MsgInviteMember",
|
|
351
352
|
encode(message, writer = BinaryWriter.create()) {
|
|
352
353
|
if (message.inviter !== "") {
|
|
353
354
|
writer.uint32(10).string(message.inviter);
|
|
@@ -427,6 +428,12 @@ export const MsgInviteMember = {
|
|
|
427
428
|
fromAminoMsg(object) {
|
|
428
429
|
return MsgInviteMember.fromAmino(object.value);
|
|
429
430
|
},
|
|
431
|
+
toAminoMsg(message) {
|
|
432
|
+
return {
|
|
433
|
+
type: "sparkdream/x/rep/MsgInviteMember",
|
|
434
|
+
value: MsgInviteMember.toAmino(message)
|
|
435
|
+
};
|
|
436
|
+
},
|
|
430
437
|
fromProtoMsg(message) {
|
|
431
438
|
return MsgInviteMember.decode(message.value);
|
|
432
439
|
},
|
|
@@ -510,6 +517,7 @@ function createBaseMsgAcceptInvitation() {
|
|
|
510
517
|
*/
|
|
511
518
|
export const MsgAcceptInvitation = {
|
|
512
519
|
typeUrl: "/sparkdream.rep.v1.MsgAcceptInvitation",
|
|
520
|
+
aminoType: "sparkdream/x/rep/MsgAcceptInvitation",
|
|
513
521
|
encode(message, writer = BinaryWriter.create()) {
|
|
514
522
|
if (message.invitee !== "") {
|
|
515
523
|
writer.uint32(10).string(message.invitee);
|
|
@@ -564,6 +572,12 @@ export const MsgAcceptInvitation = {
|
|
|
564
572
|
fromAminoMsg(object) {
|
|
565
573
|
return MsgAcceptInvitation.fromAmino(object.value);
|
|
566
574
|
},
|
|
575
|
+
toAminoMsg(message) {
|
|
576
|
+
return {
|
|
577
|
+
type: "sparkdream/x/rep/MsgAcceptInvitation",
|
|
578
|
+
value: MsgAcceptInvitation.toAmino(message)
|
|
579
|
+
};
|
|
580
|
+
},
|
|
567
581
|
fromProtoMsg(message) {
|
|
568
582
|
return MsgAcceptInvitation.decode(message.value);
|
|
569
583
|
},
|
|
@@ -650,6 +664,7 @@ function createBaseMsgTransferDream() {
|
|
|
650
664
|
*/
|
|
651
665
|
export const MsgTransferDream = {
|
|
652
666
|
typeUrl: "/sparkdream.rep.v1.MsgTransferDream",
|
|
667
|
+
aminoType: "sparkdream/x/rep/MsgTransferDream",
|
|
653
668
|
encode(message, writer = BinaryWriter.create()) {
|
|
654
669
|
if (message.sender !== "") {
|
|
655
670
|
writer.uint32(10).string(message.sender);
|
|
@@ -737,6 +752,12 @@ export const MsgTransferDream = {
|
|
|
737
752
|
fromAminoMsg(object) {
|
|
738
753
|
return MsgTransferDream.fromAmino(object.value);
|
|
739
754
|
},
|
|
755
|
+
toAminoMsg(message) {
|
|
756
|
+
return {
|
|
757
|
+
type: "sparkdream/x/rep/MsgTransferDream",
|
|
758
|
+
value: MsgTransferDream.toAmino(message)
|
|
759
|
+
};
|
|
760
|
+
},
|
|
740
761
|
fromProtoMsg(message) {
|
|
741
762
|
return MsgTransferDream.decode(message.value);
|
|
742
763
|
},
|
|
@@ -824,6 +845,7 @@ function createBaseMsgCreateInterim() {
|
|
|
824
845
|
*/
|
|
825
846
|
export const MsgCreateInterim = {
|
|
826
847
|
typeUrl: "/sparkdream.rep.v1.MsgCreateInterim",
|
|
848
|
+
aminoType: "sparkdream/x/rep/MsgCreateInterim",
|
|
827
849
|
encode(message, writer = BinaryWriter.create()) {
|
|
828
850
|
if (message.creator !== "") {
|
|
829
851
|
writer.uint32(10).string(message.creator);
|
|
@@ -922,6 +944,12 @@ export const MsgCreateInterim = {
|
|
|
922
944
|
fromAminoMsg(object) {
|
|
923
945
|
return MsgCreateInterim.fromAmino(object.value);
|
|
924
946
|
},
|
|
947
|
+
toAminoMsg(message) {
|
|
948
|
+
return {
|
|
949
|
+
type: "sparkdream/x/rep/MsgCreateInterim",
|
|
950
|
+
value: MsgCreateInterim.toAmino(message)
|
|
951
|
+
};
|
|
952
|
+
},
|
|
925
953
|
fromProtoMsg(message) {
|
|
926
954
|
return MsgCreateInterim.decode(message.value);
|
|
927
955
|
},
|
|
@@ -1006,6 +1034,7 @@ function createBaseMsgAssignInterim() {
|
|
|
1006
1034
|
*/
|
|
1007
1035
|
export const MsgAssignInterim = {
|
|
1008
1036
|
typeUrl: "/sparkdream.rep.v1.MsgAssignInterim",
|
|
1037
|
+
aminoType: "sparkdream/x/rep/MsgAssignInterim",
|
|
1009
1038
|
encode(message, writer = BinaryWriter.create()) {
|
|
1010
1039
|
if (message.creator !== "") {
|
|
1011
1040
|
writer.uint32(10).string(message.creator);
|
|
@@ -1071,6 +1100,12 @@ export const MsgAssignInterim = {
|
|
|
1071
1100
|
fromAminoMsg(object) {
|
|
1072
1101
|
return MsgAssignInterim.fromAmino(object.value);
|
|
1073
1102
|
},
|
|
1103
|
+
toAminoMsg(message) {
|
|
1104
|
+
return {
|
|
1105
|
+
type: "sparkdream/x/rep/MsgAssignInterim",
|
|
1106
|
+
value: MsgAssignInterim.toAmino(message)
|
|
1107
|
+
};
|
|
1108
|
+
},
|
|
1074
1109
|
fromProtoMsg(message) {
|
|
1075
1110
|
return MsgAssignInterim.decode(message.value);
|
|
1076
1111
|
},
|
|
@@ -1156,6 +1191,7 @@ function createBaseMsgSubmitInterimWork() {
|
|
|
1156
1191
|
*/
|
|
1157
1192
|
export const MsgSubmitInterimWork = {
|
|
1158
1193
|
typeUrl: "/sparkdream.rep.v1.MsgSubmitInterimWork",
|
|
1194
|
+
aminoType: "sparkdream/x/rep/MsgSubmitInterimWork",
|
|
1159
1195
|
encode(message, writer = BinaryWriter.create()) {
|
|
1160
1196
|
if (message.creator !== "") {
|
|
1161
1197
|
writer.uint32(10).string(message.creator);
|
|
@@ -1232,6 +1268,12 @@ export const MsgSubmitInterimWork = {
|
|
|
1232
1268
|
fromAminoMsg(object) {
|
|
1233
1269
|
return MsgSubmitInterimWork.fromAmino(object.value);
|
|
1234
1270
|
},
|
|
1271
|
+
toAminoMsg(message) {
|
|
1272
|
+
return {
|
|
1273
|
+
type: "sparkdream/x/rep/MsgSubmitInterimWork",
|
|
1274
|
+
value: MsgSubmitInterimWork.toAmino(message)
|
|
1275
|
+
};
|
|
1276
|
+
},
|
|
1235
1277
|
fromProtoMsg(message) {
|
|
1236
1278
|
return MsgSubmitInterimWork.decode(message.value);
|
|
1237
1279
|
},
|
|
@@ -1317,6 +1359,7 @@ function createBaseMsgApproveInterim() {
|
|
|
1317
1359
|
*/
|
|
1318
1360
|
export const MsgApproveInterim = {
|
|
1319
1361
|
typeUrl: "/sparkdream.rep.v1.MsgApproveInterim",
|
|
1362
|
+
aminoType: "sparkdream/x/rep/MsgApproveInterim",
|
|
1320
1363
|
encode(message, writer = BinaryWriter.create()) {
|
|
1321
1364
|
if (message.creator !== "") {
|
|
1322
1365
|
writer.uint32(10).string(message.creator);
|
|
@@ -1393,6 +1436,12 @@ export const MsgApproveInterim = {
|
|
|
1393
1436
|
fromAminoMsg(object) {
|
|
1394
1437
|
return MsgApproveInterim.fromAmino(object.value);
|
|
1395
1438
|
},
|
|
1439
|
+
toAminoMsg(message) {
|
|
1440
|
+
return {
|
|
1441
|
+
type: "sparkdream/x/rep/MsgApproveInterim",
|
|
1442
|
+
value: MsgApproveInterim.toAmino(message)
|
|
1443
|
+
};
|
|
1444
|
+
},
|
|
1396
1445
|
fromProtoMsg(message) {
|
|
1397
1446
|
return MsgApproveInterim.decode(message.value);
|
|
1398
1447
|
},
|
|
@@ -1477,6 +1526,7 @@ function createBaseMsgAbandonInterim() {
|
|
|
1477
1526
|
*/
|
|
1478
1527
|
export const MsgAbandonInterim = {
|
|
1479
1528
|
typeUrl: "/sparkdream.rep.v1.MsgAbandonInterim",
|
|
1529
|
+
aminoType: "sparkdream/x/rep/MsgAbandonInterim",
|
|
1480
1530
|
encode(message, writer = BinaryWriter.create()) {
|
|
1481
1531
|
if (message.creator !== "") {
|
|
1482
1532
|
writer.uint32(10).string(message.creator);
|
|
@@ -1542,6 +1592,12 @@ export const MsgAbandonInterim = {
|
|
|
1542
1592
|
fromAminoMsg(object) {
|
|
1543
1593
|
return MsgAbandonInterim.fromAmino(object.value);
|
|
1544
1594
|
},
|
|
1595
|
+
toAminoMsg(message) {
|
|
1596
|
+
return {
|
|
1597
|
+
type: "sparkdream/x/rep/MsgAbandonInterim",
|
|
1598
|
+
value: MsgAbandonInterim.toAmino(message)
|
|
1599
|
+
};
|
|
1600
|
+
},
|
|
1545
1601
|
fromProtoMsg(message) {
|
|
1546
1602
|
return MsgAbandonInterim.decode(message.value);
|
|
1547
1603
|
},
|
|
@@ -1626,6 +1682,7 @@ function createBaseMsgCompleteInterim() {
|
|
|
1626
1682
|
*/
|
|
1627
1683
|
export const MsgCompleteInterim = {
|
|
1628
1684
|
typeUrl: "/sparkdream.rep.v1.MsgCompleteInterim",
|
|
1685
|
+
aminoType: "sparkdream/x/rep/MsgCompleteInterim",
|
|
1629
1686
|
encode(message, writer = BinaryWriter.create()) {
|
|
1630
1687
|
if (message.creator !== "") {
|
|
1631
1688
|
writer.uint32(10).string(message.creator);
|
|
@@ -1691,6 +1748,12 @@ export const MsgCompleteInterim = {
|
|
|
1691
1748
|
fromAminoMsg(object) {
|
|
1692
1749
|
return MsgCompleteInterim.fromAmino(object.value);
|
|
1693
1750
|
},
|
|
1751
|
+
toAminoMsg(message) {
|
|
1752
|
+
return {
|
|
1753
|
+
type: "sparkdream/x/rep/MsgCompleteInterim",
|
|
1754
|
+
value: MsgCompleteInterim.toAmino(message)
|
|
1755
|
+
};
|
|
1756
|
+
},
|
|
1694
1757
|
fromProtoMsg(message) {
|
|
1695
1758
|
return MsgCompleteInterim.decode(message.value);
|
|
1696
1759
|
},
|
|
@@ -1782,6 +1845,7 @@ function createBaseMsgProposeProject() {
|
|
|
1782
1845
|
*/
|
|
1783
1846
|
export const MsgProposeProject = {
|
|
1784
1847
|
typeUrl: "/sparkdream.rep.v1.MsgProposeProject",
|
|
1848
|
+
aminoType: "sparkdream/x/rep/MsgProposeProject",
|
|
1785
1849
|
encode(message, writer = BinaryWriter.create()) {
|
|
1786
1850
|
if (message.creator !== "") {
|
|
1787
1851
|
writer.uint32(10).string(message.creator);
|
|
@@ -1933,6 +1997,12 @@ export const MsgProposeProject = {
|
|
|
1933
1997
|
fromAminoMsg(object) {
|
|
1934
1998
|
return MsgProposeProject.fromAmino(object.value);
|
|
1935
1999
|
},
|
|
2000
|
+
toAminoMsg(message) {
|
|
2001
|
+
return {
|
|
2002
|
+
type: "sparkdream/x/rep/MsgProposeProject",
|
|
2003
|
+
value: MsgProposeProject.toAmino(message)
|
|
2004
|
+
};
|
|
2005
|
+
},
|
|
1936
2006
|
fromProtoMsg(message) {
|
|
1937
2007
|
return MsgProposeProject.decode(message.value);
|
|
1938
2008
|
},
|
|
@@ -2018,6 +2088,7 @@ function createBaseMsgApproveProjectBudget() {
|
|
|
2018
2088
|
*/
|
|
2019
2089
|
export const MsgApproveProjectBudget = {
|
|
2020
2090
|
typeUrl: "/sparkdream.rep.v1.MsgApproveProjectBudget",
|
|
2091
|
+
aminoType: "sparkdream/x/rep/MsgApproveProjectBudget",
|
|
2021
2092
|
encode(message, writer = BinaryWriter.create()) {
|
|
2022
2093
|
if (message.approver !== "") {
|
|
2023
2094
|
writer.uint32(10).string(message.approver);
|
|
@@ -2094,6 +2165,12 @@ export const MsgApproveProjectBudget = {
|
|
|
2094
2165
|
fromAminoMsg(object) {
|
|
2095
2166
|
return MsgApproveProjectBudget.fromAmino(object.value);
|
|
2096
2167
|
},
|
|
2168
|
+
toAminoMsg(message) {
|
|
2169
|
+
return {
|
|
2170
|
+
type: "sparkdream/x/rep/MsgApproveProjectBudget",
|
|
2171
|
+
value: MsgApproveProjectBudget.toAmino(message)
|
|
2172
|
+
};
|
|
2173
|
+
},
|
|
2097
2174
|
fromProtoMsg(message) {
|
|
2098
2175
|
return MsgApproveProjectBudget.decode(message.value);
|
|
2099
2176
|
},
|
|
@@ -2178,6 +2255,7 @@ function createBaseMsgCancelProject() {
|
|
|
2178
2255
|
*/
|
|
2179
2256
|
export const MsgCancelProject = {
|
|
2180
2257
|
typeUrl: "/sparkdream.rep.v1.MsgCancelProject",
|
|
2258
|
+
aminoType: "sparkdream/x/rep/MsgCancelProject",
|
|
2181
2259
|
encode(message, writer = BinaryWriter.create()) {
|
|
2182
2260
|
if (message.creator !== "") {
|
|
2183
2261
|
writer.uint32(10).string(message.creator);
|
|
@@ -2243,6 +2321,12 @@ export const MsgCancelProject = {
|
|
|
2243
2321
|
fromAminoMsg(object) {
|
|
2244
2322
|
return MsgCancelProject.fromAmino(object.value);
|
|
2245
2323
|
},
|
|
2324
|
+
toAminoMsg(message) {
|
|
2325
|
+
return {
|
|
2326
|
+
type: "sparkdream/x/rep/MsgCancelProject",
|
|
2327
|
+
value: MsgCancelProject.toAmino(message)
|
|
2328
|
+
};
|
|
2329
|
+
},
|
|
2246
2330
|
fromProtoMsg(message) {
|
|
2247
2331
|
return MsgCancelProject.decode(message.value);
|
|
2248
2332
|
},
|
|
@@ -2333,6 +2417,7 @@ function createBaseMsgCreateInitiative() {
|
|
|
2333
2417
|
*/
|
|
2334
2418
|
export const MsgCreateInitiative = {
|
|
2335
2419
|
typeUrl: "/sparkdream.rep.v1.MsgCreateInitiative",
|
|
2420
|
+
aminoType: "sparkdream/x/rep/MsgCreateInitiative",
|
|
2336
2421
|
encode(message, writer = BinaryWriter.create()) {
|
|
2337
2422
|
if (message.creator !== "") {
|
|
2338
2423
|
writer.uint32(10).string(message.creator);
|
|
@@ -2467,6 +2552,12 @@ export const MsgCreateInitiative = {
|
|
|
2467
2552
|
fromAminoMsg(object) {
|
|
2468
2553
|
return MsgCreateInitiative.fromAmino(object.value);
|
|
2469
2554
|
},
|
|
2555
|
+
toAminoMsg(message) {
|
|
2556
|
+
return {
|
|
2557
|
+
type: "sparkdream/x/rep/MsgCreateInitiative",
|
|
2558
|
+
value: MsgCreateInitiative.toAmino(message)
|
|
2559
|
+
};
|
|
2560
|
+
},
|
|
2470
2561
|
fromProtoMsg(message) {
|
|
2471
2562
|
return MsgCreateInitiative.decode(message.value);
|
|
2472
2563
|
},
|
|
@@ -2564,6 +2655,7 @@ function createBaseMsgAssignInitiative() {
|
|
|
2564
2655
|
*/
|
|
2565
2656
|
export const MsgAssignInitiative = {
|
|
2566
2657
|
typeUrl: "/sparkdream.rep.v1.MsgAssignInitiative",
|
|
2658
|
+
aminoType: "sparkdream/x/rep/MsgAssignInitiative",
|
|
2567
2659
|
encode(message, writer = BinaryWriter.create()) {
|
|
2568
2660
|
if (message.creator !== "") {
|
|
2569
2661
|
writer.uint32(10).string(message.creator);
|
|
@@ -2629,6 +2721,12 @@ export const MsgAssignInitiative = {
|
|
|
2629
2721
|
fromAminoMsg(object) {
|
|
2630
2722
|
return MsgAssignInitiative.fromAmino(object.value);
|
|
2631
2723
|
},
|
|
2724
|
+
toAminoMsg(message) {
|
|
2725
|
+
return {
|
|
2726
|
+
type: "sparkdream/x/rep/MsgAssignInitiative",
|
|
2727
|
+
value: MsgAssignInitiative.toAmino(message)
|
|
2728
|
+
};
|
|
2729
|
+
},
|
|
2632
2730
|
fromProtoMsg(message) {
|
|
2633
2731
|
return MsgAssignInitiative.decode(message.value);
|
|
2634
2732
|
},
|
|
@@ -2714,6 +2812,7 @@ function createBaseMsgSubmitInitiativeWork() {
|
|
|
2714
2812
|
*/
|
|
2715
2813
|
export const MsgSubmitInitiativeWork = {
|
|
2716
2814
|
typeUrl: "/sparkdream.rep.v1.MsgSubmitInitiativeWork",
|
|
2815
|
+
aminoType: "sparkdream/x/rep/MsgSubmitInitiativeWork",
|
|
2717
2816
|
encode(message, writer = BinaryWriter.create()) {
|
|
2718
2817
|
if (message.creator !== "") {
|
|
2719
2818
|
writer.uint32(10).string(message.creator);
|
|
@@ -2790,6 +2889,12 @@ export const MsgSubmitInitiativeWork = {
|
|
|
2790
2889
|
fromAminoMsg(object) {
|
|
2791
2890
|
return MsgSubmitInitiativeWork.fromAmino(object.value);
|
|
2792
2891
|
},
|
|
2892
|
+
toAminoMsg(message) {
|
|
2893
|
+
return {
|
|
2894
|
+
type: "sparkdream/x/rep/MsgSubmitInitiativeWork",
|
|
2895
|
+
value: MsgSubmitInitiativeWork.toAmino(message)
|
|
2896
|
+
};
|
|
2897
|
+
},
|
|
2793
2898
|
fromProtoMsg(message) {
|
|
2794
2899
|
return MsgSubmitInitiativeWork.decode(message.value);
|
|
2795
2900
|
},
|
|
@@ -2876,6 +2981,7 @@ function createBaseMsgApproveInitiative() {
|
|
|
2876
2981
|
*/
|
|
2877
2982
|
export const MsgApproveInitiative = {
|
|
2878
2983
|
typeUrl: "/sparkdream.rep.v1.MsgApproveInitiative",
|
|
2984
|
+
aminoType: "sparkdream/x/rep/MsgApproveInitiative",
|
|
2879
2985
|
encode(message, writer = BinaryWriter.create()) {
|
|
2880
2986
|
if (message.creator !== "") {
|
|
2881
2987
|
writer.uint32(10).string(message.creator);
|
|
@@ -2966,6 +3072,12 @@ export const MsgApproveInitiative = {
|
|
|
2966
3072
|
fromAminoMsg(object) {
|
|
2967
3073
|
return MsgApproveInitiative.fromAmino(object.value);
|
|
2968
3074
|
},
|
|
3075
|
+
toAminoMsg(message) {
|
|
3076
|
+
return {
|
|
3077
|
+
type: "sparkdream/x/rep/MsgApproveInitiative",
|
|
3078
|
+
value: MsgApproveInitiative.toAmino(message)
|
|
3079
|
+
};
|
|
3080
|
+
},
|
|
2969
3081
|
fromProtoMsg(message) {
|
|
2970
3082
|
return MsgApproveInitiative.decode(message.value);
|
|
2971
3083
|
},
|
|
@@ -3050,6 +3162,7 @@ function createBaseMsgAbandonInitiative() {
|
|
|
3050
3162
|
*/
|
|
3051
3163
|
export const MsgAbandonInitiative = {
|
|
3052
3164
|
typeUrl: "/sparkdream.rep.v1.MsgAbandonInitiative",
|
|
3165
|
+
aminoType: "sparkdream/x/rep/MsgAbandonInitiative",
|
|
3053
3166
|
encode(message, writer = BinaryWriter.create()) {
|
|
3054
3167
|
if (message.creator !== "") {
|
|
3055
3168
|
writer.uint32(10).string(message.creator);
|
|
@@ -3115,6 +3228,12 @@ export const MsgAbandonInitiative = {
|
|
|
3115
3228
|
fromAminoMsg(object) {
|
|
3116
3229
|
return MsgAbandonInitiative.fromAmino(object.value);
|
|
3117
3230
|
},
|
|
3231
|
+
toAminoMsg(message) {
|
|
3232
|
+
return {
|
|
3233
|
+
type: "sparkdream/x/rep/MsgAbandonInitiative",
|
|
3234
|
+
value: MsgAbandonInitiative.toAmino(message)
|
|
3235
|
+
};
|
|
3236
|
+
},
|
|
3118
3237
|
fromProtoMsg(message) {
|
|
3119
3238
|
return MsgAbandonInitiative.decode(message.value);
|
|
3120
3239
|
},
|
|
@@ -3199,6 +3318,7 @@ function createBaseMsgCompleteInitiative() {
|
|
|
3199
3318
|
*/
|
|
3200
3319
|
export const MsgCompleteInitiative = {
|
|
3201
3320
|
typeUrl: "/sparkdream.rep.v1.MsgCompleteInitiative",
|
|
3321
|
+
aminoType: "sparkdream/x/rep/MsgCompleteInitiative",
|
|
3202
3322
|
encode(message, writer = BinaryWriter.create()) {
|
|
3203
3323
|
if (message.creator !== "") {
|
|
3204
3324
|
writer.uint32(10).string(message.creator);
|
|
@@ -3264,6 +3384,12 @@ export const MsgCompleteInitiative = {
|
|
|
3264
3384
|
fromAminoMsg(object) {
|
|
3265
3385
|
return MsgCompleteInitiative.fromAmino(object.value);
|
|
3266
3386
|
},
|
|
3387
|
+
toAminoMsg(message) {
|
|
3388
|
+
return {
|
|
3389
|
+
type: "sparkdream/x/rep/MsgCompleteInitiative",
|
|
3390
|
+
value: MsgCompleteInitiative.toAmino(message)
|
|
3391
|
+
};
|
|
3392
|
+
},
|
|
3267
3393
|
fromProtoMsg(message) {
|
|
3268
3394
|
return MsgCompleteInitiative.decode(message.value);
|
|
3269
3395
|
},
|
|
@@ -3350,6 +3476,7 @@ function createBaseMsgStake() {
|
|
|
3350
3476
|
*/
|
|
3351
3477
|
export const MsgStake = {
|
|
3352
3478
|
typeUrl: "/sparkdream.rep.v1.MsgStake",
|
|
3479
|
+
aminoType: "sparkdream/x/rep/MsgStake",
|
|
3353
3480
|
encode(message, writer = BinaryWriter.create()) {
|
|
3354
3481
|
if (message.staker !== "") {
|
|
3355
3482
|
writer.uint32(10).string(message.staker);
|
|
@@ -3437,6 +3564,12 @@ export const MsgStake = {
|
|
|
3437
3564
|
fromAminoMsg(object) {
|
|
3438
3565
|
return MsgStake.fromAmino(object.value);
|
|
3439
3566
|
},
|
|
3567
|
+
toAminoMsg(message) {
|
|
3568
|
+
return {
|
|
3569
|
+
type: "sparkdream/x/rep/MsgStake",
|
|
3570
|
+
value: MsgStake.toAmino(message)
|
|
3571
|
+
};
|
|
3572
|
+
},
|
|
3440
3573
|
fromProtoMsg(message) {
|
|
3441
3574
|
return MsgStake.decode(message.value);
|
|
3442
3575
|
},
|
|
@@ -3534,6 +3667,7 @@ function createBaseMsgUnstake() {
|
|
|
3534
3667
|
*/
|
|
3535
3668
|
export const MsgUnstake = {
|
|
3536
3669
|
typeUrl: "/sparkdream.rep.v1.MsgUnstake",
|
|
3670
|
+
aminoType: "sparkdream/x/rep/MsgUnstake",
|
|
3537
3671
|
encode(message, writer = BinaryWriter.create()) {
|
|
3538
3672
|
if (message.staker !== "") {
|
|
3539
3673
|
writer.uint32(10).string(message.staker);
|
|
@@ -3599,6 +3733,12 @@ export const MsgUnstake = {
|
|
|
3599
3733
|
fromAminoMsg(object) {
|
|
3600
3734
|
return MsgUnstake.fromAmino(object.value);
|
|
3601
3735
|
},
|
|
3736
|
+
toAminoMsg(message) {
|
|
3737
|
+
return {
|
|
3738
|
+
type: "sparkdream/x/rep/MsgUnstake",
|
|
3739
|
+
value: MsgUnstake.toAmino(message)
|
|
3740
|
+
};
|
|
3741
|
+
},
|
|
3602
3742
|
fromProtoMsg(message) {
|
|
3603
3743
|
return MsgUnstake.decode(message.value);
|
|
3604
3744
|
},
|
|
@@ -3707,6 +3847,7 @@ function createBaseMsgClaimStakingRewards() {
|
|
|
3707
3847
|
*/
|
|
3708
3848
|
export const MsgClaimStakingRewards = {
|
|
3709
3849
|
typeUrl: "/sparkdream.rep.v1.MsgClaimStakingRewards",
|
|
3850
|
+
aminoType: "sparkdream/x/rep/MsgClaimStakingRewards",
|
|
3710
3851
|
encode(message, writer = BinaryWriter.create()) {
|
|
3711
3852
|
if (message.staker !== "") {
|
|
3712
3853
|
writer.uint32(10).string(message.staker);
|
|
@@ -3761,6 +3902,12 @@ export const MsgClaimStakingRewards = {
|
|
|
3761
3902
|
fromAminoMsg(object) {
|
|
3762
3903
|
return MsgClaimStakingRewards.fromAmino(object.value);
|
|
3763
3904
|
},
|
|
3905
|
+
toAminoMsg(message) {
|
|
3906
|
+
return {
|
|
3907
|
+
type: "sparkdream/x/rep/MsgClaimStakingRewards",
|
|
3908
|
+
value: MsgClaimStakingRewards.toAmino(message)
|
|
3909
|
+
};
|
|
3910
|
+
},
|
|
3764
3911
|
fromProtoMsg(message) {
|
|
3765
3912
|
return MsgClaimStakingRewards.decode(message.value);
|
|
3766
3913
|
},
|
|
@@ -3857,6 +4004,7 @@ function createBaseMsgCompoundStakingRewards() {
|
|
|
3857
4004
|
*/
|
|
3858
4005
|
export const MsgCompoundStakingRewards = {
|
|
3859
4006
|
typeUrl: "/sparkdream.rep.v1.MsgCompoundStakingRewards",
|
|
4007
|
+
aminoType: "sparkdream/x/rep/MsgCompoundStakingRewards",
|
|
3860
4008
|
encode(message, writer = BinaryWriter.create()) {
|
|
3861
4009
|
if (message.staker !== "") {
|
|
3862
4010
|
writer.uint32(10).string(message.staker);
|
|
@@ -3911,6 +4059,12 @@ export const MsgCompoundStakingRewards = {
|
|
|
3911
4059
|
fromAminoMsg(object) {
|
|
3912
4060
|
return MsgCompoundStakingRewards.fromAmino(object.value);
|
|
3913
4061
|
},
|
|
4062
|
+
toAminoMsg(message) {
|
|
4063
|
+
return {
|
|
4064
|
+
type: "sparkdream/x/rep/MsgCompoundStakingRewards",
|
|
4065
|
+
value: MsgCompoundStakingRewards.toAmino(message)
|
|
4066
|
+
};
|
|
4067
|
+
},
|
|
3914
4068
|
fromProtoMsg(message) {
|
|
3915
4069
|
return MsgCompoundStakingRewards.decode(message.value);
|
|
3916
4070
|
},
|
|
@@ -4022,6 +4176,7 @@ function createBaseMsgCreateChallenge() {
|
|
|
4022
4176
|
*/
|
|
4023
4177
|
export const MsgCreateChallenge = {
|
|
4024
4178
|
typeUrl: "/sparkdream.rep.v1.MsgCreateChallenge",
|
|
4179
|
+
aminoType: "sparkdream/x/rep/MsgCreateChallenge",
|
|
4025
4180
|
encode(message, writer = BinaryWriter.create()) {
|
|
4026
4181
|
if (message.challenger !== "") {
|
|
4027
4182
|
writer.uint32(10).string(message.challenger);
|
|
@@ -4112,6 +4267,12 @@ export const MsgCreateChallenge = {
|
|
|
4112
4267
|
fromAminoMsg(object) {
|
|
4113
4268
|
return MsgCreateChallenge.fromAmino(object.value);
|
|
4114
4269
|
},
|
|
4270
|
+
toAminoMsg(message) {
|
|
4271
|
+
return {
|
|
4272
|
+
type: "sparkdream/x/rep/MsgCreateChallenge",
|
|
4273
|
+
value: MsgCreateChallenge.toAmino(message)
|
|
4274
|
+
};
|
|
4275
|
+
},
|
|
4115
4276
|
fromProtoMsg(message) {
|
|
4116
4277
|
return MsgCreateChallenge.decode(message.value);
|
|
4117
4278
|
},
|
|
@@ -4197,6 +4358,7 @@ function createBaseMsgRespondToChallenge() {
|
|
|
4197
4358
|
*/
|
|
4198
4359
|
export const MsgRespondToChallenge = {
|
|
4199
4360
|
typeUrl: "/sparkdream.rep.v1.MsgRespondToChallenge",
|
|
4361
|
+
aminoType: "sparkdream/x/rep/MsgRespondToChallenge",
|
|
4200
4362
|
encode(message, writer = BinaryWriter.create()) {
|
|
4201
4363
|
if (message.assignee !== "") {
|
|
4202
4364
|
writer.uint32(10).string(message.assignee);
|
|
@@ -4276,6 +4438,12 @@ export const MsgRespondToChallenge = {
|
|
|
4276
4438
|
fromAminoMsg(object) {
|
|
4277
4439
|
return MsgRespondToChallenge.fromAmino(object.value);
|
|
4278
4440
|
},
|
|
4441
|
+
toAminoMsg(message) {
|
|
4442
|
+
return {
|
|
4443
|
+
type: "sparkdream/x/rep/MsgRespondToChallenge",
|
|
4444
|
+
value: MsgRespondToChallenge.toAmino(message)
|
|
4445
|
+
};
|
|
4446
|
+
},
|
|
4279
4447
|
fromProtoMsg(message) {
|
|
4280
4448
|
return MsgRespondToChallenge.decode(message.value);
|
|
4281
4449
|
},
|
|
@@ -4363,6 +4531,7 @@ function createBaseMsgSubmitJurorVote() {
|
|
|
4363
4531
|
*/
|
|
4364
4532
|
export const MsgSubmitJurorVote = {
|
|
4365
4533
|
typeUrl: "/sparkdream.rep.v1.MsgSubmitJurorVote",
|
|
4534
|
+
aminoType: "sparkdream/x/rep/MsgSubmitJurorVote",
|
|
4366
4535
|
encode(message, writer = BinaryWriter.create()) {
|
|
4367
4536
|
if (message.juror !== "") {
|
|
4368
4537
|
writer.uint32(10).string(message.juror);
|
|
@@ -4464,6 +4633,12 @@ export const MsgSubmitJurorVote = {
|
|
|
4464
4633
|
fromAminoMsg(object) {
|
|
4465
4634
|
return MsgSubmitJurorVote.fromAmino(object.value);
|
|
4466
4635
|
},
|
|
4636
|
+
toAminoMsg(message) {
|
|
4637
|
+
return {
|
|
4638
|
+
type: "sparkdream/x/rep/MsgSubmitJurorVote",
|
|
4639
|
+
value: MsgSubmitJurorVote.toAmino(message)
|
|
4640
|
+
};
|
|
4641
|
+
},
|
|
4467
4642
|
fromProtoMsg(message) {
|
|
4468
4643
|
return MsgSubmitJurorVote.decode(message.value);
|
|
4469
4644
|
},
|
|
@@ -4549,6 +4724,7 @@ function createBaseMsgSubmitExpertTestimony() {
|
|
|
4549
4724
|
*/
|
|
4550
4725
|
export const MsgSubmitExpertTestimony = {
|
|
4551
4726
|
typeUrl: "/sparkdream.rep.v1.MsgSubmitExpertTestimony",
|
|
4727
|
+
aminoType: "sparkdream/x/rep/MsgSubmitExpertTestimony",
|
|
4552
4728
|
encode(message, writer = BinaryWriter.create()) {
|
|
4553
4729
|
if (message.expert !== "") {
|
|
4554
4730
|
writer.uint32(10).string(message.expert);
|
|
@@ -4625,6 +4801,12 @@ export const MsgSubmitExpertTestimony = {
|
|
|
4625
4801
|
fromAminoMsg(object) {
|
|
4626
4802
|
return MsgSubmitExpertTestimony.fromAmino(object.value);
|
|
4627
4803
|
},
|
|
4804
|
+
toAminoMsg(message) {
|
|
4805
|
+
return {
|
|
4806
|
+
type: "sparkdream/x/rep/MsgSubmitExpertTestimony",
|
|
4807
|
+
value: MsgSubmitExpertTestimony.toAmino(message)
|
|
4808
|
+
};
|
|
4809
|
+
},
|
|
4628
4810
|
fromProtoMsg(message) {
|
|
4629
4811
|
return MsgSubmitExpertTestimony.decode(message.value);
|
|
4630
4812
|
},
|
|
@@ -4712,6 +4894,7 @@ function createBaseMsgChallengeContent() {
|
|
|
4712
4894
|
*/
|
|
4713
4895
|
export const MsgChallengeContent = {
|
|
4714
4896
|
typeUrl: "/sparkdream.rep.v1.MsgChallengeContent",
|
|
4897
|
+
aminoType: "sparkdream/x/rep/MsgChallengeContent",
|
|
4715
4898
|
encode(message, writer = BinaryWriter.create()) {
|
|
4716
4899
|
if (message.challenger !== "") {
|
|
4717
4900
|
writer.uint32(10).string(message.challenger);
|
|
@@ -4813,6 +4996,12 @@ export const MsgChallengeContent = {
|
|
|
4813
4996
|
fromAminoMsg(object) {
|
|
4814
4997
|
return MsgChallengeContent.fromAmino(object.value);
|
|
4815
4998
|
},
|
|
4999
|
+
toAminoMsg(message) {
|
|
5000
|
+
return {
|
|
5001
|
+
type: "sparkdream/x/rep/MsgChallengeContent",
|
|
5002
|
+
value: MsgChallengeContent.toAmino(message)
|
|
5003
|
+
};
|
|
5004
|
+
},
|
|
4816
5005
|
fromProtoMsg(message) {
|
|
4817
5006
|
return MsgChallengeContent.decode(message.value);
|
|
4818
5007
|
},
|
|
@@ -4911,6 +5100,7 @@ function createBaseMsgRespondToContentChallenge() {
|
|
|
4911
5100
|
*/
|
|
4912
5101
|
export const MsgRespondToContentChallenge = {
|
|
4913
5102
|
typeUrl: "/sparkdream.rep.v1.MsgRespondToContentChallenge",
|
|
5103
|
+
aminoType: "sparkdream/x/rep/MsgRespondToContentChallenge",
|
|
4914
5104
|
encode(message, writer = BinaryWriter.create()) {
|
|
4915
5105
|
if (message.author !== "") {
|
|
4916
5106
|
writer.uint32(10).string(message.author);
|
|
@@ -4990,6 +5180,12 @@ export const MsgRespondToContentChallenge = {
|
|
|
4990
5180
|
fromAminoMsg(object) {
|
|
4991
5181
|
return MsgRespondToContentChallenge.fromAmino(object.value);
|
|
4992
5182
|
},
|
|
5183
|
+
toAminoMsg(message) {
|
|
5184
|
+
return {
|
|
5185
|
+
type: "sparkdream/x/rep/MsgRespondToContentChallenge",
|
|
5186
|
+
value: MsgRespondToContentChallenge.toAmino(message)
|
|
5187
|
+
};
|
|
5188
|
+
},
|
|
4993
5189
|
fromProtoMsg(message) {
|
|
4994
5190
|
return MsgRespondToContentChallenge.decode(message.value);
|
|
4995
5191
|
},
|
|
@@ -5073,6 +5269,7 @@ function createBaseMsgRegisterZkPublicKey() {
|
|
|
5073
5269
|
*/
|
|
5074
5270
|
export const MsgRegisterZkPublicKey = {
|
|
5075
5271
|
typeUrl: "/sparkdream.rep.v1.MsgRegisterZkPublicKey",
|
|
5272
|
+
aminoType: "sparkdream/x/rep/MsgRegisterZkPublicKey",
|
|
5076
5273
|
encode(message, writer = BinaryWriter.create()) {
|
|
5077
5274
|
if (message.member !== "") {
|
|
5078
5275
|
writer.uint32(10).string(message.member);
|
|
@@ -5127,6 +5324,12 @@ export const MsgRegisterZkPublicKey = {
|
|
|
5127
5324
|
fromAminoMsg(object) {
|
|
5128
5325
|
return MsgRegisterZkPublicKey.fromAmino(object.value);
|
|
5129
5326
|
},
|
|
5327
|
+
toAminoMsg(message) {
|
|
5328
|
+
return {
|
|
5329
|
+
type: "sparkdream/x/rep/MsgRegisterZkPublicKey",
|
|
5330
|
+
value: MsgRegisterZkPublicKey.toAmino(message)
|
|
5331
|
+
};
|
|
5332
|
+
},
|
|
5130
5333
|
fromProtoMsg(message) {
|
|
5131
5334
|
return MsgRegisterZkPublicKey.decode(message.value);
|
|
5132
5335
|
},
|
|
@@ -5212,6 +5415,7 @@ function createBaseMsgCreateTag() {
|
|
|
5212
5415
|
*/
|
|
5213
5416
|
export const MsgCreateTag = {
|
|
5214
5417
|
typeUrl: "/sparkdream.rep.v1.MsgCreateTag",
|
|
5418
|
+
aminoType: "sparkdream/x/rep/MsgCreateTag",
|
|
5215
5419
|
encode(message, writer = BinaryWriter.create()) {
|
|
5216
5420
|
if (message.creator !== "") {
|
|
5217
5421
|
writer.uint32(10).string(message.creator);
|
|
@@ -5266,6 +5470,12 @@ export const MsgCreateTag = {
|
|
|
5266
5470
|
fromAminoMsg(object) {
|
|
5267
5471
|
return MsgCreateTag.fromAmino(object.value);
|
|
5268
5472
|
},
|
|
5473
|
+
toAminoMsg(message) {
|
|
5474
|
+
return {
|
|
5475
|
+
type: "sparkdream/x/rep/MsgCreateTag",
|
|
5476
|
+
value: MsgCreateTag.toAmino(message)
|
|
5477
|
+
};
|
|
5478
|
+
},
|
|
5269
5479
|
fromProtoMsg(message) {
|
|
5270
5480
|
return MsgCreateTag.decode(message.value);
|
|
5271
5481
|
},
|
|
@@ -5363,6 +5573,7 @@ function createBaseMsgReportTag() {
|
|
|
5363
5573
|
*/
|
|
5364
5574
|
export const MsgReportTag = {
|
|
5365
5575
|
typeUrl: "/sparkdream.rep.v1.MsgReportTag",
|
|
5576
|
+
aminoType: "sparkdream/x/rep/MsgReportTag",
|
|
5366
5577
|
encode(message, writer = BinaryWriter.create()) {
|
|
5367
5578
|
if (message.creator !== "") {
|
|
5368
5579
|
writer.uint32(10).string(message.creator);
|
|
@@ -5428,6 +5639,12 @@ export const MsgReportTag = {
|
|
|
5428
5639
|
fromAminoMsg(object) {
|
|
5429
5640
|
return MsgReportTag.fromAmino(object.value);
|
|
5430
5641
|
},
|
|
5642
|
+
toAminoMsg(message) {
|
|
5643
|
+
return {
|
|
5644
|
+
type: "sparkdream/x/rep/MsgReportTag",
|
|
5645
|
+
value: MsgReportTag.toAmino(message)
|
|
5646
|
+
};
|
|
5647
|
+
},
|
|
5431
5648
|
fromProtoMsg(message) {
|
|
5432
5649
|
return MsgReportTag.decode(message.value);
|
|
5433
5650
|
},
|
|
@@ -5514,6 +5731,7 @@ function createBaseMsgResolveTagReport() {
|
|
|
5514
5731
|
*/
|
|
5515
5732
|
export const MsgResolveTagReport = {
|
|
5516
5733
|
typeUrl: "/sparkdream.rep.v1.MsgResolveTagReport",
|
|
5734
|
+
aminoType: "sparkdream/x/rep/MsgResolveTagReport",
|
|
5517
5735
|
encode(message, writer = BinaryWriter.create()) {
|
|
5518
5736
|
if (message.creator !== "") {
|
|
5519
5737
|
writer.uint32(10).string(message.creator);
|
|
@@ -5601,6 +5819,12 @@ export const MsgResolveTagReport = {
|
|
|
5601
5819
|
fromAminoMsg(object) {
|
|
5602
5820
|
return MsgResolveTagReport.fromAmino(object.value);
|
|
5603
5821
|
},
|
|
5822
|
+
toAminoMsg(message) {
|
|
5823
|
+
return {
|
|
5824
|
+
type: "sparkdream/x/rep/MsgResolveTagReport",
|
|
5825
|
+
value: MsgResolveTagReport.toAmino(message)
|
|
5826
|
+
};
|
|
5827
|
+
},
|
|
5604
5828
|
fromProtoMsg(message) {
|
|
5605
5829
|
return MsgResolveTagReport.decode(message.value);
|
|
5606
5830
|
},
|
|
@@ -5686,6 +5910,7 @@ function createBaseMsgCreateTagBudget() {
|
|
|
5686
5910
|
*/
|
|
5687
5911
|
export const MsgCreateTagBudget = {
|
|
5688
5912
|
typeUrl: "/sparkdream.rep.v1.MsgCreateTagBudget",
|
|
5913
|
+
aminoType: "sparkdream/x/rep/MsgCreateTagBudget",
|
|
5689
5914
|
encode(message, writer = BinaryWriter.create()) {
|
|
5690
5915
|
if (message.creator !== "") {
|
|
5691
5916
|
writer.uint32(10).string(message.creator);
|
|
@@ -5762,6 +5987,12 @@ export const MsgCreateTagBudget = {
|
|
|
5762
5987
|
fromAminoMsg(object) {
|
|
5763
5988
|
return MsgCreateTagBudget.fromAmino(object.value);
|
|
5764
5989
|
},
|
|
5990
|
+
toAminoMsg(message) {
|
|
5991
|
+
return {
|
|
5992
|
+
type: "sparkdream/x/rep/MsgCreateTagBudget",
|
|
5993
|
+
value: MsgCreateTagBudget.toAmino(message)
|
|
5994
|
+
};
|
|
5995
|
+
},
|
|
5765
5996
|
fromProtoMsg(message) {
|
|
5766
5997
|
return MsgCreateTagBudget.decode(message.value);
|
|
5767
5998
|
},
|
|
@@ -5848,6 +6079,7 @@ function createBaseMsgAwardFromTagBudget() {
|
|
|
5848
6079
|
*/
|
|
5849
6080
|
export const MsgAwardFromTagBudget = {
|
|
5850
6081
|
typeUrl: "/sparkdream.rep.v1.MsgAwardFromTagBudget",
|
|
6082
|
+
aminoType: "sparkdream/x/rep/MsgAwardFromTagBudget",
|
|
5851
6083
|
encode(message, writer = BinaryWriter.create()) {
|
|
5852
6084
|
if (message.creator !== "") {
|
|
5853
6085
|
writer.uint32(10).string(message.creator);
|
|
@@ -5935,6 +6167,12 @@ export const MsgAwardFromTagBudget = {
|
|
|
5935
6167
|
fromAminoMsg(object) {
|
|
5936
6168
|
return MsgAwardFromTagBudget.fromAmino(object.value);
|
|
5937
6169
|
},
|
|
6170
|
+
toAminoMsg(message) {
|
|
6171
|
+
return {
|
|
6172
|
+
type: "sparkdream/x/rep/MsgAwardFromTagBudget",
|
|
6173
|
+
value: MsgAwardFromTagBudget.toAmino(message)
|
|
6174
|
+
};
|
|
6175
|
+
},
|
|
5938
6176
|
fromProtoMsg(message) {
|
|
5939
6177
|
return MsgAwardFromTagBudget.decode(message.value);
|
|
5940
6178
|
},
|
|
@@ -6019,6 +6257,7 @@ function createBaseMsgTopUpTagBudget() {
|
|
|
6019
6257
|
*/
|
|
6020
6258
|
export const MsgTopUpTagBudget = {
|
|
6021
6259
|
typeUrl: "/sparkdream.rep.v1.MsgTopUpTagBudget",
|
|
6260
|
+
aminoType: "sparkdream/x/rep/MsgTopUpTagBudget",
|
|
6022
6261
|
encode(message, writer = BinaryWriter.create()) {
|
|
6023
6262
|
if (message.creator !== "") {
|
|
6024
6263
|
writer.uint32(10).string(message.creator);
|
|
@@ -6084,6 +6323,12 @@ export const MsgTopUpTagBudget = {
|
|
|
6084
6323
|
fromAminoMsg(object) {
|
|
6085
6324
|
return MsgTopUpTagBudget.fromAmino(object.value);
|
|
6086
6325
|
},
|
|
6326
|
+
toAminoMsg(message) {
|
|
6327
|
+
return {
|
|
6328
|
+
type: "sparkdream/x/rep/MsgTopUpTagBudget",
|
|
6329
|
+
value: MsgTopUpTagBudget.toAmino(message)
|
|
6330
|
+
};
|
|
6331
|
+
},
|
|
6087
6332
|
fromProtoMsg(message) {
|
|
6088
6333
|
return MsgTopUpTagBudget.decode(message.value);
|
|
6089
6334
|
},
|
|
@@ -6168,6 +6413,7 @@ function createBaseMsgToggleTagBudget() {
|
|
|
6168
6413
|
*/
|
|
6169
6414
|
export const MsgToggleTagBudget = {
|
|
6170
6415
|
typeUrl: "/sparkdream.rep.v1.MsgToggleTagBudget",
|
|
6416
|
+
aminoType: "sparkdream/x/rep/MsgToggleTagBudget",
|
|
6171
6417
|
encode(message, writer = BinaryWriter.create()) {
|
|
6172
6418
|
if (message.creator !== "") {
|
|
6173
6419
|
writer.uint32(10).string(message.creator);
|
|
@@ -6233,6 +6479,12 @@ export const MsgToggleTagBudget = {
|
|
|
6233
6479
|
fromAminoMsg(object) {
|
|
6234
6480
|
return MsgToggleTagBudget.fromAmino(object.value);
|
|
6235
6481
|
},
|
|
6482
|
+
toAminoMsg(message) {
|
|
6483
|
+
return {
|
|
6484
|
+
type: "sparkdream/x/rep/MsgToggleTagBudget",
|
|
6485
|
+
value: MsgToggleTagBudget.toAmino(message)
|
|
6486
|
+
};
|
|
6487
|
+
},
|
|
6236
6488
|
fromProtoMsg(message) {
|
|
6237
6489
|
return MsgToggleTagBudget.decode(message.value);
|
|
6238
6490
|
},
|
|
@@ -6316,6 +6568,7 @@ function createBaseMsgWithdrawTagBudget() {
|
|
|
6316
6568
|
*/
|
|
6317
6569
|
export const MsgWithdrawTagBudget = {
|
|
6318
6570
|
typeUrl: "/sparkdream.rep.v1.MsgWithdrawTagBudget",
|
|
6571
|
+
aminoType: "sparkdream/x/rep/MsgWithdrawTagBudget",
|
|
6319
6572
|
encode(message, writer = BinaryWriter.create()) {
|
|
6320
6573
|
if (message.creator !== "") {
|
|
6321
6574
|
writer.uint32(10).string(message.creator);
|
|
@@ -6370,6 +6623,12 @@ export const MsgWithdrawTagBudget = {
|
|
|
6370
6623
|
fromAminoMsg(object) {
|
|
6371
6624
|
return MsgWithdrawTagBudget.fromAmino(object.value);
|
|
6372
6625
|
},
|
|
6626
|
+
toAminoMsg(message) {
|
|
6627
|
+
return {
|
|
6628
|
+
type: "sparkdream/x/rep/MsgWithdrawTagBudget",
|
|
6629
|
+
value: MsgWithdrawTagBudget.toAmino(message)
|
|
6630
|
+
};
|
|
6631
|
+
},
|
|
6373
6632
|
fromProtoMsg(message) {
|
|
6374
6633
|
return MsgWithdrawTagBudget.decode(message.value);
|
|
6375
6634
|
},
|
|
@@ -6456,6 +6715,7 @@ function createBaseMsgBondRole() {
|
|
|
6456
6715
|
*/
|
|
6457
6716
|
export const MsgBondRole = {
|
|
6458
6717
|
typeUrl: "/sparkdream.rep.v1.MsgBondRole",
|
|
6718
|
+
aminoType: "sparkdream/x/rep/MsgBondRole",
|
|
6459
6719
|
encode(message, writer = BinaryWriter.create()) {
|
|
6460
6720
|
if (message.creator !== "") {
|
|
6461
6721
|
writer.uint32(10).string(message.creator);
|
|
@@ -6521,6 +6781,12 @@ export const MsgBondRole = {
|
|
|
6521
6781
|
fromAminoMsg(object) {
|
|
6522
6782
|
return MsgBondRole.fromAmino(object.value);
|
|
6523
6783
|
},
|
|
6784
|
+
toAminoMsg(message) {
|
|
6785
|
+
return {
|
|
6786
|
+
type: "sparkdream/x/rep/MsgBondRole",
|
|
6787
|
+
value: MsgBondRole.toAmino(message)
|
|
6788
|
+
};
|
|
6789
|
+
},
|
|
6524
6790
|
fromProtoMsg(message) {
|
|
6525
6791
|
return MsgBondRole.decode(message.value);
|
|
6526
6792
|
},
|
|
@@ -6607,6 +6873,7 @@ function createBaseMsgUnbondRole() {
|
|
|
6607
6873
|
*/
|
|
6608
6874
|
export const MsgUnbondRole = {
|
|
6609
6875
|
typeUrl: "/sparkdream.rep.v1.MsgUnbondRole",
|
|
6876
|
+
aminoType: "sparkdream/x/rep/MsgUnbondRole",
|
|
6610
6877
|
encode(message, writer = BinaryWriter.create()) {
|
|
6611
6878
|
if (message.creator !== "") {
|
|
6612
6879
|
writer.uint32(10).string(message.creator);
|
|
@@ -6672,6 +6939,12 @@ export const MsgUnbondRole = {
|
|
|
6672
6939
|
fromAminoMsg(object) {
|
|
6673
6940
|
return MsgUnbondRole.fromAmino(object.value);
|
|
6674
6941
|
},
|
|
6942
|
+
toAminoMsg(message) {
|
|
6943
|
+
return {
|
|
6944
|
+
type: "sparkdream/x/rep/MsgUnbondRole",
|
|
6945
|
+
value: MsgUnbondRole.toAmino(message)
|
|
6946
|
+
};
|
|
6947
|
+
},
|
|
6675
6948
|
fromProtoMsg(message) {
|
|
6676
6949
|
return MsgUnbondRole.decode(message.value);
|
|
6677
6950
|
},
|
|
@@ -6757,6 +7030,7 @@ function createBaseMsgReportMember() {
|
|
|
6757
7030
|
*/
|
|
6758
7031
|
export const MsgReportMember = {
|
|
6759
7032
|
typeUrl: "/sparkdream.rep.v1.MsgReportMember",
|
|
7033
|
+
aminoType: "sparkdream/x/rep/MsgReportMember",
|
|
6760
7034
|
encode(message, writer = BinaryWriter.create()) {
|
|
6761
7035
|
if (message.creator !== "") {
|
|
6762
7036
|
writer.uint32(10).string(message.creator);
|
|
@@ -6833,6 +7107,12 @@ export const MsgReportMember = {
|
|
|
6833
7107
|
fromAminoMsg(object) {
|
|
6834
7108
|
return MsgReportMember.fromAmino(object.value);
|
|
6835
7109
|
},
|
|
7110
|
+
toAminoMsg(message) {
|
|
7111
|
+
return {
|
|
7112
|
+
type: "sparkdream/x/rep/MsgReportMember",
|
|
7113
|
+
value: MsgReportMember.toAmino(message)
|
|
7114
|
+
};
|
|
7115
|
+
},
|
|
6836
7116
|
fromProtoMsg(message) {
|
|
6837
7117
|
return MsgReportMember.decode(message.value);
|
|
6838
7118
|
},
|
|
@@ -6916,6 +7196,7 @@ function createBaseMsgCosignMemberReport() {
|
|
|
6916
7196
|
*/
|
|
6917
7197
|
export const MsgCosignMemberReport = {
|
|
6918
7198
|
typeUrl: "/sparkdream.rep.v1.MsgCosignMemberReport",
|
|
7199
|
+
aminoType: "sparkdream/x/rep/MsgCosignMemberReport",
|
|
6919
7200
|
encode(message, writer = BinaryWriter.create()) {
|
|
6920
7201
|
if (message.creator !== "") {
|
|
6921
7202
|
writer.uint32(10).string(message.creator);
|
|
@@ -6970,6 +7251,12 @@ export const MsgCosignMemberReport = {
|
|
|
6970
7251
|
fromAminoMsg(object) {
|
|
6971
7252
|
return MsgCosignMemberReport.fromAmino(object.value);
|
|
6972
7253
|
},
|
|
7254
|
+
toAminoMsg(message) {
|
|
7255
|
+
return {
|
|
7256
|
+
type: "sparkdream/x/rep/MsgCosignMemberReport",
|
|
7257
|
+
value: MsgCosignMemberReport.toAmino(message)
|
|
7258
|
+
};
|
|
7259
|
+
},
|
|
6973
7260
|
fromProtoMsg(message) {
|
|
6974
7261
|
return MsgCosignMemberReport.decode(message.value);
|
|
6975
7262
|
},
|
|
@@ -7055,6 +7342,7 @@ function createBaseMsgResolveMemberReport() {
|
|
|
7055
7342
|
*/
|
|
7056
7343
|
export const MsgResolveMemberReport = {
|
|
7057
7344
|
typeUrl: "/sparkdream.rep.v1.MsgResolveMemberReport",
|
|
7345
|
+
aminoType: "sparkdream/x/rep/MsgResolveMemberReport",
|
|
7058
7346
|
encode(message, writer = BinaryWriter.create()) {
|
|
7059
7347
|
if (message.creator !== "") {
|
|
7060
7348
|
writer.uint32(10).string(message.creator);
|
|
@@ -7131,6 +7419,12 @@ export const MsgResolveMemberReport = {
|
|
|
7131
7419
|
fromAminoMsg(object) {
|
|
7132
7420
|
return MsgResolveMemberReport.fromAmino(object.value);
|
|
7133
7421
|
},
|
|
7422
|
+
toAminoMsg(message) {
|
|
7423
|
+
return {
|
|
7424
|
+
type: "sparkdream/x/rep/MsgResolveMemberReport",
|
|
7425
|
+
value: MsgResolveMemberReport.toAmino(message)
|
|
7426
|
+
};
|
|
7427
|
+
},
|
|
7134
7428
|
fromProtoMsg(message) {
|
|
7135
7429
|
return MsgResolveMemberReport.decode(message.value);
|
|
7136
7430
|
},
|
|
@@ -7214,6 +7508,7 @@ function createBaseMsgDefendMemberReport() {
|
|
|
7214
7508
|
*/
|
|
7215
7509
|
export const MsgDefendMemberReport = {
|
|
7216
7510
|
typeUrl: "/sparkdream.rep.v1.MsgDefendMemberReport",
|
|
7511
|
+
aminoType: "sparkdream/x/rep/MsgDefendMemberReport",
|
|
7217
7512
|
encode(message, writer = BinaryWriter.create()) {
|
|
7218
7513
|
if (message.creator !== "") {
|
|
7219
7514
|
writer.uint32(10).string(message.creator);
|
|
@@ -7268,6 +7563,12 @@ export const MsgDefendMemberReport = {
|
|
|
7268
7563
|
fromAminoMsg(object) {
|
|
7269
7564
|
return MsgDefendMemberReport.fromAmino(object.value);
|
|
7270
7565
|
},
|
|
7566
|
+
toAminoMsg(message) {
|
|
7567
|
+
return {
|
|
7568
|
+
type: "sparkdream/x/rep/MsgDefendMemberReport",
|
|
7569
|
+
value: MsgDefendMemberReport.toAmino(message)
|
|
7570
|
+
};
|
|
7571
|
+
},
|
|
7271
7572
|
fromProtoMsg(message) {
|
|
7272
7573
|
return MsgDefendMemberReport.decode(message.value);
|
|
7273
7574
|
},
|
|
@@ -7353,6 +7654,7 @@ function createBaseMsgAppealGovAction() {
|
|
|
7353
7654
|
*/
|
|
7354
7655
|
export const MsgAppealGovAction = {
|
|
7355
7656
|
typeUrl: "/sparkdream.rep.v1.MsgAppealGovAction",
|
|
7657
|
+
aminoType: "sparkdream/x/rep/MsgAppealGovAction",
|
|
7356
7658
|
encode(message, writer = BinaryWriter.create()) {
|
|
7357
7659
|
if (message.creator !== "") {
|
|
7358
7660
|
writer.uint32(10).string(message.creator);
|
|
@@ -7429,6 +7731,12 @@ export const MsgAppealGovAction = {
|
|
|
7429
7731
|
fromAminoMsg(object) {
|
|
7430
7732
|
return MsgAppealGovAction.fromAmino(object.value);
|
|
7431
7733
|
},
|
|
7734
|
+
toAminoMsg(message) {
|
|
7735
|
+
return {
|
|
7736
|
+
type: "sparkdream/x/rep/MsgAppealGovAction",
|
|
7737
|
+
value: MsgAppealGovAction.toAmino(message)
|
|
7738
|
+
};
|
|
7739
|
+
},
|
|
7432
7740
|
fromProtoMsg(message) {
|
|
7433
7741
|
return MsgAppealGovAction.decode(message.value);
|
|
7434
7742
|
},
|
|
@@ -7517,6 +7825,7 @@ function createBaseMsgResolveGovActionAppeal() {
|
|
|
7517
7825
|
*/
|
|
7518
7826
|
export const MsgResolveGovActionAppeal = {
|
|
7519
7827
|
typeUrl: "/sparkdream.rep.v1.MsgResolveGovActionAppeal",
|
|
7828
|
+
aminoType: "sparkdream/x/rep/MsgResolveGovActionAppeal",
|
|
7520
7829
|
encode(message, writer = BinaryWriter.create()) {
|
|
7521
7830
|
if (message.resolver !== "") {
|
|
7522
7831
|
writer.uint32(10).string(message.resolver);
|
|
@@ -7593,6 +7902,12 @@ export const MsgResolveGovActionAppeal = {
|
|
|
7593
7902
|
fromAminoMsg(object) {
|
|
7594
7903
|
return MsgResolveGovActionAppeal.fromAmino(object.value);
|
|
7595
7904
|
},
|
|
7905
|
+
toAminoMsg(message) {
|
|
7906
|
+
return {
|
|
7907
|
+
type: "sparkdream/x/rep/MsgResolveGovActionAppeal",
|
|
7908
|
+
value: MsgResolveGovActionAppeal.toAmino(message)
|
|
7909
|
+
};
|
|
7910
|
+
},
|
|
7596
7911
|
fromProtoMsg(message) {
|
|
7597
7912
|
return MsgResolveGovActionAppeal.decode(message.value);
|
|
7598
7913
|
},
|