@sparkdreamnft/sparkdreamjs 0.0.18 → 0.0.20
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/params.js +62 -2
- package/esm/sparkdream/blog/v1/tx.js +583 -2
- package/esm/sparkdream/blog/v1/tx.registry.js +74 -2
- package/esm/sparkdream/blog/v1/tx.rpc.msg.js +33 -3
- package/esm/sparkdream/collect/v1/params.js +109 -1
- package/esm/sparkdream/collect/v1/tx.js +293 -1
- package/esm/sparkdream/collect/v1/tx.registry.js +38 -2
- package/esm/sparkdream/collect/v1/tx.rpc.msg.js +17 -2
- package/esm/sparkdream/collect/v1/types.js +135 -3
- package/esm/sparkdream/forum/v1/params.js +218 -2
- package/esm/sparkdream/forum/v1/post.js +25 -1
- package/esm/sparkdream/forum/v1/query.js +469 -0
- package/esm/sparkdream/forum/v1/query.lcd.js +30 -0
- package/esm/sparkdream/forum/v1/query.rpc.Query.js +31 -1
- package/esm/sparkdream/forum/v1/tx.js +460 -0
- package/esm/sparkdream/forum/v1/tx.registry.js +56 -2
- package/esm/sparkdream/forum/v1/tx.rpc.msg.js +30 -1
- package/esm/sparkdream/forum/v1/types.js +355 -0
- package/esm/sparkdream/forum/v1/user_rate_limit.js +41 -2
- package/esm/sparkdream/rep/v1/member.js +209 -1
- package/esm/sparkdream/rep/v1/query.js +13 -22
- package/package.json +1 -1
- package/sparkdream/blog/v1/params.d.ts +52 -0
- package/sparkdream/blog/v1/params.js +62 -2
- package/sparkdream/blog/v1/tx.d.ts +381 -6
- package/sparkdream/blog/v1/tx.js +584 -3
- package/sparkdream/blog/v1/tx.registry.d.ts +49 -1
- package/sparkdream/blog/v1/tx.registry.js +73 -1
- package/sparkdream/blog/v1/tx.rpc.msg.d.ts +27 -3
- package/sparkdream/blog/v1/tx.rpc.msg.js +32 -2
- package/sparkdream/bundle.d.ts +474 -0
- package/sparkdream/collect/v1/params.d.ts +124 -0
- package/sparkdream/collect/v1/params.js +109 -1
- package/sparkdream/collect/v1/tx.d.ts +195 -3
- package/sparkdream/collect/v1/tx.js +294 -2
- package/sparkdream/collect/v1/tx.registry.d.ts +25 -1
- package/sparkdream/collect/v1/tx.registry.js +37 -1
- package/sparkdream/collect/v1/tx.rpc.msg.d.ts +15 -2
- package/sparkdream/collect/v1/tx.rpc.msg.js +16 -1
- package/sparkdream/collect/v1/types.d.ts +112 -0
- package/sparkdream/collect/v1/types.js +135 -3
- package/sparkdream/forum/v1/params.d.ts +210 -0
- package/sparkdream/forum/v1/params.js +218 -2
- package/sparkdream/forum/v1/post.d.ts +28 -0
- package/sparkdream/forum/v1/post.js +25 -1
- package/sparkdream/forum/v1/query.d.ts +273 -0
- package/sparkdream/forum/v1/query.js +470 -1
- package/sparkdream/forum/v1/query.lcd.d.ts +4 -1
- package/sparkdream/forum/v1/query.lcd.js +30 -0
- package/sparkdream/forum/v1/query.rpc.Query.d.ts +18 -1
- package/sparkdream/forum/v1/query.rpc.Query.js +30 -0
- package/sparkdream/forum/v1/tx.d.ts +291 -0
- package/sparkdream/forum/v1/tx.js +462 -2
- package/sparkdream/forum/v1/tx.registry.d.ts +37 -1
- package/sparkdream/forum/v1/tx.registry.js +55 -1
- package/sparkdream/forum/v1/tx.rpc.msg.d.ts +27 -1
- package/sparkdream/forum/v1/tx.rpc.msg.js +29 -0
- package/sparkdream/forum/v1/types.d.ts +247 -0
- package/sparkdream/forum/v1/types.js +356 -1
- package/sparkdream/forum/v1/user_rate_limit.d.ts +24 -3
- package/sparkdream/forum/v1/user_rate_limit.js +41 -2
- package/sparkdream/rep/v1/member.d.ts +134 -0
- package/sparkdream/rep/v1/member.js +210 -2
- package/sparkdream/rep/v1/query.d.ts +2 -4
- package/sparkdream/rep/v1/query.js +13 -22
- package/sparkdream/rpc.query.d.ts +3 -0
package/sparkdream/bundle.d.ts
CHANGED
|
@@ -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;
|
|
@@ -7314,6 +7542,9 @@ export declare namespace sparkdream {
|
|
|
7314
7542
|
bountyExpiringSoon(request: _222.QueryBountyExpiringSoonRequest): Promise<_222.QueryBountyExpiringSoonResponse>;
|
|
7315
7543
|
postFlags(request: _222.QueryPostFlagsRequest): Promise<_222.QueryPostFlagsResponse>;
|
|
7316
7544
|
flagReviewQueue(request?: _222.QueryFlagReviewQueueRequest): Promise<_222.QueryFlagReviewQueueResponse>;
|
|
7545
|
+
getPostConvictionStake(request: _222.QueryGetPostConvictionStakeRequest): Promise<_222.QueryGetPostConvictionStakeResponse>;
|
|
7546
|
+
postConvictionStakesByStaker(request: _222.QueryPostConvictionStakesByStakerRequest): Promise<_222.QueryPostConvictionStakesByStakerResponse>;
|
|
7547
|
+
postConvictionStakesByPost(request: _222.QueryPostConvictionStakesByPostRequest): Promise<_222.QueryPostConvictionStakesByPostResponse>;
|
|
7317
7548
|
};
|
|
7318
7549
|
LCDQueryClient: typeof _541.LCDQueryClient;
|
|
7319
7550
|
registry: ReadonlyArray<[string, import("..").TelescopeGeneratedType<any, any, any>]>;
|
|
@@ -7356,6 +7587,10 @@ export declare namespace sparkdream {
|
|
|
7356
7587
|
typeUrl: string;
|
|
7357
7588
|
value: Uint8Array<ArrayBufferLike>;
|
|
7358
7589
|
};
|
|
7590
|
+
makePostPermanent(value: _229.MsgMakePostPermanent): {
|
|
7591
|
+
typeUrl: string;
|
|
7592
|
+
value: Uint8Array<ArrayBufferLike>;
|
|
7593
|
+
};
|
|
7359
7594
|
lockThread(value: _229.MsgLockThread): {
|
|
7360
7595
|
typeUrl: string;
|
|
7361
7596
|
value: Uint8Array<ArrayBufferLike>;
|
|
@@ -7384,6 +7619,14 @@ export declare namespace sparkdream {
|
|
|
7384
7619
|
typeUrl: string;
|
|
7385
7620
|
value: Uint8Array<ArrayBufferLike>;
|
|
7386
7621
|
};
|
|
7622
|
+
stakePostConviction(value: _229.MsgStakePostConviction): {
|
|
7623
|
+
typeUrl: string;
|
|
7624
|
+
value: Uint8Array<ArrayBufferLike>;
|
|
7625
|
+
};
|
|
7626
|
+
releasePostConviction(value: _229.MsgReleasePostConviction): {
|
|
7627
|
+
typeUrl: string;
|
|
7628
|
+
value: Uint8Array<ArrayBufferLike>;
|
|
7629
|
+
};
|
|
7387
7630
|
flagPost(value: _229.MsgFlagPost): {
|
|
7388
7631
|
typeUrl: string;
|
|
7389
7632
|
value: Uint8Array<ArrayBufferLike>;
|
|
@@ -7502,6 +7745,10 @@ export declare namespace sparkdream {
|
|
|
7502
7745
|
typeUrl: string;
|
|
7503
7746
|
value: _229.MsgUnpinPost;
|
|
7504
7747
|
};
|
|
7748
|
+
makePostPermanent(value: _229.MsgMakePostPermanent): {
|
|
7749
|
+
typeUrl: string;
|
|
7750
|
+
value: _229.MsgMakePostPermanent;
|
|
7751
|
+
};
|
|
7505
7752
|
lockThread(value: _229.MsgLockThread): {
|
|
7506
7753
|
typeUrl: string;
|
|
7507
7754
|
value: _229.MsgLockThread;
|
|
@@ -7530,6 +7777,14 @@ export declare namespace sparkdream {
|
|
|
7530
7777
|
typeUrl: string;
|
|
7531
7778
|
value: _229.MsgDownvotePost;
|
|
7532
7779
|
};
|
|
7780
|
+
stakePostConviction(value: _229.MsgStakePostConviction): {
|
|
7781
|
+
typeUrl: string;
|
|
7782
|
+
value: _229.MsgStakePostConviction;
|
|
7783
|
+
};
|
|
7784
|
+
releasePostConviction(value: _229.MsgReleasePostConviction): {
|
|
7785
|
+
typeUrl: string;
|
|
7786
|
+
value: _229.MsgReleasePostConviction;
|
|
7787
|
+
};
|
|
7533
7788
|
flagPost(value: _229.MsgFlagPost): {
|
|
7534
7789
|
typeUrl: string;
|
|
7535
7790
|
value: _229.MsgFlagPost;
|
|
@@ -7648,6 +7903,10 @@ export declare namespace sparkdream {
|
|
|
7648
7903
|
typeUrl: string;
|
|
7649
7904
|
value: _229.MsgUnpinPost;
|
|
7650
7905
|
};
|
|
7906
|
+
makePostPermanent(value: _229.MsgMakePostPermanent): {
|
|
7907
|
+
typeUrl: string;
|
|
7908
|
+
value: _229.MsgMakePostPermanent;
|
|
7909
|
+
};
|
|
7651
7910
|
lockThread(value: _229.MsgLockThread): {
|
|
7652
7911
|
typeUrl: string;
|
|
7653
7912
|
value: _229.MsgLockThread;
|
|
@@ -7676,6 +7935,14 @@ export declare namespace sparkdream {
|
|
|
7676
7935
|
typeUrl: string;
|
|
7677
7936
|
value: _229.MsgDownvotePost;
|
|
7678
7937
|
};
|
|
7938
|
+
stakePostConviction(value: _229.MsgStakePostConviction): {
|
|
7939
|
+
typeUrl: string;
|
|
7940
|
+
value: _229.MsgStakePostConviction;
|
|
7941
|
+
};
|
|
7942
|
+
releasePostConviction(value: _229.MsgReleasePostConviction): {
|
|
7943
|
+
typeUrl: string;
|
|
7944
|
+
value: _229.MsgReleasePostConviction;
|
|
7945
|
+
};
|
|
7679
7946
|
flagPost(value: _229.MsgFlagPost): {
|
|
7680
7947
|
typeUrl: string;
|
|
7681
7948
|
value: _229.MsgFlagPost;
|
|
@@ -8004,6 +8271,40 @@ export declare namespace sparkdream {
|
|
|
8004
8271
|
toProto(message: _230.PinnedReplyRecord): Uint8Array;
|
|
8005
8272
|
toProtoMsg(message: _230.PinnedReplyRecord): _230.PinnedReplyRecordProtoMsg;
|
|
8006
8273
|
};
|
|
8274
|
+
ForumRepEpochCounter: {
|
|
8275
|
+
typeUrl: string;
|
|
8276
|
+
encode(message: _230.ForumRepEpochCounter, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
|
|
8277
|
+
decode(input: import("..").BinaryReader | Uint8Array, length?: number): _230.ForumRepEpochCounter;
|
|
8278
|
+
fromPartial(object: import("../helpers").DeepPartial<_230.ForumRepEpochCounter>): _230.ForumRepEpochCounter;
|
|
8279
|
+
fromAmino(object: _230.ForumRepEpochCounterAmino): _230.ForumRepEpochCounter;
|
|
8280
|
+
toAmino(message: _230.ForumRepEpochCounter): _230.ForumRepEpochCounterAmino;
|
|
8281
|
+
fromAminoMsg(object: _230.ForumRepEpochCounterAminoMsg): _230.ForumRepEpochCounter;
|
|
8282
|
+
fromProtoMsg(message: _230.ForumRepEpochCounterProtoMsg): _230.ForumRepEpochCounter;
|
|
8283
|
+
toProto(message: _230.ForumRepEpochCounter): Uint8Array;
|
|
8284
|
+
toProtoMsg(message: _230.ForumRepEpochCounter): _230.ForumRepEpochCounterProtoMsg;
|
|
8285
|
+
};
|
|
8286
|
+
PostConvictionStake_AccruedRepPerTagEntry: {
|
|
8287
|
+
encode(message: _230.PostConvictionStake_AccruedRepPerTagEntry, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
|
|
8288
|
+
decode(input: import("..").BinaryReader | Uint8Array, length?: number): _230.PostConvictionStake_AccruedRepPerTagEntry;
|
|
8289
|
+
fromPartial(object: import("../helpers").DeepPartial<_230.PostConvictionStake_AccruedRepPerTagEntry>): _230.PostConvictionStake_AccruedRepPerTagEntry;
|
|
8290
|
+
fromAmino(object: _230.PostConvictionStake_AccruedRepPerTagEntryAmino): _230.PostConvictionStake_AccruedRepPerTagEntry;
|
|
8291
|
+
toAmino(message: _230.PostConvictionStake_AccruedRepPerTagEntry): _230.PostConvictionStake_AccruedRepPerTagEntryAmino;
|
|
8292
|
+
fromAminoMsg(object: _230.PostConvictionStake_AccruedRepPerTagEntryAminoMsg): _230.PostConvictionStake_AccruedRepPerTagEntry;
|
|
8293
|
+
fromProtoMsg(message: _230.PostConvictionStake_AccruedRepPerTagEntryProtoMsg): _230.PostConvictionStake_AccruedRepPerTagEntry;
|
|
8294
|
+
toProto(message: _230.PostConvictionStake_AccruedRepPerTagEntry): Uint8Array;
|
|
8295
|
+
};
|
|
8296
|
+
PostConvictionStake: {
|
|
8297
|
+
typeUrl: string;
|
|
8298
|
+
encode(message: _230.PostConvictionStake, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
|
|
8299
|
+
decode(input: import("..").BinaryReader | Uint8Array, length?: number): _230.PostConvictionStake;
|
|
8300
|
+
fromPartial(object: import("../helpers").DeepPartial<_230.PostConvictionStake>): _230.PostConvictionStake;
|
|
8301
|
+
fromAmino(object: _230.PostConvictionStakeAmino): _230.PostConvictionStake;
|
|
8302
|
+
toAmino(message: _230.PostConvictionStake): _230.PostConvictionStakeAmino;
|
|
8303
|
+
fromAminoMsg(object: _230.PostConvictionStakeAminoMsg): _230.PostConvictionStake;
|
|
8304
|
+
fromProtoMsg(message: _230.PostConvictionStakeProtoMsg): _230.PostConvictionStake;
|
|
8305
|
+
toProto(message: _230.PostConvictionStake): Uint8Array;
|
|
8306
|
+
toProtoMsg(message: _230.PostConvictionStake): _230.PostConvictionStakeProtoMsg;
|
|
8307
|
+
};
|
|
8007
8308
|
MsgUpdateParams: {
|
|
8008
8309
|
typeUrl: string;
|
|
8009
8310
|
aminoType: string;
|
|
@@ -8238,6 +8539,32 @@ export declare namespace sparkdream {
|
|
|
8238
8539
|
toProto(message: _229.MsgUnpinPostResponse): Uint8Array;
|
|
8239
8540
|
toProtoMsg(message: _229.MsgUnpinPostResponse): _229.MsgUnpinPostResponseProtoMsg;
|
|
8240
8541
|
};
|
|
8542
|
+
MsgMakePostPermanent: {
|
|
8543
|
+
typeUrl: string;
|
|
8544
|
+
aminoType: string;
|
|
8545
|
+
encode(message: _229.MsgMakePostPermanent, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
|
|
8546
|
+
decode(input: import("..").BinaryReader | Uint8Array, length?: number): _229.MsgMakePostPermanent;
|
|
8547
|
+
fromPartial(object: import("../helpers").DeepPartial<_229.MsgMakePostPermanent>): _229.MsgMakePostPermanent;
|
|
8548
|
+
fromAmino(object: _229.MsgMakePostPermanentAmino): _229.MsgMakePostPermanent;
|
|
8549
|
+
toAmino(message: _229.MsgMakePostPermanent): _229.MsgMakePostPermanentAmino;
|
|
8550
|
+
fromAminoMsg(object: _229.MsgMakePostPermanentAminoMsg): _229.MsgMakePostPermanent;
|
|
8551
|
+
toAminoMsg(message: _229.MsgMakePostPermanent): _229.MsgMakePostPermanentAminoMsg;
|
|
8552
|
+
fromProtoMsg(message: _229.MsgMakePostPermanentProtoMsg): _229.MsgMakePostPermanent;
|
|
8553
|
+
toProto(message: _229.MsgMakePostPermanent): Uint8Array;
|
|
8554
|
+
toProtoMsg(message: _229.MsgMakePostPermanent): _229.MsgMakePostPermanentProtoMsg;
|
|
8555
|
+
};
|
|
8556
|
+
MsgMakePostPermanentResponse: {
|
|
8557
|
+
typeUrl: string;
|
|
8558
|
+
encode(_: _229.MsgMakePostPermanentResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
|
|
8559
|
+
decode(input: import("..").BinaryReader | Uint8Array, length?: number): _229.MsgMakePostPermanentResponse;
|
|
8560
|
+
fromPartial(_: import("../helpers").DeepPartial<_229.MsgMakePostPermanentResponse>): _229.MsgMakePostPermanentResponse;
|
|
8561
|
+
fromAmino(_: _229.MsgMakePostPermanentResponseAmino): _229.MsgMakePostPermanentResponse;
|
|
8562
|
+
toAmino(_: _229.MsgMakePostPermanentResponse): _229.MsgMakePostPermanentResponseAmino;
|
|
8563
|
+
fromAminoMsg(object: _229.MsgMakePostPermanentResponseAminoMsg): _229.MsgMakePostPermanentResponse;
|
|
8564
|
+
fromProtoMsg(message: _229.MsgMakePostPermanentResponseProtoMsg): _229.MsgMakePostPermanentResponse;
|
|
8565
|
+
toProto(message: _229.MsgMakePostPermanentResponse): Uint8Array;
|
|
8566
|
+
toProtoMsg(message: _229.MsgMakePostPermanentResponse): _229.MsgMakePostPermanentResponseProtoMsg;
|
|
8567
|
+
};
|
|
8241
8568
|
MsgLockThread: {
|
|
8242
8569
|
typeUrl: string;
|
|
8243
8570
|
aminoType: string;
|
|
@@ -8420,6 +8747,58 @@ export declare namespace sparkdream {
|
|
|
8420
8747
|
toProto(message: _229.MsgDownvotePostResponse): Uint8Array;
|
|
8421
8748
|
toProtoMsg(message: _229.MsgDownvotePostResponse): _229.MsgDownvotePostResponseProtoMsg;
|
|
8422
8749
|
};
|
|
8750
|
+
MsgStakePostConviction: {
|
|
8751
|
+
typeUrl: string;
|
|
8752
|
+
aminoType: string;
|
|
8753
|
+
encode(message: _229.MsgStakePostConviction, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
|
|
8754
|
+
decode(input: import("..").BinaryReader | Uint8Array, length?: number): _229.MsgStakePostConviction;
|
|
8755
|
+
fromPartial(object: import("../helpers").DeepPartial<_229.MsgStakePostConviction>): _229.MsgStakePostConviction;
|
|
8756
|
+
fromAmino(object: _229.MsgStakePostConvictionAmino): _229.MsgStakePostConviction;
|
|
8757
|
+
toAmino(message: _229.MsgStakePostConviction): _229.MsgStakePostConvictionAmino;
|
|
8758
|
+
fromAminoMsg(object: _229.MsgStakePostConvictionAminoMsg): _229.MsgStakePostConviction;
|
|
8759
|
+
toAminoMsg(message: _229.MsgStakePostConviction): _229.MsgStakePostConvictionAminoMsg;
|
|
8760
|
+
fromProtoMsg(message: _229.MsgStakePostConvictionProtoMsg): _229.MsgStakePostConviction;
|
|
8761
|
+
toProto(message: _229.MsgStakePostConviction): Uint8Array;
|
|
8762
|
+
toProtoMsg(message: _229.MsgStakePostConviction): _229.MsgStakePostConvictionProtoMsg;
|
|
8763
|
+
};
|
|
8764
|
+
MsgStakePostConvictionResponse: {
|
|
8765
|
+
typeUrl: string;
|
|
8766
|
+
encode(message: _229.MsgStakePostConvictionResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
|
|
8767
|
+
decode(input: import("..").BinaryReader | Uint8Array, length?: number): _229.MsgStakePostConvictionResponse;
|
|
8768
|
+
fromPartial(object: import("../helpers").DeepPartial<_229.MsgStakePostConvictionResponse>): _229.MsgStakePostConvictionResponse;
|
|
8769
|
+
fromAmino(object: _229.MsgStakePostConvictionResponseAmino): _229.MsgStakePostConvictionResponse;
|
|
8770
|
+
toAmino(message: _229.MsgStakePostConvictionResponse): _229.MsgStakePostConvictionResponseAmino;
|
|
8771
|
+
fromAminoMsg(object: _229.MsgStakePostConvictionResponseAminoMsg): _229.MsgStakePostConvictionResponse;
|
|
8772
|
+
fromProtoMsg(message: _229.MsgStakePostConvictionResponseProtoMsg): _229.MsgStakePostConvictionResponse;
|
|
8773
|
+
toProto(message: _229.MsgStakePostConvictionResponse): Uint8Array;
|
|
8774
|
+
toProtoMsg(message: _229.MsgStakePostConvictionResponse): _229.MsgStakePostConvictionResponseProtoMsg;
|
|
8775
|
+
};
|
|
8776
|
+
MsgReleasePostConviction: {
|
|
8777
|
+
typeUrl: string;
|
|
8778
|
+
aminoType: string;
|
|
8779
|
+
encode(message: _229.MsgReleasePostConviction, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
|
|
8780
|
+
decode(input: import("..").BinaryReader | Uint8Array, length?: number): _229.MsgReleasePostConviction;
|
|
8781
|
+
fromPartial(object: import("../helpers").DeepPartial<_229.MsgReleasePostConviction>): _229.MsgReleasePostConviction;
|
|
8782
|
+
fromAmino(object: _229.MsgReleasePostConvictionAmino): _229.MsgReleasePostConviction;
|
|
8783
|
+
toAmino(message: _229.MsgReleasePostConviction): _229.MsgReleasePostConvictionAmino;
|
|
8784
|
+
fromAminoMsg(object: _229.MsgReleasePostConvictionAminoMsg): _229.MsgReleasePostConviction;
|
|
8785
|
+
toAminoMsg(message: _229.MsgReleasePostConviction): _229.MsgReleasePostConvictionAminoMsg;
|
|
8786
|
+
fromProtoMsg(message: _229.MsgReleasePostConvictionProtoMsg): _229.MsgReleasePostConviction;
|
|
8787
|
+
toProto(message: _229.MsgReleasePostConviction): Uint8Array;
|
|
8788
|
+
toProtoMsg(message: _229.MsgReleasePostConviction): _229.MsgReleasePostConvictionProtoMsg;
|
|
8789
|
+
};
|
|
8790
|
+
MsgReleasePostConvictionResponse: {
|
|
8791
|
+
typeUrl: string;
|
|
8792
|
+
encode(_: _229.MsgReleasePostConvictionResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
|
|
8793
|
+
decode(input: import("..").BinaryReader | Uint8Array, length?: number): _229.MsgReleasePostConvictionResponse;
|
|
8794
|
+
fromPartial(_: import("../helpers").DeepPartial<_229.MsgReleasePostConvictionResponse>): _229.MsgReleasePostConvictionResponse;
|
|
8795
|
+
fromAmino(_: _229.MsgReleasePostConvictionResponseAmino): _229.MsgReleasePostConvictionResponse;
|
|
8796
|
+
toAmino(_: _229.MsgReleasePostConvictionResponse): _229.MsgReleasePostConvictionResponseAmino;
|
|
8797
|
+
fromAminoMsg(object: _229.MsgReleasePostConvictionResponseAminoMsg): _229.MsgReleasePostConvictionResponse;
|
|
8798
|
+
fromProtoMsg(message: _229.MsgReleasePostConvictionResponseProtoMsg): _229.MsgReleasePostConvictionResponse;
|
|
8799
|
+
toProto(message: _229.MsgReleasePostConvictionResponse): Uint8Array;
|
|
8800
|
+
toProtoMsg(message: _229.MsgReleasePostConvictionResponse): _229.MsgReleasePostConvictionResponseProtoMsg;
|
|
8801
|
+
};
|
|
8423
8802
|
MsgFlagPost: {
|
|
8424
8803
|
typeUrl: string;
|
|
8425
8804
|
aminoType: string;
|
|
@@ -10116,6 +10495,78 @@ export declare namespace sparkdream {
|
|
|
10116
10495
|
toProto(message: _222.QueryFlagReviewQueueResponse): Uint8Array;
|
|
10117
10496
|
toProtoMsg(message: _222.QueryFlagReviewQueueResponse): _222.QueryFlagReviewQueueResponseProtoMsg;
|
|
10118
10497
|
};
|
|
10498
|
+
QueryGetPostConvictionStakeRequest: {
|
|
10499
|
+
typeUrl: string;
|
|
10500
|
+
encode(message: _222.QueryGetPostConvictionStakeRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
|
|
10501
|
+
decode(input: import("..").BinaryReader | Uint8Array, length?: number): _222.QueryGetPostConvictionStakeRequest;
|
|
10502
|
+
fromPartial(object: import("../helpers").DeepPartial<_222.QueryGetPostConvictionStakeRequest>): _222.QueryGetPostConvictionStakeRequest;
|
|
10503
|
+
fromAmino(object: _222.QueryGetPostConvictionStakeRequestAmino): _222.QueryGetPostConvictionStakeRequest;
|
|
10504
|
+
toAmino(message: _222.QueryGetPostConvictionStakeRequest): _222.QueryGetPostConvictionStakeRequestAmino;
|
|
10505
|
+
fromAminoMsg(object: _222.QueryGetPostConvictionStakeRequestAminoMsg): _222.QueryGetPostConvictionStakeRequest;
|
|
10506
|
+
fromProtoMsg(message: _222.QueryGetPostConvictionStakeRequestProtoMsg): _222.QueryGetPostConvictionStakeRequest;
|
|
10507
|
+
toProto(message: _222.QueryGetPostConvictionStakeRequest): Uint8Array;
|
|
10508
|
+
toProtoMsg(message: _222.QueryGetPostConvictionStakeRequest): _222.QueryGetPostConvictionStakeRequestProtoMsg;
|
|
10509
|
+
};
|
|
10510
|
+
QueryGetPostConvictionStakeResponse: {
|
|
10511
|
+
typeUrl: string;
|
|
10512
|
+
encode(message: _222.QueryGetPostConvictionStakeResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
|
|
10513
|
+
decode(input: import("..").BinaryReader | Uint8Array, length?: number): _222.QueryGetPostConvictionStakeResponse;
|
|
10514
|
+
fromPartial(object: import("../helpers").DeepPartial<_222.QueryGetPostConvictionStakeResponse>): _222.QueryGetPostConvictionStakeResponse;
|
|
10515
|
+
fromAmino(object: _222.QueryGetPostConvictionStakeResponseAmino): _222.QueryGetPostConvictionStakeResponse;
|
|
10516
|
+
toAmino(message: _222.QueryGetPostConvictionStakeResponse): _222.QueryGetPostConvictionStakeResponseAmino;
|
|
10517
|
+
fromAminoMsg(object: _222.QueryGetPostConvictionStakeResponseAminoMsg): _222.QueryGetPostConvictionStakeResponse;
|
|
10518
|
+
fromProtoMsg(message: _222.QueryGetPostConvictionStakeResponseProtoMsg): _222.QueryGetPostConvictionStakeResponse;
|
|
10519
|
+
toProto(message: _222.QueryGetPostConvictionStakeResponse): Uint8Array;
|
|
10520
|
+
toProtoMsg(message: _222.QueryGetPostConvictionStakeResponse): _222.QueryGetPostConvictionStakeResponseProtoMsg;
|
|
10521
|
+
};
|
|
10522
|
+
QueryPostConvictionStakesByStakerRequest: {
|
|
10523
|
+
typeUrl: string;
|
|
10524
|
+
encode(message: _222.QueryPostConvictionStakesByStakerRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
|
|
10525
|
+
decode(input: import("..").BinaryReader | Uint8Array, length?: number): _222.QueryPostConvictionStakesByStakerRequest;
|
|
10526
|
+
fromPartial(object: import("../helpers").DeepPartial<_222.QueryPostConvictionStakesByStakerRequest>): _222.QueryPostConvictionStakesByStakerRequest;
|
|
10527
|
+
fromAmino(object: _222.QueryPostConvictionStakesByStakerRequestAmino): _222.QueryPostConvictionStakesByStakerRequest;
|
|
10528
|
+
toAmino(message: _222.QueryPostConvictionStakesByStakerRequest): _222.QueryPostConvictionStakesByStakerRequestAmino;
|
|
10529
|
+
fromAminoMsg(object: _222.QueryPostConvictionStakesByStakerRequestAminoMsg): _222.QueryPostConvictionStakesByStakerRequest;
|
|
10530
|
+
fromProtoMsg(message: _222.QueryPostConvictionStakesByStakerRequestProtoMsg): _222.QueryPostConvictionStakesByStakerRequest;
|
|
10531
|
+
toProto(message: _222.QueryPostConvictionStakesByStakerRequest): Uint8Array;
|
|
10532
|
+
toProtoMsg(message: _222.QueryPostConvictionStakesByStakerRequest): _222.QueryPostConvictionStakesByStakerRequestProtoMsg;
|
|
10533
|
+
};
|
|
10534
|
+
QueryPostConvictionStakesByStakerResponse: {
|
|
10535
|
+
typeUrl: string;
|
|
10536
|
+
encode(message: _222.QueryPostConvictionStakesByStakerResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
|
|
10537
|
+
decode(input: import("..").BinaryReader | Uint8Array, length?: number): _222.QueryPostConvictionStakesByStakerResponse;
|
|
10538
|
+
fromPartial(object: import("../helpers").DeepPartial<_222.QueryPostConvictionStakesByStakerResponse>): _222.QueryPostConvictionStakesByStakerResponse;
|
|
10539
|
+
fromAmino(object: _222.QueryPostConvictionStakesByStakerResponseAmino): _222.QueryPostConvictionStakesByStakerResponse;
|
|
10540
|
+
toAmino(message: _222.QueryPostConvictionStakesByStakerResponse): _222.QueryPostConvictionStakesByStakerResponseAmino;
|
|
10541
|
+
fromAminoMsg(object: _222.QueryPostConvictionStakesByStakerResponseAminoMsg): _222.QueryPostConvictionStakesByStakerResponse;
|
|
10542
|
+
fromProtoMsg(message: _222.QueryPostConvictionStakesByStakerResponseProtoMsg): _222.QueryPostConvictionStakesByStakerResponse;
|
|
10543
|
+
toProto(message: _222.QueryPostConvictionStakesByStakerResponse): Uint8Array;
|
|
10544
|
+
toProtoMsg(message: _222.QueryPostConvictionStakesByStakerResponse): _222.QueryPostConvictionStakesByStakerResponseProtoMsg;
|
|
10545
|
+
};
|
|
10546
|
+
QueryPostConvictionStakesByPostRequest: {
|
|
10547
|
+
typeUrl: string;
|
|
10548
|
+
encode(message: _222.QueryPostConvictionStakesByPostRequest, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
|
|
10549
|
+
decode(input: import("..").BinaryReader | Uint8Array, length?: number): _222.QueryPostConvictionStakesByPostRequest;
|
|
10550
|
+
fromPartial(object: import("../helpers").DeepPartial<_222.QueryPostConvictionStakesByPostRequest>): _222.QueryPostConvictionStakesByPostRequest;
|
|
10551
|
+
fromAmino(object: _222.QueryPostConvictionStakesByPostRequestAmino): _222.QueryPostConvictionStakesByPostRequest;
|
|
10552
|
+
toAmino(message: _222.QueryPostConvictionStakesByPostRequest): _222.QueryPostConvictionStakesByPostRequestAmino;
|
|
10553
|
+
fromAminoMsg(object: _222.QueryPostConvictionStakesByPostRequestAminoMsg): _222.QueryPostConvictionStakesByPostRequest;
|
|
10554
|
+
fromProtoMsg(message: _222.QueryPostConvictionStakesByPostRequestProtoMsg): _222.QueryPostConvictionStakesByPostRequest;
|
|
10555
|
+
toProto(message: _222.QueryPostConvictionStakesByPostRequest): Uint8Array;
|
|
10556
|
+
toProtoMsg(message: _222.QueryPostConvictionStakesByPostRequest): _222.QueryPostConvictionStakesByPostRequestProtoMsg;
|
|
10557
|
+
};
|
|
10558
|
+
QueryPostConvictionStakesByPostResponse: {
|
|
10559
|
+
typeUrl: string;
|
|
10560
|
+
encode(message: _222.QueryPostConvictionStakesByPostResponse, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
|
|
10561
|
+
decode(input: import("..").BinaryReader | Uint8Array, length?: number): _222.QueryPostConvictionStakesByPostResponse;
|
|
10562
|
+
fromPartial(object: import("../helpers").DeepPartial<_222.QueryPostConvictionStakesByPostResponse>): _222.QueryPostConvictionStakesByPostResponse;
|
|
10563
|
+
fromAmino(object: _222.QueryPostConvictionStakesByPostResponseAmino): _222.QueryPostConvictionStakesByPostResponse;
|
|
10564
|
+
toAmino(message: _222.QueryPostConvictionStakesByPostResponse): _222.QueryPostConvictionStakesByPostResponseAmino;
|
|
10565
|
+
fromAminoMsg(object: _222.QueryPostConvictionStakesByPostResponseAminoMsg): _222.QueryPostConvictionStakesByPostResponse;
|
|
10566
|
+
fromProtoMsg(message: _222.QueryPostConvictionStakesByPostResponseProtoMsg): _222.QueryPostConvictionStakesByPostResponse;
|
|
10567
|
+
toProto(message: _222.QueryPostConvictionStakesByPostResponse): Uint8Array;
|
|
10568
|
+
toProtoMsg(message: _222.QueryPostConvictionStakesByPostResponse): _222.QueryPostConvictionStakesByPostResponseProtoMsg;
|
|
10569
|
+
};
|
|
10119
10570
|
Post: {
|
|
10120
10571
|
typeUrl: string;
|
|
10121
10572
|
encode(message: _221.Post, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
|
|
@@ -16068,6 +16519,26 @@ export declare namespace sparkdream {
|
|
|
16068
16519
|
fromProtoMsg(message: _269.Member_ReputationGainedThisEpochEntryProtoMsg): _269.Member_ReputationGainedThisEpochEntry;
|
|
16069
16520
|
toProto(message: _269.Member_ReputationGainedThisEpochEntry): Uint8Array;
|
|
16070
16521
|
};
|
|
16522
|
+
Member_ForumRepPerTagEntry: {
|
|
16523
|
+
encode(message: _269.Member_ForumRepPerTagEntry, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
|
|
16524
|
+
decode(input: import("..").BinaryReader | Uint8Array, length?: number): _269.Member_ForumRepPerTagEntry;
|
|
16525
|
+
fromPartial(object: import("../helpers").DeepPartial<_269.Member_ForumRepPerTagEntry>): _269.Member_ForumRepPerTagEntry;
|
|
16526
|
+
fromAmino(object: _269.Member_ForumRepPerTagEntryAmino): _269.Member_ForumRepPerTagEntry;
|
|
16527
|
+
toAmino(message: _269.Member_ForumRepPerTagEntry): _269.Member_ForumRepPerTagEntryAmino;
|
|
16528
|
+
fromAminoMsg(object: _269.Member_ForumRepPerTagEntryAminoMsg): _269.Member_ForumRepPerTagEntry;
|
|
16529
|
+
fromProtoMsg(message: _269.Member_ForumRepPerTagEntryProtoMsg): _269.Member_ForumRepPerTagEntry;
|
|
16530
|
+
toProto(message: _269.Member_ForumRepPerTagEntry): Uint8Array;
|
|
16531
|
+
};
|
|
16532
|
+
Member_LifetimeForumRepPerTagEntry: {
|
|
16533
|
+
encode(message: _269.Member_LifetimeForumRepPerTagEntry, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
|
|
16534
|
+
decode(input: import("..").BinaryReader | Uint8Array, length?: number): _269.Member_LifetimeForumRepPerTagEntry;
|
|
16535
|
+
fromPartial(object: import("../helpers").DeepPartial<_269.Member_LifetimeForumRepPerTagEntry>): _269.Member_LifetimeForumRepPerTagEntry;
|
|
16536
|
+
fromAmino(object: _269.Member_LifetimeForumRepPerTagEntryAmino): _269.Member_LifetimeForumRepPerTagEntry;
|
|
16537
|
+
toAmino(message: _269.Member_LifetimeForumRepPerTagEntry): _269.Member_LifetimeForumRepPerTagEntryAmino;
|
|
16538
|
+
fromAminoMsg(object: _269.Member_LifetimeForumRepPerTagEntryAminoMsg): _269.Member_LifetimeForumRepPerTagEntry;
|
|
16539
|
+
fromProtoMsg(message: _269.Member_LifetimeForumRepPerTagEntryProtoMsg): _269.Member_LifetimeForumRepPerTagEntry;
|
|
16540
|
+
toProto(message: _269.Member_LifetimeForumRepPerTagEntry): Uint8Array;
|
|
16541
|
+
};
|
|
16071
16542
|
Member: {
|
|
16072
16543
|
typeUrl: string;
|
|
16073
16544
|
encode(message: _269.Member, writer?: import("..").BinaryWriter): import("..").BinaryWriter;
|
|
@@ -24828,6 +25299,9 @@ export declare namespace sparkdream {
|
|
|
24828
25299
|
bountyExpiringSoon(request: _222.QueryBountyExpiringSoonRequest): Promise<_222.QueryBountyExpiringSoonResponse>;
|
|
24829
25300
|
postFlags(request: _222.QueryPostFlagsRequest): Promise<_222.QueryPostFlagsResponse>;
|
|
24830
25301
|
flagReviewQueue(request?: _222.QueryFlagReviewQueueRequest): Promise<_222.QueryFlagReviewQueueResponse>;
|
|
25302
|
+
getPostConvictionStake(request: _222.QueryGetPostConvictionStakeRequest): Promise<_222.QueryGetPostConvictionStakeResponse>;
|
|
25303
|
+
postConvictionStakesByStaker(request: _222.QueryPostConvictionStakesByStakerRequest): Promise<_222.QueryPostConvictionStakesByStakerResponse>;
|
|
25304
|
+
postConvictionStakesByPost(request: _222.QueryPostConvictionStakesByPostRequest): Promise<_222.QueryPostConvictionStakesByPostResponse>;
|
|
24831
25305
|
};
|
|
24832
25306
|
};
|
|
24833
25307
|
futarchy: {
|