@sparkdreamnft/sparkdreamjs 0.0.11 → 0.0.13
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/nested-amino.js +52 -0
- 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 +80 -41
- 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/query.js +166 -0
- package/esm/sparkdream/name/v1/query.lcd.js +13 -0
- package/esm/sparkdream/name/v1/query.rpc.Query.js +12 -1
- package/esm/sparkdream/name/v1/tx.amino.js +21 -6
- package/esm/sparkdream/name/v1/tx.js +500 -0
- package/esm/sparkdream/name/v1/tx.registry.js +56 -2
- package/esm/sparkdream/name/v1/tx.rpc.msg.js +24 -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 +33 -11
- 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/nested-amino.d.ts +76 -0
- package/nested-amino.js +57 -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 +661 -6
- package/sparkdream/client.d.ts +21 -6
- 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.d.ts +6 -5
- package/sparkdream/commons/v1/tx.amino.js +82 -42
- 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/query.d.ts +95 -0
- package/sparkdream/name/v1/query.js +167 -1
- package/sparkdream/name/v1/query.lcd.d.ts +2 -1
- package/sparkdream/name/v1/query.lcd.js +13 -0
- package/sparkdream/name/v1/query.rpc.Query.d.ts +9 -1
- package/sparkdream/name/v1/query.rpc.Query.js +11 -0
- package/sparkdream/name/v1/tx.amino.d.ts +16 -1
- package/sparkdream/name/v1/tx.amino.js +20 -5
- package/sparkdream/name/v1/tx.d.ts +336 -5
- package/sparkdream/name/v1/tx.js +501 -1
- package/sparkdream/name/v1/tx.registry.d.ts +37 -1
- package/sparkdream/name/v1/tx.registry.js +55 -1
- package/sparkdream/name/v1/tx.rpc.msg.d.ts +21 -1
- package/sparkdream/name/v1/tx.rpc.msg.js +23 -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 +4 -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.d.ts +3 -3
- package/sparkdream/session/v1/tx.amino.js +33 -11
- 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
|
@@ -108,7 +108,7 @@ export interface MsgCreateCollectionAmino {
|
|
|
108
108
|
initiative_id?: string;
|
|
109
109
|
}
|
|
110
110
|
export interface MsgCreateCollectionAminoMsg {
|
|
111
|
-
type: "/
|
|
111
|
+
type: "sparkdream/x/collect/MsgCreateCollection";
|
|
112
112
|
value: MsgCreateCollectionAmino;
|
|
113
113
|
}
|
|
114
114
|
/**
|
|
@@ -182,7 +182,7 @@ export interface MsgUpdateCollectionAmino {
|
|
|
182
182
|
update_community_feedback?: boolean;
|
|
183
183
|
}
|
|
184
184
|
export interface MsgUpdateCollectionAminoMsg {
|
|
185
|
-
type: "/
|
|
185
|
+
type: "sparkdream/x/collect/MsgUpdateCollection";
|
|
186
186
|
value: MsgUpdateCollectionAmino;
|
|
187
187
|
}
|
|
188
188
|
/**
|
|
@@ -230,7 +230,7 @@ export interface MsgDeleteCollectionAmino {
|
|
|
230
230
|
id?: string;
|
|
231
231
|
}
|
|
232
232
|
export interface MsgDeleteCollectionAminoMsg {
|
|
233
|
-
type: "/
|
|
233
|
+
type: "sparkdream/x/collect/MsgDeleteCollection";
|
|
234
234
|
value: MsgDeleteCollectionAmino;
|
|
235
235
|
}
|
|
236
236
|
/**
|
|
@@ -300,7 +300,7 @@ export interface MsgAddItemAmino {
|
|
|
300
300
|
encrypted_data?: string;
|
|
301
301
|
}
|
|
302
302
|
export interface MsgAddItemAminoMsg {
|
|
303
|
-
type: "/
|
|
303
|
+
type: "sparkdream/x/collect/MsgAddItem";
|
|
304
304
|
value: MsgAddItemAmino;
|
|
305
305
|
}
|
|
306
306
|
/**
|
|
@@ -352,7 +352,7 @@ export interface MsgAddItemsAmino {
|
|
|
352
352
|
items?: AddItemEntryAmino[];
|
|
353
353
|
}
|
|
354
354
|
export interface MsgAddItemsAminoMsg {
|
|
355
|
-
type: "/
|
|
355
|
+
type: "sparkdream/x/collect/MsgAddItems";
|
|
356
356
|
value: MsgAddItemsAmino;
|
|
357
357
|
}
|
|
358
358
|
/**
|
|
@@ -422,7 +422,7 @@ export interface MsgUpdateItemAmino {
|
|
|
422
422
|
encrypted_data?: string;
|
|
423
423
|
}
|
|
424
424
|
export interface MsgUpdateItemAminoMsg {
|
|
425
|
-
type: "/
|
|
425
|
+
type: "sparkdream/x/collect/MsgUpdateItem";
|
|
426
426
|
value: MsgUpdateItemAmino;
|
|
427
427
|
}
|
|
428
428
|
/**
|
|
@@ -470,7 +470,7 @@ export interface MsgRemoveItemAmino {
|
|
|
470
470
|
id?: string;
|
|
471
471
|
}
|
|
472
472
|
export interface MsgRemoveItemAminoMsg {
|
|
473
|
-
type: "/
|
|
473
|
+
type: "sparkdream/x/collect/MsgRemoveItem";
|
|
474
474
|
value: MsgRemoveItemAmino;
|
|
475
475
|
}
|
|
476
476
|
/**
|
|
@@ -518,7 +518,7 @@ export interface MsgRemoveItemsAmino {
|
|
|
518
518
|
ids?: string[];
|
|
519
519
|
}
|
|
520
520
|
export interface MsgRemoveItemsAminoMsg {
|
|
521
|
-
type: "/
|
|
521
|
+
type: "sparkdream/x/collect/MsgRemoveItems";
|
|
522
522
|
value: MsgRemoveItemsAmino;
|
|
523
523
|
}
|
|
524
524
|
/**
|
|
@@ -568,7 +568,7 @@ export interface MsgReorderItemAmino {
|
|
|
568
568
|
new_position?: string;
|
|
569
569
|
}
|
|
570
570
|
export interface MsgReorderItemAminoMsg {
|
|
571
|
-
type: "/
|
|
571
|
+
type: "sparkdream/x/collect/MsgReorderItem";
|
|
572
572
|
value: MsgReorderItemAmino;
|
|
573
573
|
}
|
|
574
574
|
/**
|
|
@@ -620,7 +620,7 @@ export interface MsgAddCollaboratorAmino {
|
|
|
620
620
|
role?: CollaboratorRole;
|
|
621
621
|
}
|
|
622
622
|
export interface MsgAddCollaboratorAminoMsg {
|
|
623
|
-
type: "/
|
|
623
|
+
type: "sparkdream/x/collect/MsgAddCollaborator";
|
|
624
624
|
value: MsgAddCollaboratorAmino;
|
|
625
625
|
}
|
|
626
626
|
/**
|
|
@@ -670,7 +670,7 @@ export interface MsgRemoveCollaboratorAmino {
|
|
|
670
670
|
address?: string;
|
|
671
671
|
}
|
|
672
672
|
export interface MsgRemoveCollaboratorAminoMsg {
|
|
673
|
-
type: "/
|
|
673
|
+
type: "sparkdream/x/collect/MsgRemoveCollaborator";
|
|
674
674
|
value: MsgRemoveCollaboratorAmino;
|
|
675
675
|
}
|
|
676
676
|
/**
|
|
@@ -722,7 +722,7 @@ export interface MsgUpdateCollaboratorRoleAmino {
|
|
|
722
722
|
role?: CollaboratorRole;
|
|
723
723
|
}
|
|
724
724
|
export interface MsgUpdateCollaboratorRoleAminoMsg {
|
|
725
|
-
type: "/
|
|
725
|
+
type: "sparkdream/x/collect/MsgUpdateCollaboratorRole";
|
|
726
726
|
value: MsgUpdateCollaboratorRoleAmino;
|
|
727
727
|
}
|
|
728
728
|
/**
|
|
@@ -776,7 +776,7 @@ export interface MsgRateCollectionAmino {
|
|
|
776
776
|
comment?: string;
|
|
777
777
|
}
|
|
778
778
|
export interface MsgRateCollectionAminoMsg {
|
|
779
|
-
type: "/
|
|
779
|
+
type: "sparkdream/x/collect/MsgRateCollection";
|
|
780
780
|
value: MsgRateCollectionAmino;
|
|
781
781
|
}
|
|
782
782
|
/**
|
|
@@ -828,7 +828,7 @@ export interface MsgChallengeReviewAmino {
|
|
|
828
828
|
reason?: string;
|
|
829
829
|
}
|
|
830
830
|
export interface MsgChallengeReviewAminoMsg {
|
|
831
|
-
type: "/
|
|
831
|
+
type: "sparkdream/x/collect/MsgChallengeReview";
|
|
832
832
|
value: MsgChallengeReviewAmino;
|
|
833
833
|
}
|
|
834
834
|
/**
|
|
@@ -876,7 +876,7 @@ export interface MsgRequestSponsorshipAmino {
|
|
|
876
876
|
collection_id?: string;
|
|
877
877
|
}
|
|
878
878
|
export interface MsgRequestSponsorshipAminoMsg {
|
|
879
|
-
type: "/
|
|
879
|
+
type: "sparkdream/x/collect/MsgRequestSponsorship";
|
|
880
880
|
value: MsgRequestSponsorshipAmino;
|
|
881
881
|
}
|
|
882
882
|
/**
|
|
@@ -924,7 +924,7 @@ export interface MsgCancelSponsorshipRequestAmino {
|
|
|
924
924
|
collection_id?: string;
|
|
925
925
|
}
|
|
926
926
|
export interface MsgCancelSponsorshipRequestAminoMsg {
|
|
927
|
-
type: "/
|
|
927
|
+
type: "sparkdream/x/collect/MsgCancelSponsorshipRequest";
|
|
928
928
|
value: MsgCancelSponsorshipRequestAmino;
|
|
929
929
|
}
|
|
930
930
|
/**
|
|
@@ -972,7 +972,7 @@ export interface MsgSponsorCollectionAmino {
|
|
|
972
972
|
collection_id?: string;
|
|
973
973
|
}
|
|
974
974
|
export interface MsgSponsorCollectionAminoMsg {
|
|
975
|
-
type: "/
|
|
975
|
+
type: "sparkdream/x/collect/MsgSponsorCollection";
|
|
976
976
|
value: MsgSponsorCollectionAmino;
|
|
977
977
|
}
|
|
978
978
|
/**
|
|
@@ -1072,7 +1072,7 @@ export interface MsgUpvoteContentAmino {
|
|
|
1072
1072
|
target_type?: FlagTargetType;
|
|
1073
1073
|
}
|
|
1074
1074
|
export interface MsgUpvoteContentAminoMsg {
|
|
1075
|
-
type: "/
|
|
1075
|
+
type: "sparkdream/x/collect/MsgUpvoteContent";
|
|
1076
1076
|
value: MsgUpvoteContentAmino;
|
|
1077
1077
|
}
|
|
1078
1078
|
/**
|
|
@@ -1126,7 +1126,7 @@ export interface MsgDownvoteContentAmino {
|
|
|
1126
1126
|
target_type?: FlagTargetType;
|
|
1127
1127
|
}
|
|
1128
1128
|
export interface MsgDownvoteContentAminoMsg {
|
|
1129
|
-
type: "/
|
|
1129
|
+
type: "sparkdream/x/collect/MsgDownvoteContent";
|
|
1130
1130
|
value: MsgDownvoteContentAmino;
|
|
1131
1131
|
}
|
|
1132
1132
|
/**
|
|
@@ -1184,7 +1184,7 @@ export interface MsgFlagContentAmino {
|
|
|
1184
1184
|
reason_text?: string;
|
|
1185
1185
|
}
|
|
1186
1186
|
export interface MsgFlagContentAminoMsg {
|
|
1187
|
-
type: "/
|
|
1187
|
+
type: "sparkdream/x/collect/MsgFlagContent";
|
|
1188
1188
|
value: MsgFlagContentAmino;
|
|
1189
1189
|
}
|
|
1190
1190
|
/**
|
|
@@ -1242,7 +1242,7 @@ export interface MsgHideContentAmino {
|
|
|
1242
1242
|
reason_text?: string;
|
|
1243
1243
|
}
|
|
1244
1244
|
export interface MsgHideContentAminoMsg {
|
|
1245
|
-
type: "/
|
|
1245
|
+
type: "sparkdream/x/collect/MsgHideContent";
|
|
1246
1246
|
value: MsgHideContentAmino;
|
|
1247
1247
|
}
|
|
1248
1248
|
/**
|
|
@@ -1296,7 +1296,7 @@ export interface MsgAppealHideAmino {
|
|
|
1296
1296
|
hide_record_id?: string;
|
|
1297
1297
|
}
|
|
1298
1298
|
export interface MsgAppealHideAminoMsg {
|
|
1299
|
-
type: "/
|
|
1299
|
+
type: "sparkdream/x/collect/MsgAppealHide";
|
|
1300
1300
|
value: MsgAppealHideAmino;
|
|
1301
1301
|
}
|
|
1302
1302
|
/**
|
|
@@ -1348,7 +1348,7 @@ export interface MsgEndorseCollectionAmino {
|
|
|
1348
1348
|
collection_id?: string;
|
|
1349
1349
|
}
|
|
1350
1350
|
export interface MsgEndorseCollectionAminoMsg {
|
|
1351
|
-
type: "/
|
|
1351
|
+
type: "sparkdream/x/collect/MsgEndorseCollection";
|
|
1352
1352
|
value: MsgEndorseCollectionAmino;
|
|
1353
1353
|
}
|
|
1354
1354
|
/**
|
|
@@ -1402,7 +1402,7 @@ export interface MsgSetSeekingEndorsementAmino {
|
|
|
1402
1402
|
seeking?: boolean;
|
|
1403
1403
|
}
|
|
1404
1404
|
export interface MsgSetSeekingEndorsementAminoMsg {
|
|
1405
|
-
type: "/
|
|
1405
|
+
type: "sparkdream/x/collect/MsgSetSeekingEndorsement";
|
|
1406
1406
|
value: MsgSetSeekingEndorsementAmino;
|
|
1407
1407
|
}
|
|
1408
1408
|
/**
|
|
@@ -1454,7 +1454,7 @@ export interface MsgPinCollectionAmino {
|
|
|
1454
1454
|
collection_id?: string;
|
|
1455
1455
|
}
|
|
1456
1456
|
export interface MsgPinCollectionAminoMsg {
|
|
1457
|
-
type: "/
|
|
1457
|
+
type: "sparkdream/x/collect/MsgPinCollection";
|
|
1458
1458
|
value: MsgPinCollectionAmino;
|
|
1459
1459
|
}
|
|
1460
1460
|
/**
|
|
@@ -1523,12 +1523,14 @@ export declare const MsgUpdateParamsResponse: {
|
|
|
1523
1523
|
*/
|
|
1524
1524
|
export declare const MsgCreateCollection: {
|
|
1525
1525
|
typeUrl: string;
|
|
1526
|
+
aminoType: string;
|
|
1526
1527
|
encode(message: MsgCreateCollection, writer?: BinaryWriter): BinaryWriter;
|
|
1527
1528
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateCollection;
|
|
1528
1529
|
fromPartial(object: DeepPartial<MsgCreateCollection>): MsgCreateCollection;
|
|
1529
1530
|
fromAmino(object: MsgCreateCollectionAmino): MsgCreateCollection;
|
|
1530
1531
|
toAmino(message: MsgCreateCollection): MsgCreateCollectionAmino;
|
|
1531
1532
|
fromAminoMsg(object: MsgCreateCollectionAminoMsg): MsgCreateCollection;
|
|
1533
|
+
toAminoMsg(message: MsgCreateCollection): MsgCreateCollectionAminoMsg;
|
|
1532
1534
|
fromProtoMsg(message: MsgCreateCollectionProtoMsg): MsgCreateCollection;
|
|
1533
1535
|
toProto(message: MsgCreateCollection): Uint8Array;
|
|
1534
1536
|
toProtoMsg(message: MsgCreateCollection): MsgCreateCollectionProtoMsg;
|
|
@@ -1557,12 +1559,14 @@ export declare const MsgCreateCollectionResponse: {
|
|
|
1557
1559
|
*/
|
|
1558
1560
|
export declare const MsgUpdateCollection: {
|
|
1559
1561
|
typeUrl: string;
|
|
1562
|
+
aminoType: string;
|
|
1560
1563
|
encode(message: MsgUpdateCollection, writer?: BinaryWriter): BinaryWriter;
|
|
1561
1564
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateCollection;
|
|
1562
1565
|
fromPartial(object: DeepPartial<MsgUpdateCollection>): MsgUpdateCollection;
|
|
1563
1566
|
fromAmino(object: MsgUpdateCollectionAmino): MsgUpdateCollection;
|
|
1564
1567
|
toAmino(message: MsgUpdateCollection): MsgUpdateCollectionAmino;
|
|
1565
1568
|
fromAminoMsg(object: MsgUpdateCollectionAminoMsg): MsgUpdateCollection;
|
|
1569
|
+
toAminoMsg(message: MsgUpdateCollection): MsgUpdateCollectionAminoMsg;
|
|
1566
1570
|
fromProtoMsg(message: MsgUpdateCollectionProtoMsg): MsgUpdateCollection;
|
|
1567
1571
|
toProto(message: MsgUpdateCollection): Uint8Array;
|
|
1568
1572
|
toProtoMsg(message: MsgUpdateCollection): MsgUpdateCollectionProtoMsg;
|
|
@@ -1591,12 +1595,14 @@ export declare const MsgUpdateCollectionResponse: {
|
|
|
1591
1595
|
*/
|
|
1592
1596
|
export declare const MsgDeleteCollection: {
|
|
1593
1597
|
typeUrl: string;
|
|
1598
|
+
aminoType: string;
|
|
1594
1599
|
encode(message: MsgDeleteCollection, writer?: BinaryWriter): BinaryWriter;
|
|
1595
1600
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgDeleteCollection;
|
|
1596
1601
|
fromPartial(object: DeepPartial<MsgDeleteCollection>): MsgDeleteCollection;
|
|
1597
1602
|
fromAmino(object: MsgDeleteCollectionAmino): MsgDeleteCollection;
|
|
1598
1603
|
toAmino(message: MsgDeleteCollection): MsgDeleteCollectionAmino;
|
|
1599
1604
|
fromAminoMsg(object: MsgDeleteCollectionAminoMsg): MsgDeleteCollection;
|
|
1605
|
+
toAminoMsg(message: MsgDeleteCollection): MsgDeleteCollectionAminoMsg;
|
|
1600
1606
|
fromProtoMsg(message: MsgDeleteCollectionProtoMsg): MsgDeleteCollection;
|
|
1601
1607
|
toProto(message: MsgDeleteCollection): Uint8Array;
|
|
1602
1608
|
toProtoMsg(message: MsgDeleteCollection): MsgDeleteCollectionProtoMsg;
|
|
@@ -1625,12 +1631,14 @@ export declare const MsgDeleteCollectionResponse: {
|
|
|
1625
1631
|
*/
|
|
1626
1632
|
export declare const MsgAddItem: {
|
|
1627
1633
|
typeUrl: string;
|
|
1634
|
+
aminoType: string;
|
|
1628
1635
|
encode(message: MsgAddItem, writer?: BinaryWriter): BinaryWriter;
|
|
1629
1636
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgAddItem;
|
|
1630
1637
|
fromPartial(object: DeepPartial<MsgAddItem>): MsgAddItem;
|
|
1631
1638
|
fromAmino(object: MsgAddItemAmino): MsgAddItem;
|
|
1632
1639
|
toAmino(message: MsgAddItem): MsgAddItemAmino;
|
|
1633
1640
|
fromAminoMsg(object: MsgAddItemAminoMsg): MsgAddItem;
|
|
1641
|
+
toAminoMsg(message: MsgAddItem): MsgAddItemAminoMsg;
|
|
1634
1642
|
fromProtoMsg(message: MsgAddItemProtoMsg): MsgAddItem;
|
|
1635
1643
|
toProto(message: MsgAddItem): Uint8Array;
|
|
1636
1644
|
toProtoMsg(message: MsgAddItem): MsgAddItemProtoMsg;
|
|
@@ -1659,12 +1667,14 @@ export declare const MsgAddItemResponse: {
|
|
|
1659
1667
|
*/
|
|
1660
1668
|
export declare const MsgAddItems: {
|
|
1661
1669
|
typeUrl: string;
|
|
1670
|
+
aminoType: string;
|
|
1662
1671
|
encode(message: MsgAddItems, writer?: BinaryWriter): BinaryWriter;
|
|
1663
1672
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgAddItems;
|
|
1664
1673
|
fromPartial(object: DeepPartial<MsgAddItems>): MsgAddItems;
|
|
1665
1674
|
fromAmino(object: MsgAddItemsAmino): MsgAddItems;
|
|
1666
1675
|
toAmino(message: MsgAddItems): MsgAddItemsAmino;
|
|
1667
1676
|
fromAminoMsg(object: MsgAddItemsAminoMsg): MsgAddItems;
|
|
1677
|
+
toAminoMsg(message: MsgAddItems): MsgAddItemsAminoMsg;
|
|
1668
1678
|
fromProtoMsg(message: MsgAddItemsProtoMsg): MsgAddItems;
|
|
1669
1679
|
toProto(message: MsgAddItems): Uint8Array;
|
|
1670
1680
|
toProtoMsg(message: MsgAddItems): MsgAddItemsProtoMsg;
|
|
@@ -1693,12 +1703,14 @@ export declare const MsgAddItemsResponse: {
|
|
|
1693
1703
|
*/
|
|
1694
1704
|
export declare const MsgUpdateItem: {
|
|
1695
1705
|
typeUrl: string;
|
|
1706
|
+
aminoType: string;
|
|
1696
1707
|
encode(message: MsgUpdateItem, writer?: BinaryWriter): BinaryWriter;
|
|
1697
1708
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateItem;
|
|
1698
1709
|
fromPartial(object: DeepPartial<MsgUpdateItem>): MsgUpdateItem;
|
|
1699
1710
|
fromAmino(object: MsgUpdateItemAmino): MsgUpdateItem;
|
|
1700
1711
|
toAmino(message: MsgUpdateItem): MsgUpdateItemAmino;
|
|
1701
1712
|
fromAminoMsg(object: MsgUpdateItemAminoMsg): MsgUpdateItem;
|
|
1713
|
+
toAminoMsg(message: MsgUpdateItem): MsgUpdateItemAminoMsg;
|
|
1702
1714
|
fromProtoMsg(message: MsgUpdateItemProtoMsg): MsgUpdateItem;
|
|
1703
1715
|
toProto(message: MsgUpdateItem): Uint8Array;
|
|
1704
1716
|
toProtoMsg(message: MsgUpdateItem): MsgUpdateItemProtoMsg;
|
|
@@ -1727,12 +1739,14 @@ export declare const MsgUpdateItemResponse: {
|
|
|
1727
1739
|
*/
|
|
1728
1740
|
export declare const MsgRemoveItem: {
|
|
1729
1741
|
typeUrl: string;
|
|
1742
|
+
aminoType: string;
|
|
1730
1743
|
encode(message: MsgRemoveItem, writer?: BinaryWriter): BinaryWriter;
|
|
1731
1744
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgRemoveItem;
|
|
1732
1745
|
fromPartial(object: DeepPartial<MsgRemoveItem>): MsgRemoveItem;
|
|
1733
1746
|
fromAmino(object: MsgRemoveItemAmino): MsgRemoveItem;
|
|
1734
1747
|
toAmino(message: MsgRemoveItem): MsgRemoveItemAmino;
|
|
1735
1748
|
fromAminoMsg(object: MsgRemoveItemAminoMsg): MsgRemoveItem;
|
|
1749
|
+
toAminoMsg(message: MsgRemoveItem): MsgRemoveItemAminoMsg;
|
|
1736
1750
|
fromProtoMsg(message: MsgRemoveItemProtoMsg): MsgRemoveItem;
|
|
1737
1751
|
toProto(message: MsgRemoveItem): Uint8Array;
|
|
1738
1752
|
toProtoMsg(message: MsgRemoveItem): MsgRemoveItemProtoMsg;
|
|
@@ -1761,12 +1775,14 @@ export declare const MsgRemoveItemResponse: {
|
|
|
1761
1775
|
*/
|
|
1762
1776
|
export declare const MsgRemoveItems: {
|
|
1763
1777
|
typeUrl: string;
|
|
1778
|
+
aminoType: string;
|
|
1764
1779
|
encode(message: MsgRemoveItems, writer?: BinaryWriter): BinaryWriter;
|
|
1765
1780
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgRemoveItems;
|
|
1766
1781
|
fromPartial(object: DeepPartial<MsgRemoveItems>): MsgRemoveItems;
|
|
1767
1782
|
fromAmino(object: MsgRemoveItemsAmino): MsgRemoveItems;
|
|
1768
1783
|
toAmino(message: MsgRemoveItems): MsgRemoveItemsAmino;
|
|
1769
1784
|
fromAminoMsg(object: MsgRemoveItemsAminoMsg): MsgRemoveItems;
|
|
1785
|
+
toAminoMsg(message: MsgRemoveItems): MsgRemoveItemsAminoMsg;
|
|
1770
1786
|
fromProtoMsg(message: MsgRemoveItemsProtoMsg): MsgRemoveItems;
|
|
1771
1787
|
toProto(message: MsgRemoveItems): Uint8Array;
|
|
1772
1788
|
toProtoMsg(message: MsgRemoveItems): MsgRemoveItemsProtoMsg;
|
|
@@ -1795,12 +1811,14 @@ export declare const MsgRemoveItemsResponse: {
|
|
|
1795
1811
|
*/
|
|
1796
1812
|
export declare const MsgReorderItem: {
|
|
1797
1813
|
typeUrl: string;
|
|
1814
|
+
aminoType: string;
|
|
1798
1815
|
encode(message: MsgReorderItem, writer?: BinaryWriter): BinaryWriter;
|
|
1799
1816
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgReorderItem;
|
|
1800
1817
|
fromPartial(object: DeepPartial<MsgReorderItem>): MsgReorderItem;
|
|
1801
1818
|
fromAmino(object: MsgReorderItemAmino): MsgReorderItem;
|
|
1802
1819
|
toAmino(message: MsgReorderItem): MsgReorderItemAmino;
|
|
1803
1820
|
fromAminoMsg(object: MsgReorderItemAminoMsg): MsgReorderItem;
|
|
1821
|
+
toAminoMsg(message: MsgReorderItem): MsgReorderItemAminoMsg;
|
|
1804
1822
|
fromProtoMsg(message: MsgReorderItemProtoMsg): MsgReorderItem;
|
|
1805
1823
|
toProto(message: MsgReorderItem): Uint8Array;
|
|
1806
1824
|
toProtoMsg(message: MsgReorderItem): MsgReorderItemProtoMsg;
|
|
@@ -1829,12 +1847,14 @@ export declare const MsgReorderItemResponse: {
|
|
|
1829
1847
|
*/
|
|
1830
1848
|
export declare const MsgAddCollaborator: {
|
|
1831
1849
|
typeUrl: string;
|
|
1850
|
+
aminoType: string;
|
|
1832
1851
|
encode(message: MsgAddCollaborator, writer?: BinaryWriter): BinaryWriter;
|
|
1833
1852
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgAddCollaborator;
|
|
1834
1853
|
fromPartial(object: DeepPartial<MsgAddCollaborator>): MsgAddCollaborator;
|
|
1835
1854
|
fromAmino(object: MsgAddCollaboratorAmino): MsgAddCollaborator;
|
|
1836
1855
|
toAmino(message: MsgAddCollaborator): MsgAddCollaboratorAmino;
|
|
1837
1856
|
fromAminoMsg(object: MsgAddCollaboratorAminoMsg): MsgAddCollaborator;
|
|
1857
|
+
toAminoMsg(message: MsgAddCollaborator): MsgAddCollaboratorAminoMsg;
|
|
1838
1858
|
fromProtoMsg(message: MsgAddCollaboratorProtoMsg): MsgAddCollaborator;
|
|
1839
1859
|
toProto(message: MsgAddCollaborator): Uint8Array;
|
|
1840
1860
|
toProtoMsg(message: MsgAddCollaborator): MsgAddCollaboratorProtoMsg;
|
|
@@ -1863,12 +1883,14 @@ export declare const MsgAddCollaboratorResponse: {
|
|
|
1863
1883
|
*/
|
|
1864
1884
|
export declare const MsgRemoveCollaborator: {
|
|
1865
1885
|
typeUrl: string;
|
|
1886
|
+
aminoType: string;
|
|
1866
1887
|
encode(message: MsgRemoveCollaborator, writer?: BinaryWriter): BinaryWriter;
|
|
1867
1888
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgRemoveCollaborator;
|
|
1868
1889
|
fromPartial(object: DeepPartial<MsgRemoveCollaborator>): MsgRemoveCollaborator;
|
|
1869
1890
|
fromAmino(object: MsgRemoveCollaboratorAmino): MsgRemoveCollaborator;
|
|
1870
1891
|
toAmino(message: MsgRemoveCollaborator): MsgRemoveCollaboratorAmino;
|
|
1871
1892
|
fromAminoMsg(object: MsgRemoveCollaboratorAminoMsg): MsgRemoveCollaborator;
|
|
1893
|
+
toAminoMsg(message: MsgRemoveCollaborator): MsgRemoveCollaboratorAminoMsg;
|
|
1872
1894
|
fromProtoMsg(message: MsgRemoveCollaboratorProtoMsg): MsgRemoveCollaborator;
|
|
1873
1895
|
toProto(message: MsgRemoveCollaborator): Uint8Array;
|
|
1874
1896
|
toProtoMsg(message: MsgRemoveCollaborator): MsgRemoveCollaboratorProtoMsg;
|
|
@@ -1897,12 +1919,14 @@ export declare const MsgRemoveCollaboratorResponse: {
|
|
|
1897
1919
|
*/
|
|
1898
1920
|
export declare const MsgUpdateCollaboratorRole: {
|
|
1899
1921
|
typeUrl: string;
|
|
1922
|
+
aminoType: string;
|
|
1900
1923
|
encode(message: MsgUpdateCollaboratorRole, writer?: BinaryWriter): BinaryWriter;
|
|
1901
1924
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateCollaboratorRole;
|
|
1902
1925
|
fromPartial(object: DeepPartial<MsgUpdateCollaboratorRole>): MsgUpdateCollaboratorRole;
|
|
1903
1926
|
fromAmino(object: MsgUpdateCollaboratorRoleAmino): MsgUpdateCollaboratorRole;
|
|
1904
1927
|
toAmino(message: MsgUpdateCollaboratorRole): MsgUpdateCollaboratorRoleAmino;
|
|
1905
1928
|
fromAminoMsg(object: MsgUpdateCollaboratorRoleAminoMsg): MsgUpdateCollaboratorRole;
|
|
1929
|
+
toAminoMsg(message: MsgUpdateCollaboratorRole): MsgUpdateCollaboratorRoleAminoMsg;
|
|
1906
1930
|
fromProtoMsg(message: MsgUpdateCollaboratorRoleProtoMsg): MsgUpdateCollaboratorRole;
|
|
1907
1931
|
toProto(message: MsgUpdateCollaboratorRole): Uint8Array;
|
|
1908
1932
|
toProtoMsg(message: MsgUpdateCollaboratorRole): MsgUpdateCollaboratorRoleProtoMsg;
|
|
@@ -1931,12 +1955,14 @@ export declare const MsgUpdateCollaboratorRoleResponse: {
|
|
|
1931
1955
|
*/
|
|
1932
1956
|
export declare const MsgRateCollection: {
|
|
1933
1957
|
typeUrl: string;
|
|
1958
|
+
aminoType: string;
|
|
1934
1959
|
encode(message: MsgRateCollection, writer?: BinaryWriter): BinaryWriter;
|
|
1935
1960
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgRateCollection;
|
|
1936
1961
|
fromPartial(object: DeepPartial<MsgRateCollection>): MsgRateCollection;
|
|
1937
1962
|
fromAmino(object: MsgRateCollectionAmino): MsgRateCollection;
|
|
1938
1963
|
toAmino(message: MsgRateCollection): MsgRateCollectionAmino;
|
|
1939
1964
|
fromAminoMsg(object: MsgRateCollectionAminoMsg): MsgRateCollection;
|
|
1965
|
+
toAminoMsg(message: MsgRateCollection): MsgRateCollectionAminoMsg;
|
|
1940
1966
|
fromProtoMsg(message: MsgRateCollectionProtoMsg): MsgRateCollection;
|
|
1941
1967
|
toProto(message: MsgRateCollection): Uint8Array;
|
|
1942
1968
|
toProtoMsg(message: MsgRateCollection): MsgRateCollectionProtoMsg;
|
|
@@ -1965,12 +1991,14 @@ export declare const MsgRateCollectionResponse: {
|
|
|
1965
1991
|
*/
|
|
1966
1992
|
export declare const MsgChallengeReview: {
|
|
1967
1993
|
typeUrl: string;
|
|
1994
|
+
aminoType: string;
|
|
1968
1995
|
encode(message: MsgChallengeReview, writer?: BinaryWriter): BinaryWriter;
|
|
1969
1996
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgChallengeReview;
|
|
1970
1997
|
fromPartial(object: DeepPartial<MsgChallengeReview>): MsgChallengeReview;
|
|
1971
1998
|
fromAmino(object: MsgChallengeReviewAmino): MsgChallengeReview;
|
|
1972
1999
|
toAmino(message: MsgChallengeReview): MsgChallengeReviewAmino;
|
|
1973
2000
|
fromAminoMsg(object: MsgChallengeReviewAminoMsg): MsgChallengeReview;
|
|
2001
|
+
toAminoMsg(message: MsgChallengeReview): MsgChallengeReviewAminoMsg;
|
|
1974
2002
|
fromProtoMsg(message: MsgChallengeReviewProtoMsg): MsgChallengeReview;
|
|
1975
2003
|
toProto(message: MsgChallengeReview): Uint8Array;
|
|
1976
2004
|
toProtoMsg(message: MsgChallengeReview): MsgChallengeReviewProtoMsg;
|
|
@@ -1999,12 +2027,14 @@ export declare const MsgChallengeReviewResponse: {
|
|
|
1999
2027
|
*/
|
|
2000
2028
|
export declare const MsgRequestSponsorship: {
|
|
2001
2029
|
typeUrl: string;
|
|
2030
|
+
aminoType: string;
|
|
2002
2031
|
encode(message: MsgRequestSponsorship, writer?: BinaryWriter): BinaryWriter;
|
|
2003
2032
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgRequestSponsorship;
|
|
2004
2033
|
fromPartial(object: DeepPartial<MsgRequestSponsorship>): MsgRequestSponsorship;
|
|
2005
2034
|
fromAmino(object: MsgRequestSponsorshipAmino): MsgRequestSponsorship;
|
|
2006
2035
|
toAmino(message: MsgRequestSponsorship): MsgRequestSponsorshipAmino;
|
|
2007
2036
|
fromAminoMsg(object: MsgRequestSponsorshipAminoMsg): MsgRequestSponsorship;
|
|
2037
|
+
toAminoMsg(message: MsgRequestSponsorship): MsgRequestSponsorshipAminoMsg;
|
|
2008
2038
|
fromProtoMsg(message: MsgRequestSponsorshipProtoMsg): MsgRequestSponsorship;
|
|
2009
2039
|
toProto(message: MsgRequestSponsorship): Uint8Array;
|
|
2010
2040
|
toProtoMsg(message: MsgRequestSponsorship): MsgRequestSponsorshipProtoMsg;
|
|
@@ -2033,12 +2063,14 @@ export declare const MsgRequestSponsorshipResponse: {
|
|
|
2033
2063
|
*/
|
|
2034
2064
|
export declare const MsgCancelSponsorshipRequest: {
|
|
2035
2065
|
typeUrl: string;
|
|
2066
|
+
aminoType: string;
|
|
2036
2067
|
encode(message: MsgCancelSponsorshipRequest, writer?: BinaryWriter): BinaryWriter;
|
|
2037
2068
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgCancelSponsorshipRequest;
|
|
2038
2069
|
fromPartial(object: DeepPartial<MsgCancelSponsorshipRequest>): MsgCancelSponsorshipRequest;
|
|
2039
2070
|
fromAmino(object: MsgCancelSponsorshipRequestAmino): MsgCancelSponsorshipRequest;
|
|
2040
2071
|
toAmino(message: MsgCancelSponsorshipRequest): MsgCancelSponsorshipRequestAmino;
|
|
2041
2072
|
fromAminoMsg(object: MsgCancelSponsorshipRequestAminoMsg): MsgCancelSponsorshipRequest;
|
|
2073
|
+
toAminoMsg(message: MsgCancelSponsorshipRequest): MsgCancelSponsorshipRequestAminoMsg;
|
|
2042
2074
|
fromProtoMsg(message: MsgCancelSponsorshipRequestProtoMsg): MsgCancelSponsorshipRequest;
|
|
2043
2075
|
toProto(message: MsgCancelSponsorshipRequest): Uint8Array;
|
|
2044
2076
|
toProtoMsg(message: MsgCancelSponsorshipRequest): MsgCancelSponsorshipRequestProtoMsg;
|
|
@@ -2067,12 +2099,14 @@ export declare const MsgCancelSponsorshipRequestResponse: {
|
|
|
2067
2099
|
*/
|
|
2068
2100
|
export declare const MsgSponsorCollection: {
|
|
2069
2101
|
typeUrl: string;
|
|
2102
|
+
aminoType: string;
|
|
2070
2103
|
encode(message: MsgSponsorCollection, writer?: BinaryWriter): BinaryWriter;
|
|
2071
2104
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgSponsorCollection;
|
|
2072
2105
|
fromPartial(object: DeepPartial<MsgSponsorCollection>): MsgSponsorCollection;
|
|
2073
2106
|
fromAmino(object: MsgSponsorCollectionAmino): MsgSponsorCollection;
|
|
2074
2107
|
toAmino(message: MsgSponsorCollection): MsgSponsorCollectionAmino;
|
|
2075
2108
|
fromAminoMsg(object: MsgSponsorCollectionAminoMsg): MsgSponsorCollection;
|
|
2109
|
+
toAminoMsg(message: MsgSponsorCollection): MsgSponsorCollectionAminoMsg;
|
|
2076
2110
|
fromProtoMsg(message: MsgSponsorCollectionProtoMsg): MsgSponsorCollection;
|
|
2077
2111
|
toProto(message: MsgSponsorCollection): Uint8Array;
|
|
2078
2112
|
toProtoMsg(message: MsgSponsorCollection): MsgSponsorCollectionProtoMsg;
|
|
@@ -2138,12 +2172,14 @@ export declare const MsgUpdateOperationalParamsResponse: {
|
|
|
2138
2172
|
*/
|
|
2139
2173
|
export declare const MsgUpvoteContent: {
|
|
2140
2174
|
typeUrl: string;
|
|
2175
|
+
aminoType: string;
|
|
2141
2176
|
encode(message: MsgUpvoteContent, writer?: BinaryWriter): BinaryWriter;
|
|
2142
2177
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpvoteContent;
|
|
2143
2178
|
fromPartial(object: DeepPartial<MsgUpvoteContent>): MsgUpvoteContent;
|
|
2144
2179
|
fromAmino(object: MsgUpvoteContentAmino): MsgUpvoteContent;
|
|
2145
2180
|
toAmino(message: MsgUpvoteContent): MsgUpvoteContentAmino;
|
|
2146
2181
|
fromAminoMsg(object: MsgUpvoteContentAminoMsg): MsgUpvoteContent;
|
|
2182
|
+
toAminoMsg(message: MsgUpvoteContent): MsgUpvoteContentAminoMsg;
|
|
2147
2183
|
fromProtoMsg(message: MsgUpvoteContentProtoMsg): MsgUpvoteContent;
|
|
2148
2184
|
toProto(message: MsgUpvoteContent): Uint8Array;
|
|
2149
2185
|
toProtoMsg(message: MsgUpvoteContent): MsgUpvoteContentProtoMsg;
|
|
@@ -2174,12 +2210,14 @@ export declare const MsgUpvoteContentResponse: {
|
|
|
2174
2210
|
*/
|
|
2175
2211
|
export declare const MsgDownvoteContent: {
|
|
2176
2212
|
typeUrl: string;
|
|
2213
|
+
aminoType: string;
|
|
2177
2214
|
encode(message: MsgDownvoteContent, writer?: BinaryWriter): BinaryWriter;
|
|
2178
2215
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgDownvoteContent;
|
|
2179
2216
|
fromPartial(object: DeepPartial<MsgDownvoteContent>): MsgDownvoteContent;
|
|
2180
2217
|
fromAmino(object: MsgDownvoteContentAmino): MsgDownvoteContent;
|
|
2181
2218
|
toAmino(message: MsgDownvoteContent): MsgDownvoteContentAmino;
|
|
2182
2219
|
fromAminoMsg(object: MsgDownvoteContentAminoMsg): MsgDownvoteContent;
|
|
2220
|
+
toAminoMsg(message: MsgDownvoteContent): MsgDownvoteContentAminoMsg;
|
|
2183
2221
|
fromProtoMsg(message: MsgDownvoteContentProtoMsg): MsgDownvoteContent;
|
|
2184
2222
|
toProto(message: MsgDownvoteContent): Uint8Array;
|
|
2185
2223
|
toProtoMsg(message: MsgDownvoteContent): MsgDownvoteContentProtoMsg;
|
|
@@ -2210,12 +2248,14 @@ export declare const MsgDownvoteContentResponse: {
|
|
|
2210
2248
|
*/
|
|
2211
2249
|
export declare const MsgFlagContent: {
|
|
2212
2250
|
typeUrl: string;
|
|
2251
|
+
aminoType: string;
|
|
2213
2252
|
encode(message: MsgFlagContent, writer?: BinaryWriter): BinaryWriter;
|
|
2214
2253
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgFlagContent;
|
|
2215
2254
|
fromPartial(object: DeepPartial<MsgFlagContent>): MsgFlagContent;
|
|
2216
2255
|
fromAmino(object: MsgFlagContentAmino): MsgFlagContent;
|
|
2217
2256
|
toAmino(message: MsgFlagContent): MsgFlagContentAmino;
|
|
2218
2257
|
fromAminoMsg(object: MsgFlagContentAminoMsg): MsgFlagContent;
|
|
2258
|
+
toAminoMsg(message: MsgFlagContent): MsgFlagContentAminoMsg;
|
|
2219
2259
|
fromProtoMsg(message: MsgFlagContentProtoMsg): MsgFlagContent;
|
|
2220
2260
|
toProto(message: MsgFlagContent): Uint8Array;
|
|
2221
2261
|
toProtoMsg(message: MsgFlagContent): MsgFlagContentProtoMsg;
|
|
@@ -2246,12 +2286,14 @@ export declare const MsgFlagContentResponse: {
|
|
|
2246
2286
|
*/
|
|
2247
2287
|
export declare const MsgHideContent: {
|
|
2248
2288
|
typeUrl: string;
|
|
2289
|
+
aminoType: string;
|
|
2249
2290
|
encode(message: MsgHideContent, writer?: BinaryWriter): BinaryWriter;
|
|
2250
2291
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgHideContent;
|
|
2251
2292
|
fromPartial(object: DeepPartial<MsgHideContent>): MsgHideContent;
|
|
2252
2293
|
fromAmino(object: MsgHideContentAmino): MsgHideContent;
|
|
2253
2294
|
toAmino(message: MsgHideContent): MsgHideContentAmino;
|
|
2254
2295
|
fromAminoMsg(object: MsgHideContentAminoMsg): MsgHideContent;
|
|
2296
|
+
toAminoMsg(message: MsgHideContent): MsgHideContentAminoMsg;
|
|
2255
2297
|
fromProtoMsg(message: MsgHideContentProtoMsg): MsgHideContent;
|
|
2256
2298
|
toProto(message: MsgHideContent): Uint8Array;
|
|
2257
2299
|
toProtoMsg(message: MsgHideContent): MsgHideContentProtoMsg;
|
|
@@ -2282,12 +2324,14 @@ export declare const MsgHideContentResponse: {
|
|
|
2282
2324
|
*/
|
|
2283
2325
|
export declare const MsgAppealHide: {
|
|
2284
2326
|
typeUrl: string;
|
|
2327
|
+
aminoType: string;
|
|
2285
2328
|
encode(message: MsgAppealHide, writer?: BinaryWriter): BinaryWriter;
|
|
2286
2329
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgAppealHide;
|
|
2287
2330
|
fromPartial(object: DeepPartial<MsgAppealHide>): MsgAppealHide;
|
|
2288
2331
|
fromAmino(object: MsgAppealHideAmino): MsgAppealHide;
|
|
2289
2332
|
toAmino(message: MsgAppealHide): MsgAppealHideAmino;
|
|
2290
2333
|
fromAminoMsg(object: MsgAppealHideAminoMsg): MsgAppealHide;
|
|
2334
|
+
toAminoMsg(message: MsgAppealHide): MsgAppealHideAminoMsg;
|
|
2291
2335
|
fromProtoMsg(message: MsgAppealHideProtoMsg): MsgAppealHide;
|
|
2292
2336
|
toProto(message: MsgAppealHide): Uint8Array;
|
|
2293
2337
|
toProtoMsg(message: MsgAppealHide): MsgAppealHideProtoMsg;
|
|
@@ -2318,12 +2362,14 @@ export declare const MsgAppealHideResponse: {
|
|
|
2318
2362
|
*/
|
|
2319
2363
|
export declare const MsgEndorseCollection: {
|
|
2320
2364
|
typeUrl: string;
|
|
2365
|
+
aminoType: string;
|
|
2321
2366
|
encode(message: MsgEndorseCollection, writer?: BinaryWriter): BinaryWriter;
|
|
2322
2367
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgEndorseCollection;
|
|
2323
2368
|
fromPartial(object: DeepPartial<MsgEndorseCollection>): MsgEndorseCollection;
|
|
2324
2369
|
fromAmino(object: MsgEndorseCollectionAmino): MsgEndorseCollection;
|
|
2325
2370
|
toAmino(message: MsgEndorseCollection): MsgEndorseCollectionAmino;
|
|
2326
2371
|
fromAminoMsg(object: MsgEndorseCollectionAminoMsg): MsgEndorseCollection;
|
|
2372
|
+
toAminoMsg(message: MsgEndorseCollection): MsgEndorseCollectionAminoMsg;
|
|
2327
2373
|
fromProtoMsg(message: MsgEndorseCollectionProtoMsg): MsgEndorseCollection;
|
|
2328
2374
|
toProto(message: MsgEndorseCollection): Uint8Array;
|
|
2329
2375
|
toProtoMsg(message: MsgEndorseCollection): MsgEndorseCollectionProtoMsg;
|
|
@@ -2354,12 +2400,14 @@ export declare const MsgEndorseCollectionResponse: {
|
|
|
2354
2400
|
*/
|
|
2355
2401
|
export declare const MsgSetSeekingEndorsement: {
|
|
2356
2402
|
typeUrl: string;
|
|
2403
|
+
aminoType: string;
|
|
2357
2404
|
encode(message: MsgSetSeekingEndorsement, writer?: BinaryWriter): BinaryWriter;
|
|
2358
2405
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgSetSeekingEndorsement;
|
|
2359
2406
|
fromPartial(object: DeepPartial<MsgSetSeekingEndorsement>): MsgSetSeekingEndorsement;
|
|
2360
2407
|
fromAmino(object: MsgSetSeekingEndorsementAmino): MsgSetSeekingEndorsement;
|
|
2361
2408
|
toAmino(message: MsgSetSeekingEndorsement): MsgSetSeekingEndorsementAmino;
|
|
2362
2409
|
fromAminoMsg(object: MsgSetSeekingEndorsementAminoMsg): MsgSetSeekingEndorsement;
|
|
2410
|
+
toAminoMsg(message: MsgSetSeekingEndorsement): MsgSetSeekingEndorsementAminoMsg;
|
|
2363
2411
|
fromProtoMsg(message: MsgSetSeekingEndorsementProtoMsg): MsgSetSeekingEndorsement;
|
|
2364
2412
|
toProto(message: MsgSetSeekingEndorsement): Uint8Array;
|
|
2365
2413
|
toProtoMsg(message: MsgSetSeekingEndorsement): MsgSetSeekingEndorsementProtoMsg;
|
|
@@ -2390,12 +2438,14 @@ export declare const MsgSetSeekingEndorsementResponse: {
|
|
|
2390
2438
|
*/
|
|
2391
2439
|
export declare const MsgPinCollection: {
|
|
2392
2440
|
typeUrl: string;
|
|
2441
|
+
aminoType: string;
|
|
2393
2442
|
encode(message: MsgPinCollection, writer?: BinaryWriter): BinaryWriter;
|
|
2394
2443
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgPinCollection;
|
|
2395
2444
|
fromPartial(object: DeepPartial<MsgPinCollection>): MsgPinCollection;
|
|
2396
2445
|
fromAmino(object: MsgPinCollectionAmino): MsgPinCollection;
|
|
2397
2446
|
toAmino(message: MsgPinCollection): MsgPinCollectionAmino;
|
|
2398
2447
|
fromAminoMsg(object: MsgPinCollectionAminoMsg): MsgPinCollection;
|
|
2448
|
+
toAminoMsg(message: MsgPinCollection): MsgPinCollectionAminoMsg;
|
|
2399
2449
|
fromProtoMsg(message: MsgPinCollectionProtoMsg): MsgPinCollection;
|
|
2400
2450
|
toProto(message: MsgPinCollection): Uint8Array;
|
|
2401
2451
|
toProtoMsg(message: MsgPinCollection): MsgPinCollectionProtoMsg;
|