@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
|
@@ -312,6 +312,7 @@ function createBaseMsgCreatePost() {
|
|
|
312
312
|
*/
|
|
313
313
|
export const MsgCreatePost = {
|
|
314
314
|
typeUrl: "/sparkdream.forum.v1.MsgCreatePost",
|
|
315
|
+
aminoType: "sparkdream/x/forum/MsgCreatePost",
|
|
315
316
|
encode(message, writer = BinaryWriter.create()) {
|
|
316
317
|
if (message.creator !== "") {
|
|
317
318
|
writer.uint32(10).string(message.creator);
|
|
@@ -435,6 +436,12 @@ export const MsgCreatePost = {
|
|
|
435
436
|
fromAminoMsg(object) {
|
|
436
437
|
return MsgCreatePost.fromAmino(object.value);
|
|
437
438
|
},
|
|
439
|
+
toAminoMsg(message) {
|
|
440
|
+
return {
|
|
441
|
+
type: "sparkdream/x/forum/MsgCreatePost",
|
|
442
|
+
value: MsgCreatePost.toAmino(message)
|
|
443
|
+
};
|
|
444
|
+
},
|
|
438
445
|
fromProtoMsg(message) {
|
|
439
446
|
return MsgCreatePost.decode(message.value);
|
|
440
447
|
},
|
|
@@ -521,6 +528,7 @@ function createBaseMsgEditPost() {
|
|
|
521
528
|
*/
|
|
522
529
|
export const MsgEditPost = {
|
|
523
530
|
typeUrl: "/sparkdream.forum.v1.MsgEditPost",
|
|
531
|
+
aminoType: "sparkdream/x/forum/MsgEditPost",
|
|
524
532
|
encode(message, writer = BinaryWriter.create()) {
|
|
525
533
|
if (message.creator !== "") {
|
|
526
534
|
writer.uint32(10).string(message.creator);
|
|
@@ -611,6 +619,12 @@ export const MsgEditPost = {
|
|
|
611
619
|
fromAminoMsg(object) {
|
|
612
620
|
return MsgEditPost.fromAmino(object.value);
|
|
613
621
|
},
|
|
622
|
+
toAminoMsg(message) {
|
|
623
|
+
return {
|
|
624
|
+
type: "sparkdream/x/forum/MsgEditPost",
|
|
625
|
+
value: MsgEditPost.toAmino(message)
|
|
626
|
+
};
|
|
627
|
+
},
|
|
614
628
|
fromProtoMsg(message) {
|
|
615
629
|
return MsgEditPost.decode(message.value);
|
|
616
630
|
},
|
|
@@ -694,6 +708,7 @@ function createBaseMsgDeletePost() {
|
|
|
694
708
|
*/
|
|
695
709
|
export const MsgDeletePost = {
|
|
696
710
|
typeUrl: "/sparkdream.forum.v1.MsgDeletePost",
|
|
711
|
+
aminoType: "sparkdream/x/forum/MsgDeletePost",
|
|
697
712
|
encode(message, writer = BinaryWriter.create()) {
|
|
698
713
|
if (message.creator !== "") {
|
|
699
714
|
writer.uint32(10).string(message.creator);
|
|
@@ -748,6 +763,12 @@ export const MsgDeletePost = {
|
|
|
748
763
|
fromAminoMsg(object) {
|
|
749
764
|
return MsgDeletePost.fromAmino(object.value);
|
|
750
765
|
},
|
|
766
|
+
toAminoMsg(message) {
|
|
767
|
+
return {
|
|
768
|
+
type: "sparkdream/x/forum/MsgDeletePost",
|
|
769
|
+
value: MsgDeletePost.toAmino(message)
|
|
770
|
+
};
|
|
771
|
+
},
|
|
751
772
|
fromProtoMsg(message) {
|
|
752
773
|
return MsgDeletePost.decode(message.value);
|
|
753
774
|
},
|
|
@@ -831,6 +852,7 @@ function createBaseMsgFreezeThread() {
|
|
|
831
852
|
*/
|
|
832
853
|
export const MsgFreezeThread = {
|
|
833
854
|
typeUrl: "/sparkdream.forum.v1.MsgFreezeThread",
|
|
855
|
+
aminoType: "sparkdream/x/forum/MsgFreezeThread",
|
|
834
856
|
encode(message, writer = BinaryWriter.create()) {
|
|
835
857
|
if (message.creator !== "") {
|
|
836
858
|
writer.uint32(10).string(message.creator);
|
|
@@ -885,6 +907,12 @@ export const MsgFreezeThread = {
|
|
|
885
907
|
fromAminoMsg(object) {
|
|
886
908
|
return MsgFreezeThread.fromAmino(object.value);
|
|
887
909
|
},
|
|
910
|
+
toAminoMsg(message) {
|
|
911
|
+
return {
|
|
912
|
+
type: "sparkdream/x/forum/MsgFreezeThread",
|
|
913
|
+
value: MsgFreezeThread.toAmino(message)
|
|
914
|
+
};
|
|
915
|
+
},
|
|
888
916
|
fromProtoMsg(message) {
|
|
889
917
|
return MsgFreezeThread.decode(message.value);
|
|
890
918
|
},
|
|
@@ -968,6 +996,7 @@ function createBaseMsgUnarchiveThread() {
|
|
|
968
996
|
*/
|
|
969
997
|
export const MsgUnarchiveThread = {
|
|
970
998
|
typeUrl: "/sparkdream.forum.v1.MsgUnarchiveThread",
|
|
999
|
+
aminoType: "sparkdream/x/forum/MsgUnarchiveThread",
|
|
971
1000
|
encode(message, writer = BinaryWriter.create()) {
|
|
972
1001
|
if (message.creator !== "") {
|
|
973
1002
|
writer.uint32(10).string(message.creator);
|
|
@@ -1022,6 +1051,12 @@ export const MsgUnarchiveThread = {
|
|
|
1022
1051
|
fromAminoMsg(object) {
|
|
1023
1052
|
return MsgUnarchiveThread.fromAmino(object.value);
|
|
1024
1053
|
},
|
|
1054
|
+
toAminoMsg(message) {
|
|
1055
|
+
return {
|
|
1056
|
+
type: "sparkdream/x/forum/MsgUnarchiveThread",
|
|
1057
|
+
value: MsgUnarchiveThread.toAmino(message)
|
|
1058
|
+
};
|
|
1059
|
+
},
|
|
1025
1060
|
fromProtoMsg(message) {
|
|
1026
1061
|
return MsgUnarchiveThread.decode(message.value);
|
|
1027
1062
|
},
|
|
@@ -1106,6 +1141,7 @@ function createBaseMsgPinPost() {
|
|
|
1106
1141
|
*/
|
|
1107
1142
|
export const MsgPinPost = {
|
|
1108
1143
|
typeUrl: "/sparkdream.forum.v1.MsgPinPost",
|
|
1144
|
+
aminoType: "sparkdream/x/forum/MsgPinPost",
|
|
1109
1145
|
encode(message, writer = BinaryWriter.create()) {
|
|
1110
1146
|
if (message.creator !== "") {
|
|
1111
1147
|
writer.uint32(10).string(message.creator);
|
|
@@ -1171,6 +1207,12 @@ export const MsgPinPost = {
|
|
|
1171
1207
|
fromAminoMsg(object) {
|
|
1172
1208
|
return MsgPinPost.fromAmino(object.value);
|
|
1173
1209
|
},
|
|
1210
|
+
toAminoMsg(message) {
|
|
1211
|
+
return {
|
|
1212
|
+
type: "sparkdream/x/forum/MsgPinPost",
|
|
1213
|
+
value: MsgPinPost.toAmino(message)
|
|
1214
|
+
};
|
|
1215
|
+
},
|
|
1174
1216
|
fromProtoMsg(message) {
|
|
1175
1217
|
return MsgPinPost.decode(message.value);
|
|
1176
1218
|
},
|
|
@@ -1254,6 +1296,7 @@ function createBaseMsgUnpinPost() {
|
|
|
1254
1296
|
*/
|
|
1255
1297
|
export const MsgUnpinPost = {
|
|
1256
1298
|
typeUrl: "/sparkdream.forum.v1.MsgUnpinPost",
|
|
1299
|
+
aminoType: "sparkdream/x/forum/MsgUnpinPost",
|
|
1257
1300
|
encode(message, writer = BinaryWriter.create()) {
|
|
1258
1301
|
if (message.creator !== "") {
|
|
1259
1302
|
writer.uint32(10).string(message.creator);
|
|
@@ -1308,6 +1351,12 @@ export const MsgUnpinPost = {
|
|
|
1308
1351
|
fromAminoMsg(object) {
|
|
1309
1352
|
return MsgUnpinPost.fromAmino(object.value);
|
|
1310
1353
|
},
|
|
1354
|
+
toAminoMsg(message) {
|
|
1355
|
+
return {
|
|
1356
|
+
type: "sparkdream/x/forum/MsgUnpinPost",
|
|
1357
|
+
value: MsgUnpinPost.toAmino(message)
|
|
1358
|
+
};
|
|
1359
|
+
},
|
|
1311
1360
|
fromProtoMsg(message) {
|
|
1312
1361
|
return MsgUnpinPost.decode(message.value);
|
|
1313
1362
|
},
|
|
@@ -1392,6 +1441,7 @@ function createBaseMsgLockThread() {
|
|
|
1392
1441
|
*/
|
|
1393
1442
|
export const MsgLockThread = {
|
|
1394
1443
|
typeUrl: "/sparkdream.forum.v1.MsgLockThread",
|
|
1444
|
+
aminoType: "sparkdream/x/forum/MsgLockThread",
|
|
1395
1445
|
encode(message, writer = BinaryWriter.create()) {
|
|
1396
1446
|
if (message.creator !== "") {
|
|
1397
1447
|
writer.uint32(10).string(message.creator);
|
|
@@ -1457,6 +1507,12 @@ export const MsgLockThread = {
|
|
|
1457
1507
|
fromAminoMsg(object) {
|
|
1458
1508
|
return MsgLockThread.fromAmino(object.value);
|
|
1459
1509
|
},
|
|
1510
|
+
toAminoMsg(message) {
|
|
1511
|
+
return {
|
|
1512
|
+
type: "sparkdream/x/forum/MsgLockThread",
|
|
1513
|
+
value: MsgLockThread.toAmino(message)
|
|
1514
|
+
};
|
|
1515
|
+
},
|
|
1460
1516
|
fromProtoMsg(message) {
|
|
1461
1517
|
return MsgLockThread.decode(message.value);
|
|
1462
1518
|
},
|
|
@@ -1540,6 +1596,7 @@ function createBaseMsgUnlockThread() {
|
|
|
1540
1596
|
*/
|
|
1541
1597
|
export const MsgUnlockThread = {
|
|
1542
1598
|
typeUrl: "/sparkdream.forum.v1.MsgUnlockThread",
|
|
1599
|
+
aminoType: "sparkdream/x/forum/MsgUnlockThread",
|
|
1543
1600
|
encode(message, writer = BinaryWriter.create()) {
|
|
1544
1601
|
if (message.creator !== "") {
|
|
1545
1602
|
writer.uint32(10).string(message.creator);
|
|
@@ -1594,6 +1651,12 @@ export const MsgUnlockThread = {
|
|
|
1594
1651
|
fromAminoMsg(object) {
|
|
1595
1652
|
return MsgUnlockThread.fromAmino(object.value);
|
|
1596
1653
|
},
|
|
1654
|
+
toAminoMsg(message) {
|
|
1655
|
+
return {
|
|
1656
|
+
type: "sparkdream/x/forum/MsgUnlockThread",
|
|
1657
|
+
value: MsgUnlockThread.toAmino(message)
|
|
1658
|
+
};
|
|
1659
|
+
},
|
|
1597
1660
|
fromProtoMsg(message) {
|
|
1598
1661
|
return MsgUnlockThread.decode(message.value);
|
|
1599
1662
|
},
|
|
@@ -1679,6 +1742,7 @@ function createBaseMsgMoveThread() {
|
|
|
1679
1742
|
*/
|
|
1680
1743
|
export const MsgMoveThread = {
|
|
1681
1744
|
typeUrl: "/sparkdream.forum.v1.MsgMoveThread",
|
|
1745
|
+
aminoType: "sparkdream/x/forum/MsgMoveThread",
|
|
1682
1746
|
encode(message, writer = BinaryWriter.create()) {
|
|
1683
1747
|
if (message.creator !== "") {
|
|
1684
1748
|
writer.uint32(10).string(message.creator);
|
|
@@ -1755,6 +1819,12 @@ export const MsgMoveThread = {
|
|
|
1755
1819
|
fromAminoMsg(object) {
|
|
1756
1820
|
return MsgMoveThread.fromAmino(object.value);
|
|
1757
1821
|
},
|
|
1822
|
+
toAminoMsg(message) {
|
|
1823
|
+
return {
|
|
1824
|
+
type: "sparkdream/x/forum/MsgMoveThread",
|
|
1825
|
+
value: MsgMoveThread.toAmino(message)
|
|
1826
|
+
};
|
|
1827
|
+
},
|
|
1758
1828
|
fromProtoMsg(message) {
|
|
1759
1829
|
return MsgMoveThread.decode(message.value);
|
|
1760
1830
|
},
|
|
@@ -1838,6 +1908,7 @@ function createBaseMsgFollowThread() {
|
|
|
1838
1908
|
*/
|
|
1839
1909
|
export const MsgFollowThread = {
|
|
1840
1910
|
typeUrl: "/sparkdream.forum.v1.MsgFollowThread",
|
|
1911
|
+
aminoType: "sparkdream/x/forum/MsgFollowThread",
|
|
1841
1912
|
encode(message, writer = BinaryWriter.create()) {
|
|
1842
1913
|
if (message.creator !== "") {
|
|
1843
1914
|
writer.uint32(10).string(message.creator);
|
|
@@ -1892,6 +1963,12 @@ export const MsgFollowThread = {
|
|
|
1892
1963
|
fromAminoMsg(object) {
|
|
1893
1964
|
return MsgFollowThread.fromAmino(object.value);
|
|
1894
1965
|
},
|
|
1966
|
+
toAminoMsg(message) {
|
|
1967
|
+
return {
|
|
1968
|
+
type: "sparkdream/x/forum/MsgFollowThread",
|
|
1969
|
+
value: MsgFollowThread.toAmino(message)
|
|
1970
|
+
};
|
|
1971
|
+
},
|
|
1895
1972
|
fromProtoMsg(message) {
|
|
1896
1973
|
return MsgFollowThread.decode(message.value);
|
|
1897
1974
|
},
|
|
@@ -1975,6 +2052,7 @@ function createBaseMsgUnfollowThread() {
|
|
|
1975
2052
|
*/
|
|
1976
2053
|
export const MsgUnfollowThread = {
|
|
1977
2054
|
typeUrl: "/sparkdream.forum.v1.MsgUnfollowThread",
|
|
2055
|
+
aminoType: "sparkdream/x/forum/MsgUnfollowThread",
|
|
1978
2056
|
encode(message, writer = BinaryWriter.create()) {
|
|
1979
2057
|
if (message.creator !== "") {
|
|
1980
2058
|
writer.uint32(10).string(message.creator);
|
|
@@ -2029,6 +2107,12 @@ export const MsgUnfollowThread = {
|
|
|
2029
2107
|
fromAminoMsg(object) {
|
|
2030
2108
|
return MsgUnfollowThread.fromAmino(object.value);
|
|
2031
2109
|
},
|
|
2110
|
+
toAminoMsg(message) {
|
|
2111
|
+
return {
|
|
2112
|
+
type: "sparkdream/x/forum/MsgUnfollowThread",
|
|
2113
|
+
value: MsgUnfollowThread.toAmino(message)
|
|
2114
|
+
};
|
|
2115
|
+
},
|
|
2032
2116
|
fromProtoMsg(message) {
|
|
2033
2117
|
return MsgUnfollowThread.decode(message.value);
|
|
2034
2118
|
},
|
|
@@ -2112,6 +2196,7 @@ function createBaseMsgUpvotePost() {
|
|
|
2112
2196
|
*/
|
|
2113
2197
|
export const MsgUpvotePost = {
|
|
2114
2198
|
typeUrl: "/sparkdream.forum.v1.MsgUpvotePost",
|
|
2199
|
+
aminoType: "sparkdream/x/forum/MsgUpvotePost",
|
|
2115
2200
|
encode(message, writer = BinaryWriter.create()) {
|
|
2116
2201
|
if (message.creator !== "") {
|
|
2117
2202
|
writer.uint32(10).string(message.creator);
|
|
@@ -2166,6 +2251,12 @@ export const MsgUpvotePost = {
|
|
|
2166
2251
|
fromAminoMsg(object) {
|
|
2167
2252
|
return MsgUpvotePost.fromAmino(object.value);
|
|
2168
2253
|
},
|
|
2254
|
+
toAminoMsg(message) {
|
|
2255
|
+
return {
|
|
2256
|
+
type: "sparkdream/x/forum/MsgUpvotePost",
|
|
2257
|
+
value: MsgUpvotePost.toAmino(message)
|
|
2258
|
+
};
|
|
2259
|
+
},
|
|
2169
2260
|
fromProtoMsg(message) {
|
|
2170
2261
|
return MsgUpvotePost.decode(message.value);
|
|
2171
2262
|
},
|
|
@@ -2249,6 +2340,7 @@ function createBaseMsgDownvotePost() {
|
|
|
2249
2340
|
*/
|
|
2250
2341
|
export const MsgDownvotePost = {
|
|
2251
2342
|
typeUrl: "/sparkdream.forum.v1.MsgDownvotePost",
|
|
2343
|
+
aminoType: "sparkdream/x/forum/MsgDownvotePost",
|
|
2252
2344
|
encode(message, writer = BinaryWriter.create()) {
|
|
2253
2345
|
if (message.creator !== "") {
|
|
2254
2346
|
writer.uint32(10).string(message.creator);
|
|
@@ -2303,6 +2395,12 @@ export const MsgDownvotePost = {
|
|
|
2303
2395
|
fromAminoMsg(object) {
|
|
2304
2396
|
return MsgDownvotePost.fromAmino(object.value);
|
|
2305
2397
|
},
|
|
2398
|
+
toAminoMsg(message) {
|
|
2399
|
+
return {
|
|
2400
|
+
type: "sparkdream/x/forum/MsgDownvotePost",
|
|
2401
|
+
value: MsgDownvotePost.toAmino(message)
|
|
2402
|
+
};
|
|
2403
|
+
},
|
|
2306
2404
|
fromProtoMsg(message) {
|
|
2307
2405
|
return MsgDownvotePost.decode(message.value);
|
|
2308
2406
|
},
|
|
@@ -2388,6 +2486,7 @@ function createBaseMsgFlagPost() {
|
|
|
2388
2486
|
*/
|
|
2389
2487
|
export const MsgFlagPost = {
|
|
2390
2488
|
typeUrl: "/sparkdream.forum.v1.MsgFlagPost",
|
|
2489
|
+
aminoType: "sparkdream/x/forum/MsgFlagPost",
|
|
2391
2490
|
encode(message, writer = BinaryWriter.create()) {
|
|
2392
2491
|
if (message.creator !== "") {
|
|
2393
2492
|
writer.uint32(10).string(message.creator);
|
|
@@ -2464,6 +2563,12 @@ export const MsgFlagPost = {
|
|
|
2464
2563
|
fromAminoMsg(object) {
|
|
2465
2564
|
return MsgFlagPost.fromAmino(object.value);
|
|
2466
2565
|
},
|
|
2566
|
+
toAminoMsg(message) {
|
|
2567
|
+
return {
|
|
2568
|
+
type: "sparkdream/x/forum/MsgFlagPost",
|
|
2569
|
+
value: MsgFlagPost.toAmino(message)
|
|
2570
|
+
};
|
|
2571
|
+
},
|
|
2467
2572
|
fromProtoMsg(message) {
|
|
2468
2573
|
return MsgFlagPost.decode(message.value);
|
|
2469
2574
|
},
|
|
@@ -2548,6 +2653,7 @@ function createBaseMsgDismissFlags() {
|
|
|
2548
2653
|
*/
|
|
2549
2654
|
export const MsgDismissFlags = {
|
|
2550
2655
|
typeUrl: "/sparkdream.forum.v1.MsgDismissFlags",
|
|
2656
|
+
aminoType: "sparkdream/x/forum/MsgDismissFlags",
|
|
2551
2657
|
encode(message, writer = BinaryWriter.create()) {
|
|
2552
2658
|
if (message.creator !== "") {
|
|
2553
2659
|
writer.uint32(10).string(message.creator);
|
|
@@ -2613,6 +2719,12 @@ export const MsgDismissFlags = {
|
|
|
2613
2719
|
fromAminoMsg(object) {
|
|
2614
2720
|
return MsgDismissFlags.fromAmino(object.value);
|
|
2615
2721
|
},
|
|
2722
|
+
toAminoMsg(message) {
|
|
2723
|
+
return {
|
|
2724
|
+
type: "sparkdream/x/forum/MsgDismissFlags",
|
|
2725
|
+
value: MsgDismissFlags.toAmino(message)
|
|
2726
|
+
};
|
|
2727
|
+
},
|
|
2616
2728
|
fromProtoMsg(message) {
|
|
2617
2729
|
return MsgDismissFlags.decode(message.value);
|
|
2618
2730
|
},
|
|
@@ -2698,6 +2810,7 @@ function createBaseMsgHidePost() {
|
|
|
2698
2810
|
*/
|
|
2699
2811
|
export const MsgHidePost = {
|
|
2700
2812
|
typeUrl: "/sparkdream.forum.v1.MsgHidePost",
|
|
2813
|
+
aminoType: "sparkdream/x/forum/MsgHidePost",
|
|
2701
2814
|
encode(message, writer = BinaryWriter.create()) {
|
|
2702
2815
|
if (message.creator !== "") {
|
|
2703
2816
|
writer.uint32(10).string(message.creator);
|
|
@@ -2774,6 +2887,12 @@ export const MsgHidePost = {
|
|
|
2774
2887
|
fromAminoMsg(object) {
|
|
2775
2888
|
return MsgHidePost.fromAmino(object.value);
|
|
2776
2889
|
},
|
|
2890
|
+
toAminoMsg(message) {
|
|
2891
|
+
return {
|
|
2892
|
+
type: "sparkdream/x/forum/MsgHidePost",
|
|
2893
|
+
value: MsgHidePost.toAmino(message)
|
|
2894
|
+
};
|
|
2895
|
+
},
|
|
2777
2896
|
fromProtoMsg(message) {
|
|
2778
2897
|
return MsgHidePost.decode(message.value);
|
|
2779
2898
|
},
|
|
@@ -2857,6 +2976,7 @@ function createBaseMsgAppealPost() {
|
|
|
2857
2976
|
*/
|
|
2858
2977
|
export const MsgAppealPost = {
|
|
2859
2978
|
typeUrl: "/sparkdream.forum.v1.MsgAppealPost",
|
|
2979
|
+
aminoType: "sparkdream/x/forum/MsgAppealPost",
|
|
2860
2980
|
encode(message, writer = BinaryWriter.create()) {
|
|
2861
2981
|
if (message.creator !== "") {
|
|
2862
2982
|
writer.uint32(10).string(message.creator);
|
|
@@ -2911,6 +3031,12 @@ export const MsgAppealPost = {
|
|
|
2911
3031
|
fromAminoMsg(object) {
|
|
2912
3032
|
return MsgAppealPost.fromAmino(object.value);
|
|
2913
3033
|
},
|
|
3034
|
+
toAminoMsg(message) {
|
|
3035
|
+
return {
|
|
3036
|
+
type: "sparkdream/x/forum/MsgAppealPost",
|
|
3037
|
+
value: MsgAppealPost.toAmino(message)
|
|
3038
|
+
};
|
|
3039
|
+
},
|
|
2914
3040
|
fromProtoMsg(message) {
|
|
2915
3041
|
return MsgAppealPost.decode(message.value);
|
|
2916
3042
|
},
|
|
@@ -2994,6 +3120,7 @@ function createBaseMsgAppealThreadLock() {
|
|
|
2994
3120
|
*/
|
|
2995
3121
|
export const MsgAppealThreadLock = {
|
|
2996
3122
|
typeUrl: "/sparkdream.forum.v1.MsgAppealThreadLock",
|
|
3123
|
+
aminoType: "sparkdream/x/forum/MsgAppealThreadLock",
|
|
2997
3124
|
encode(message, writer = BinaryWriter.create()) {
|
|
2998
3125
|
if (message.creator !== "") {
|
|
2999
3126
|
writer.uint32(10).string(message.creator);
|
|
@@ -3048,6 +3175,12 @@ export const MsgAppealThreadLock = {
|
|
|
3048
3175
|
fromAminoMsg(object) {
|
|
3049
3176
|
return MsgAppealThreadLock.fromAmino(object.value);
|
|
3050
3177
|
},
|
|
3178
|
+
toAminoMsg(message) {
|
|
3179
|
+
return {
|
|
3180
|
+
type: "sparkdream/x/forum/MsgAppealThreadLock",
|
|
3181
|
+
value: MsgAppealThreadLock.toAmino(message)
|
|
3182
|
+
};
|
|
3183
|
+
},
|
|
3051
3184
|
fromProtoMsg(message) {
|
|
3052
3185
|
return MsgAppealThreadLock.decode(message.value);
|
|
3053
3186
|
},
|
|
@@ -3131,6 +3264,7 @@ function createBaseMsgAppealThreadMove() {
|
|
|
3131
3264
|
*/
|
|
3132
3265
|
export const MsgAppealThreadMove = {
|
|
3133
3266
|
typeUrl: "/sparkdream.forum.v1.MsgAppealThreadMove",
|
|
3267
|
+
aminoType: "sparkdream/x/forum/MsgAppealThreadMove",
|
|
3134
3268
|
encode(message, writer = BinaryWriter.create()) {
|
|
3135
3269
|
if (message.creator !== "") {
|
|
3136
3270
|
writer.uint32(10).string(message.creator);
|
|
@@ -3185,6 +3319,12 @@ export const MsgAppealThreadMove = {
|
|
|
3185
3319
|
fromAminoMsg(object) {
|
|
3186
3320
|
return MsgAppealThreadMove.fromAmino(object.value);
|
|
3187
3321
|
},
|
|
3322
|
+
toAminoMsg(message) {
|
|
3323
|
+
return {
|
|
3324
|
+
type: "sparkdream/x/forum/MsgAppealThreadMove",
|
|
3325
|
+
value: MsgAppealThreadMove.toAmino(message)
|
|
3326
|
+
};
|
|
3327
|
+
},
|
|
3188
3328
|
fromProtoMsg(message) {
|
|
3189
3329
|
return MsgAppealThreadMove.decode(message.value);
|
|
3190
3330
|
},
|
|
@@ -3270,6 +3410,7 @@ function createBaseMsgCreateBounty() {
|
|
|
3270
3410
|
*/
|
|
3271
3411
|
export const MsgCreateBounty = {
|
|
3272
3412
|
typeUrl: "/sparkdream.forum.v1.MsgCreateBounty",
|
|
3413
|
+
aminoType: "sparkdream/x/forum/MsgCreateBounty",
|
|
3273
3414
|
encode(message, writer = BinaryWriter.create()) {
|
|
3274
3415
|
if (message.creator !== "") {
|
|
3275
3416
|
writer.uint32(10).string(message.creator);
|
|
@@ -3346,6 +3487,12 @@ export const MsgCreateBounty = {
|
|
|
3346
3487
|
fromAminoMsg(object) {
|
|
3347
3488
|
return MsgCreateBounty.fromAmino(object.value);
|
|
3348
3489
|
},
|
|
3490
|
+
toAminoMsg(message) {
|
|
3491
|
+
return {
|
|
3492
|
+
type: "sparkdream/x/forum/MsgCreateBounty",
|
|
3493
|
+
value: MsgCreateBounty.toAmino(message)
|
|
3494
|
+
};
|
|
3495
|
+
},
|
|
3349
3496
|
fromProtoMsg(message) {
|
|
3350
3497
|
return MsgCreateBounty.decode(message.value);
|
|
3351
3498
|
},
|
|
@@ -3429,6 +3576,7 @@ function createBaseMsgAwardBounty() {
|
|
|
3429
3576
|
*/
|
|
3430
3577
|
export const MsgAwardBounty = {
|
|
3431
3578
|
typeUrl: "/sparkdream.forum.v1.MsgAwardBounty",
|
|
3579
|
+
aminoType: "sparkdream/x/forum/MsgAwardBounty",
|
|
3432
3580
|
encode(message, writer = BinaryWriter.create()) {
|
|
3433
3581
|
if (message.creator !== "") {
|
|
3434
3582
|
writer.uint32(10).string(message.creator);
|
|
@@ -3483,6 +3631,12 @@ export const MsgAwardBounty = {
|
|
|
3483
3631
|
fromAminoMsg(object) {
|
|
3484
3632
|
return MsgAwardBounty.fromAmino(object.value);
|
|
3485
3633
|
},
|
|
3634
|
+
toAminoMsg(message) {
|
|
3635
|
+
return {
|
|
3636
|
+
type: "sparkdream/x/forum/MsgAwardBounty",
|
|
3637
|
+
value: MsgAwardBounty.toAmino(message)
|
|
3638
|
+
};
|
|
3639
|
+
},
|
|
3486
3640
|
fromProtoMsg(message) {
|
|
3487
3641
|
return MsgAwardBounty.decode(message.value);
|
|
3488
3642
|
},
|
|
@@ -3567,6 +3721,7 @@ function createBaseMsgIncreaseBounty() {
|
|
|
3567
3721
|
*/
|
|
3568
3722
|
export const MsgIncreaseBounty = {
|
|
3569
3723
|
typeUrl: "/sparkdream.forum.v1.MsgIncreaseBounty",
|
|
3724
|
+
aminoType: "sparkdream/x/forum/MsgIncreaseBounty",
|
|
3570
3725
|
encode(message, writer = BinaryWriter.create()) {
|
|
3571
3726
|
if (message.creator !== "") {
|
|
3572
3727
|
writer.uint32(10).string(message.creator);
|
|
@@ -3632,6 +3787,12 @@ export const MsgIncreaseBounty = {
|
|
|
3632
3787
|
fromAminoMsg(object) {
|
|
3633
3788
|
return MsgIncreaseBounty.fromAmino(object.value);
|
|
3634
3789
|
},
|
|
3790
|
+
toAminoMsg(message) {
|
|
3791
|
+
return {
|
|
3792
|
+
type: "sparkdream/x/forum/MsgIncreaseBounty",
|
|
3793
|
+
value: MsgIncreaseBounty.toAmino(message)
|
|
3794
|
+
};
|
|
3795
|
+
},
|
|
3635
3796
|
fromProtoMsg(message) {
|
|
3636
3797
|
return MsgIncreaseBounty.decode(message.value);
|
|
3637
3798
|
},
|
|
@@ -3715,6 +3876,7 @@ function createBaseMsgCancelBounty() {
|
|
|
3715
3876
|
*/
|
|
3716
3877
|
export const MsgCancelBounty = {
|
|
3717
3878
|
typeUrl: "/sparkdream.forum.v1.MsgCancelBounty",
|
|
3879
|
+
aminoType: "sparkdream/x/forum/MsgCancelBounty",
|
|
3718
3880
|
encode(message, writer = BinaryWriter.create()) {
|
|
3719
3881
|
if (message.creator !== "") {
|
|
3720
3882
|
writer.uint32(10).string(message.creator);
|
|
@@ -3769,6 +3931,12 @@ export const MsgCancelBounty = {
|
|
|
3769
3931
|
fromAminoMsg(object) {
|
|
3770
3932
|
return MsgCancelBounty.fromAmino(object.value);
|
|
3771
3933
|
},
|
|
3934
|
+
toAminoMsg(message) {
|
|
3935
|
+
return {
|
|
3936
|
+
type: "sparkdream/x/forum/MsgCancelBounty",
|
|
3937
|
+
value: MsgCancelBounty.toAmino(message)
|
|
3938
|
+
};
|
|
3939
|
+
},
|
|
3772
3940
|
fromProtoMsg(message) {
|
|
3773
3941
|
return MsgCancelBounty.decode(message.value);
|
|
3774
3942
|
},
|
|
@@ -3854,6 +4022,7 @@ function createBaseMsgAssignBountyToReply() {
|
|
|
3854
4022
|
*/
|
|
3855
4023
|
export const MsgAssignBountyToReply = {
|
|
3856
4024
|
typeUrl: "/sparkdream.forum.v1.MsgAssignBountyToReply",
|
|
4025
|
+
aminoType: "sparkdream/x/forum/MsgAssignBountyToReply",
|
|
3857
4026
|
encode(message, writer = BinaryWriter.create()) {
|
|
3858
4027
|
if (message.creator !== "") {
|
|
3859
4028
|
writer.uint32(10).string(message.creator);
|
|
@@ -3930,6 +4099,12 @@ export const MsgAssignBountyToReply = {
|
|
|
3930
4099
|
fromAminoMsg(object) {
|
|
3931
4100
|
return MsgAssignBountyToReply.fromAmino(object.value);
|
|
3932
4101
|
},
|
|
4102
|
+
toAminoMsg(message) {
|
|
4103
|
+
return {
|
|
4104
|
+
type: "sparkdream/x/forum/MsgAssignBountyToReply",
|
|
4105
|
+
value: MsgAssignBountyToReply.toAmino(message)
|
|
4106
|
+
};
|
|
4107
|
+
},
|
|
3933
4108
|
fromProtoMsg(message) {
|
|
3934
4109
|
return MsgAssignBountyToReply.decode(message.value);
|
|
3935
4110
|
},
|
|
@@ -4014,6 +4189,7 @@ function createBaseMsgPinReply() {
|
|
|
4014
4189
|
*/
|
|
4015
4190
|
export const MsgPinReply = {
|
|
4016
4191
|
typeUrl: "/sparkdream.forum.v1.MsgPinReply",
|
|
4192
|
+
aminoType: "sparkdream/x/forum/MsgPinReply",
|
|
4017
4193
|
encode(message, writer = BinaryWriter.create()) {
|
|
4018
4194
|
if (message.creator !== "") {
|
|
4019
4195
|
writer.uint32(10).string(message.creator);
|
|
@@ -4079,6 +4255,12 @@ export const MsgPinReply = {
|
|
|
4079
4255
|
fromAminoMsg(object) {
|
|
4080
4256
|
return MsgPinReply.fromAmino(object.value);
|
|
4081
4257
|
},
|
|
4258
|
+
toAminoMsg(message) {
|
|
4259
|
+
return {
|
|
4260
|
+
type: "sparkdream/x/forum/MsgPinReply",
|
|
4261
|
+
value: MsgPinReply.toAmino(message)
|
|
4262
|
+
};
|
|
4263
|
+
},
|
|
4082
4264
|
fromProtoMsg(message) {
|
|
4083
4265
|
return MsgPinReply.decode(message.value);
|
|
4084
4266
|
},
|
|
@@ -4163,6 +4345,7 @@ function createBaseMsgUnpinReply() {
|
|
|
4163
4345
|
*/
|
|
4164
4346
|
export const MsgUnpinReply = {
|
|
4165
4347
|
typeUrl: "/sparkdream.forum.v1.MsgUnpinReply",
|
|
4348
|
+
aminoType: "sparkdream/x/forum/MsgUnpinReply",
|
|
4166
4349
|
encode(message, writer = BinaryWriter.create()) {
|
|
4167
4350
|
if (message.creator !== "") {
|
|
4168
4351
|
writer.uint32(10).string(message.creator);
|
|
@@ -4228,6 +4411,12 @@ export const MsgUnpinReply = {
|
|
|
4228
4411
|
fromAminoMsg(object) {
|
|
4229
4412
|
return MsgUnpinReply.fromAmino(object.value);
|
|
4230
4413
|
},
|
|
4414
|
+
toAminoMsg(message) {
|
|
4415
|
+
return {
|
|
4416
|
+
type: "sparkdream/x/forum/MsgUnpinReply",
|
|
4417
|
+
value: MsgUnpinReply.toAmino(message)
|
|
4418
|
+
};
|
|
4419
|
+
},
|
|
4231
4420
|
fromProtoMsg(message) {
|
|
4232
4421
|
return MsgUnpinReply.decode(message.value);
|
|
4233
4422
|
},
|
|
@@ -4313,6 +4502,7 @@ function createBaseMsgDisputePin() {
|
|
|
4313
4502
|
*/
|
|
4314
4503
|
export const MsgDisputePin = {
|
|
4315
4504
|
typeUrl: "/sparkdream.forum.v1.MsgDisputePin",
|
|
4505
|
+
aminoType: "sparkdream/x/forum/MsgDisputePin",
|
|
4316
4506
|
encode(message, writer = BinaryWriter.create()) {
|
|
4317
4507
|
if (message.creator !== "") {
|
|
4318
4508
|
writer.uint32(10).string(message.creator);
|
|
@@ -4389,6 +4579,12 @@ export const MsgDisputePin = {
|
|
|
4389
4579
|
fromAminoMsg(object) {
|
|
4390
4580
|
return MsgDisputePin.fromAmino(object.value);
|
|
4391
4581
|
},
|
|
4582
|
+
toAminoMsg(message) {
|
|
4583
|
+
return {
|
|
4584
|
+
type: "sparkdream/x/forum/MsgDisputePin",
|
|
4585
|
+
value: MsgDisputePin.toAmino(message)
|
|
4586
|
+
};
|
|
4587
|
+
},
|
|
4392
4588
|
fromProtoMsg(message) {
|
|
4393
4589
|
return MsgDisputePin.decode(message.value);
|
|
4394
4590
|
},
|
|
@@ -4473,6 +4669,7 @@ function createBaseMsgMarkAcceptedReply() {
|
|
|
4473
4669
|
*/
|
|
4474
4670
|
export const MsgMarkAcceptedReply = {
|
|
4475
4671
|
typeUrl: "/sparkdream.forum.v1.MsgMarkAcceptedReply",
|
|
4672
|
+
aminoType: "sparkdream/x/forum/MsgMarkAcceptedReply",
|
|
4476
4673
|
encode(message, writer = BinaryWriter.create()) {
|
|
4477
4674
|
if (message.creator !== "") {
|
|
4478
4675
|
writer.uint32(10).string(message.creator);
|
|
@@ -4538,6 +4735,12 @@ export const MsgMarkAcceptedReply = {
|
|
|
4538
4735
|
fromAminoMsg(object) {
|
|
4539
4736
|
return MsgMarkAcceptedReply.fromAmino(object.value);
|
|
4540
4737
|
},
|
|
4738
|
+
toAminoMsg(message) {
|
|
4739
|
+
return {
|
|
4740
|
+
type: "sparkdream/x/forum/MsgMarkAcceptedReply",
|
|
4741
|
+
value: MsgMarkAcceptedReply.toAmino(message)
|
|
4742
|
+
};
|
|
4743
|
+
},
|
|
4541
4744
|
fromProtoMsg(message) {
|
|
4542
4745
|
return MsgMarkAcceptedReply.decode(message.value);
|
|
4543
4746
|
},
|
|
@@ -4621,6 +4824,7 @@ function createBaseMsgConfirmProposedReply() {
|
|
|
4621
4824
|
*/
|
|
4622
4825
|
export const MsgConfirmProposedReply = {
|
|
4623
4826
|
typeUrl: "/sparkdream.forum.v1.MsgConfirmProposedReply",
|
|
4827
|
+
aminoType: "sparkdream/x/forum/MsgConfirmProposedReply",
|
|
4624
4828
|
encode(message, writer = BinaryWriter.create()) {
|
|
4625
4829
|
if (message.creator !== "") {
|
|
4626
4830
|
writer.uint32(10).string(message.creator);
|
|
@@ -4675,6 +4879,12 @@ export const MsgConfirmProposedReply = {
|
|
|
4675
4879
|
fromAminoMsg(object) {
|
|
4676
4880
|
return MsgConfirmProposedReply.fromAmino(object.value);
|
|
4677
4881
|
},
|
|
4882
|
+
toAminoMsg(message) {
|
|
4883
|
+
return {
|
|
4884
|
+
type: "sparkdream/x/forum/MsgConfirmProposedReply",
|
|
4885
|
+
value: MsgConfirmProposedReply.toAmino(message)
|
|
4886
|
+
};
|
|
4887
|
+
},
|
|
4678
4888
|
fromProtoMsg(message) {
|
|
4679
4889
|
return MsgConfirmProposedReply.decode(message.value);
|
|
4680
4890
|
},
|
|
@@ -4759,6 +4969,7 @@ function createBaseMsgRejectProposedReply() {
|
|
|
4759
4969
|
*/
|
|
4760
4970
|
export const MsgRejectProposedReply = {
|
|
4761
4971
|
typeUrl: "/sparkdream.forum.v1.MsgRejectProposedReply",
|
|
4972
|
+
aminoType: "sparkdream/x/forum/MsgRejectProposedReply",
|
|
4762
4973
|
encode(message, writer = BinaryWriter.create()) {
|
|
4763
4974
|
if (message.creator !== "") {
|
|
4764
4975
|
writer.uint32(10).string(message.creator);
|
|
@@ -4824,6 +5035,12 @@ export const MsgRejectProposedReply = {
|
|
|
4824
5035
|
fromAminoMsg(object) {
|
|
4825
5036
|
return MsgRejectProposedReply.fromAmino(object.value);
|
|
4826
5037
|
},
|
|
5038
|
+
toAminoMsg(message) {
|
|
5039
|
+
return {
|
|
5040
|
+
type: "sparkdream/x/forum/MsgRejectProposedReply",
|
|
5041
|
+
value: MsgRejectProposedReply.toAmino(message)
|
|
5042
|
+
};
|
|
5043
|
+
},
|
|
4827
5044
|
fromProtoMsg(message) {
|
|
4828
5045
|
return MsgRejectProposedReply.decode(message.value);
|
|
4829
5046
|
},
|
|
@@ -4907,6 +5124,7 @@ function createBaseMsgSetForumPaused() {
|
|
|
4907
5124
|
*/
|
|
4908
5125
|
export const MsgSetForumPaused = {
|
|
4909
5126
|
typeUrl: "/sparkdream.forum.v1.MsgSetForumPaused",
|
|
5127
|
+
aminoType: "sparkdream/x/forum/MsgSetForumPaused",
|
|
4910
5128
|
encode(message, writer = BinaryWriter.create()) {
|
|
4911
5129
|
if (message.creator !== "") {
|
|
4912
5130
|
writer.uint32(10).string(message.creator);
|
|
@@ -4961,6 +5179,12 @@ export const MsgSetForumPaused = {
|
|
|
4961
5179
|
fromAminoMsg(object) {
|
|
4962
5180
|
return MsgSetForumPaused.fromAmino(object.value);
|
|
4963
5181
|
},
|
|
5182
|
+
toAminoMsg(message) {
|
|
5183
|
+
return {
|
|
5184
|
+
type: "sparkdream/x/forum/MsgSetForumPaused",
|
|
5185
|
+
value: MsgSetForumPaused.toAmino(message)
|
|
5186
|
+
};
|
|
5187
|
+
},
|
|
4964
5188
|
fromProtoMsg(message) {
|
|
4965
5189
|
return MsgSetForumPaused.decode(message.value);
|
|
4966
5190
|
},
|
|
@@ -5044,6 +5268,7 @@ function createBaseMsgSetModerationPaused() {
|
|
|
5044
5268
|
*/
|
|
5045
5269
|
export const MsgSetModerationPaused = {
|
|
5046
5270
|
typeUrl: "/sparkdream.forum.v1.MsgSetModerationPaused",
|
|
5271
|
+
aminoType: "sparkdream/x/forum/MsgSetModerationPaused",
|
|
5047
5272
|
encode(message, writer = BinaryWriter.create()) {
|
|
5048
5273
|
if (message.creator !== "") {
|
|
5049
5274
|
writer.uint32(10).string(message.creator);
|
|
@@ -5098,6 +5323,12 @@ export const MsgSetModerationPaused = {
|
|
|
5098
5323
|
fromAminoMsg(object) {
|
|
5099
5324
|
return MsgSetModerationPaused.fromAmino(object.value);
|
|
5100
5325
|
},
|
|
5326
|
+
toAminoMsg(message) {
|
|
5327
|
+
return {
|
|
5328
|
+
type: "sparkdream/x/forum/MsgSetModerationPaused",
|
|
5329
|
+
value: MsgSetModerationPaused.toAmino(message)
|
|
5330
|
+
};
|
|
5331
|
+
},
|
|
5101
5332
|
fromProtoMsg(message) {
|
|
5102
5333
|
return MsgSetModerationPaused.decode(message.value);
|
|
5103
5334
|
},
|
|
@@ -12,17 +12,17 @@ export const AminoConverter = {
|
|
|
12
12
|
fromAmino: MsgUpdateOperationalParams.fromAmino
|
|
13
13
|
},
|
|
14
14
|
"/sparkdream.futarchy.v1.MsgCreateMarket": {
|
|
15
|
-
aminoType: "/
|
|
15
|
+
aminoType: "sparkdream/x/futarchy/MsgCreateMarket",
|
|
16
16
|
toAmino: MsgCreateMarket.toAmino,
|
|
17
17
|
fromAmino: MsgCreateMarket.fromAmino
|
|
18
18
|
},
|
|
19
19
|
"/sparkdream.futarchy.v1.MsgTrade": {
|
|
20
|
-
aminoType: "/
|
|
20
|
+
aminoType: "sparkdream/x/futarchy/MsgTrade",
|
|
21
21
|
toAmino: MsgTrade.toAmino,
|
|
22
22
|
fromAmino: MsgTrade.fromAmino
|
|
23
23
|
},
|
|
24
24
|
"/sparkdream.futarchy.v1.MsgRedeem": {
|
|
25
|
-
aminoType: "/
|
|
25
|
+
aminoType: "sparkdream/x/futarchy/MsgRedeem",
|
|
26
26
|
toAmino: MsgRedeem.toAmino,
|
|
27
27
|
fromAmino: MsgRedeem.fromAmino
|
|
28
28
|
},
|
|
@@ -32,7 +32,7 @@ export const AminoConverter = {
|
|
|
32
32
|
fromAmino: MsgCancelMarket.fromAmino
|
|
33
33
|
},
|
|
34
34
|
"/sparkdream.futarchy.v1.MsgWithdrawLiquidity": {
|
|
35
|
-
aminoType: "/
|
|
35
|
+
aminoType: "sparkdream/x/futarchy/MsgWithdrawLiquidity",
|
|
36
36
|
toAmino: MsgWithdrawLiquidity.toAmino,
|
|
37
37
|
fromAmino: MsgWithdrawLiquidity.fromAmino
|
|
38
38
|
}
|