@sparkdreamnft/sparkdreamjs 0.0.18 → 0.0.19

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.
Files changed (53) hide show
  1. package/esm/sparkdream/blog/v1/params.js +62 -2
  2. package/esm/sparkdream/blog/v1/tx.js +583 -2
  3. package/esm/sparkdream/blog/v1/tx.registry.js +74 -2
  4. package/esm/sparkdream/blog/v1/tx.rpc.msg.js +33 -3
  5. package/esm/sparkdream/collect/v1/params.js +109 -1
  6. package/esm/sparkdream/collect/v1/tx.js +293 -1
  7. package/esm/sparkdream/collect/v1/tx.registry.js +38 -2
  8. package/esm/sparkdream/collect/v1/tx.rpc.msg.js +17 -2
  9. package/esm/sparkdream/collect/v1/types.js +135 -3
  10. package/esm/sparkdream/forum/v1/params.js +218 -2
  11. package/esm/sparkdream/forum/v1/post.js +25 -1
  12. package/esm/sparkdream/forum/v1/tx.js +460 -0
  13. package/esm/sparkdream/forum/v1/tx.registry.js +56 -2
  14. package/esm/sparkdream/forum/v1/tx.rpc.msg.js +30 -1
  15. package/esm/sparkdream/forum/v1/types.js +355 -0
  16. package/esm/sparkdream/forum/v1/user_rate_limit.js +41 -2
  17. package/esm/sparkdream/rep/v1/member.js +209 -1
  18. package/package.json +1 -1
  19. package/sparkdream/blog/v1/params.d.ts +52 -0
  20. package/sparkdream/blog/v1/params.js +62 -2
  21. package/sparkdream/blog/v1/tx.d.ts +381 -6
  22. package/sparkdream/blog/v1/tx.js +584 -3
  23. package/sparkdream/blog/v1/tx.registry.d.ts +49 -1
  24. package/sparkdream/blog/v1/tx.registry.js +73 -1
  25. package/sparkdream/blog/v1/tx.rpc.msg.d.ts +27 -3
  26. package/sparkdream/blog/v1/tx.rpc.msg.js +32 -2
  27. package/sparkdream/bundle.d.ts +396 -0
  28. package/sparkdream/collect/v1/params.d.ts +124 -0
  29. package/sparkdream/collect/v1/params.js +109 -1
  30. package/sparkdream/collect/v1/tx.d.ts +195 -3
  31. package/sparkdream/collect/v1/tx.js +294 -2
  32. package/sparkdream/collect/v1/tx.registry.d.ts +25 -1
  33. package/sparkdream/collect/v1/tx.registry.js +37 -1
  34. package/sparkdream/collect/v1/tx.rpc.msg.d.ts +15 -2
  35. package/sparkdream/collect/v1/tx.rpc.msg.js +16 -1
  36. package/sparkdream/collect/v1/types.d.ts +112 -0
  37. package/sparkdream/collect/v1/types.js +135 -3
  38. package/sparkdream/forum/v1/params.d.ts +210 -0
  39. package/sparkdream/forum/v1/params.js +218 -2
  40. package/sparkdream/forum/v1/post.d.ts +28 -0
  41. package/sparkdream/forum/v1/post.js +25 -1
  42. package/sparkdream/forum/v1/tx.d.ts +291 -0
  43. package/sparkdream/forum/v1/tx.js +462 -2
  44. package/sparkdream/forum/v1/tx.registry.d.ts +37 -1
  45. package/sparkdream/forum/v1/tx.registry.js +55 -1
  46. package/sparkdream/forum/v1/tx.rpc.msg.d.ts +27 -1
  47. package/sparkdream/forum/v1/tx.rpc.msg.js +29 -0
  48. package/sparkdream/forum/v1/types.d.ts +247 -0
  49. package/sparkdream/forum/v1/types.js +356 -1
  50. package/sparkdream/forum/v1/user_rate_limit.d.ts +24 -3
  51. package/sparkdream/forum/v1/user_rate_limit.js +41 -2
  52. package/sparkdream/rep/v1/member.d.ts +134 -0
  53. package/sparkdream/rep/v1/member.js +210 -2
@@ -328,14 +328,30 @@ export declare namespace sparkdream {
328
328
  typeUrl: string;
329
329
  value: Uint8Array<ArrayBufferLike>;
330
330
  };
331
+ makePostPermanent(value: _180.MsgMakePostPermanent): {
332
+ typeUrl: string;
333
+ value: Uint8Array<ArrayBufferLike>;
334
+ };
335
+ makeReplyPermanent(value: _180.MsgMakeReplyPermanent): {
336
+ typeUrl: string;
337
+ value: Uint8Array<ArrayBufferLike>;
338
+ };
331
339
  pinPost(value: _180.MsgPinPost): {
332
340
  typeUrl: string;
333
341
  value: Uint8Array<ArrayBufferLike>;
334
342
  };
343
+ unpinPost(value: _180.MsgUnpinPost): {
344
+ typeUrl: string;
345
+ value: Uint8Array<ArrayBufferLike>;
346
+ };
335
347
  pinReply(value: _180.MsgPinReply): {
336
348
  typeUrl: string;
337
349
  value: Uint8Array<ArrayBufferLike>;
338
350
  };
351
+ unpinReply(value: _180.MsgUnpinReply): {
352
+ typeUrl: string;
353
+ value: Uint8Array<ArrayBufferLike>;
354
+ };
339
355
  };
