@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
|
@@ -185,7 +185,7 @@ export interface MsgCreatePostAmino {
|
|
|
185
185
|
initiative_id?: string;
|
|
186
186
|
}
|
|
187
187
|
export interface MsgCreatePostAminoMsg {
|
|
188
|
-
type: "/
|
|
188
|
+
type: "sparkdream/x/forum/MsgCreatePost";
|
|
189
189
|
value: MsgCreatePostAmino;
|
|
190
190
|
}
|
|
191
191
|
/**
|
|
@@ -243,7 +243,7 @@ export interface MsgEditPostAmino {
|
|
|
243
243
|
content_type?: ContentType;
|
|
244
244
|
}
|
|
245
245
|
export interface MsgEditPostAminoMsg {
|
|
246
|
-
type: "/
|
|
246
|
+
type: "sparkdream/x/forum/MsgEditPost";
|
|
247
247
|
value: MsgEditPostAmino;
|
|
248
248
|
}
|
|
249
249
|
/**
|
|
@@ -295,7 +295,7 @@ export interface MsgDeletePostAmino {
|
|
|
295
295
|
post_id?: string;
|
|
296
296
|
}
|
|
297
297
|
export interface MsgDeletePostAminoMsg {
|
|
298
|
-
type: "/
|
|
298
|
+
type: "sparkdream/x/forum/MsgDeletePost";
|
|
299
299
|
value: MsgDeletePostAmino;
|
|
300
300
|
}
|
|
301
301
|
/**
|
|
@@ -347,7 +347,7 @@ export interface MsgFreezeThreadAmino {
|
|
|
347
347
|
root_id?: string;
|
|
348
348
|
}
|
|
349
349
|
export interface MsgFreezeThreadAminoMsg {
|
|
350
|
-
type: "/
|
|
350
|
+
type: "sparkdream/x/forum/MsgFreezeThread";
|
|
351
351
|
value: MsgFreezeThreadAmino;
|
|
352
352
|
}
|
|
353
353
|
/**
|
|
@@ -399,7 +399,7 @@ export interface MsgUnarchiveThreadAmino {
|
|
|
399
399
|
root_id?: string;
|
|
400
400
|
}
|
|
401
401
|
export interface MsgUnarchiveThreadAminoMsg {
|
|
402
|
-
type: "/
|
|
402
|
+
type: "sparkdream/x/forum/MsgUnarchiveThread";
|
|
403
403
|
value: MsgUnarchiveThreadAmino;
|
|
404
404
|
}
|
|
405
405
|
/**
|
|
@@ -453,7 +453,7 @@ export interface MsgPinPostAmino {
|
|
|
453
453
|
priority?: string;
|
|
454
454
|
}
|
|
455
455
|
export interface MsgPinPostAminoMsg {
|
|
456
|
-
type: "/
|
|
456
|
+
type: "sparkdream/x/forum/MsgPinPost";
|
|
457
457
|
value: MsgPinPostAmino;
|
|
458
458
|
}
|
|
459
459
|
/**
|
|
@@ -505,7 +505,7 @@ export interface MsgUnpinPostAmino {
|
|
|
505
505
|
post_id?: string;
|
|
506
506
|
}
|
|
507
507
|
export interface MsgUnpinPostAminoMsg {
|
|
508
|
-
type: "/
|
|
508
|
+
type: "sparkdream/x/forum/MsgUnpinPost";
|
|
509
509
|
value: MsgUnpinPostAmino;
|
|
510
510
|
}
|
|
511
511
|
/**
|
|
@@ -559,7 +559,7 @@ export interface MsgLockThreadAmino {
|
|
|
559
559
|
reason?: string;
|
|
560
560
|
}
|
|
561
561
|
export interface MsgLockThreadAminoMsg {
|
|
562
|
-
type: "/
|
|
562
|
+
type: "sparkdream/x/forum/MsgLockThread";
|
|
563
563
|
value: MsgLockThreadAmino;
|
|
564
564
|
}
|
|
565
565
|
/**
|
|
@@ -611,7 +611,7 @@ export interface MsgUnlockThreadAmino {
|
|
|
611
611
|
root_id?: string;
|
|
612
612
|
}
|
|
613
613
|
export interface MsgUnlockThreadAminoMsg {
|
|
614
|
-
type: "/
|
|
614
|
+
type: "sparkdream/x/forum/MsgUnlockThread";
|
|
615
615
|
value: MsgUnlockThreadAmino;
|
|
616
616
|
}
|
|
617
617
|
/**
|
|
@@ -667,7 +667,7 @@ export interface MsgMoveThreadAmino {
|
|
|
667
667
|
reason?: string;
|
|
668
668
|
}
|
|
669
669
|
export interface MsgMoveThreadAminoMsg {
|
|
670
|
-
type: "/
|
|
670
|
+
type: "sparkdream/x/forum/MsgMoveThread";
|
|
671
671
|
value: MsgMoveThreadAmino;
|
|
672
672
|
}
|
|
673
673
|
/**
|
|
@@ -719,7 +719,7 @@ export interface MsgFollowThreadAmino {
|
|
|
719
719
|
thread_id?: string;
|
|
720
720
|
}
|
|
721
721
|
export interface MsgFollowThreadAminoMsg {
|
|
722
|
-
type: "/
|
|
722
|
+
type: "sparkdream/x/forum/MsgFollowThread";
|
|
723
723
|
value: MsgFollowThreadAmino;
|
|
724
724
|
}
|
|
725
725
|
/**
|
|
@@ -771,7 +771,7 @@ export interface MsgUnfollowThreadAmino {
|
|
|
771
771
|
thread_id?: string;
|
|
772
772
|
}
|
|
773
773
|
export interface MsgUnfollowThreadAminoMsg {
|
|
774
|
-
type: "/
|
|
774
|
+
type: "sparkdream/x/forum/MsgUnfollowThread";
|
|
775
775
|
value: MsgUnfollowThreadAmino;
|
|
776
776
|
}
|
|
777
777
|
/**
|
|
@@ -823,7 +823,7 @@ export interface MsgUpvotePostAmino {
|
|
|
823
823
|
post_id?: string;
|
|
824
824
|
}
|
|
825
825
|
export interface MsgUpvotePostAminoMsg {
|
|
826
|
-
type: "/
|
|
826
|
+
type: "sparkdream/x/forum/MsgUpvotePost";
|
|
827
827
|
value: MsgUpvotePostAmino;
|
|
828
828
|
}
|
|
829
829
|
/**
|
|
@@ -875,7 +875,7 @@ export interface MsgDownvotePostAmino {
|
|
|
875
875
|
post_id?: string;
|
|
876
876
|
}
|
|
877
877
|
export interface MsgDownvotePostAminoMsg {
|
|
878
|
-
type: "/
|
|
878
|
+
type: "sparkdream/x/forum/MsgDownvotePost";
|
|
879
879
|
value: MsgDownvotePostAmino;
|
|
880
880
|
}
|
|
881
881
|
/**
|
|
@@ -931,7 +931,7 @@ export interface MsgFlagPostAmino {
|
|
|
931
931
|
reason?: string;
|
|
932
932
|
}
|
|
933
933
|
export interface MsgFlagPostAminoMsg {
|
|
934
|
-
type: "/
|
|
934
|
+
type: "sparkdream/x/forum/MsgFlagPost";
|
|
935
935
|
value: MsgFlagPostAmino;
|
|
936
936
|
}
|
|
937
937
|
/**
|
|
@@ -985,7 +985,7 @@ export interface MsgDismissFlagsAmino {
|
|
|
985
985
|
reason?: string;
|
|
986
986
|
}
|
|
987
987
|
export interface MsgDismissFlagsAminoMsg {
|
|
988
|
-
type: "/
|
|
988
|
+
type: "sparkdream/x/forum/MsgDismissFlags";
|
|
989
989
|
value: MsgDismissFlagsAmino;
|
|
990
990
|
}
|
|
991
991
|
/**
|
|
@@ -1041,7 +1041,7 @@ export interface MsgHidePostAmino {
|
|
|
1041
1041
|
reason_text?: string;
|
|
1042
1042
|
}
|
|
1043
1043
|
export interface MsgHidePostAminoMsg {
|
|
1044
|
-
type: "/
|
|
1044
|
+
type: "sparkdream/x/forum/MsgHidePost";
|
|
1045
1045
|
value: MsgHidePostAmino;
|
|
1046
1046
|
}
|
|
1047
1047
|
/**
|
|
@@ -1093,7 +1093,7 @@ export interface MsgAppealPostAmino {
|
|
|
1093
1093
|
post_id?: string;
|
|
1094
1094
|
}
|
|
1095
1095
|
export interface MsgAppealPostAminoMsg {
|
|
1096
|
-
type: "/
|
|
1096
|
+
type: "sparkdream/x/forum/MsgAppealPost";
|
|
1097
1097
|
value: MsgAppealPostAmino;
|
|
1098
1098
|
}
|
|
1099
1099
|
/**
|
|
@@ -1145,7 +1145,7 @@ export interface MsgAppealThreadLockAmino {
|
|
|
1145
1145
|
root_id?: string;
|
|
1146
1146
|
}
|
|
1147
1147
|
export interface MsgAppealThreadLockAminoMsg {
|
|
1148
|
-
type: "/
|
|
1148
|
+
type: "sparkdream/x/forum/MsgAppealThreadLock";
|
|
1149
1149
|
value: MsgAppealThreadLockAmino;
|
|
1150
1150
|
}
|
|
1151
1151
|
/**
|
|
@@ -1197,7 +1197,7 @@ export interface MsgAppealThreadMoveAmino {
|
|
|
1197
1197
|
root_id?: string;
|
|
1198
1198
|
}
|
|
1199
1199
|
export interface MsgAppealThreadMoveAminoMsg {
|
|
1200
|
-
type: "/
|
|
1200
|
+
type: "sparkdream/x/forum/MsgAppealThreadMove";
|
|
1201
1201
|
value: MsgAppealThreadMoveAmino;
|
|
1202
1202
|
}
|
|
1203
1203
|
/**
|
|
@@ -1253,7 +1253,7 @@ export interface MsgCreateBountyAmino {
|
|
|
1253
1253
|
duration?: string;
|
|
1254
1254
|
}
|
|
1255
1255
|
export interface MsgCreateBountyAminoMsg {
|
|
1256
|
-
type: "/
|
|
1256
|
+
type: "sparkdream/x/forum/MsgCreateBounty";
|
|
1257
1257
|
value: MsgCreateBountyAmino;
|
|
1258
1258
|
}
|
|
1259
1259
|
/**
|
|
@@ -1305,7 +1305,7 @@ export interface MsgAwardBountyAmino {
|
|
|
1305
1305
|
bounty_id?: string;
|
|
1306
1306
|
}
|
|
1307
1307
|
export interface MsgAwardBountyAminoMsg {
|
|
1308
|
-
type: "/
|
|
1308
|
+
type: "sparkdream/x/forum/MsgAwardBounty";
|
|
1309
1309
|
value: MsgAwardBountyAmino;
|
|
1310
1310
|
}
|
|
1311
1311
|
/**
|
|
@@ -1359,7 +1359,7 @@ export interface MsgIncreaseBountyAmino {
|
|
|
1359
1359
|
additional_amount?: string;
|
|
1360
1360
|
}
|
|
1361
1361
|
export interface MsgIncreaseBountyAminoMsg {
|
|
1362
|
-
type: "/
|
|
1362
|
+
type: "sparkdream/x/forum/MsgIncreaseBounty";
|
|
1363
1363
|
value: MsgIncreaseBountyAmino;
|
|
1364
1364
|
}
|
|
1365
1365
|
/**
|
|
@@ -1411,7 +1411,7 @@ export interface MsgCancelBountyAmino {
|
|
|
1411
1411
|
bounty_id?: string;
|
|
1412
1412
|
}
|
|
1413
1413
|
export interface MsgCancelBountyAminoMsg {
|
|
1414
|
-
type: "/
|
|
1414
|
+
type: "sparkdream/x/forum/MsgCancelBounty";
|
|
1415
1415
|
value: MsgCancelBountyAmino;
|
|
1416
1416
|
}
|
|
1417
1417
|
/**
|
|
@@ -1467,7 +1467,7 @@ export interface MsgAssignBountyToReplyAmino {
|
|
|
1467
1467
|
reason?: string;
|
|
1468
1468
|
}
|
|
1469
1469
|
export interface MsgAssignBountyToReplyAminoMsg {
|
|
1470
|
-
type: "/
|
|
1470
|
+
type: "sparkdream/x/forum/MsgAssignBountyToReply";
|
|
1471
1471
|
value: MsgAssignBountyToReplyAmino;
|
|
1472
1472
|
}
|
|
1473
1473
|
/**
|
|
@@ -1521,7 +1521,7 @@ export interface MsgPinReplyAmino {
|
|
|
1521
1521
|
reply_id?: string;
|
|
1522
1522
|
}
|
|
1523
1523
|
export interface MsgPinReplyAminoMsg {
|
|
1524
|
-
type: "/
|
|
1524
|
+
type: "sparkdream/x/forum/MsgPinReply";
|
|
1525
1525
|
value: MsgPinReplyAmino;
|
|
1526
1526
|
}
|
|
1527
1527
|
/**
|
|
@@ -1575,7 +1575,7 @@ export interface MsgUnpinReplyAmino {
|
|
|
1575
1575
|
reply_id?: string;
|
|
1576
1576
|
}
|
|
1577
1577
|
export interface MsgUnpinReplyAminoMsg {
|
|
1578
|
-
type: "/
|
|
1578
|
+
type: "sparkdream/x/forum/MsgUnpinReply";
|
|
1579
1579
|
value: MsgUnpinReplyAmino;
|
|
1580
1580
|
}
|
|
1581
1581
|
/**
|
|
@@ -1631,7 +1631,7 @@ export interface MsgDisputePinAmino {
|
|
|
1631
1631
|
reason?: string;
|
|
1632
1632
|
}
|
|
1633
1633
|
export interface MsgDisputePinAminoMsg {
|
|
1634
|
-
type: "/
|
|
1634
|
+
type: "sparkdream/x/forum/MsgDisputePin";
|
|
1635
1635
|
value: MsgDisputePinAmino;
|
|
1636
1636
|
}
|
|
1637
1637
|
/**
|
|
@@ -1685,7 +1685,7 @@ export interface MsgMarkAcceptedReplyAmino {
|
|
|
1685
1685
|
reply_id?: string;
|
|
1686
1686
|
}
|
|
1687
1687
|
export interface MsgMarkAcceptedReplyAminoMsg {
|
|
1688
|
-
type: "/
|
|
1688
|
+
type: "sparkdream/x/forum/MsgMarkAcceptedReply";
|
|
1689
1689
|
value: MsgMarkAcceptedReplyAmino;
|
|
1690
1690
|
}
|
|
1691
1691
|
/**
|
|
@@ -1737,7 +1737,7 @@ export interface MsgConfirmProposedReplyAmino {
|
|
|
1737
1737
|
thread_id?: string;
|
|
1738
1738
|
}
|
|
1739
1739
|
export interface MsgConfirmProposedReplyAminoMsg {
|
|
1740
|
-
type: "/
|
|
1740
|
+
type: "sparkdream/x/forum/MsgConfirmProposedReply";
|
|
1741
1741
|
value: MsgConfirmProposedReplyAmino;
|
|
1742
1742
|
}
|
|
1743
1743
|
/**
|
|
@@ -1791,7 +1791,7 @@ export interface MsgRejectProposedReplyAmino {
|
|
|
1791
1791
|
reason?: string;
|
|
1792
1792
|
}
|
|
1793
1793
|
export interface MsgRejectProposedReplyAminoMsg {
|
|
1794
|
-
type: "/
|
|
1794
|
+
type: "sparkdream/x/forum/MsgRejectProposedReply";
|
|
1795
1795
|
value: MsgRejectProposedReplyAmino;
|
|
1796
1796
|
}
|
|
1797
1797
|
/**
|
|
@@ -1843,7 +1843,7 @@ export interface MsgSetForumPausedAmino {
|
|
|
1843
1843
|
paused?: boolean;
|
|
1844
1844
|
}
|
|
1845
1845
|
export interface MsgSetForumPausedAminoMsg {
|
|
1846
|
-
type: "/
|
|
1846
|
+
type: "sparkdream/x/forum/MsgSetForumPaused";
|
|
1847
1847
|
value: MsgSetForumPausedAmino;
|
|
1848
1848
|
}
|
|
1849
1849
|
/**
|
|
@@ -1895,7 +1895,7 @@ export interface MsgSetModerationPausedAmino {
|
|
|
1895
1895
|
paused?: boolean;
|
|
1896
1896
|
}
|
|
1897
1897
|
export interface MsgSetModerationPausedAminoMsg {
|
|
1898
|
-
type: "/
|
|
1898
|
+
type: "sparkdream/x/forum/MsgSetModerationPaused";
|
|
1899
1899
|
value: MsgSetModerationPausedAmino;
|
|
1900
1900
|
}
|
|
1901
1901
|
/**
|
|
@@ -2009,12 +2009,14 @@ export declare const MsgUpdateOperationalParamsResponse: {
|
|
|
2009
2009
|
*/
|
|
2010
2010
|
export declare const MsgCreatePost: {
|
|
2011
2011
|
typeUrl: string;
|
|
2012
|
+
aminoType: string;
|
|
2012
2013
|
encode(message: MsgCreatePost, writer?: BinaryWriter): BinaryWriter;
|
|
2013
2014
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgCreatePost;
|
|
2014
2015
|
fromPartial(object: DeepPartial<MsgCreatePost>): MsgCreatePost;
|
|
2015
2016
|
fromAmino(object: MsgCreatePostAmino): MsgCreatePost;
|
|
2016
2017
|
toAmino(message: MsgCreatePost): MsgCreatePostAmino;
|
|
2017
2018
|
fromAminoMsg(object: MsgCreatePostAminoMsg): MsgCreatePost;
|
|
2019
|
+
toAminoMsg(message: MsgCreatePost): MsgCreatePostAminoMsg;
|
|
2018
2020
|
fromProtoMsg(message: MsgCreatePostProtoMsg): MsgCreatePost;
|
|
2019
2021
|
toProto(message: MsgCreatePost): Uint8Array;
|
|
2020
2022
|
toProtoMsg(message: MsgCreatePost): MsgCreatePostProtoMsg;
|
|
@@ -2045,12 +2047,14 @@ export declare const MsgCreatePostResponse: {
|
|
|
2045
2047
|
*/
|
|
2046
2048
|
export declare const MsgEditPost: {
|
|
2047
2049
|
typeUrl: string;
|
|
2050
|
+
aminoType: string;
|
|
2048
2051
|
encode(message: MsgEditPost, writer?: BinaryWriter): BinaryWriter;
|
|
2049
2052
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgEditPost;
|
|
2050
2053
|
fromPartial(object: DeepPartial<MsgEditPost>): MsgEditPost;
|
|
2051
2054
|
fromAmino(object: MsgEditPostAmino): MsgEditPost;
|
|
2052
2055
|
toAmino(message: MsgEditPost): MsgEditPostAmino;
|
|
2053
2056
|
fromAminoMsg(object: MsgEditPostAminoMsg): MsgEditPost;
|
|
2057
|
+
toAminoMsg(message: MsgEditPost): MsgEditPostAminoMsg;
|
|
2054
2058
|
fromProtoMsg(message: MsgEditPostProtoMsg): MsgEditPost;
|
|
2055
2059
|
toProto(message: MsgEditPost): Uint8Array;
|
|
2056
2060
|
toProtoMsg(message: MsgEditPost): MsgEditPostProtoMsg;
|
|
@@ -2081,12 +2085,14 @@ export declare const MsgEditPostResponse: {
|
|
|
2081
2085
|
*/
|
|
2082
2086
|
export declare const MsgDeletePost: {
|
|
2083
2087
|
typeUrl: string;
|
|
2088
|
+
aminoType: string;
|
|
2084
2089
|
encode(message: MsgDeletePost, writer?: BinaryWriter): BinaryWriter;
|
|
2085
2090
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgDeletePost;
|
|
2086
2091
|
fromPartial(object: DeepPartial<MsgDeletePost>): MsgDeletePost;
|
|
2087
2092
|
fromAmino(object: MsgDeletePostAmino): MsgDeletePost;
|
|
2088
2093
|
toAmino(message: MsgDeletePost): MsgDeletePostAmino;
|
|
2089
2094
|
fromAminoMsg(object: MsgDeletePostAminoMsg): MsgDeletePost;
|
|
2095
|
+
toAminoMsg(message: MsgDeletePost): MsgDeletePostAminoMsg;
|
|
2090
2096
|
fromProtoMsg(message: MsgDeletePostProtoMsg): MsgDeletePost;
|
|
2091
2097
|
toProto(message: MsgDeletePost): Uint8Array;
|
|
2092
2098
|
toProtoMsg(message: MsgDeletePost): MsgDeletePostProtoMsg;
|
|
@@ -2117,12 +2123,14 @@ export declare const MsgDeletePostResponse: {
|
|
|
2117
2123
|
*/
|
|
2118
2124
|
export declare const MsgFreezeThread: {
|
|
2119
2125
|
typeUrl: string;
|
|
2126
|
+
aminoType: string;
|
|
2120
2127
|
encode(message: MsgFreezeThread, writer?: BinaryWriter): BinaryWriter;
|
|
2121
2128
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgFreezeThread;
|
|
2122
2129
|
fromPartial(object: DeepPartial<MsgFreezeThread>): MsgFreezeThread;
|
|
2123
2130
|
fromAmino(object: MsgFreezeThreadAmino): MsgFreezeThread;
|
|
2124
2131
|
toAmino(message: MsgFreezeThread): MsgFreezeThreadAmino;
|
|
2125
2132
|
fromAminoMsg(object: MsgFreezeThreadAminoMsg): MsgFreezeThread;
|
|
2133
|
+
toAminoMsg(message: MsgFreezeThread): MsgFreezeThreadAminoMsg;
|
|
2126
2134
|
fromProtoMsg(message: MsgFreezeThreadProtoMsg): MsgFreezeThread;
|
|
2127
2135
|
toProto(message: MsgFreezeThread): Uint8Array;
|
|
2128
2136
|
toProtoMsg(message: MsgFreezeThread): MsgFreezeThreadProtoMsg;
|
|
@@ -2153,12 +2161,14 @@ export declare const MsgFreezeThreadResponse: {
|
|
|
2153
2161
|
*/
|
|
2154
2162
|
export declare const MsgUnarchiveThread: {
|
|
2155
2163
|
typeUrl: string;
|
|
2164
|
+
aminoType: string;
|
|
2156
2165
|
encode(message: MsgUnarchiveThread, writer?: BinaryWriter): BinaryWriter;
|
|
2157
2166
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgUnarchiveThread;
|
|
2158
2167
|
fromPartial(object: DeepPartial<MsgUnarchiveThread>): MsgUnarchiveThread;
|
|
2159
2168
|
fromAmino(object: MsgUnarchiveThreadAmino): MsgUnarchiveThread;
|
|
2160
2169
|
toAmino(message: MsgUnarchiveThread): MsgUnarchiveThreadAmino;
|
|
2161
2170
|
fromAminoMsg(object: MsgUnarchiveThreadAminoMsg): MsgUnarchiveThread;
|
|
2171
|
+
toAminoMsg(message: MsgUnarchiveThread): MsgUnarchiveThreadAminoMsg;
|
|
2162
2172
|
fromProtoMsg(message: MsgUnarchiveThreadProtoMsg): MsgUnarchiveThread;
|
|
2163
2173
|
toProto(message: MsgUnarchiveThread): Uint8Array;
|
|
2164
2174
|
toProtoMsg(message: MsgUnarchiveThread): MsgUnarchiveThreadProtoMsg;
|
|
@@ -2189,12 +2199,14 @@ export declare const MsgUnarchiveThreadResponse: {
|
|
|
2189
2199
|
*/
|
|
2190
2200
|
export declare const MsgPinPost: {
|
|
2191
2201
|
typeUrl: string;
|
|
2202
|
+
aminoType: string;
|
|
2192
2203
|
encode(message: MsgPinPost, writer?: BinaryWriter): BinaryWriter;
|
|
2193
2204
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgPinPost;
|
|
2194
2205
|
fromPartial(object: DeepPartial<MsgPinPost>): MsgPinPost;
|
|
2195
2206
|
fromAmino(object: MsgPinPostAmino): MsgPinPost;
|
|
2196
2207
|
toAmino(message: MsgPinPost): MsgPinPostAmino;
|
|
2197
2208
|
fromAminoMsg(object: MsgPinPostAminoMsg): MsgPinPost;
|
|
2209
|
+
toAminoMsg(message: MsgPinPost): MsgPinPostAminoMsg;
|
|
2198
2210
|
fromProtoMsg(message: MsgPinPostProtoMsg): MsgPinPost;
|
|
2199
2211
|
toProto(message: MsgPinPost): Uint8Array;
|
|
2200
2212
|
toProtoMsg(message: MsgPinPost): MsgPinPostProtoMsg;
|
|
@@ -2225,12 +2237,14 @@ export declare const MsgPinPostResponse: {
|
|
|
2225
2237
|
*/
|
|
2226
2238
|
export declare const MsgUnpinPost: {
|
|
2227
2239
|
typeUrl: string;
|
|
2240
|
+
aminoType: string;
|
|
2228
2241
|
encode(message: MsgUnpinPost, writer?: BinaryWriter): BinaryWriter;
|
|
2229
2242
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgUnpinPost;
|
|
2230
2243
|
fromPartial(object: DeepPartial<MsgUnpinPost>): MsgUnpinPost;
|
|
2231
2244
|
fromAmino(object: MsgUnpinPostAmino): MsgUnpinPost;
|
|
2232
2245
|
toAmino(message: MsgUnpinPost): MsgUnpinPostAmino;
|
|
2233
2246
|
fromAminoMsg(object: MsgUnpinPostAminoMsg): MsgUnpinPost;
|
|
2247
|
+
toAminoMsg(message: MsgUnpinPost): MsgUnpinPostAminoMsg;
|
|
2234
2248
|
fromProtoMsg(message: MsgUnpinPostProtoMsg): MsgUnpinPost;
|
|
2235
2249
|
toProto(message: MsgUnpinPost): Uint8Array;
|
|
2236
2250
|
toProtoMsg(message: MsgUnpinPost): MsgUnpinPostProtoMsg;
|
|
@@ -2261,12 +2275,14 @@ export declare const MsgUnpinPostResponse: {
|
|
|
2261
2275
|
*/
|
|
2262
2276
|
export declare const MsgLockThread: {
|
|
2263
2277
|
typeUrl: string;
|
|
2278
|
+
aminoType: string;
|
|
2264
2279
|
encode(message: MsgLockThread, writer?: BinaryWriter): BinaryWriter;
|
|
2265
2280
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgLockThread;
|
|
2266
2281
|
fromPartial(object: DeepPartial<MsgLockThread>): MsgLockThread;
|
|
2267
2282
|
fromAmino(object: MsgLockThreadAmino): MsgLockThread;
|
|
2268
2283
|
toAmino(message: MsgLockThread): MsgLockThreadAmino;
|
|
2269
2284
|
fromAminoMsg(object: MsgLockThreadAminoMsg): MsgLockThread;
|
|
2285
|
+
toAminoMsg(message: MsgLockThread): MsgLockThreadAminoMsg;
|
|
2270
2286
|
fromProtoMsg(message: MsgLockThreadProtoMsg): MsgLockThread;
|
|
2271
2287
|
toProto(message: MsgLockThread): Uint8Array;
|
|
2272
2288
|
toProtoMsg(message: MsgLockThread): MsgLockThreadProtoMsg;
|
|
@@ -2297,12 +2313,14 @@ export declare const MsgLockThreadResponse: {
|
|
|
2297
2313
|
*/
|
|
2298
2314
|
export declare const MsgUnlockThread: {
|
|
2299
2315
|
typeUrl: string;
|
|
2316
|
+
aminoType: string;
|
|
2300
2317
|
encode(message: MsgUnlockThread, writer?: BinaryWriter): BinaryWriter;
|
|
2301
2318
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgUnlockThread;
|
|
2302
2319
|
fromPartial(object: DeepPartial<MsgUnlockThread>): MsgUnlockThread;
|
|
2303
2320
|
fromAmino(object: MsgUnlockThreadAmino): MsgUnlockThread;
|
|
2304
2321
|
toAmino(message: MsgUnlockThread): MsgUnlockThreadAmino;
|
|
2305
2322
|
fromAminoMsg(object: MsgUnlockThreadAminoMsg): MsgUnlockThread;
|
|
2323
|
+
toAminoMsg(message: MsgUnlockThread): MsgUnlockThreadAminoMsg;
|
|
2306
2324
|
fromProtoMsg(message: MsgUnlockThreadProtoMsg): MsgUnlockThread;
|
|
2307
2325
|
toProto(message: MsgUnlockThread): Uint8Array;
|
|
2308
2326
|
toProtoMsg(message: MsgUnlockThread): MsgUnlockThreadProtoMsg;
|
|
@@ -2333,12 +2351,14 @@ export declare const MsgUnlockThreadResponse: {
|
|
|
2333
2351
|
*/
|
|
2334
2352
|
export declare const MsgMoveThread: {
|
|
2335
2353
|
typeUrl: string;
|
|
2354
|
+
aminoType: string;
|
|
2336
2355
|
encode(message: MsgMoveThread, writer?: BinaryWriter): BinaryWriter;
|
|
2337
2356
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgMoveThread;
|
|
2338
2357
|
fromPartial(object: DeepPartial<MsgMoveThread>): MsgMoveThread;
|
|
2339
2358
|
fromAmino(object: MsgMoveThreadAmino): MsgMoveThread;
|
|
2340
2359
|
toAmino(message: MsgMoveThread): MsgMoveThreadAmino;
|
|
2341
2360
|
fromAminoMsg(object: MsgMoveThreadAminoMsg): MsgMoveThread;
|
|
2361
|
+
toAminoMsg(message: MsgMoveThread): MsgMoveThreadAminoMsg;
|
|
2342
2362
|
fromProtoMsg(message: MsgMoveThreadProtoMsg): MsgMoveThread;
|
|
2343
2363
|
toProto(message: MsgMoveThread): Uint8Array;
|
|
2344
2364
|
toProtoMsg(message: MsgMoveThread): MsgMoveThreadProtoMsg;
|
|
@@ -2369,12 +2389,14 @@ export declare const MsgMoveThreadResponse: {
|
|
|
2369
2389
|
*/
|
|
2370
2390
|
export declare const MsgFollowThread: {
|
|
2371
2391
|
typeUrl: string;
|
|
2392
|
+
aminoType: string;
|
|
2372
2393
|
encode(message: MsgFollowThread, writer?: BinaryWriter): BinaryWriter;
|
|
2373
2394
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgFollowThread;
|
|
2374
2395
|
fromPartial(object: DeepPartial<MsgFollowThread>): MsgFollowThread;
|
|
2375
2396
|
fromAmino(object: MsgFollowThreadAmino): MsgFollowThread;
|
|
2376
2397
|
toAmino(message: MsgFollowThread): MsgFollowThreadAmino;
|
|
2377
2398
|
fromAminoMsg(object: MsgFollowThreadAminoMsg): MsgFollowThread;
|
|
2399
|
+
toAminoMsg(message: MsgFollowThread): MsgFollowThreadAminoMsg;
|
|
2378
2400
|
fromProtoMsg(message: MsgFollowThreadProtoMsg): MsgFollowThread;
|
|
2379
2401
|
toProto(message: MsgFollowThread): Uint8Array;
|
|
2380
2402
|
toProtoMsg(message: MsgFollowThread): MsgFollowThreadProtoMsg;
|
|
@@ -2405,12 +2427,14 @@ export declare const MsgFollowThreadResponse: {
|
|
|
2405
2427
|
*/
|
|
2406
2428
|
export declare const MsgUnfollowThread: {
|
|
2407
2429
|
typeUrl: string;
|
|
2430
|
+
aminoType: string;
|
|
2408
2431
|
encode(message: MsgUnfollowThread, writer?: BinaryWriter): BinaryWriter;
|
|
2409
2432
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgUnfollowThread;
|
|
2410
2433
|
fromPartial(object: DeepPartial<MsgUnfollowThread>): MsgUnfollowThread;
|
|
2411
2434
|
fromAmino(object: MsgUnfollowThreadAmino): MsgUnfollowThread;
|
|
2412
2435
|
toAmino(message: MsgUnfollowThread): MsgUnfollowThreadAmino;
|
|
2413
2436
|
fromAminoMsg(object: MsgUnfollowThreadAminoMsg): MsgUnfollowThread;
|
|
2437
|
+
toAminoMsg(message: MsgUnfollowThread): MsgUnfollowThreadAminoMsg;
|
|
2414
2438
|
fromProtoMsg(message: MsgUnfollowThreadProtoMsg): MsgUnfollowThread;
|
|
2415
2439
|
toProto(message: MsgUnfollowThread): Uint8Array;
|
|
2416
2440
|
toProtoMsg(message: MsgUnfollowThread): MsgUnfollowThreadProtoMsg;
|
|
@@ -2441,12 +2465,14 @@ export declare const MsgUnfollowThreadResponse: {
|
|
|
2441
2465
|
*/
|
|
2442
2466
|
export declare const MsgUpvotePost: {
|
|
2443
2467
|
typeUrl: string;
|
|
2468
|
+
aminoType: string;
|
|
2444
2469
|
encode(message: MsgUpvotePost, writer?: BinaryWriter): BinaryWriter;
|
|
2445
2470
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpvotePost;
|
|
2446
2471
|
fromPartial(object: DeepPartial<MsgUpvotePost>): MsgUpvotePost;
|
|
2447
2472
|
fromAmino(object: MsgUpvotePostAmino): MsgUpvotePost;
|
|
2448
2473
|
toAmino(message: MsgUpvotePost): MsgUpvotePostAmino;
|
|
2449
2474
|
fromAminoMsg(object: MsgUpvotePostAminoMsg): MsgUpvotePost;
|
|
2475
|
+
toAminoMsg(message: MsgUpvotePost): MsgUpvotePostAminoMsg;
|
|
2450
2476
|
fromProtoMsg(message: MsgUpvotePostProtoMsg): MsgUpvotePost;
|
|
2451
2477
|
toProto(message: MsgUpvotePost): Uint8Array;
|
|
2452
2478
|
toProtoMsg(message: MsgUpvotePost): MsgUpvotePostProtoMsg;
|
|
@@ -2477,12 +2503,14 @@ export declare const MsgUpvotePostResponse: {
|
|
|
2477
2503
|
*/
|
|
2478
2504
|
export declare const MsgDownvotePost: {
|
|
2479
2505
|
typeUrl: string;
|
|
2506
|
+
aminoType: string;
|
|
2480
2507
|
encode(message: MsgDownvotePost, writer?: BinaryWriter): BinaryWriter;
|
|
2481
2508
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgDownvotePost;
|
|
2482
2509
|
fromPartial(object: DeepPartial<MsgDownvotePost>): MsgDownvotePost;
|
|
2483
2510
|
fromAmino(object: MsgDownvotePostAmino): MsgDownvotePost;
|
|
2484
2511
|
toAmino(message: MsgDownvotePost): MsgDownvotePostAmino;
|
|
2485
2512
|
fromAminoMsg(object: MsgDownvotePostAminoMsg): MsgDownvotePost;
|
|
2513
|
+
toAminoMsg(message: MsgDownvotePost): MsgDownvotePostAminoMsg;
|
|
2486
2514
|
fromProtoMsg(message: MsgDownvotePostProtoMsg): MsgDownvotePost;
|
|
2487
2515
|
toProto(message: MsgDownvotePost): Uint8Array;
|
|
2488
2516
|
toProtoMsg(message: MsgDownvotePost): MsgDownvotePostProtoMsg;
|
|
@@ -2513,12 +2541,14 @@ export declare const MsgDownvotePostResponse: {
|
|
|
2513
2541
|
*/
|
|
2514
2542
|
export declare const MsgFlagPost: {
|
|
2515
2543
|
typeUrl: string;
|
|
2544
|
+
aminoType: string;
|
|
2516
2545
|
encode(message: MsgFlagPost, writer?: BinaryWriter): BinaryWriter;
|
|
2517
2546
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgFlagPost;
|
|
2518
2547
|
fromPartial(object: DeepPartial<MsgFlagPost>): MsgFlagPost;
|
|
2519
2548
|
fromAmino(object: MsgFlagPostAmino): MsgFlagPost;
|
|
2520
2549
|
toAmino(message: MsgFlagPost): MsgFlagPostAmino;
|
|
2521
2550
|
fromAminoMsg(object: MsgFlagPostAminoMsg): MsgFlagPost;
|
|
2551
|
+
toAminoMsg(message: MsgFlagPost): MsgFlagPostAminoMsg;
|
|
2522
2552
|
fromProtoMsg(message: MsgFlagPostProtoMsg): MsgFlagPost;
|
|
2523
2553
|
toProto(message: MsgFlagPost): Uint8Array;
|
|
2524
2554
|
toProtoMsg(message: MsgFlagPost): MsgFlagPostProtoMsg;
|
|
@@ -2549,12 +2579,14 @@ export declare const MsgFlagPostResponse: {
|
|
|
2549
2579
|
*/
|
|
2550
2580
|
export declare const MsgDismissFlags: {
|
|
2551
2581
|
typeUrl: string;
|
|
2582
|
+
aminoType: string;
|
|
2552
2583
|
encode(message: MsgDismissFlags, writer?: BinaryWriter): BinaryWriter;
|
|
2553
2584
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgDismissFlags;
|
|
2554
2585
|
fromPartial(object: DeepPartial<MsgDismissFlags>): MsgDismissFlags;
|
|
2555
2586
|
fromAmino(object: MsgDismissFlagsAmino): MsgDismissFlags;
|
|
2556
2587
|
toAmino(message: MsgDismissFlags): MsgDismissFlagsAmino;
|
|
2557
2588
|
fromAminoMsg(object: MsgDismissFlagsAminoMsg): MsgDismissFlags;
|
|
2589
|
+
toAminoMsg(message: MsgDismissFlags): MsgDismissFlagsAminoMsg;
|
|
2558
2590
|
fromProtoMsg(message: MsgDismissFlagsProtoMsg): MsgDismissFlags;
|
|
2559
2591
|
toProto(message: MsgDismissFlags): Uint8Array;
|
|
2560
2592
|
toProtoMsg(message: MsgDismissFlags): MsgDismissFlagsProtoMsg;
|
|
@@ -2585,12 +2617,14 @@ export declare const MsgDismissFlagsResponse: {
|
|
|
2585
2617
|
*/
|
|
2586
2618
|
export declare const MsgHidePost: {
|
|
2587
2619
|
typeUrl: string;
|
|
2620
|
+
aminoType: string;
|
|
2588
2621
|
encode(message: MsgHidePost, writer?: BinaryWriter): BinaryWriter;
|
|
2589
2622
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgHidePost;
|
|
2590
2623
|
fromPartial(object: DeepPartial<MsgHidePost>): MsgHidePost;
|
|
2591
2624
|
fromAmino(object: MsgHidePostAmino): MsgHidePost;
|
|
2592
2625
|
toAmino(message: MsgHidePost): MsgHidePostAmino;
|
|
2593
2626
|
fromAminoMsg(object: MsgHidePostAminoMsg): MsgHidePost;
|
|
2627
|
+
toAminoMsg(message: MsgHidePost): MsgHidePostAminoMsg;
|
|
2594
2628
|
fromProtoMsg(message: MsgHidePostProtoMsg): MsgHidePost;
|
|
2595
2629
|
toProto(message: MsgHidePost): Uint8Array;
|
|
2596
2630
|
toProtoMsg(message: MsgHidePost): MsgHidePostProtoMsg;
|
|
@@ -2621,12 +2655,14 @@ export declare const MsgHidePostResponse: {
|
|
|
2621
2655
|
*/
|
|
2622
2656
|
export declare const MsgAppealPost: {
|
|
2623
2657
|
typeUrl: string;
|
|
2658
|
+
aminoType: string;
|
|
2624
2659
|
encode(message: MsgAppealPost, writer?: BinaryWriter): BinaryWriter;
|
|
2625
2660
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgAppealPost;
|
|
2626
2661
|
fromPartial(object: DeepPartial<MsgAppealPost>): MsgAppealPost;
|
|
2627
2662
|
fromAmino(object: MsgAppealPostAmino): MsgAppealPost;
|
|
2628
2663
|
toAmino(message: MsgAppealPost): MsgAppealPostAmino;
|
|
2629
2664
|
fromAminoMsg(object: MsgAppealPostAminoMsg): MsgAppealPost;
|
|
2665
|
+
toAminoMsg(message: MsgAppealPost): MsgAppealPostAminoMsg;
|
|
2630
2666
|
fromProtoMsg(message: MsgAppealPostProtoMsg): MsgAppealPost;
|
|
2631
2667
|
toProto(message: MsgAppealPost): Uint8Array;
|
|
2632
2668
|
toProtoMsg(message: MsgAppealPost): MsgAppealPostProtoMsg;
|
|
@@ -2657,12 +2693,14 @@ export declare const MsgAppealPostResponse: {
|
|
|
2657
2693
|
*/
|
|
2658
2694
|
export declare const MsgAppealThreadLock: {
|
|
2659
2695
|
typeUrl: string;
|
|
2696
|
+
aminoType: string;
|
|
2660
2697
|
encode(message: MsgAppealThreadLock, writer?: BinaryWriter): BinaryWriter;
|
|
2661
2698
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgAppealThreadLock;
|
|
2662
2699
|
fromPartial(object: DeepPartial<MsgAppealThreadLock>): MsgAppealThreadLock;
|
|
2663
2700
|
fromAmino(object: MsgAppealThreadLockAmino): MsgAppealThreadLock;
|
|
2664
2701
|
toAmino(message: MsgAppealThreadLock): MsgAppealThreadLockAmino;
|
|
2665
2702
|
fromAminoMsg(object: MsgAppealThreadLockAminoMsg): MsgAppealThreadLock;
|
|
2703
|
+
toAminoMsg(message: MsgAppealThreadLock): MsgAppealThreadLockAminoMsg;
|
|
2666
2704
|
fromProtoMsg(message: MsgAppealThreadLockProtoMsg): MsgAppealThreadLock;
|
|
2667
2705
|
toProto(message: MsgAppealThreadLock): Uint8Array;
|
|
2668
2706
|
toProtoMsg(message: MsgAppealThreadLock): MsgAppealThreadLockProtoMsg;
|
|
@@ -2693,12 +2731,14 @@ export declare const MsgAppealThreadLockResponse: {
|
|
|
2693
2731
|
*/
|
|
2694
2732
|
export declare const MsgAppealThreadMove: {
|
|
2695
2733
|
typeUrl: string;
|
|
2734
|
+
aminoType: string;
|
|
2696
2735
|
encode(message: MsgAppealThreadMove, writer?: BinaryWriter): BinaryWriter;
|
|
2697
2736
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgAppealThreadMove;
|
|
2698
2737
|
fromPartial(object: DeepPartial<MsgAppealThreadMove>): MsgAppealThreadMove;
|
|
2699
2738
|
fromAmino(object: MsgAppealThreadMoveAmino): MsgAppealThreadMove;
|
|
2700
2739
|
toAmino(message: MsgAppealThreadMove): MsgAppealThreadMoveAmino;
|
|
2701
2740
|
fromAminoMsg(object: MsgAppealThreadMoveAminoMsg): MsgAppealThreadMove;
|
|
2741
|
+
toAminoMsg(message: MsgAppealThreadMove): MsgAppealThreadMoveAminoMsg;
|
|
2702
2742
|
fromProtoMsg(message: MsgAppealThreadMoveProtoMsg): MsgAppealThreadMove;
|
|
2703
2743
|
toProto(message: MsgAppealThreadMove): Uint8Array;
|
|
2704
2744
|
toProtoMsg(message: MsgAppealThreadMove): MsgAppealThreadMoveProtoMsg;
|
|
@@ -2729,12 +2769,14 @@ export declare const MsgAppealThreadMoveResponse: {
|
|
|
2729
2769
|
*/
|
|
2730
2770
|
export declare const MsgCreateBounty: {
|
|
2731
2771
|
typeUrl: string;
|
|
2772
|
+
aminoType: string;
|
|
2732
2773
|
encode(message: MsgCreateBounty, writer?: BinaryWriter): BinaryWriter;
|
|
2733
2774
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateBounty;
|
|
2734
2775
|
fromPartial(object: DeepPartial<MsgCreateBounty>): MsgCreateBounty;
|
|
2735
2776
|
fromAmino(object: MsgCreateBountyAmino): MsgCreateBounty;
|
|
2736
2777
|
toAmino(message: MsgCreateBounty): MsgCreateBountyAmino;
|
|
2737
2778
|
fromAminoMsg(object: MsgCreateBountyAminoMsg): MsgCreateBounty;
|
|
2779
|
+
toAminoMsg(message: MsgCreateBounty): MsgCreateBountyAminoMsg;
|
|
2738
2780
|
fromProtoMsg(message: MsgCreateBountyProtoMsg): MsgCreateBounty;
|
|
2739
2781
|
toProto(message: MsgCreateBounty): Uint8Array;
|
|
2740
2782
|
toProtoMsg(message: MsgCreateBounty): MsgCreateBountyProtoMsg;
|
|
@@ -2765,12 +2807,14 @@ export declare const MsgCreateBountyResponse: {
|
|
|
2765
2807
|
*/
|
|
2766
2808
|
export declare const MsgAwardBounty: {
|
|
2767
2809
|
typeUrl: string;
|
|
2810
|
+
aminoType: string;
|
|
2768
2811
|
encode(message: MsgAwardBounty, writer?: BinaryWriter): BinaryWriter;
|
|
2769
2812
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgAwardBounty;
|
|
2770
2813
|
fromPartial(object: DeepPartial<MsgAwardBounty>): MsgAwardBounty;
|
|
2771
2814
|
fromAmino(object: MsgAwardBountyAmino): MsgAwardBounty;
|
|
2772
2815
|
toAmino(message: MsgAwardBounty): MsgAwardBountyAmino;
|
|
2773
2816
|
fromAminoMsg(object: MsgAwardBountyAminoMsg): MsgAwardBounty;
|
|
2817
|
+
toAminoMsg(message: MsgAwardBounty): MsgAwardBountyAminoMsg;
|
|
2774
2818
|
fromProtoMsg(message: MsgAwardBountyProtoMsg): MsgAwardBounty;
|
|
2775
2819
|
toProto(message: MsgAwardBounty): Uint8Array;
|
|
2776
2820
|
toProtoMsg(message: MsgAwardBounty): MsgAwardBountyProtoMsg;
|
|
@@ -2801,12 +2845,14 @@ export declare const MsgAwardBountyResponse: {
|
|
|
2801
2845
|
*/
|
|
2802
2846
|
export declare const MsgIncreaseBounty: {
|
|
2803
2847
|
typeUrl: string;
|
|
2848
|
+
aminoType: string;
|
|
2804
2849
|
encode(message: MsgIncreaseBounty, writer?: BinaryWriter): BinaryWriter;
|
|
2805
2850
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgIncreaseBounty;
|
|
2806
2851
|
fromPartial(object: DeepPartial<MsgIncreaseBounty>): MsgIncreaseBounty;
|
|
2807
2852
|
fromAmino(object: MsgIncreaseBountyAmino): MsgIncreaseBounty;
|
|
2808
2853
|
toAmino(message: MsgIncreaseBounty): MsgIncreaseBountyAmino;
|
|
2809
2854
|
fromAminoMsg(object: MsgIncreaseBountyAminoMsg): MsgIncreaseBounty;
|
|
2855
|
+
toAminoMsg(message: MsgIncreaseBounty): MsgIncreaseBountyAminoMsg;
|
|
2810
2856
|
fromProtoMsg(message: MsgIncreaseBountyProtoMsg): MsgIncreaseBounty;
|
|
2811
2857
|
toProto(message: MsgIncreaseBounty): Uint8Array;
|
|
2812
2858
|
toProtoMsg(message: MsgIncreaseBounty): MsgIncreaseBountyProtoMsg;
|
|
@@ -2837,12 +2883,14 @@ export declare const MsgIncreaseBountyResponse: {
|
|
|
2837
2883
|
*/
|
|
2838
2884
|
export declare const MsgCancelBounty: {
|
|
2839
2885
|
typeUrl: string;
|
|
2886
|
+
aminoType: string;
|
|
2840
2887
|
encode(message: MsgCancelBounty, writer?: BinaryWriter): BinaryWriter;
|
|
2841
2888
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgCancelBounty;
|
|
2842
2889
|
fromPartial(object: DeepPartial<MsgCancelBounty>): MsgCancelBounty;
|
|
2843
2890
|
fromAmino(object: MsgCancelBountyAmino): MsgCancelBounty;
|
|
2844
2891
|
toAmino(message: MsgCancelBounty): MsgCancelBountyAmino;
|
|
2845
2892
|
fromAminoMsg(object: MsgCancelBountyAminoMsg): MsgCancelBounty;
|
|
2893
|
+
toAminoMsg(message: MsgCancelBounty): MsgCancelBountyAminoMsg;
|
|
2846
2894
|
fromProtoMsg(message: MsgCancelBountyProtoMsg): MsgCancelBounty;
|
|
2847
2895
|
toProto(message: MsgCancelBounty): Uint8Array;
|
|
2848
2896
|
toProtoMsg(message: MsgCancelBounty): MsgCancelBountyProtoMsg;
|
|
@@ -2873,12 +2921,14 @@ export declare const MsgCancelBountyResponse: {
|
|
|
2873
2921
|
*/
|
|
2874
2922
|
export declare const MsgAssignBountyToReply: {
|
|
2875
2923
|
typeUrl: string;
|
|
2924
|
+
aminoType: string;
|
|
2876
2925
|
encode(message: MsgAssignBountyToReply, writer?: BinaryWriter): BinaryWriter;
|
|
2877
2926
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgAssignBountyToReply;
|
|
2878
2927
|
fromPartial(object: DeepPartial<MsgAssignBountyToReply>): MsgAssignBountyToReply;
|
|
2879
2928
|
fromAmino(object: MsgAssignBountyToReplyAmino): MsgAssignBountyToReply;
|
|
2880
2929
|
toAmino(message: MsgAssignBountyToReply): MsgAssignBountyToReplyAmino;
|
|
2881
2930
|
fromAminoMsg(object: MsgAssignBountyToReplyAminoMsg): MsgAssignBountyToReply;
|
|
2931
|
+
toAminoMsg(message: MsgAssignBountyToReply): MsgAssignBountyToReplyAminoMsg;
|
|
2882
2932
|
fromProtoMsg(message: MsgAssignBountyToReplyProtoMsg): MsgAssignBountyToReply;
|
|
2883
2933
|
toProto(message: MsgAssignBountyToReply): Uint8Array;
|
|
2884
2934
|
toProtoMsg(message: MsgAssignBountyToReply): MsgAssignBountyToReplyProtoMsg;
|
|
@@ -2909,12 +2959,14 @@ export declare const MsgAssignBountyToReplyResponse: {
|
|
|
2909
2959
|
*/
|
|
2910
2960
|
export declare const MsgPinReply: {
|
|
2911
2961
|
typeUrl: string;
|
|
2962
|
+
aminoType: string;
|
|
2912
2963
|
encode(message: MsgPinReply, writer?: BinaryWriter): BinaryWriter;
|
|
2913
2964
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgPinReply;
|
|
2914
2965
|
fromPartial(object: DeepPartial<MsgPinReply>): MsgPinReply;
|
|
2915
2966
|
fromAmino(object: MsgPinReplyAmino): MsgPinReply;
|
|
2916
2967
|
toAmino(message: MsgPinReply): MsgPinReplyAmino;
|
|
2917
2968
|
fromAminoMsg(object: MsgPinReplyAminoMsg): MsgPinReply;
|
|
2969
|
+
toAminoMsg(message: MsgPinReply): MsgPinReplyAminoMsg;
|
|
2918
2970
|
fromProtoMsg(message: MsgPinReplyProtoMsg): MsgPinReply;
|
|
2919
2971
|
toProto(message: MsgPinReply): Uint8Array;
|
|
2920
2972
|
toProtoMsg(message: MsgPinReply): MsgPinReplyProtoMsg;
|
|
@@ -2945,12 +2997,14 @@ export declare const MsgPinReplyResponse: {
|
|
|
2945
2997
|
*/
|
|
2946
2998
|
export declare const MsgUnpinReply: {
|
|
2947
2999
|
typeUrl: string;
|
|
3000
|
+
aminoType: string;
|
|
2948
3001
|
encode(message: MsgUnpinReply, writer?: BinaryWriter): BinaryWriter;
|
|
2949
3002
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgUnpinReply;
|
|
2950
3003
|
fromPartial(object: DeepPartial<MsgUnpinReply>): MsgUnpinReply;
|
|
2951
3004
|
fromAmino(object: MsgUnpinReplyAmino): MsgUnpinReply;
|
|
2952
3005
|
toAmino(message: MsgUnpinReply): MsgUnpinReplyAmino;
|
|
2953
3006
|
fromAminoMsg(object: MsgUnpinReplyAminoMsg): MsgUnpinReply;
|
|
3007
|
+
toAminoMsg(message: MsgUnpinReply): MsgUnpinReplyAminoMsg;
|
|
2954
3008
|
fromProtoMsg(message: MsgUnpinReplyProtoMsg): MsgUnpinReply;
|
|
2955
3009
|
toProto(message: MsgUnpinReply): Uint8Array;
|
|
2956
3010
|
toProtoMsg(message: MsgUnpinReply): MsgUnpinReplyProtoMsg;
|
|
@@ -2981,12 +3035,14 @@ export declare const MsgUnpinReplyResponse: {
|
|
|
2981
3035
|
*/
|
|
2982
3036
|
export declare const MsgDisputePin: {
|
|
2983
3037
|
typeUrl: string;
|
|
3038
|
+
aminoType: string;
|
|
2984
3039
|
encode(message: MsgDisputePin, writer?: BinaryWriter): BinaryWriter;
|
|
2985
3040
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgDisputePin;
|
|
2986
3041
|
fromPartial(object: DeepPartial<MsgDisputePin>): MsgDisputePin;
|
|
2987
3042
|
fromAmino(object: MsgDisputePinAmino): MsgDisputePin;
|
|
2988
3043
|
toAmino(message: MsgDisputePin): MsgDisputePinAmino;
|
|
2989
3044
|
fromAminoMsg(object: MsgDisputePinAminoMsg): MsgDisputePin;
|
|
3045
|
+
toAminoMsg(message: MsgDisputePin): MsgDisputePinAminoMsg;
|
|
2990
3046
|
fromProtoMsg(message: MsgDisputePinProtoMsg): MsgDisputePin;
|
|
2991
3047
|
toProto(message: MsgDisputePin): Uint8Array;
|
|
2992
3048
|
toProtoMsg(message: MsgDisputePin): MsgDisputePinProtoMsg;
|
|
@@ -3017,12 +3073,14 @@ export declare const MsgDisputePinResponse: {
|
|
|
3017
3073
|
*/
|
|
3018
3074
|
export declare const MsgMarkAcceptedReply: {
|
|
3019
3075
|
typeUrl: string;
|
|
3076
|
+
aminoType: string;
|
|
3020
3077
|
encode(message: MsgMarkAcceptedReply, writer?: BinaryWriter): BinaryWriter;
|
|
3021
3078
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgMarkAcceptedReply;
|
|
3022
3079
|
fromPartial(object: DeepPartial<MsgMarkAcceptedReply>): MsgMarkAcceptedReply;
|
|
3023
3080
|
fromAmino(object: MsgMarkAcceptedReplyAmino): MsgMarkAcceptedReply;
|
|
3024
3081
|
toAmino(message: MsgMarkAcceptedReply): MsgMarkAcceptedReplyAmino;
|
|
3025
3082
|
fromAminoMsg(object: MsgMarkAcceptedReplyAminoMsg): MsgMarkAcceptedReply;
|
|
3083
|
+
toAminoMsg(message: MsgMarkAcceptedReply): MsgMarkAcceptedReplyAminoMsg;
|
|
3026
3084
|
fromProtoMsg(message: MsgMarkAcceptedReplyProtoMsg): MsgMarkAcceptedReply;
|
|
3027
3085
|
toProto(message: MsgMarkAcceptedReply): Uint8Array;
|
|
3028
3086
|
toProtoMsg(message: MsgMarkAcceptedReply): MsgMarkAcceptedReplyProtoMsg;
|
|
@@ -3053,12 +3111,14 @@ export declare const MsgMarkAcceptedReplyResponse: {
|
|
|
3053
3111
|
*/
|
|
3054
3112
|
export declare const MsgConfirmProposedReply: {
|
|
3055
3113
|
typeUrl: string;
|
|
3114
|
+
aminoType: string;
|
|
3056
3115
|
encode(message: MsgConfirmProposedReply, writer?: BinaryWriter): BinaryWriter;
|
|
3057
3116
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgConfirmProposedReply;
|
|
3058
3117
|
fromPartial(object: DeepPartial<MsgConfirmProposedReply>): MsgConfirmProposedReply;
|
|
3059
3118
|
fromAmino(object: MsgConfirmProposedReplyAmino): MsgConfirmProposedReply;
|
|
3060
3119
|
toAmino(message: MsgConfirmProposedReply): MsgConfirmProposedReplyAmino;
|
|
3061
3120
|
fromAminoMsg(object: MsgConfirmProposedReplyAminoMsg): MsgConfirmProposedReply;
|
|
3121
|
+
toAminoMsg(message: MsgConfirmProposedReply): MsgConfirmProposedReplyAminoMsg;
|
|
3062
3122
|
fromProtoMsg(message: MsgConfirmProposedReplyProtoMsg): MsgConfirmProposedReply;
|
|
3063
3123
|
toProto(message: MsgConfirmProposedReply): Uint8Array;
|
|
3064
3124
|
toProtoMsg(message: MsgConfirmProposedReply): MsgConfirmProposedReplyProtoMsg;
|
|
@@ -3089,12 +3149,14 @@ export declare const MsgConfirmProposedReplyResponse: {
|
|
|
3089
3149
|
*/
|
|
3090
3150
|
export declare const MsgRejectProposedReply: {
|
|
3091
3151
|
typeUrl: string;
|
|
3152
|
+
aminoType: string;
|
|
3092
3153
|
encode(message: MsgRejectProposedReply, writer?: BinaryWriter): BinaryWriter;
|
|
3093
3154
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgRejectProposedReply;
|
|
3094
3155
|
fromPartial(object: DeepPartial<MsgRejectProposedReply>): MsgRejectProposedReply;
|
|
3095
3156
|
fromAmino(object: MsgRejectProposedReplyAmino): MsgRejectProposedReply;
|
|
3096
3157
|
toAmino(message: MsgRejectProposedReply): MsgRejectProposedReplyAmino;
|
|
3097
3158
|
fromAminoMsg(object: MsgRejectProposedReplyAminoMsg): MsgRejectProposedReply;
|
|
3159
|
+
toAminoMsg(message: MsgRejectProposedReply): MsgRejectProposedReplyAminoMsg;
|
|
3098
3160
|
fromProtoMsg(message: MsgRejectProposedReplyProtoMsg): MsgRejectProposedReply;
|
|
3099
3161
|
toProto(message: MsgRejectProposedReply): Uint8Array;
|
|
3100
3162
|
toProtoMsg(message: MsgRejectProposedReply): MsgRejectProposedReplyProtoMsg;
|
|
@@ -3125,12 +3187,14 @@ export declare const MsgRejectProposedReplyResponse: {
|
|
|
3125
3187
|
*/
|
|
3126
3188
|
export declare const MsgSetForumPaused: {
|
|
3127
3189
|
typeUrl: string;
|
|
3190
|
+
aminoType: string;
|
|
3128
3191
|
encode(message: MsgSetForumPaused, writer?: BinaryWriter): BinaryWriter;
|
|
3129
3192
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgSetForumPaused;
|
|
3130
3193
|
fromPartial(object: DeepPartial<MsgSetForumPaused>): MsgSetForumPaused;
|
|
3131
3194
|
fromAmino(object: MsgSetForumPausedAmino): MsgSetForumPaused;
|
|
3132
3195
|
toAmino(message: MsgSetForumPaused): MsgSetForumPausedAmino;
|
|
3133
3196
|
fromAminoMsg(object: MsgSetForumPausedAminoMsg): MsgSetForumPaused;
|
|
3197
|
+
toAminoMsg(message: MsgSetForumPaused): MsgSetForumPausedAminoMsg;
|
|
3134
3198
|
fromProtoMsg(message: MsgSetForumPausedProtoMsg): MsgSetForumPaused;
|
|
3135
3199
|
toProto(message: MsgSetForumPaused): Uint8Array;
|
|
3136
3200
|
toProtoMsg(message: MsgSetForumPaused): MsgSetForumPausedProtoMsg;
|
|
@@ -3161,12 +3225,14 @@ export declare const MsgSetForumPausedResponse: {
|
|
|
3161
3225
|
*/
|
|
3162
3226
|
export declare const MsgSetModerationPaused: {
|
|
3163
3227
|
typeUrl: string;
|
|
3228
|
+
aminoType: string;
|
|
3164
3229
|
encode(message: MsgSetModerationPaused, writer?: BinaryWriter): BinaryWriter;
|
|
3165
3230
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgSetModerationPaused;
|
|
3166
3231
|
fromPartial(object: DeepPartial<MsgSetModerationPaused>): MsgSetModerationPaused;
|
|
3167
3232
|
fromAmino(object: MsgSetModerationPausedAmino): MsgSetModerationPaused;
|
|
3168
3233
|
toAmino(message: MsgSetModerationPaused): MsgSetModerationPausedAmino;
|
|
3169
3234
|
fromAminoMsg(object: MsgSetModerationPausedAminoMsg): MsgSetModerationPaused;
|
|
3235
|
+
toAminoMsg(message: MsgSetModerationPaused): MsgSetModerationPausedAminoMsg;
|
|
3170
3236
|
fromProtoMsg(message: MsgSetModerationPausedProtoMsg): MsgSetModerationPaused;
|
|
3171
3237
|
toProto(message: MsgSetModerationPaused): Uint8Array;
|
|
3172
3238
|
toProtoMsg(message: MsgSetModerationPaused): MsgSetModerationPausedProtoMsg;
|