@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
|
@@ -169,6 +169,7 @@ function createBaseMsgCreateCollection() {
|
|
|
169
169
|
*/
|
|
170
170
|
export const MsgCreateCollection = {
|
|
171
171
|
typeUrl: "/sparkdream.collect.v1.MsgCreateCollection",
|
|
172
|
+
aminoType: "sparkdream/x/collect/MsgCreateCollection",
|
|
172
173
|
encode(message, writer = BinaryWriter.create()) {
|
|
173
174
|
if (message.creator !== "") {
|
|
174
175
|
writer.uint32(10).string(message.creator);
|
|
@@ -336,6 +337,12 @@ export const MsgCreateCollection = {
|
|
|
336
337
|
fromAminoMsg(object) {
|
|
337
338
|
return MsgCreateCollection.fromAmino(object.value);
|
|
338
339
|
},
|
|
340
|
+
toAminoMsg(message) {
|
|
341
|
+
return {
|
|
342
|
+
type: "sparkdream/x/collect/MsgCreateCollection",
|
|
343
|
+
value: MsgCreateCollection.toAmino(message)
|
|
344
|
+
};
|
|
345
|
+
},
|
|
339
346
|
fromProtoMsg(message) {
|
|
340
347
|
return MsgCreateCollection.decode(message.value);
|
|
341
348
|
},
|
|
@@ -439,6 +446,7 @@ function createBaseMsgUpdateCollection() {
|
|
|
439
446
|
*/
|
|
440
447
|
export const MsgUpdateCollection = {
|
|
441
448
|
typeUrl: "/sparkdream.collect.v1.MsgUpdateCollection",
|
|
449
|
+
aminoType: "sparkdream/x/collect/MsgUpdateCollection",
|
|
442
450
|
encode(message, writer = BinaryWriter.create()) {
|
|
443
451
|
if (message.creator !== "") {
|
|
444
452
|
writer.uint32(10).string(message.creator);
|
|
@@ -595,6 +603,12 @@ export const MsgUpdateCollection = {
|
|
|
595
603
|
fromAminoMsg(object) {
|
|
596
604
|
return MsgUpdateCollection.fromAmino(object.value);
|
|
597
605
|
},
|
|
606
|
+
toAminoMsg(message) {
|
|
607
|
+
return {
|
|
608
|
+
type: "sparkdream/x/collect/MsgUpdateCollection",
|
|
609
|
+
value: MsgUpdateCollection.toAmino(message)
|
|
610
|
+
};
|
|
611
|
+
},
|
|
598
612
|
fromProtoMsg(message) {
|
|
599
613
|
return MsgUpdateCollection.decode(message.value);
|
|
600
614
|
},
|
|
@@ -676,6 +690,7 @@ function createBaseMsgDeleteCollection() {
|
|
|
676
690
|
*/
|
|
677
691
|
export const MsgDeleteCollection = {
|
|
678
692
|
typeUrl: "/sparkdream.collect.v1.MsgDeleteCollection",
|
|
693
|
+
aminoType: "sparkdream/x/collect/MsgDeleteCollection",
|
|
679
694
|
encode(message, writer = BinaryWriter.create()) {
|
|
680
695
|
if (message.creator !== "") {
|
|
681
696
|
writer.uint32(10).string(message.creator);
|
|
@@ -730,6 +745,12 @@ export const MsgDeleteCollection = {
|
|
|
730
745
|
fromAminoMsg(object) {
|
|
731
746
|
return MsgDeleteCollection.fromAmino(object.value);
|
|
732
747
|
},
|
|
748
|
+
toAminoMsg(message) {
|
|
749
|
+
return {
|
|
750
|
+
type: "sparkdream/x/collect/MsgDeleteCollection",
|
|
751
|
+
value: MsgDeleteCollection.toAmino(message)
|
|
752
|
+
};
|
|
753
|
+
},
|
|
733
754
|
fromProtoMsg(message) {
|
|
734
755
|
return MsgDeleteCollection.decode(message.value);
|
|
735
756
|
},
|
|
@@ -822,6 +843,7 @@ function createBaseMsgAddItem() {
|
|
|
822
843
|
*/
|
|
823
844
|
export const MsgAddItem = {
|
|
824
845
|
typeUrl: "/sparkdream.collect.v1.MsgAddItem",
|
|
846
|
+
aminoType: "sparkdream/x/collect/MsgAddItem",
|
|
825
847
|
encode(message, writer = BinaryWriter.create()) {
|
|
826
848
|
if (message.creator !== "") {
|
|
827
849
|
writer.uint32(10).string(message.creator);
|
|
@@ -1000,6 +1022,12 @@ export const MsgAddItem = {
|
|
|
1000
1022
|
fromAminoMsg(object) {
|
|
1001
1023
|
return MsgAddItem.fromAmino(object.value);
|
|
1002
1024
|
},
|
|
1025
|
+
toAminoMsg(message) {
|
|
1026
|
+
return {
|
|
1027
|
+
type: "sparkdream/x/collect/MsgAddItem",
|
|
1028
|
+
value: MsgAddItem.toAmino(message)
|
|
1029
|
+
};
|
|
1030
|
+
},
|
|
1003
1031
|
fromProtoMsg(message) {
|
|
1004
1032
|
return MsgAddItem.decode(message.value);
|
|
1005
1033
|
},
|
|
@@ -1095,6 +1123,7 @@ function createBaseMsgAddItems() {
|
|
|
1095
1123
|
*/
|
|
1096
1124
|
export const MsgAddItems = {
|
|
1097
1125
|
typeUrl: "/sparkdream.collect.v1.MsgAddItems",
|
|
1126
|
+
aminoType: "sparkdream/x/collect/MsgAddItems",
|
|
1098
1127
|
encode(message, writer = BinaryWriter.create()) {
|
|
1099
1128
|
if (message.creator !== "") {
|
|
1100
1129
|
writer.uint32(10).string(message.creator);
|
|
@@ -1163,6 +1192,12 @@ export const MsgAddItems = {
|
|
|
1163
1192
|
fromAminoMsg(object) {
|
|
1164
1193
|
return MsgAddItems.fromAmino(object.value);
|
|
1165
1194
|
},
|
|
1195
|
+
toAminoMsg(message) {
|
|
1196
|
+
return {
|
|
1197
|
+
type: "sparkdream/x/collect/MsgAddItems",
|
|
1198
|
+
value: MsgAddItems.toAmino(message)
|
|
1199
|
+
};
|
|
1200
|
+
},
|
|
1166
1201
|
fromProtoMsg(message) {
|
|
1167
1202
|
return MsgAddItems.decode(message.value);
|
|
1168
1203
|
},
|
|
@@ -1280,6 +1315,7 @@ function createBaseMsgUpdateItem() {
|
|
|
1280
1315
|
*/
|
|
1281
1316
|
export const MsgUpdateItem = {
|
|
1282
1317
|
typeUrl: "/sparkdream.collect.v1.MsgUpdateItem",
|
|
1318
|
+
aminoType: "sparkdream/x/collect/MsgUpdateItem",
|
|
1283
1319
|
encode(message, writer = BinaryWriter.create()) {
|
|
1284
1320
|
if (message.creator !== "") {
|
|
1285
1321
|
writer.uint32(10).string(message.creator);
|
|
@@ -1447,6 +1483,12 @@ export const MsgUpdateItem = {
|
|
|
1447
1483
|
fromAminoMsg(object) {
|
|
1448
1484
|
return MsgUpdateItem.fromAmino(object.value);
|
|
1449
1485
|
},
|
|
1486
|
+
toAminoMsg(message) {
|
|
1487
|
+
return {
|
|
1488
|
+
type: "sparkdream/x/collect/MsgUpdateItem",
|
|
1489
|
+
value: MsgUpdateItem.toAmino(message)
|
|
1490
|
+
};
|
|
1491
|
+
},
|
|
1450
1492
|
fromProtoMsg(message) {
|
|
1451
1493
|
return MsgUpdateItem.decode(message.value);
|
|
1452
1494
|
},
|
|
@@ -1528,6 +1570,7 @@ function createBaseMsgRemoveItem() {
|
|
|
1528
1570
|
*/
|
|
1529
1571
|
export const MsgRemoveItem = {
|
|
1530
1572
|
typeUrl: "/sparkdream.collect.v1.MsgRemoveItem",
|
|
1573
|
+
aminoType: "sparkdream/x/collect/MsgRemoveItem",
|
|
1531
1574
|
encode(message, writer = BinaryWriter.create()) {
|
|
1532
1575
|
if (message.creator !== "") {
|
|
1533
1576
|
writer.uint32(10).string(message.creator);
|
|
@@ -1582,6 +1625,12 @@ export const MsgRemoveItem = {
|
|
|
1582
1625
|
fromAminoMsg(object) {
|
|
1583
1626
|
return MsgRemoveItem.fromAmino(object.value);
|
|
1584
1627
|
},
|
|
1628
|
+
toAminoMsg(message) {
|
|
1629
|
+
return {
|
|
1630
|
+
type: "sparkdream/x/collect/MsgRemoveItem",
|
|
1631
|
+
value: MsgRemoveItem.toAmino(message)
|
|
1632
|
+
};
|
|
1633
|
+
},
|
|
1585
1634
|
fromProtoMsg(message) {
|
|
1586
1635
|
return MsgRemoveItem.decode(message.value);
|
|
1587
1636
|
},
|
|
@@ -1663,6 +1712,7 @@ function createBaseMsgRemoveItems() {
|
|
|
1663
1712
|
*/
|
|
1664
1713
|
export const MsgRemoveItems = {
|
|
1665
1714
|
typeUrl: "/sparkdream.collect.v1.MsgRemoveItems",
|
|
1715
|
+
aminoType: "sparkdream/x/collect/MsgRemoveItems",
|
|
1666
1716
|
encode(message, writer = BinaryWriter.create()) {
|
|
1667
1717
|
if (message.creator !== "") {
|
|
1668
1718
|
writer.uint32(10).string(message.creator);
|
|
@@ -1730,6 +1780,12 @@ export const MsgRemoveItems = {
|
|
|
1730
1780
|
fromAminoMsg(object) {
|
|
1731
1781
|
return MsgRemoveItems.fromAmino(object.value);
|
|
1732
1782
|
},
|
|
1783
|
+
toAminoMsg(message) {
|
|
1784
|
+
return {
|
|
1785
|
+
type: "sparkdream/x/collect/MsgRemoveItems",
|
|
1786
|
+
value: MsgRemoveItems.toAmino(message)
|
|
1787
|
+
};
|
|
1788
|
+
},
|
|
1733
1789
|
fromProtoMsg(message) {
|
|
1734
1790
|
return MsgRemoveItems.decode(message.value);
|
|
1735
1791
|
},
|
|
@@ -1812,6 +1868,7 @@ function createBaseMsgReorderItem() {
|
|
|
1812
1868
|
*/
|
|
1813
1869
|
export const MsgReorderItem = {
|
|
1814
1870
|
typeUrl: "/sparkdream.collect.v1.MsgReorderItem",
|
|
1871
|
+
aminoType: "sparkdream/x/collect/MsgReorderItem",
|
|
1815
1872
|
encode(message, writer = BinaryWriter.create()) {
|
|
1816
1873
|
if (message.creator !== "") {
|
|
1817
1874
|
writer.uint32(10).string(message.creator);
|
|
@@ -1877,6 +1934,12 @@ export const MsgReorderItem = {
|
|
|
1877
1934
|
fromAminoMsg(object) {
|
|
1878
1935
|
return MsgReorderItem.fromAmino(object.value);
|
|
1879
1936
|
},
|
|
1937
|
+
toAminoMsg(message) {
|
|
1938
|
+
return {
|
|
1939
|
+
type: "sparkdream/x/collect/MsgReorderItem",
|
|
1940
|
+
value: MsgReorderItem.toAmino(message)
|
|
1941
|
+
};
|
|
1942
|
+
},
|
|
1880
1943
|
fromProtoMsg(message) {
|
|
1881
1944
|
return MsgReorderItem.decode(message.value);
|
|
1882
1945
|
},
|
|
@@ -1960,6 +2023,7 @@ function createBaseMsgAddCollaborator() {
|
|
|
1960
2023
|
*/
|
|
1961
2024
|
export const MsgAddCollaborator = {
|
|
1962
2025
|
typeUrl: "/sparkdream.collect.v1.MsgAddCollaborator",
|
|
2026
|
+
aminoType: "sparkdream/x/collect/MsgAddCollaborator",
|
|
1963
2027
|
encode(message, writer = BinaryWriter.create()) {
|
|
1964
2028
|
if (message.creator !== "") {
|
|
1965
2029
|
writer.uint32(10).string(message.creator);
|
|
@@ -2036,6 +2100,12 @@ export const MsgAddCollaborator = {
|
|
|
2036
2100
|
fromAminoMsg(object) {
|
|
2037
2101
|
return MsgAddCollaborator.fromAmino(object.value);
|
|
2038
2102
|
},
|
|
2103
|
+
toAminoMsg(message) {
|
|
2104
|
+
return {
|
|
2105
|
+
type: "sparkdream/x/collect/MsgAddCollaborator",
|
|
2106
|
+
value: MsgAddCollaborator.toAmino(message)
|
|
2107
|
+
};
|
|
2108
|
+
},
|
|
2039
2109
|
fromProtoMsg(message) {
|
|
2040
2110
|
return MsgAddCollaborator.decode(message.value);
|
|
2041
2111
|
},
|
|
@@ -2118,6 +2188,7 @@ function createBaseMsgRemoveCollaborator() {
|
|
|
2118
2188
|
*/
|
|
2119
2189
|
export const MsgRemoveCollaborator = {
|
|
2120
2190
|
typeUrl: "/sparkdream.collect.v1.MsgRemoveCollaborator",
|
|
2191
|
+
aminoType: "sparkdream/x/collect/MsgRemoveCollaborator",
|
|
2121
2192
|
encode(message, writer = BinaryWriter.create()) {
|
|
2122
2193
|
if (message.creator !== "") {
|
|
2123
2194
|
writer.uint32(10).string(message.creator);
|
|
@@ -2183,6 +2254,12 @@ export const MsgRemoveCollaborator = {
|
|
|
2183
2254
|
fromAminoMsg(object) {
|
|
2184
2255
|
return MsgRemoveCollaborator.fromAmino(object.value);
|
|
2185
2256
|
},
|
|
2257
|
+
toAminoMsg(message) {
|
|
2258
|
+
return {
|
|
2259
|
+
type: "sparkdream/x/collect/MsgRemoveCollaborator",
|
|
2260
|
+
value: MsgRemoveCollaborator.toAmino(message)
|
|
2261
|
+
};
|
|
2262
|
+
},
|
|
2186
2263
|
fromProtoMsg(message) {
|
|
2187
2264
|
return MsgRemoveCollaborator.decode(message.value);
|
|
2188
2265
|
},
|
|
@@ -2266,6 +2343,7 @@ function createBaseMsgUpdateCollaboratorRole() {
|
|
|
2266
2343
|
*/
|
|
2267
2344
|
export const MsgUpdateCollaboratorRole = {
|
|
2268
2345
|
typeUrl: "/sparkdream.collect.v1.MsgUpdateCollaboratorRole",
|
|
2346
|
+
aminoType: "sparkdream/x/collect/MsgUpdateCollaboratorRole",
|
|
2269
2347
|
encode(message, writer = BinaryWriter.create()) {
|
|
2270
2348
|
if (message.creator !== "") {
|
|
2271
2349
|
writer.uint32(10).string(message.creator);
|
|
@@ -2342,6 +2420,12 @@ export const MsgUpdateCollaboratorRole = {
|
|
|
2342
2420
|
fromAminoMsg(object) {
|
|
2343
2421
|
return MsgUpdateCollaboratorRole.fromAmino(object.value);
|
|
2344
2422
|
},
|
|
2423
|
+
toAminoMsg(message) {
|
|
2424
|
+
return {
|
|
2425
|
+
type: "sparkdream/x/collect/MsgUpdateCollaboratorRole",
|
|
2426
|
+
value: MsgUpdateCollaboratorRole.toAmino(message)
|
|
2427
|
+
};
|
|
2428
|
+
},
|
|
2345
2429
|
fromProtoMsg(message) {
|
|
2346
2430
|
return MsgUpdateCollaboratorRole.decode(message.value);
|
|
2347
2431
|
},
|
|
@@ -2426,6 +2510,7 @@ function createBaseMsgRateCollection() {
|
|
|
2426
2510
|
*/
|
|
2427
2511
|
export const MsgRateCollection = {
|
|
2428
2512
|
typeUrl: "/sparkdream.collect.v1.MsgRateCollection",
|
|
2513
|
+
aminoType: "sparkdream/x/collect/MsgRateCollection",
|
|
2429
2514
|
encode(message, writer = BinaryWriter.create()) {
|
|
2430
2515
|
if (message.creator !== "") {
|
|
2431
2516
|
writer.uint32(10).string(message.creator);
|
|
@@ -2516,6 +2601,12 @@ export const MsgRateCollection = {
|
|
|
2516
2601
|
fromAminoMsg(object) {
|
|
2517
2602
|
return MsgRateCollection.fromAmino(object.value);
|
|
2518
2603
|
},
|
|
2604
|
+
toAminoMsg(message) {
|
|
2605
|
+
return {
|
|
2606
|
+
type: "sparkdream/x/collect/MsgRateCollection",
|
|
2607
|
+
value: MsgRateCollection.toAmino(message)
|
|
2608
|
+
};
|
|
2609
|
+
},
|
|
2519
2610
|
fromProtoMsg(message) {
|
|
2520
2611
|
return MsgRateCollection.decode(message.value);
|
|
2521
2612
|
},
|
|
@@ -2611,6 +2702,7 @@ function createBaseMsgChallengeReview() {
|
|
|
2611
2702
|
*/
|
|
2612
2703
|
export const MsgChallengeReview = {
|
|
2613
2704
|
typeUrl: "/sparkdream.collect.v1.MsgChallengeReview",
|
|
2705
|
+
aminoType: "sparkdream/x/collect/MsgChallengeReview",
|
|
2614
2706
|
encode(message, writer = BinaryWriter.create()) {
|
|
2615
2707
|
if (message.creator !== "") {
|
|
2616
2708
|
writer.uint32(10).string(message.creator);
|
|
@@ -2676,6 +2768,12 @@ export const MsgChallengeReview = {
|
|
|
2676
2768
|
fromAminoMsg(object) {
|
|
2677
2769
|
return MsgChallengeReview.fromAmino(object.value);
|
|
2678
2770
|
},
|
|
2771
|
+
toAminoMsg(message) {
|
|
2772
|
+
return {
|
|
2773
|
+
type: "sparkdream/x/collect/MsgChallengeReview",
|
|
2774
|
+
value: MsgChallengeReview.toAmino(message)
|
|
2775
|
+
};
|
|
2776
|
+
},
|
|
2679
2777
|
fromProtoMsg(message) {
|
|
2680
2778
|
return MsgChallengeReview.decode(message.value);
|
|
2681
2779
|
},
|
|
@@ -2757,6 +2855,7 @@ function createBaseMsgRequestSponsorship() {
|
|
|
2757
2855
|
*/
|
|
2758
2856
|
export const MsgRequestSponsorship = {
|
|
2759
2857
|
typeUrl: "/sparkdream.collect.v1.MsgRequestSponsorship",
|
|
2858
|
+
aminoType: "sparkdream/x/collect/MsgRequestSponsorship",
|
|
2760
2859
|
encode(message, writer = BinaryWriter.create()) {
|
|
2761
2860
|
if (message.creator !== "") {
|
|
2762
2861
|
writer.uint32(10).string(message.creator);
|
|
@@ -2811,6 +2910,12 @@ export const MsgRequestSponsorship = {
|
|
|
2811
2910
|
fromAminoMsg(object) {
|
|
2812
2911
|
return MsgRequestSponsorship.fromAmino(object.value);
|
|
2813
2912
|
},
|
|
2913
|
+
toAminoMsg(message) {
|
|
2914
|
+
return {
|
|
2915
|
+
type: "sparkdream/x/collect/MsgRequestSponsorship",
|
|
2916
|
+
value: MsgRequestSponsorship.toAmino(message)
|
|
2917
|
+
};
|
|
2918
|
+
},
|
|
2814
2919
|
fromProtoMsg(message) {
|
|
2815
2920
|
return MsgRequestSponsorship.decode(message.value);
|
|
2816
2921
|
},
|
|
@@ -2892,6 +2997,7 @@ function createBaseMsgCancelSponsorshipRequest() {
|
|
|
2892
2997
|
*/
|
|
2893
2998
|
export const MsgCancelSponsorshipRequest = {
|
|
2894
2999
|
typeUrl: "/sparkdream.collect.v1.MsgCancelSponsorshipRequest",
|
|
3000
|
+
aminoType: "sparkdream/x/collect/MsgCancelSponsorshipRequest",
|
|
2895
3001
|
encode(message, writer = BinaryWriter.create()) {
|
|
2896
3002
|
if (message.creator !== "") {
|
|
2897
3003
|
writer.uint32(10).string(message.creator);
|
|
@@ -2946,6 +3052,12 @@ export const MsgCancelSponsorshipRequest = {
|
|
|
2946
3052
|
fromAminoMsg(object) {
|
|
2947
3053
|
return MsgCancelSponsorshipRequest.fromAmino(object.value);
|
|
2948
3054
|
},
|
|
3055
|
+
toAminoMsg(message) {
|
|
3056
|
+
return {
|
|
3057
|
+
type: "sparkdream/x/collect/MsgCancelSponsorshipRequest",
|
|
3058
|
+
value: MsgCancelSponsorshipRequest.toAmino(message)
|
|
3059
|
+
};
|
|
3060
|
+
},
|
|
2949
3061
|
fromProtoMsg(message) {
|
|
2950
3062
|
return MsgCancelSponsorshipRequest.decode(message.value);
|
|
2951
3063
|
},
|
|
@@ -3027,6 +3139,7 @@ function createBaseMsgSponsorCollection() {
|
|
|
3027
3139
|
*/
|
|
3028
3140
|
export const MsgSponsorCollection = {
|
|
3029
3141
|
typeUrl: "/sparkdream.collect.v1.MsgSponsorCollection",
|
|
3142
|
+
aminoType: "sparkdream/x/collect/MsgSponsorCollection",
|
|
3030
3143
|
encode(message, writer = BinaryWriter.create()) {
|
|
3031
3144
|
if (message.creator !== "") {
|
|
3032
3145
|
writer.uint32(10).string(message.creator);
|
|
@@ -3081,6 +3194,12 @@ export const MsgSponsorCollection = {
|
|
|
3081
3194
|
fromAminoMsg(object) {
|
|
3082
3195
|
return MsgSponsorCollection.fromAmino(object.value);
|
|
3083
3196
|
},
|
|
3197
|
+
toAminoMsg(message) {
|
|
3198
|
+
return {
|
|
3199
|
+
type: "sparkdream/x/collect/MsgSponsorCollection",
|
|
3200
|
+
value: MsgSponsorCollection.toAmino(message)
|
|
3201
|
+
};
|
|
3202
|
+
},
|
|
3084
3203
|
fromProtoMsg(message) {
|
|
3085
3204
|
return MsgSponsorCollection.decode(message.value);
|
|
3086
3205
|
},
|
|
@@ -3306,6 +3425,7 @@ function createBaseMsgUpvoteContent() {
|
|
|
3306
3425
|
*/
|
|
3307
3426
|
export const MsgUpvoteContent = {
|
|
3308
3427
|
typeUrl: "/sparkdream.collect.v1.MsgUpvoteContent",
|
|
3428
|
+
aminoType: "sparkdream/x/collect/MsgUpvoteContent",
|
|
3309
3429
|
encode(message, writer = BinaryWriter.create()) {
|
|
3310
3430
|
if (message.creator !== "") {
|
|
3311
3431
|
writer.uint32(10).string(message.creator);
|
|
@@ -3371,6 +3491,12 @@ export const MsgUpvoteContent = {
|
|
|
3371
3491
|
fromAminoMsg(object) {
|
|
3372
3492
|
return MsgUpvoteContent.fromAmino(object.value);
|
|
3373
3493
|
},
|
|
3494
|
+
toAminoMsg(message) {
|
|
3495
|
+
return {
|
|
3496
|
+
type: "sparkdream/x/collect/MsgUpvoteContent",
|
|
3497
|
+
value: MsgUpvoteContent.toAmino(message)
|
|
3498
|
+
};
|
|
3499
|
+
},
|
|
3374
3500
|
fromProtoMsg(message) {
|
|
3375
3501
|
return MsgUpvoteContent.decode(message.value);
|
|
3376
3502
|
},
|
|
@@ -3455,6 +3581,7 @@ function createBaseMsgDownvoteContent() {
|
|
|
3455
3581
|
*/
|
|
3456
3582
|
export const MsgDownvoteContent = {
|
|
3457
3583
|
typeUrl: "/sparkdream.collect.v1.MsgDownvoteContent",
|
|
3584
|
+
aminoType: "sparkdream/x/collect/MsgDownvoteContent",
|
|
3458
3585
|
encode(message, writer = BinaryWriter.create()) {
|
|
3459
3586
|
if (message.creator !== "") {
|
|
3460
3587
|
writer.uint32(10).string(message.creator);
|
|
@@ -3520,6 +3647,12 @@ export const MsgDownvoteContent = {
|
|
|
3520
3647
|
fromAminoMsg(object) {
|
|
3521
3648
|
return MsgDownvoteContent.fromAmino(object.value);
|
|
3522
3649
|
},
|
|
3650
|
+
toAminoMsg(message) {
|
|
3651
|
+
return {
|
|
3652
|
+
type: "sparkdream/x/collect/MsgDownvoteContent",
|
|
3653
|
+
value: MsgDownvoteContent.toAmino(message)
|
|
3654
|
+
};
|
|
3655
|
+
},
|
|
3523
3656
|
fromProtoMsg(message) {
|
|
3524
3657
|
return MsgDownvoteContent.decode(message.value);
|
|
3525
3658
|
},
|
|
@@ -3606,6 +3739,7 @@ function createBaseMsgFlagContent() {
|
|
|
3606
3739
|
*/
|
|
3607
3740
|
export const MsgFlagContent = {
|
|
3608
3741
|
typeUrl: "/sparkdream.collect.v1.MsgFlagContent",
|
|
3742
|
+
aminoType: "sparkdream/x/collect/MsgFlagContent",
|
|
3609
3743
|
encode(message, writer = BinaryWriter.create()) {
|
|
3610
3744
|
if (message.creator !== "") {
|
|
3611
3745
|
writer.uint32(10).string(message.creator);
|
|
@@ -3693,6 +3827,12 @@ export const MsgFlagContent = {
|
|
|
3693
3827
|
fromAminoMsg(object) {
|
|
3694
3828
|
return MsgFlagContent.fromAmino(object.value);
|
|
3695
3829
|
},
|
|
3830
|
+
toAminoMsg(message) {
|
|
3831
|
+
return {
|
|
3832
|
+
type: "sparkdream/x/collect/MsgFlagContent",
|
|
3833
|
+
value: MsgFlagContent.toAmino(message)
|
|
3834
|
+
};
|
|
3835
|
+
},
|
|
3696
3836
|
fromProtoMsg(message) {
|
|
3697
3837
|
return MsgFlagContent.decode(message.value);
|
|
3698
3838
|
},
|
|
@@ -3779,6 +3919,7 @@ function createBaseMsgHideContent() {
|
|
|
3779
3919
|
*/
|
|
3780
3920
|
export const MsgHideContent = {
|
|
3781
3921
|
typeUrl: "/sparkdream.collect.v1.MsgHideContent",
|
|
3922
|
+
aminoType: "sparkdream/x/collect/MsgHideContent",
|
|
3782
3923
|
encode(message, writer = BinaryWriter.create()) {
|
|
3783
3924
|
if (message.creator !== "") {
|
|
3784
3925
|
writer.uint32(10).string(message.creator);
|
|
@@ -3866,6 +4007,12 @@ export const MsgHideContent = {
|
|
|
3866
4007
|
fromAminoMsg(object) {
|
|
3867
4008
|
return MsgHideContent.fromAmino(object.value);
|
|
3868
4009
|
},
|
|
4010
|
+
toAminoMsg(message) {
|
|
4011
|
+
return {
|
|
4012
|
+
type: "sparkdream/x/collect/MsgHideContent",
|
|
4013
|
+
value: MsgHideContent.toAmino(message)
|
|
4014
|
+
};
|
|
4015
|
+
},
|
|
3869
4016
|
fromProtoMsg(message) {
|
|
3870
4017
|
return MsgHideContent.decode(message.value);
|
|
3871
4018
|
},
|
|
@@ -3962,6 +4109,7 @@ function createBaseMsgAppealHide() {
|
|
|
3962
4109
|
*/
|
|
3963
4110
|
export const MsgAppealHide = {
|
|
3964
4111
|
typeUrl: "/sparkdream.collect.v1.MsgAppealHide",
|
|
4112
|
+
aminoType: "sparkdream/x/collect/MsgAppealHide",
|
|
3965
4113
|
encode(message, writer = BinaryWriter.create()) {
|
|
3966
4114
|
if (message.creator !== "") {
|
|
3967
4115
|
writer.uint32(10).string(message.creator);
|
|
@@ -4016,6 +4164,12 @@ export const MsgAppealHide = {
|
|
|
4016
4164
|
fromAminoMsg(object) {
|
|
4017
4165
|
return MsgAppealHide.fromAmino(object.value);
|
|
4018
4166
|
},
|
|
4167
|
+
toAminoMsg(message) {
|
|
4168
|
+
return {
|
|
4169
|
+
type: "sparkdream/x/collect/MsgAppealHide",
|
|
4170
|
+
value: MsgAppealHide.toAmino(message)
|
|
4171
|
+
};
|
|
4172
|
+
},
|
|
4019
4173
|
fromProtoMsg(message) {
|
|
4020
4174
|
return MsgAppealHide.decode(message.value);
|
|
4021
4175
|
},
|
|
@@ -4099,6 +4253,7 @@ function createBaseMsgEndorseCollection() {
|
|
|
4099
4253
|
*/
|
|
4100
4254
|
export const MsgEndorseCollection = {
|
|
4101
4255
|
typeUrl: "/sparkdream.collect.v1.MsgEndorseCollection",
|
|
4256
|
+
aminoType: "sparkdream/x/collect/MsgEndorseCollection",
|
|
4102
4257
|
encode(message, writer = BinaryWriter.create()) {
|
|
4103
4258
|
if (message.creator !== "") {
|
|
4104
4259
|
writer.uint32(10).string(message.creator);
|
|
@@ -4153,6 +4308,12 @@ export const MsgEndorseCollection = {
|
|
|
4153
4308
|
fromAminoMsg(object) {
|
|
4154
4309
|
return MsgEndorseCollection.fromAmino(object.value);
|
|
4155
4310
|
},
|
|
4311
|
+
toAminoMsg(message) {
|
|
4312
|
+
return {
|
|
4313
|
+
type: "sparkdream/x/collect/MsgEndorseCollection",
|
|
4314
|
+
value: MsgEndorseCollection.toAmino(message)
|
|
4315
|
+
};
|
|
4316
|
+
},
|
|
4156
4317
|
fromProtoMsg(message) {
|
|
4157
4318
|
return MsgEndorseCollection.decode(message.value);
|
|
4158
4319
|
},
|
|
@@ -4237,6 +4398,7 @@ function createBaseMsgSetSeekingEndorsement() {
|
|
|
4237
4398
|
*/
|
|
4238
4399
|
export const MsgSetSeekingEndorsement = {
|
|
4239
4400
|
typeUrl: "/sparkdream.collect.v1.MsgSetSeekingEndorsement",
|
|
4401
|
+
aminoType: "sparkdream/x/collect/MsgSetSeekingEndorsement",
|
|
4240
4402
|
encode(message, writer = BinaryWriter.create()) {
|
|
4241
4403
|
if (message.creator !== "") {
|
|
4242
4404
|
writer.uint32(10).string(message.creator);
|
|
@@ -4302,6 +4464,12 @@ export const MsgSetSeekingEndorsement = {
|
|
|
4302
4464
|
fromAminoMsg(object) {
|
|
4303
4465
|
return MsgSetSeekingEndorsement.fromAmino(object.value);
|
|
4304
4466
|
},
|
|
4467
|
+
toAminoMsg(message) {
|
|
4468
|
+
return {
|
|
4469
|
+
type: "sparkdream/x/collect/MsgSetSeekingEndorsement",
|
|
4470
|
+
value: MsgSetSeekingEndorsement.toAmino(message)
|
|
4471
|
+
};
|
|
4472
|
+
},
|
|
4305
4473
|
fromProtoMsg(message) {
|
|
4306
4474
|
return MsgSetSeekingEndorsement.decode(message.value);
|
|
4307
4475
|
},
|
|
@@ -4385,6 +4553,7 @@ function createBaseMsgPinCollection() {
|
|
|
4385
4553
|
*/
|
|
4386
4554
|
export const MsgPinCollection = {
|
|
4387
4555
|
typeUrl: "/sparkdream.collect.v1.MsgPinCollection",
|
|
4556
|
+
aminoType: "sparkdream/x/collect/MsgPinCollection",
|
|
4388
4557
|
encode(message, writer = BinaryWriter.create()) {
|
|
4389
4558
|
if (message.creator !== "") {
|
|
4390
4559
|
writer.uint32(10).string(message.creator);
|
|
@@ -4439,6 +4608,12 @@ export const MsgPinCollection = {
|
|
|
4439
4608
|
fromAminoMsg(object) {
|
|
4440
4609
|
return MsgPinCollection.fromAmino(object.value);
|
|
4441
4610
|
},
|
|
4611
|
+
toAminoMsg(message) {
|
|
4612
|
+
return {
|
|
4613
|
+
type: "sparkdream/x/collect/MsgPinCollection",
|
|
4614
|
+
value: MsgPinCollection.toAmino(message)
|
|
4615
|
+
};
|
|
4616
|
+
},
|
|
4442
4617
|
fromProtoMsg(message) {
|
|
4443
4618
|
return MsgPinCollection.decode(message.value);
|
|
4444
4619
|
},
|