340
356
  withTypeUrl: {
341
357
  updateParams(value: _180.MsgUpdateParams): {
@@ -394,14 +410,30 @@ export declare namespace sparkdream {
394
410
  typeUrl: string;
395
411
  value: _180.MsgRemoveReaction;
396
412
  };
413
+ makePostPermanent(value: _180.MsgMakePostPermanent): {
414
+ typeUrl: string;
415
+ value: _180.MsgMakePostPermanent;
416
+ };
417
+ makeReplyPermanent(value: _180.MsgMakeReplyPermanent): {
418
+ typeUrl: string;
419
+ value: _180.MsgMakeReplyPermanent;
420
+ };
397
421
  pinPost(value: _180.MsgPinPost): {
398
422
  typeUrl: string;
399
423
  value: _180.MsgPinPost;
400
424
  };
425
+ unpinPost(value: _180.MsgUnpinPost): {
426
+ typeUrl: string;
427
+ value: _180.MsgUnpinPost;
428
+ };
401
429
  pinReply(value: _180.MsgPinReply): {
402
430
  typeUrl: string;
403
431
  value: _180.MsgPinReply;
404
432
  };
433
+ unpinReply(value: _180.MsgUnpinReply): {
434
+ typeUrl: string;
435
+ value: _180.MsgUnpinReply;
436
+ };
405
437
  };
406
438
  fromPartial: {
407
439
  updateParams(value: _180.MsgUpdateParams): {
@@ -460,14 +492,30 @@ export declare namespace sparkdream {
460
492
  typeUrl: string;
461
493
  value: _180.MsgRemoveReaction;
462
494
  };
495
+ makePostPermanent(value: _180.MsgMakePostPermanent): {
496
+ typeUrl: string;
497
+ value: _180.MsgMakePostPermanent;
498
+ };
499
+ makeReplyPermanent(value: _180.MsgMakeReplyPermanent): {
500
+ typeUrl: string;
501
+ value: _180.MsgMakeReplyPermanent;
502
+ };
463
503
  pinPost(value: _180.MsgPinPost): {
464
504
  typeUrl: string;
465
505
  value: _180.MsgPinPost;
466
506
  };
507
+ unpinPost(value: _180.MsgUnpinPost): {
508
+ typeUrl: string;
509
+ value: _180.MsgUnpinPost;
510
+ };
467
511
  pinReply(value: _180.MsgPinReply): {
468
512
  typeUrl: string;
469
513
  value: _180.MsgPinReply;
470
514
  };
515
+ unpinReply(value: _180.MsgUnpinReply): {
516
+ typeUrl: string;
517
+ value: _180.MsgUnpinReply;
518
+ };
471
519
  };
472
520
  };
473
521
  AminoConverter: {
@@ -988,6 +1036,32 @@ export declare namespace sparkdream {
988
1036
  toProto(message: _180.MsgRemoveReactionResponse): Uint8Array;
989
1037
  toProtoMsg(message: _180.MsgRemoveReactionResponse): _180.MsgRemoveReactionResponseProtoMsg;
990
1038
  };
1039
+ MsgMakePostPermanent: {
1040
+ typeUrl: string;
1041
+ aminoType: string;
1042
+ encode(message: _180.MsgMakePostPermanent, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
1043
+ decode(input: import("..").BinaryReader | Uint8Array, length?: number): _180.MsgMakePostPermanent;
1044
+ fromPartial(object: import("../helpers").DeepPartial<_180.MsgMakePostPermanent>): _180.MsgMakePostPermanent;
1045
+ fromAmino(object: _180.MsgMakePostPermanentAmino): _180.MsgMakePostPermanent;
1046
+ toAmino(message: _180.MsgMakePostPermanent): _180.MsgMakePostPermanentAmino;
1047
+ fromAminoMsg(object: _180.MsgMakePostPermanentAminoMsg): _180.MsgMakePostPermanent;
1048
+ toAminoMsg(message: _180.MsgMakePostPermanent): _180.MsgMakePostPermanentAminoMsg;
1049
+ fromProtoMsg(message: _180.MsgMakePostPermanentProtoMsg): _180.MsgMakePostPermanent;
1050
+ toProto(message: _180.MsgMakePostPermanent): Uint8Array;
1051
+ toProtoMsg(message: _180.MsgMakePostPermanent): _180.MsgMakePostPermanentProtoMsg;
1052
+ };
1053
+ MsgMakePostPermanentResponse: {
1054
+ typeUrl: string;
1055
+ encode(_: _180.MsgMakePostPermanentResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
1056
+ decode(input: import("..").BinaryReader | Uint8Array, length?: number): _180.MsgMakePostPermanentResponse;
1057
+ fromPartial(_: import("../helpers").DeepPartial<_180.MsgMakePostPermanentResponse>): _180.MsgMakePostPermanentResponse;
1058
+ fromAmino(_: _180.MsgMakePostPermanentResponseAmino): _180.MsgMakePostPermanentResponse;
1059
+ toAmino(_: _180.MsgMakePostPermanentResponse): _180.MsgMakePostPermanentResponseAmino;
1060
+ fromAminoMsg(object: _180.MsgMakePostPermanentResponseAminoMsg): _180.MsgMakePostPermanentResponse;
1061
+ fromProtoMsg(message: _180.MsgMakePostPermanentResponseProtoMsg): _180.MsgMakePostPermanentResponse;
1062
+ toProto(message: _180.MsgMakePostPermanentResponse): Uint8Array;
1063
+ toProtoMsg(message: _180.MsgMakePostPermanentResponse): _180.MsgMakePostPermanentResponseProtoMsg;
1064
+ };
991
1065
  MsgPinPost: {
992
1066
  typeUrl: string;
993
1067
  aminoType: string;
@@ -1014,6 +1088,32 @@ export declare namespace sparkdream {
1014
1088
  toProto(message: _180.MsgPinPostResponse): Uint8Array;
1015
1089
  toProtoMsg(message: _180.MsgPinPostResponse): _180.MsgPinPostResponseProtoMsg;
1016
1090
  };
1091
+ MsgMakeReplyPermanent: {
1092
+ typeUrl: string;
1093
+ aminoType: string;
1094
+ encode(message: _180.MsgMakeReplyPermanent, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
1095
+ decode(input: import("..").BinaryReader | Uint8Array, length?: number): _180.MsgMakeReplyPermanent;
1096
+ fromPartial(object: import("../helpers").DeepPartial<_180.MsgMakeReplyPermanent>): _180.MsgMakeReplyPermanent;
1097
+ fromAmino(object: _180.MsgMakeReplyPermanentAmino): _180.MsgMakeReplyPermanent;
1098
+ toAmino(message: _180.MsgMakeReplyPermanent): _180.MsgMakeReplyPermanentAmino;
1099
+ fromAminoMsg(object: _180.MsgMakeReplyPermanentAminoMsg): _180.MsgMakeReplyPermanent;
1100
+ toAminoMsg(message: _180.MsgMakeReplyPermanent): _180.MsgMakeReplyPermanentAminoMsg;
1101
+ fromProtoMsg(message: _180.MsgMakeReplyPermanentProtoMsg): _180.MsgMakeReplyPermanent;
1102
+ toProto(message: _180.MsgMakeReplyPermanent): Uint8Array;
1103
+ toProtoMsg(message: _180.MsgMakeReplyPermanent): _180.MsgMakeReplyPermanentProtoMsg;
1104
+ };
1105
+ MsgMakeReplyPermanentResponse: {
1106
+ typeUrl: string;
1107
+ encode(_: _180.MsgMakeReplyPermanentResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
1108
+ decode(input: import("..").BinaryReader | Uint8Array, length?: number): _180.MsgMakeReplyPermanentResponse;
1109
+ fromPartial(_: import("../helpers").DeepPartial<_180.MsgMakeReplyPermanentResponse>): _180.MsgMakeReplyPermanentResponse;
1110
+ fromAmino(_: _180.MsgMakeReplyPermanentResponseAmino): _180.MsgMakeReplyPermanentResponse;
1111
+ toAmino(_: _180.MsgMakeReplyPermanentResponse): _180.MsgMakeReplyPermanentResponseAmino;
1112
+ fromAminoMsg(object: _180.MsgMakeReplyPermanentResponseAminoMsg): _180.MsgMakeReplyPermanentResponse;
1113
+ fromProtoMsg(message: _180.MsgMakeReplyPermanentResponseProtoMsg): _180.MsgMakeReplyPermanentResponse;
1114
+ toProto(message: _180.MsgMakeReplyPermanentResponse): Uint8Array;
1115
+ toProtoMsg(message: _180.MsgMakeReplyPermanentResponse): _180.MsgMakeReplyPermanentResponseProtoMsg;
1116
+ };
1017
1117
  MsgPinReply: {
1018
1118
  typeUrl: string;
1019
1119
  aminoType: string;
@@ -1040,6 +1140,58 @@ export declare namespace sparkdream {
1040
1140
  toProto(message: _180.MsgPinReplyResponse): Uint8Array;
1041
1141
  toProtoMsg(message: _180.MsgPinReplyResponse): _180.MsgPinReplyResponseProtoMsg;
1042
1142
  };
1143
+ MsgUnpinPost: {
1144
+ typeUrl: string;
1145
+ aminoType: string;
1146
+ encode(message: _180.MsgUnpinPost, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
1147
+ decode(input: import("..").BinaryReader | Uint8Array, length?: number): _180.MsgUnpinPost;
1148
+ fromPartial(object: import("../helpers").DeepPartial<_180.MsgUnpinPost>): _180.MsgUnpinPost;
1149
+ fromAmino(object: _180.MsgUnpinPostAmino): _180.MsgUnpinPost;
1150
+ toAmino(message: _180.MsgUnpinPost): _180.MsgUnpinPostAmino;
1151
+ fromAminoMsg(object: _180.MsgUnpinPostAminoMsg): _180.MsgUnpinPost;
1152
+ toAminoMsg(message: _180.MsgUnpinPost): _180.MsgUnpinPostAminoMsg;
1153
+ fromProtoMsg(message: _180.MsgUnpinPostProtoMsg): _180.MsgUnpinPost;
1154
+ toProto(message: _180.MsgUnpinPost): Uint8Array;
1155
+ toProtoMsg(message: _180.MsgUnpinPost): _180.MsgUnpinPostProtoMsg;
1156
+ };
1157
+ MsgUnpinPostResponse: {
1158
+ typeUrl: string;
1159
+ encode(_: _180.MsgUnpinPostResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
1160
+ decode(input: import("..").BinaryReader | Uint8Array, length?: number): _180.MsgUnpinPostResponse;
1161
+ fromPartial(_: import("../helpers").DeepPartial<_180.MsgUnpinPostResponse>): _180.MsgUnpinPostResponse;
1162
+ fromAmino(_: _180.MsgUnpinPostResponseAmino): _180.MsgUnpinPostResponse;
1163
+ toAmino(_: _180.MsgUnpinPostResponse): _180.MsgUnpinPostResponseAmino;
1164
+ fromAminoMsg(object: _180.MsgUnpinPostResponseAminoMsg): _180.MsgUnpinPostResponse;
1165
+ fromProtoMsg(message: _180.MsgUnpinPostResponseProtoMsg): _180.MsgUnpinPostResponse;
1166
+ toProto(message: _180.MsgUnpinPostResponse): Uint8Array;
1167
+ toProtoMsg(message: _180.MsgUnpinPostResponse): _180.MsgUnpinPostResponseProtoMsg;
1168
+ };
1169
+ MsgUnpinReply: {
1170
+ typeUrl: string;
1171
+ aminoType: string;
1172
+ encode(message: _180.MsgUnpinReply, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
1173
+ decode(input: import("..").BinaryReader | Uint8Array, length?: number): _180.MsgUnpinReply;
1174
+ fromPartial(object: import("../helpers").DeepPartial<_180.MsgUnpinReply>): _180.MsgUnpinReply;
1175
+ fromAmino(object: _180.MsgUnpinReplyAmino): _180.MsgUnpinReply;
1176
+ toAmino(message: _180.MsgUnpinReply): _180.MsgUnpinReplyAmino;
1177
+ fromAminoMsg(object: _180.MsgUnpinReplyAminoMsg): _180.MsgUnpinReply;
1178
+ toAminoMsg(message: _180.MsgUnpinReply): _180.MsgUnpinReplyAminoMsg;
1179
+ fromProtoMsg(message: _180.MsgUnpinReplyProtoMsg): _180.MsgUnpinReply;
1180
+ toProto(message: _180.MsgUnpinReply): Uint8Array;
1181
+ toProtoMsg(message: _180.MsgUnpinReply): _180.MsgUnpinReplyProtoMsg;
1182
+ };
1183
+ MsgUnpinReplyResponse: {
1184
+ typeUrl: string;
1185
+ encode(_: _180.MsgUnpinReplyResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
1186
+ decode(input: import("..").BinaryReader | Uint8Array, length?: number): _180.MsgUnpinReplyResponse;
1187
+ fromPartial(_: import("../helpers").DeepPartial<_180.MsgUnpinReplyResponse>): _180.MsgUnpinReplyResponse;
1188
+ fromAmino(_: _180.MsgUnpinReplyResponseAmino): _180.MsgUnpinReplyResponse;
1189
+ toAmino(_: _180.MsgUnpinReplyResponse): _180.MsgUnpinReplyResponseAmino;
1190
+ fromAminoMsg(object: _180.MsgUnpinReplyResponseAminoMsg): _180.MsgUnpinReplyResponse;
1191
+ fromProtoMsg(message: _180.MsgUnpinReplyResponseProtoMsg): _180.MsgUnpinReplyResponse;
1192
+ toProto(message: _180.MsgUnpinReplyResponse): Uint8Array;
1193
+ toProtoMsg(message: _180.MsgUnpinReplyResponse): _180.MsgUnpinReplyResponseProtoMsg;
1194
+ };
1043
1195
  QueryParamsRequest: {
1044
1196
  typeUrl: string;
1045
1197
  encode(_: _179.QueryParamsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
@@ -1543,6 +1695,14 @@ export declare namespace sparkdream {
1543
1695
  typeUrl: string;
1544
1696
  value: Uint8Array<ArrayBufferLike>;
1545
1697
  };
1698
+ unpinCollection(value: _187.MsgUnpinCollection): {
1699
+ typeUrl: string;
1700
+ value: Uint8Array<ArrayBufferLike>;
1701
+ };
1702
+ makeCollectionPermanent(value: _187.MsgMakeCollectionPermanent): {
1703
+ typeUrl: string;
1704
+ value: Uint8Array<ArrayBufferLike>;
1705
+ };
1546
1706
  };
1547
1707
  withTypeUrl: {
1548
1708
  updateParams(value: _187.MsgUpdateParams): {
@@ -1653,6 +1813,14 @@ export declare namespace sparkdream {
1653
1813
  typeUrl: string;
1654
1814
  value: _187.MsgPinCollection;
1655
1815
  };
1816
+ unpinCollection(value: _187.MsgUnpinCollection): {
1817
+ typeUrl: string;
1818
+ value: _187.MsgUnpinCollection;
1819
+ };
1820
+ makeCollectionPermanent(value: _187.MsgMakeCollectionPermanent): {
1821
+ typeUrl: string;
1822
+ value: _187.MsgMakeCollectionPermanent;
1823
+ };
1656
1824
  };
1657
1825
  fromPartial: {
1658
1826
  updateParams(value: _187.MsgUpdateParams): {
@@ -1763,6 +1931,14 @@ export declare namespace sparkdream {
1763
1931
  typeUrl: string;
1764
1932
  value: _187.MsgPinCollection;
1765
1933
  };
1934
+ unpinCollection(value: _187.MsgUnpinCollection): {
1935
+ typeUrl: string;
1936
+ value: _187.MsgUnpinCollection;
1937
+ };
1938
+ makeCollectionPermanent(value: _187.MsgMakeCollectionPermanent): {
1939
+ typeUrl: string;
1940
+ value: _187.MsgMakeCollectionPermanent;
1941
+ };
1766
1942
  };
1767
1943
  };
1768
1944
  AminoConverter: {
@@ -2840,6 +3016,58 @@ export declare namespace sparkdream {
2840
3016
  toProto(message: _187.MsgPinCollectionResponse): Uint8Array;
2841
3017
  toProtoMsg(message: _187.MsgPinCollectionResponse): _187.MsgPinCollectionResponseProtoMsg;
2842
3018
  };
3019
+ MsgUnpinCollection: {
3020
+ typeUrl: string;
3021
+ aminoType: string;
3022
+ encode(message: _187.MsgUnpinCollection, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
3023
+ decode(input: import("..").BinaryReader | Uint8Array, length?: number): _187.MsgUnpinCollection;
3024
+ fromPartial(object: import("../helpers").DeepPartial<_187.MsgUnpinCollection>): _187.MsgUnpinCollection;
3025
+ fromAmino(object: _187.MsgUnpinCollectionAmino): _187.MsgUnpinCollection;
3026
+ toAmino(message: _187.MsgUnpinCollection): _187.MsgUnpinCollectionAmino;
3027
+ fromAminoMsg(object: _187.MsgUnpinCollectionAminoMsg): _187.MsgUnpinCollection;
3028
+ toAminoMsg(message: _187.MsgUnpinCollection): _187.MsgUnpinCollectionAminoMsg;
3029
+ fromProtoMsg(message: _187.MsgUnpinCollectionProtoMsg): _187.MsgUnpinCollection;
3030
+ toProto(message: _187.MsgUnpinCollection): Uint8Array;
3031
+ toProtoMsg(message: _187.MsgUnpinCollection): _187.MsgUnpinCollectionProtoMsg;
3032
+ };
3033
+ MsgUnpinCollectionResponse: {
3034
+ typeUrl: string;
3035
+ encode(_: _187.MsgUnpinCollectionResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
3036
+ decode(input: import("..").BinaryReader | Uint8Array, length?: number): _187.MsgUnpinCollectionResponse;
3037
+ fromPartial(_: import("../helpers").DeepPartial<_187.MsgUnpinCollectionResponse>): _187.MsgUnpinCollectionResponse;
3038
+ fromAmino(_: _187.MsgUnpinCollectionResponseAmino): _187.MsgUnpinCollectionResponse;
3039
+ toAmino(_: _187.MsgUnpinCollectionResponse): _187.MsgUnpinCollectionResponseAmino;
3040
+ fromAminoMsg(object: _187.MsgUnpinCollectionResponseAminoMsg): _187.MsgUnpinCollectionResponse;
3041
+ fromProtoMsg(message: _187.MsgUnpinCollectionResponseProtoMsg): _187.MsgUnpinCollectionResponse;
3042
+ toProto(message: _187.MsgUnpinCollectionResponse): Uint8Array;
3043
+ toProtoMsg(message: _187.MsgUnpinCollectionResponse): _187.MsgUnpinCollectionResponseProtoMsg;
3044
+ };
3045
+ MsgMakeCollectionPermanent: {
3046
+ typeUrl: string;
3047
+ aminoType: string;
3048
+ encode(message: _187.MsgMakeCollectionPermanent, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
3049
+ decode(input: import("..").BinaryReader | Uint8Array, length?: number): _187.MsgMakeCollectionPermanent;
3050
+ fromPartial(object: import("../helpers").DeepPartial<_187.MsgMakeCollectionPermanent>): _187.MsgMakeCollectionPermanent;
3051
+ fromAmino(object: _187.MsgMakeCollectionPermanentAmino): _187.MsgMakeCollectionPermanent;
3052
+ toAmino(message: _187.MsgMakeCollectionPermanent): _187.MsgMakeCollectionPermanentAmino;
3053
+ fromAminoMsg(object: _187.MsgMakeCollectionPermanentAminoMsg): _187.MsgMakeCollectionPermanent;
3054
+ toAminoMsg(message: _187.MsgMakeCollectionPermanent): _187.MsgMakeCollectionPermanentAminoMsg;
3055
+ fromProtoMsg(message: _187.MsgMakeCollectionPermanentProtoMsg): _187.MsgMakeCollectionPermanent;
3056
+ toProto(message: _187.MsgMakeCollectionPermanent): Uint8Array;
3057
+ toProtoMsg(message: _187.MsgMakeCollectionPermanent): _187.MsgMakeCollectionPermanentProtoMsg;
3058
+ };
3059
+ MsgMakeCollectionPermanentResponse: {
3060
+ typeUrl: string;
3061
+ encode(_: _187.MsgMakeCollectionPermanentResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
3062
+ decode(input: import("..").BinaryReader | Uint8Array, length?: number): _187.MsgMakeCollectionPermanentResponse;
3063
+ fromPartial(_: import("../helpers").DeepPartial<_187.MsgMakeCollectionPermanentResponse>): _187.MsgMakeCollectionPermanentResponse;
3064
+ fromAmino(_: _187.MsgMakeCollectionPermanentResponseAmino): _187.MsgMakeCollectionPermanentResponse;
3065
+ toAmino(_: _187.MsgMakeCollectionPermanentResponse): _187.MsgMakeCollectionPermanentResponseAmino;
3066
+ fromAminoMsg(object: _187.MsgMakeCollectionPermanentResponseAminoMsg): _187.MsgMakeCollectionPermanentResponse;
3067
+ fromProtoMsg(message: _187.MsgMakeCollectionPermanentResponseProtoMsg): _187.MsgMakeCollectionPermanentResponse;
3068
+ toProto(message: _187.MsgMakeCollectionPermanentResponse): Uint8Array;
3069
+ toProtoMsg(message: _187.MsgMakeCollectionPermanentResponse): _187.MsgMakeCollectionPermanentResponseProtoMsg;
3070
+ };
2843
3071
  QueryParamsRequest: {
2844
3072
  typeUrl: string;
2845
3073
  encode(_: _186.QueryParamsRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
@@ -7356,6 +7584,10 @@ export declare namespace sparkdream {
7356
7584
  typeUrl: string;
7357
7585
  value: Uint8Array<ArrayBufferLike>;
7358
7586
  };
7587
+ makePostPermanent(value: _229.MsgMakePostPermanent): {
7588
+ typeUrl: string;
7589
+ value: Uint8Array<ArrayBufferLike>;
7590
+ };
7359
7591
  lockThread(value: _229.MsgLockThread): {
7360
7592
  typeUrl: string;
7361
7593
  value: Uint8Array<ArrayBufferLike>;
@@ -7384,6 +7616,14 @@ export declare namespace sparkdream {
7384
7616
  typeUrl: string;
7385
7617
  value: Uint8Array<ArrayBufferLike>;
7386
7618
  };
7619
+ stakePostConviction(value: _229.MsgStakePostConviction): {
7620
+ typeUrl: string;
7621
+ value: Uint8Array<ArrayBufferLike>;
7622
+ };
7623
+ releasePostConviction(value: _229.MsgReleasePostConviction): {
7624
+ typeUrl: string;
7625
+ value: Uint8Array<ArrayBufferLike>;
7626
+ };
7387
7627
  flagPost(value: _229.MsgFlagPost): {
7388
7628
  typeUrl: string;
7389
7629
  value: Uint8Array<ArrayBufferLike>;
@@ -7502,6 +7742,10 @@ export declare namespace sparkdream {
7502
7742
  typeUrl: string;
7503
7743
  value: _229.MsgUnpinPost;
7504
7744
  };
7745
+ makePostPermanent(value: _229.MsgMakePostPermanent): {
7746
+ typeUrl: string;
7747
+ value: _229.MsgMakePostPermanent;
7748
+ };
7505
7749
  lockThread(value: _229.MsgLockThread): {
7506
7750
  typeUrl: string;
7507
7751
  value: _229.MsgLockThread;
@@ -7530,6 +7774,14 @@ export declare namespace sparkdream {
7530
7774
  typeUrl: string;
7531
7775
  value: _229.MsgDownvotePost;
7532
7776
  };
7777
+ stakePostConviction(value: _229.MsgStakePostConviction): {
7778
+ typeUrl: string;
7779
+ value: _229.MsgStakePostConviction;
7780
+ };
7781
+ releasePostConviction(value: _229.MsgReleasePostConviction): {
7782
+ typeUrl: string;
7783
+ value: _229.MsgReleasePostConviction;
7784
+ };
7533
7785
  flagPost(value: _229.MsgFlagPost): {
7534
7786
  typeUrl: string;
7535
7787
  value: _229.MsgFlagPost;
@@ -7648,6 +7900,10 @@ export declare namespace sparkdream {
7648
7900
  typeUrl: string;
7649
7901
  value: _229.MsgUnpinPost;
7650
7902
  };
7903
+ makePostPermanent(value: _229.MsgMakePostPermanent): {
7904
+ typeUrl: string;
7905
+ value: _229.MsgMakePostPermanent;
7906
+ };
7651
7907
  lockThread(value: _229.MsgLockThread): {
7652
7908
  typeUrl: string;
7653
7909
  value: _229.MsgLockThread;
@@ -7676,6 +7932,14 @@ export declare namespace sparkdream {
7676
7932
  typeUrl: string;
7677
7933
  value: _229.MsgDownvotePost;
7678
7934
  };
7935
+ stakePostConviction(value: _229.MsgStakePostConviction): {
7936
+ typeUrl: string;
7937
+ value: _229.MsgStakePostConviction;
7938
+ };
7939
+ releasePostConviction(value: _229.MsgReleasePostConviction): {
7940
+ typeUrl: string;
7941
+ value: _229.MsgReleasePostConviction;
7942
+ };
7679
7943
  flagPost(value: _229.MsgFlagPost): {
7680
7944
  typeUrl: string;
7681
7945
  value: _229.MsgFlagPost;
@@ -8004,6 +8268,40 @@ export declare namespace sparkdream {
8004
8268
  toProto(message: _230.PinnedReplyRecord): Uint8Array;
8005
8269
  toProtoMsg(message: _230.PinnedReplyRecord): _230.PinnedReplyRecordProtoMsg;
8006
8270
  };
8271
+ ForumRepEpochCounter: {
8272
+ typeUrl: string;
8273
+ encode(message: _230.ForumRepEpochCounter, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
8274
+ decode(input: import("..").BinaryReader | Uint8Array, length?: number): _230.ForumRepEpochCounter;
8275
+ fromPartial(object: import("../helpers").DeepPartial<_230.ForumRepEpochCounter>): _230.ForumRepEpochCounter;
8276
+ fromAmino(object: _230.ForumRepEpochCounterAmino): _230.ForumRepEpochCounter;
8277
+ toAmino(message: _230.ForumRepEpochCounter): _230.ForumRepEpochCounterAmino;
8278
+ fromAminoMsg(object: _230.ForumRepEpochCounterAminoMsg): _230.ForumRepEpochCounter;
8279
+ fromProtoMsg(message: _230.ForumRepEpochCounterProtoMsg): _230.ForumRepEpochCounter;
8280
+ toProto(message: _230.ForumRepEpochCounter): Uint8Array;
8281
+ toProtoMsg(message: _230.ForumRepEpochCounter): _230.ForumRepEpochCounterProtoMsg;
8282
+ };
8283
+ PostConvictionStake_AccruedRepPerTagEntry: {
8284
+ encode(message: _230.PostConvictionStake_AccruedRepPerTagEntry, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
8285
+ decode(input: import("..").BinaryReader | Uint8Array, length?: number): _230.PostConvictionStake_AccruedRepPerTagEntry;
8286
+ fromPartial(object: import("../helpers").DeepPartial<_230.PostConvictionStake_AccruedRepPerTagEntry>): _230.PostConvictionStake_AccruedRepPerTagEntry;
8287
+ fromAmino(object: _230.PostConvictionStake_AccruedRepPerTagEntryAmino): _230.PostConvictionStake_AccruedRepPerTagEntry;
8288
+ toAmino(message: _230.PostConvictionStake_AccruedRepPerTagEntry): _230.PostConvictionStake_AccruedRepPerTagEntryAmino;
8289
+ fromAminoMsg(object: _230.PostConvictionStake_AccruedRepPerTagEntryAminoMsg): _230.PostConvictionStake_AccruedRepPerTagEntry;
8290
+ fromProtoMsg(message: _230.PostConvictionStake_AccruedRepPerTagEntryProtoMsg): _230.PostConvictionStake_AccruedRepPerTagEntry;
8291
+ toProto(message: _230.PostConvictionStake_AccruedRepPerTagEntry): Uint8Array;
8292
+ };
8293
+ PostConvictionStake: {
8294
+ typeUrl: string;
8295
+ encode(message: _230.PostConvictionStake, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
8296
+ decode(input: import("..").BinaryReader | Uint8Array, length?: number): _230.PostConvictionStake;
8297
+ fromPartial(object: import("../helpers").DeepPartial<_230.PostConvictionStake>): _230.PostConvictionStake;
8298
+ fromAmino(object: _230.PostConvictionStakeAmino): _230.PostConvictionStake;
8299
+ toAmino(message: _230.PostConvictionStake): _230.PostConvictionStakeAmino;
8300
+ fromAminoMsg(object: _230.PostConvictionStakeAminoMsg): _230.PostConvictionStake;
8301
+ fromProtoMsg(message: _230.PostConvictionStakeProtoMsg): _230.PostConvictionStake;
8302
+ toProto(message: _230.PostConvictionStake): Uint8Array;
8303
+ toProtoMsg(message: _230.PostConvictionStake): _230.PostConvictionStakeProtoMsg;
8304
+ };
8007
8305
  MsgUpdateParams: {
8008
8306
  typeUrl: string;
8009
8307
  aminoType: string;
@@ -8238,6 +8536,32 @@ export declare namespace sparkdream {
8238
8536
  toProto(message: _229.MsgUnpinPostResponse): Uint8Array;
8239
8537
  toProtoMsg(message: _229.MsgUnpinPostResponse): _229.MsgUnpinPostResponseProtoMsg;
8240
8538
  };
8539
+ MsgMakePostPermanent: {
8540
+ typeUrl: string;
8541
+ aminoType: string;
8542
+ encode(message: _229.MsgMakePostPermanent, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
8543
+ decode(input: import("..").BinaryReader | Uint8Array, length?: number): _229.MsgMakePostPermanent;
8544
+ fromPartial(object: import("../helpers").DeepPartial<_229.MsgMakePostPermanent>): _229.MsgMakePostPermanent;
8545
+ fromAmino(object: _229.MsgMakePostPermanentAmino): _229.MsgMakePostPermanent;
8546
+ toAmino(message: _229.MsgMakePostPermanent): _229.MsgMakePostPermanentAmino;
8547
+ fromAminoMsg(object: _229.MsgMakePostPermanentAminoMsg): _229.MsgMakePostPermanent;
8548
+ toAminoMsg(message: _229.MsgMakePostPermanent): _229.MsgMakePostPermanentAminoMsg;
8549
+ fromProtoMsg(message: _229.MsgMakePostPermanentProtoMsg): _229.MsgMakePostPermanent;
8550
+ toProto(message: _229.MsgMakePostPermanent): Uint8Array;
8551
+ toProtoMsg(message: _229.MsgMakePostPermanent): _229.MsgMakePostPermanentProtoMsg;
8552
+ };
8553
+ MsgMakePostPermanentResponse: {
8554
+ typeUrl: string;
8555
+ encode(_: _229.MsgMakePostPermanentResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
8556
+ decode(input: import("..").BinaryReader | Uint8Array, length?: number): _229.MsgMakePostPermanentResponse;
8557
+ fromPartial(_: import("../helpers").DeepPartial<_229.MsgMakePostPermanentResponse>): _229.MsgMakePostPermanentResponse;
8558
+ fromAmino(_: _229.MsgMakePostPermanentResponseAmino): _229.MsgMakePostPermanentResponse;
8559
+ toAmino(_: _229.MsgMakePostPermanentResponse): _229.MsgMakePostPermanentResponseAmino;
8560
+ fromAminoMsg(object: _229.MsgMakePostPermanentResponseAminoMsg): _229.MsgMakePostPermanentResponse;
8561
+ fromProtoMsg(message: _229.MsgMakePostPermanentResponseProtoMsg): _229.MsgMakePostPermanentResponse;
8562
+ toProto(message: _229.MsgMakePostPermanentResponse): Uint8Array;
8563
+ toProtoMsg(message: _229.MsgMakePostPermanentResponse): _229.MsgMakePostPermanentResponseProtoMsg;
8564
+ };
8241
8565
  MsgLockThread: {
8242
8566
  typeUrl: string;
8243
8567
  aminoType: string;
@@ -8420,6 +8744,58 @@ export declare namespace sparkdream {
8420
8744
  toProto(message: _229.MsgDownvotePostResponse): Uint8Array;
8421
8745
  toProtoMsg(message: _229.MsgDownvotePostResponse): _229.MsgDownvotePostResponseProtoMsg;
8422
8746
  };
8747
+ MsgStakePostConviction: {
8748
+ typeUrl: string;
8749
+ aminoType: string;
8750
+ encode(message: _229.MsgStakePostConviction, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
8751
+ decode(input: import("..").BinaryReader | Uint8Array, length?: number): _229.MsgStakePostConviction;
8752
+ fromPartial(object: import("../helpers").DeepPartial<_229.MsgStakePostConviction>): _229.MsgStakePostConviction;
8753
+ fromAmino(object: _229.MsgStakePostConvictionAmino): _229.MsgStakePostConviction;
8754
+ toAmino(message: _229.MsgStakePostConviction): _229.MsgStakePostConvictionAmino;
8755
+ fromAminoMsg(object: _229.MsgStakePostConvictionAminoMsg): _229.MsgStakePostConviction;
8756
+ toAminoMsg(message: _229.MsgStakePostConviction): _229.MsgStakePostConvictionAminoMsg;
8757
+ fromProtoMsg(message: _229.MsgStakePostConvictionProtoMsg): _229.MsgStakePostConviction;
8758
+ toProto(message: _229.MsgStakePostConviction): Uint8Array;
8759
+ toProtoMsg(message: _229.MsgStakePostConviction): _229.MsgStakePostConvictionProtoMsg;
8760
+ };
8761
+ MsgStakePostConvictionResponse: {
8762
+ typeUrl: string;
8763
+ encode(message: _229.MsgStakePostConvictionResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
8764
+ decode(input: import("..").BinaryReader | Uint8Array, length?: number): _229.MsgStakePostConvictionResponse;
8765
+ fromPartial(object: import("../helpers").DeepPartial<_229.MsgStakePostConvictionResponse>): _229.MsgStakePostConvictionResponse;
8766
+ fromAmino(object: _229.MsgStakePostConvictionResponseAmino): _229.MsgStakePostConvictionResponse;
8767
+ toAmino(message: _229.MsgStakePostConvictionResponse): _229.MsgStakePostConvictionResponseAmino;
8768
+ fromAminoMsg(object: _229.MsgStakePostConvictionResponseAminoMsg): _229.MsgStakePostConvictionResponse;
8769
+ fromProtoMsg(message: _229.MsgStakePostConvictionResponseProtoMsg): _229.MsgStakePostConvictionResponse;
8770
+ toProto(message: _229.MsgStakePostConvictionResponse): Uint8Array;
8771
+ toProtoMsg(message: _229.MsgStakePostConvictionResponse): _229.MsgStakePostConvictionResponseProtoMsg;
8772
+ };
8773
+ MsgReleasePostConviction: {
8774
+ typeUrl: string;
8775
+ aminoType: string;
8776
+ encode(message: _229.MsgReleasePostConviction, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
8777
+ decode(input: import("..").BinaryReader | Uint8Array, length?: number): _229.MsgReleasePostConviction;
8778
+ fromPartial(object: import("../helpers").DeepPartial<_229.MsgReleasePostConviction>): _229.MsgReleasePostConviction;
8779
+ fromAmino(object: _229.MsgReleasePostConvictionAmino): _229.MsgReleasePostConviction;
8780
+ toAmino(message: _229.MsgReleasePostConviction): _229.MsgReleasePostConvictionAmino;
8781
+ fromAminoMsg(object: _229.MsgReleasePostConvictionAminoMsg): _229.MsgReleasePostConviction;
8782
+ toAminoMsg(message: _229.MsgReleasePostConviction): _229.MsgReleasePostConvictionAminoMsg;
8783
+ fromProtoMsg(message: _229.MsgReleasePostConvictionProtoMsg): _229.MsgReleasePostConviction;
8784
+ toProto(message: _229.MsgReleasePostConviction): Uint8Array;
8785
+ toProtoMsg(message: _229.MsgReleasePostConviction): _229.MsgReleasePostConvictionProtoMsg;
8786
+ };
8787
+ MsgReleasePostConvictionResponse: {
8788
+ typeUrl: string;
8789
+ encode(_: _229.MsgReleasePostConvictionResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
8790
+ decode(input: import("..").BinaryReader | Uint8Array, length?: number): _229.MsgReleasePostConvictionResponse;
8791
+ fromPartial(_: import("../helpers").DeepPartial<_229.MsgReleasePostConvictionResponse>): _229.MsgReleasePostConvictionResponse;
8792
+ fromAmino(_: _229.MsgReleasePostConvictionResponseAmino): _229.MsgReleasePostConvictionResponse;
8793
+ toAmino(_: _229.MsgReleasePostConvictionResponse): _229.MsgReleasePostConvictionResponseAmino;
8794
+ fromAminoMsg(object: _229.MsgReleasePostConvictionResponseAminoMsg): _229.MsgReleasePostConvictionResponse;
8795
+ fromProtoMsg(message: _229.MsgReleasePostConvictionResponseProtoMsg): _229.MsgReleasePostConvictionResponse;
8796
+ toProto(message: _229.MsgReleasePostConvictionResponse): Uint8Array;
8797
+ toProtoMsg(message: _229.MsgReleasePostConvictionResponse): _229.MsgReleasePostConvictionResponseProtoMsg;
8798
+ };
8423
8799
  MsgFlagPost: {
8424
8800
  typeUrl: string;
8425
8801
  aminoType: string;
@@ -16068,6 +16444,26 @@ export declare namespace sparkdream {
16068
16444
  fromProtoMsg(message: _269.Member_ReputationGainedThisEpochEntryProtoMsg): _269.Member_ReputationGainedThisEpochEntry;
16069
16445
  toProto(message: _269.Member_ReputationGainedThisEpochEntry): Uint8Array;
16070
16446
  };
16447
+ Member_ForumRepPerTagEntry: {
16448
+ encode(message: _269.Member_ForumRepPerTagEntry, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
16449
+ decode(input: import("..").BinaryReader | Uint8Array, length?: number): _269.Member_ForumRepPerTagEntry;
16450
+ fromPartial(object: import("../helpers").DeepPartial<_269.Member_ForumRepPerTagEntry>): _269.Member_ForumRepPerTagEntry;
16451
+ fromAmino(object: _269.Member_ForumRepPerTagEntryAmino): _269.Member_ForumRepPerTagEntry;
16452
+ toAmino(message: _269.Member_ForumRepPerTagEntry): _269.Member_ForumRepPerTagEntryAmino;
16453
+ fromAminoMsg(object: _269.Member_ForumRepPerTagEntryAminoMsg): _269.Member_ForumRepPerTagEntry;
16454
+ fromProtoMsg(message: _269.Member_ForumRepPerTagEntryProtoMsg): _269.Member_ForumRepPerTagEntry;
16455
+ toProto(message: _269.Member_ForumRepPerTagEntry): Uint8Array;
16456
+ };
16457
+ Member_LifetimeForumRepPerTagEntry: {
16458
+ encode(message: _269.Member_LifetimeForumRepPerTagEntry, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
16459
+ decode(input: import("..").BinaryReader | Uint8Array, length?: number): _269.Member_LifetimeForumRepPerTagEntry;
16460
+ fromPartial(object: import("../helpers").DeepPartial<_269.Member_LifetimeForumRepPerTagEntry>): _269.Member_LifetimeForumRepPerTagEntry;
16461
+ fromAmino(object: _269.Member_LifetimeForumRepPerTagEntryAmino): _269.Member_LifetimeForumRepPerTagEntry;
16462
+ toAmino(message: _269.Member_LifetimeForumRepPerTagEntry): _269.Member_LifetimeForumRepPerTagEntryAmino;
16463
+ fromAminoMsg(object: _269.Member_LifetimeForumRepPerTagEntryAminoMsg): _269.Member_LifetimeForumRepPerTagEntry;
16464
+ fromProtoMsg(message: _269.Member_LifetimeForumRepPerTagEntryProtoMsg): _269.Member_LifetimeForumRepPerTagEntry;
16465
+ toProto(message: _269.Member_LifetimeForumRepPerTagEntry): Uint8Array;
16466
+ };
16071
16467
  Member: {
16072
16468
  typeUrl: string;
16073
16469
  encode(message: _269.Member, writer?: import("..").BinaryWriter): import("..").BinaryWriter;