@sparkdreamnft/sparkdreamjs 0.0.10 → 0.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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 +13 -13
- 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/owner_info.js +13 -1
- package/esm/sparkdream/name/v1/query.js +307 -0
- package/esm/sparkdream/name/v1/query.lcd.js +20 -0
- package/esm/sparkdream/name/v1/query.rpc.Query.js +23 -1
- package/esm/sparkdream/name/v1/tx.amino.js +26 -6
- package/esm/sparkdream/name/v1/tx.js +647 -0
- package/esm/sparkdream/name/v1/tx.registry.js +74 -2
- package/esm/sparkdream/name/v1/tx.rpc.msg.js +31 -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 +3 -3
- 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/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 +722 -0
- package/sparkdream/client.d.ts +20 -0
- 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.js +13 -13
- 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/owner_info.d.ts +12 -0
- package/sparkdream/name/v1/owner_info.js +13 -1
- package/sparkdream/name/v1/query.d.ts +190 -0
- package/sparkdream/name/v1/query.js +308 -1
- package/sparkdream/name/v1/query.lcd.d.ts +3 -1
- package/sparkdream/name/v1/query.lcd.js +20 -0
- package/sparkdream/name/v1/query.rpc.Query.d.ts +17 -1
- package/sparkdream/name/v1/query.rpc.Query.js +22 -0
- package/sparkdream/name/v1/tx.amino.d.ts +21 -1
- package/sparkdream/name/v1/tx.amino.js +25 -5
- package/sparkdream/name/v1/tx.d.ts +441 -5
- package/sparkdream/name/v1/tx.js +648 -1
- package/sparkdream/name/v1/tx.registry.d.ts +49 -1
- package/sparkdream/name/v1/tx.registry.js +73 -1
- package/sparkdream/name/v1/tx.rpc.msg.d.ts +27 -1
- package/sparkdream/name/v1/tx.rpc.msg.js +30 -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 +5 -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.js +3 -3
- 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
package/sparkdream/blog/v1/tx.js
CHANGED
|
@@ -315,6 +315,7 @@ function createBaseMsgCreatePost() {
|
|
|
315
315
|
*/
|
|
316
316
|
exports.MsgCreatePost = {
|
|
317
317
|
typeUrl: "/sparkdream.blog.v1.MsgCreatePost",
|
|
318
|
+
aminoType: "sparkdream/x/blog/MsgCreatePost",
|
|
318
319
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
319
320
|
if (message.creator !== "") {
|
|
320
321
|
writer.uint32(10).string(message.creator);
|
|
@@ -438,6 +439,12 @@ exports.MsgCreatePost = {
|
|
|
438
439
|
fromAminoMsg(object) {
|
|
439
440
|
return exports.MsgCreatePost.fromAmino(object.value);
|
|
440
441
|
},
|
|
442
|
+
toAminoMsg(message) {
|
|
443
|
+
return {
|
|
444
|
+
type: "sparkdream/x/blog/MsgCreatePost",
|
|
445
|
+
value: exports.MsgCreatePost.toAmino(message)
|
|
446
|
+
};
|
|
447
|
+
},
|
|
441
448
|
fromProtoMsg(message) {
|
|
442
449
|
return exports.MsgCreatePost.decode(message.value);
|
|
443
450
|
},
|
|
@@ -540,6 +547,7 @@ function createBaseMsgUpdatePost() {
|
|
|
540
547
|
*/
|
|
541
548
|
exports.MsgUpdatePost = {
|
|
542
549
|
typeUrl: "/sparkdream.blog.v1.MsgUpdatePost",
|
|
550
|
+
aminoType: "sparkdream/x/blog/MsgUpdatePost",
|
|
543
551
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
544
552
|
if (message.creator !== "") {
|
|
545
553
|
writer.uint32(10).string(message.creator);
|
|
@@ -663,6 +671,12 @@ exports.MsgUpdatePost = {
|
|
|
663
671
|
fromAminoMsg(object) {
|
|
664
672
|
return exports.MsgUpdatePost.fromAmino(object.value);
|
|
665
673
|
},
|
|
674
|
+
toAminoMsg(message) {
|
|
675
|
+
return {
|
|
676
|
+
type: "sparkdream/x/blog/MsgUpdatePost",
|
|
677
|
+
value: exports.MsgUpdatePost.toAmino(message)
|
|
678
|
+
};
|
|
679
|
+
},
|
|
666
680
|
fromProtoMsg(message) {
|
|
667
681
|
return exports.MsgUpdatePost.decode(message.value);
|
|
668
682
|
},
|
|
@@ -746,6 +760,7 @@ function createBaseMsgDeletePost() {
|
|
|
746
760
|
*/
|
|
747
761
|
exports.MsgDeletePost = {
|
|
748
762
|
typeUrl: "/sparkdream.blog.v1.MsgDeletePost",
|
|
763
|
+
aminoType: "sparkdream/x/blog/MsgDeletePost",
|
|
749
764
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
750
765
|
if (message.creator !== "") {
|
|
751
766
|
writer.uint32(10).string(message.creator);
|
|
@@ -800,6 +815,12 @@ exports.MsgDeletePost = {
|
|
|
800
815
|
fromAminoMsg(object) {
|
|
801
816
|
return exports.MsgDeletePost.fromAmino(object.value);
|
|
802
817
|
},
|
|
818
|
+
toAminoMsg(message) {
|
|
819
|
+
return {
|
|
820
|
+
type: "sparkdream/x/blog/MsgDeletePost",
|
|
821
|
+
value: exports.MsgDeletePost.toAmino(message)
|
|
822
|
+
};
|
|
823
|
+
},
|
|
803
824
|
fromProtoMsg(message) {
|
|
804
825
|
return exports.MsgDeletePost.decode(message.value);
|
|
805
826
|
},
|
|
@@ -883,6 +904,7 @@ function createBaseMsgHidePost() {
|
|
|
883
904
|
*/
|
|
884
905
|
exports.MsgHidePost = {
|
|
885
906
|
typeUrl: "/sparkdream.blog.v1.MsgHidePost",
|
|
907
|
+
aminoType: "sparkdream/x/blog/MsgHidePost",
|
|
886
908
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
887
909
|
if (message.creator !== "") {
|
|
888
910
|
writer.uint32(10).string(message.creator);
|
|
@@ -937,6 +959,12 @@ exports.MsgHidePost = {
|
|
|
937
959
|
fromAminoMsg(object) {
|
|
938
960
|
return exports.MsgHidePost.fromAmino(object.value);
|
|
939
961
|
},
|
|
962
|
+
toAminoMsg(message) {
|
|
963
|
+
return {
|
|
964
|
+
type: "sparkdream/x/blog/MsgHidePost",
|
|
965
|
+
value: exports.MsgHidePost.toAmino(message)
|
|
966
|
+
};
|
|
967
|
+
},
|
|
940
968
|
fromProtoMsg(message) {
|
|
941
969
|
return exports.MsgHidePost.decode(message.value);
|
|
942
970
|
},
|
|
@@ -1020,6 +1048,7 @@ function createBaseMsgUnhidePost() {
|
|
|
1020
1048
|
*/
|
|
1021
1049
|
exports.MsgUnhidePost = {
|
|
1022
1050
|
typeUrl: "/sparkdream.blog.v1.MsgUnhidePost",
|
|
1051
|
+
aminoType: "sparkdream/x/blog/MsgUnhidePost",
|
|
1023
1052
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
1024
1053
|
if (message.creator !== "") {
|
|
1025
1054
|
writer.uint32(10).string(message.creator);
|
|
@@ -1074,6 +1103,12 @@ exports.MsgUnhidePost = {
|
|
|
1074
1103
|
fromAminoMsg(object) {
|
|
1075
1104
|
return exports.MsgUnhidePost.fromAmino(object.value);
|
|
1076
1105
|
},
|
|
1106
|
+
toAminoMsg(message) {
|
|
1107
|
+
return {
|
|
1108
|
+
type: "sparkdream/x/blog/MsgUnhidePost",
|
|
1109
|
+
value: exports.MsgUnhidePost.toAmino(message)
|
|
1110
|
+
};
|
|
1111
|
+
},
|
|
1077
1112
|
fromProtoMsg(message) {
|
|
1078
1113
|
return exports.MsgUnhidePost.decode(message.value);
|
|
1079
1114
|
},
|
|
@@ -1161,6 +1196,7 @@ function createBaseMsgCreateReply() {
|
|
|
1161
1196
|
*/
|
|
1162
1197
|
exports.MsgCreateReply = {
|
|
1163
1198
|
typeUrl: "/sparkdream.blog.v1.MsgCreateReply",
|
|
1199
|
+
aminoType: "sparkdream/x/blog/MsgCreateReply",
|
|
1164
1200
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
1165
1201
|
if (message.creator !== "") {
|
|
1166
1202
|
writer.uint32(10).string(message.creator);
|
|
@@ -1259,6 +1295,12 @@ exports.MsgCreateReply = {
|
|
|
1259
1295
|
fromAminoMsg(object) {
|
|
1260
1296
|
return exports.MsgCreateReply.fromAmino(object.value);
|
|
1261
1297
|
},
|
|
1298
|
+
toAminoMsg(message) {
|
|
1299
|
+
return {
|
|
1300
|
+
type: "sparkdream/x/blog/MsgCreateReply",
|
|
1301
|
+
value: exports.MsgCreateReply.toAmino(message)
|
|
1302
|
+
};
|
|
1303
|
+
},
|
|
1262
1304
|
fromProtoMsg(message) {
|
|
1263
1305
|
return exports.MsgCreateReply.decode(message.value);
|
|
1264
1306
|
},
|
|
@@ -1357,6 +1399,7 @@ function createBaseMsgUpdateReply() {
|
|
|
1357
1399
|
*/
|
|
1358
1400
|
exports.MsgUpdateReply = {
|
|
1359
1401
|
typeUrl: "/sparkdream.blog.v1.MsgUpdateReply",
|
|
1402
|
+
aminoType: "sparkdream/x/blog/MsgUpdateReply",
|
|
1360
1403
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
1361
1404
|
if (message.creator !== "") {
|
|
1362
1405
|
writer.uint32(10).string(message.creator);
|
|
@@ -1433,6 +1476,12 @@ exports.MsgUpdateReply = {
|
|
|
1433
1476
|
fromAminoMsg(object) {
|
|
1434
1477
|
return exports.MsgUpdateReply.fromAmino(object.value);
|
|
1435
1478
|
},
|
|
1479
|
+
toAminoMsg(message) {
|
|
1480
|
+
return {
|
|
1481
|
+
type: "sparkdream/x/blog/MsgUpdateReply",
|
|
1482
|
+
value: exports.MsgUpdateReply.toAmino(message)
|
|
1483
|
+
};
|
|
1484
|
+
},
|
|
1436
1485
|
fromProtoMsg(message) {
|
|
1437
1486
|
return exports.MsgUpdateReply.decode(message.value);
|
|
1438
1487
|
},
|
|
@@ -1516,6 +1565,7 @@ function createBaseMsgDeleteReply() {
|
|
|
1516
1565
|
*/
|
|
1517
1566
|
exports.MsgDeleteReply = {
|
|
1518
1567
|
typeUrl: "/sparkdream.blog.v1.MsgDeleteReply",
|
|
1568
|
+
aminoType: "sparkdream/x/blog/MsgDeleteReply",
|
|
1519
1569
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
1520
1570
|
if (message.creator !== "") {
|
|
1521
1571
|
writer.uint32(10).string(message.creator);
|
|
@@ -1570,6 +1620,12 @@ exports.MsgDeleteReply = {
|
|
|
1570
1620
|
fromAminoMsg(object) {
|
|
1571
1621
|
return exports.MsgDeleteReply.fromAmino(object.value);
|
|
1572
1622
|
},
|
|
1623
|
+
toAminoMsg(message) {
|
|
1624
|
+
return {
|
|
1625
|
+
type: "sparkdream/x/blog/MsgDeleteReply",
|
|
1626
|
+
value: exports.MsgDeleteReply.toAmino(message)
|
|
1627
|
+
};
|
|
1628
|
+
},
|
|
1573
1629
|
fromProtoMsg(message) {
|
|
1574
1630
|
return exports.MsgDeleteReply.decode(message.value);
|
|
1575
1631
|
},
|
|
@@ -1653,6 +1709,7 @@ function createBaseMsgHideReply() {
|
|
|
1653
1709
|
*/
|
|
1654
1710
|
exports.MsgHideReply = {
|
|
1655
1711
|
typeUrl: "/sparkdream.blog.v1.MsgHideReply",
|
|
1712
|
+
aminoType: "sparkdream/x/blog/MsgHideReply",
|
|
1656
1713
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
1657
1714
|
if (message.creator !== "") {
|
|
1658
1715
|
writer.uint32(10).string(message.creator);
|
|
@@ -1707,6 +1764,12 @@ exports.MsgHideReply = {
|
|
|
1707
1764
|
fromAminoMsg(object) {
|
|
1708
1765
|
return exports.MsgHideReply.fromAmino(object.value);
|
|
1709
1766
|
},
|
|
1767
|
+
toAminoMsg(message) {
|
|
1768
|
+
return {
|
|
1769
|
+
type: "sparkdream/x/blog/MsgHideReply",
|
|
1770
|
+
value: exports.MsgHideReply.toAmino(message)
|
|
1771
|
+
};
|
|
1772
|
+
},
|
|
1710
1773
|
fromProtoMsg(message) {
|
|
1711
1774
|
return exports.MsgHideReply.decode(message.value);
|
|
1712
1775
|
},
|
|
@@ -1790,6 +1853,7 @@ function createBaseMsgUnhideReply() {
|
|
|
1790
1853
|
*/
|
|
1791
1854
|
exports.MsgUnhideReply = {
|
|
1792
1855
|
typeUrl: "/sparkdream.blog.v1.MsgUnhideReply",
|
|
1856
|
+
aminoType: "sparkdream/x/blog/MsgUnhideReply",
|
|
1793
1857
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
1794
1858
|
if (message.creator !== "") {
|
|
1795
1859
|
writer.uint32(10).string(message.creator);
|
|
@@ -1844,6 +1908,12 @@ exports.MsgUnhideReply = {
|
|
|
1844
1908
|
fromAminoMsg(object) {
|
|
1845
1909
|
return exports.MsgUnhideReply.fromAmino(object.value);
|
|
1846
1910
|
},
|
|
1911
|
+
toAminoMsg(message) {
|
|
1912
|
+
return {
|
|
1913
|
+
type: "sparkdream/x/blog/MsgUnhideReply",
|
|
1914
|
+
value: exports.MsgUnhideReply.toAmino(message)
|
|
1915
|
+
};
|
|
1916
|
+
},
|
|
1847
1917
|
fromProtoMsg(message) {
|
|
1848
1918
|
return exports.MsgUnhideReply.decode(message.value);
|
|
1849
1919
|
},
|
|
@@ -1929,6 +1999,7 @@ function createBaseMsgReact() {
|
|
|
1929
1999
|
*/
|
|
1930
2000
|
exports.MsgReact = {
|
|
1931
2001
|
typeUrl: "/sparkdream.blog.v1.MsgReact",
|
|
2002
|
+
aminoType: "sparkdream/x/blog/MsgReact",
|
|
1932
2003
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
1933
2004
|
if (message.creator !== "") {
|
|
1934
2005
|
writer.uint32(10).string(message.creator);
|
|
@@ -2005,6 +2076,12 @@ exports.MsgReact = {
|
|
|
2005
2076
|
fromAminoMsg(object) {
|
|
2006
2077
|
return exports.MsgReact.fromAmino(object.value);
|
|
2007
2078
|
},
|
|
2079
|
+
toAminoMsg(message) {
|
|
2080
|
+
return {
|
|
2081
|
+
type: "sparkdream/x/blog/MsgReact",
|
|
2082
|
+
value: exports.MsgReact.toAmino(message)
|
|
2083
|
+
};
|
|
2084
|
+
},
|
|
2008
2085
|
fromProtoMsg(message) {
|
|
2009
2086
|
return exports.MsgReact.decode(message.value);
|
|
2010
2087
|
},
|
|
@@ -2089,6 +2166,7 @@ function createBaseMsgRemoveReaction() {
|
|
|
2089
2166
|
*/
|
|
2090
2167
|
exports.MsgRemoveReaction = {
|
|
2091
2168
|
typeUrl: "/sparkdream.blog.v1.MsgRemoveReaction",
|
|
2169
|
+
aminoType: "sparkdream/x/blog/MsgRemoveReaction",
|
|
2092
2170
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
2093
2171
|
if (message.creator !== "") {
|
|
2094
2172
|
writer.uint32(10).string(message.creator);
|
|
@@ -2154,6 +2232,12 @@ exports.MsgRemoveReaction = {
|
|
|
2154
2232
|
fromAminoMsg(object) {
|
|
2155
2233
|
return exports.MsgRemoveReaction.fromAmino(object.value);
|
|
2156
2234
|
},
|
|
2235
|
+
toAminoMsg(message) {
|
|
2236
|
+
return {
|
|
2237
|
+
type: "sparkdream/x/blog/MsgRemoveReaction",
|
|
2238
|
+
value: exports.MsgRemoveReaction.toAmino(message)
|
|
2239
|
+
};
|
|
2240
|
+
},
|
|
2157
2241
|
fromProtoMsg(message) {
|
|
2158
2242
|
return exports.MsgRemoveReaction.decode(message.value);
|
|
2159
2243
|
},
|
|
@@ -2237,6 +2321,7 @@ function createBaseMsgPinPost() {
|
|
|
2237
2321
|
*/
|
|
2238
2322
|
exports.MsgPinPost = {
|
|
2239
2323
|
typeUrl: "/sparkdream.blog.v1.MsgPinPost",
|
|
2324
|
+
aminoType: "sparkdream/x/blog/MsgPinPost",
|
|
2240
2325
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
2241
2326
|
if (message.creator !== "") {
|
|
2242
2327
|
writer.uint32(10).string(message.creator);
|
|
@@ -2291,6 +2376,12 @@ exports.MsgPinPost = {
|
|
|
2291
2376
|
fromAminoMsg(object) {
|
|
2292
2377
|
return exports.MsgPinPost.fromAmino(object.value);
|
|
2293
2378
|
},
|
|
2379
|
+
toAminoMsg(message) {
|
|
2380
|
+
return {
|
|
2381
|
+
type: "sparkdream/x/blog/MsgPinPost",
|
|
2382
|
+
value: exports.MsgPinPost.toAmino(message)
|
|
2383
|
+
};
|
|
2384
|
+
},
|
|
2294
2385
|
fromProtoMsg(message) {
|
|
2295
2386
|
return exports.MsgPinPost.decode(message.value);
|
|
2296
2387
|
},
|
|
@@ -2374,6 +2465,7 @@ function createBaseMsgPinReply() {
|
|
|
2374
2465
|
*/
|
|
2375
2466
|
exports.MsgPinReply = {
|
|
2376
2467
|
typeUrl: "/sparkdream.blog.v1.MsgPinReply",
|
|
2468
|
+
aminoType: "sparkdream/x/blog/MsgPinReply",
|
|
2377
2469
|
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
2378
2470
|
if (message.creator !== "") {
|
|
2379
2471
|
writer.uint32(10).string(message.creator);
|
|
@@ -2428,6 +2520,12 @@ exports.MsgPinReply = {
|
|
|
2428
2520
|
fromAminoMsg(object) {
|
|
2429
2521
|
return exports.MsgPinReply.fromAmino(object.value);
|
|
2430
2522
|
},
|
|
2523
|
+
toAminoMsg(message) {
|
|
2524
|
+
return {
|
|
2525
|
+
type: "sparkdream/x/blog/MsgPinReply",
|
|
2526
|
+
value: exports.MsgPinReply.toAmino(message)
|
|
2527
|
+
};
|
|
2528
|
+
},
|
|
2431
2529
|
fromProtoMsg(message) {
|
|
2432
2530
|
return exports.MsgPinReply.decode(message.value);
|
|
2433
2531
|
},
|