@sparkdreamnft/sparkdreamjs 0.0.11 → 0.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/sparkdream/blog/v1/tx.amino.js +14 -14
- package/esm/sparkdream/blog/v1/tx.js +98 -0
- package/esm/sparkdream/collect/v1/tx.amino.js +25 -25
- package/esm/sparkdream/collect/v1/tx.js +175 -0
- package/esm/sparkdream/commons/v1/query.js +379 -1
- package/esm/sparkdream/commons/v1/query.lcd.js +21 -0
- package/esm/sparkdream/commons/v1/query.rpc.Query.js +24 -1
- package/esm/sparkdream/commons/v1/tx.amino.js +13 -13
- package/esm/sparkdream/commons/v1/tx.js +91 -0
- package/esm/sparkdream/federation/v1/tx.amino.js +24 -24
- package/esm/sparkdream/federation/v1/tx.js +168 -0
- package/esm/sparkdream/forum/v1/tx.amino.js +33 -33
- package/esm/sparkdream/forum/v1/tx.js +231 -0
- package/esm/sparkdream/futarchy/v1/tx.amino.js +4 -4
- package/esm/sparkdream/futarchy/v1/tx.js +28 -0
- package/esm/sparkdream/name/v1/name_record.js +33 -2
- package/esm/sparkdream/name/v1/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 +3 -3
- package/esm/sparkdream/session/v1/tx.js +21 -0
- package/esm/sparkdream/shield/v1/tx.amino.js +4 -4
- package/esm/sparkdream/shield/v1/tx.js +28 -0
- package/package.json +1 -1
- package/sparkdream/blog/v1/tx.amino.js +14 -14
- package/sparkdream/blog/v1/tx.d.ts +42 -14
- package/sparkdream/blog/v1/tx.js +98 -0
- package/sparkdream/bundle.d.ts +653 -0
- package/sparkdream/client.d.ts +15 -0
- package/sparkdream/collect/v1/tx.amino.js +25 -25
- package/sparkdream/collect/v1/tx.d.ts +75 -25
- package/sparkdream/collect/v1/tx.js +175 -0
- package/sparkdream/commons/v1/query.d.ts +243 -1
- package/sparkdream/commons/v1/query.js +379 -1
- package/sparkdream/commons/v1/query.lcd.d.ts +3 -1
- package/sparkdream/commons/v1/query.lcd.js +21 -0
- package/sparkdream/commons/v1/query.rpc.Query.d.ts +16 -1
- package/sparkdream/commons/v1/query.rpc.Query.js +23 -0
- package/sparkdream/commons/v1/tx.amino.js +13 -13
- package/sparkdream/commons/v1/tx.d.ts +39 -13
- package/sparkdream/commons/v1/tx.js +91 -0
- package/sparkdream/federation/v1/tx.amino.js +24 -24
- package/sparkdream/federation/v1/tx.d.ts +72 -24
- package/sparkdream/federation/v1/tx.js +168 -0
- package/sparkdream/forum/v1/tx.amino.js +33 -33
- package/sparkdream/forum/v1/tx.d.ts +99 -33
- package/sparkdream/forum/v1/tx.js +231 -0
- package/sparkdream/futarchy/v1/tx.amino.js +4 -4
- package/sparkdream/futarchy/v1/tx.d.ts +12 -4
- package/sparkdream/futarchy/v1/tx.js +28 -0
- package/sparkdream/name/v1/name_record.d.ts +46 -3
- package/sparkdream/name/v1/name_record.js +33 -2
- package/sparkdream/name/v1/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.js +3 -3
- package/sparkdream/session/v1/tx.d.ts +9 -3
- package/sparkdream/session/v1/tx.js +21 -0
- package/sparkdream/shield/v1/tx.amino.js +4 -4
- package/sparkdream/shield/v1/tx.d.ts +12 -4
- package/sparkdream/shield/v1/tx.js +28 -0
|
@@ -158,7 +158,7 @@ export interface MsgSetDisplayNameAmino {
|
|
|
158
158
|
name?: string;
|
|
159
159
|
}
|
|
160
160
|
export interface MsgSetDisplayNameAminoMsg {
|
|
161
|
-
type: "/
|
|
161
|
+
type: "sparkdream/x/season/MsgSetDisplayName";
|
|
162
162
|
value: MsgSetDisplayNameAmino;
|
|
163
163
|
}
|
|
164
164
|
/**
|
|
@@ -210,7 +210,7 @@ export interface MsgSetUsernameAmino {
|
|
|
210
210
|
username?: string;
|
|
211
211
|
}
|
|
212
212
|
export interface MsgSetUsernameAminoMsg {
|
|
213
|
-
type: "/
|
|
213
|
+
type: "sparkdream/x/season/MsgSetUsername";
|
|
214
214
|
value: MsgSetUsernameAmino;
|
|
215
215
|
}
|
|
216
216
|
/**
|
|
@@ -262,7 +262,7 @@ export interface MsgSetDisplayTitleAmino {
|
|
|
262
262
|
title_id?: string;
|
|
263
263
|
}
|
|
264
264
|
export interface MsgSetDisplayTitleAminoMsg {
|
|
265
|
-
type: "/
|
|
265
|
+
type: "sparkdream/x/season/MsgSetDisplayTitle";
|
|
266
266
|
value: MsgSetDisplayTitleAmino;
|
|
267
267
|
}
|
|
268
268
|
/**
|
|
@@ -318,7 +318,7 @@ export interface MsgCreateGuildAmino {
|
|
|
318
318
|
invite_only?: boolean;
|
|
319
319
|
}
|
|
320
320
|
export interface MsgCreateGuildAminoMsg {
|
|
321
|
-
type: "/
|
|
321
|
+
type: "sparkdream/x/season/MsgCreateGuild";
|
|
322
322
|
value: MsgCreateGuildAmino;
|
|
323
323
|
}
|
|
324
324
|
/**
|
|
@@ -370,7 +370,7 @@ export interface MsgJoinGuildAmino {
|
|
|
370
370
|
guild_id?: string;
|
|
371
371
|
}
|
|
372
372
|
export interface MsgJoinGuildAminoMsg {
|
|
373
|
-
type: "/
|
|
373
|
+
type: "sparkdream/x/season/MsgJoinGuild";
|
|
374
374
|
value: MsgJoinGuildAmino;
|
|
375
375
|
}
|
|
376
376
|
/**
|
|
@@ -420,7 +420,7 @@ export interface MsgLeaveGuildAmino {
|
|
|
420
420
|
creator?: string;
|
|
421
421
|
}
|
|
422
422
|
export interface MsgLeaveGuildAminoMsg {
|
|
423
|
-
type: "/
|
|
423
|
+
type: "sparkdream/x/season/MsgLeaveGuild";
|
|
424
424
|
value: MsgLeaveGuildAmino;
|
|
425
425
|
}
|
|
426
426
|
/**
|
|
@@ -474,7 +474,7 @@ export interface MsgTransferGuildFounderAmino {
|
|
|
474
474
|
new_founder?: string;
|
|
475
475
|
}
|
|
476
476
|
export interface MsgTransferGuildFounderAminoMsg {
|
|
477
|
-
type: "/
|
|
477
|
+
type: "sparkdream/x/season/MsgTransferGuildFounder";
|
|
478
478
|
value: MsgTransferGuildFounderAmino;
|
|
479
479
|
}
|
|
480
480
|
/**
|
|
@@ -526,7 +526,7 @@ export interface MsgDissolveGuildAmino {
|
|
|
526
526
|
guild_id?: string;
|
|
527
527
|
}
|
|
528
528
|
export interface MsgDissolveGuildAminoMsg {
|
|
529
|
-
type: "/
|
|
529
|
+
type: "sparkdream/x/season/MsgDissolveGuild";
|
|
530
530
|
value: MsgDissolveGuildAmino;
|
|
531
531
|
}
|
|
532
532
|
/**
|
|
@@ -580,7 +580,7 @@ export interface MsgPromoteToOfficerAmino {
|
|
|
580
580
|
member?: string;
|
|
581
581
|
}
|
|
582
582
|
export interface MsgPromoteToOfficerAminoMsg {
|
|
583
|
-
type: "/
|
|
583
|
+
type: "sparkdream/x/season/MsgPromoteToOfficer";
|
|
584
584
|
value: MsgPromoteToOfficerAmino;
|
|
585
585
|
}
|
|
586
586
|
/**
|
|
@@ -634,7 +634,7 @@ export interface MsgDemoteOfficerAmino {
|
|
|
634
634
|
officer?: string;
|
|
635
635
|
}
|
|
636
636
|
export interface MsgDemoteOfficerAminoMsg {
|
|
637
|
-
type: "/
|
|
637
|
+
type: "sparkdream/x/season/MsgDemoteOfficer";
|
|
638
638
|
value: MsgDemoteOfficerAmino;
|
|
639
639
|
}
|
|
640
640
|
/**
|
|
@@ -688,7 +688,7 @@ export interface MsgInviteToGuildAmino {
|
|
|
688
688
|
invitee?: string;
|
|
689
689
|
}
|
|
690
690
|
export interface MsgInviteToGuildAminoMsg {
|
|
691
|
-
type: "/
|
|
691
|
+
type: "sparkdream/x/season/MsgInviteToGuild";
|
|
692
692
|
value: MsgInviteToGuildAmino;
|
|
693
693
|
}
|
|
694
694
|
/**
|
|
@@ -740,7 +740,7 @@ export interface MsgAcceptGuildInviteAmino {
|
|
|
740
740
|
guild_id?: string;
|
|
741
741
|
}
|
|
742
742
|
export interface MsgAcceptGuildInviteAminoMsg {
|
|
743
|
-
type: "/
|
|
743
|
+
type: "sparkdream/x/season/MsgAcceptGuildInvite";
|
|
744
744
|
value: MsgAcceptGuildInviteAmino;
|
|
745
745
|
}
|
|
746
746
|
/**
|
|
@@ -794,7 +794,7 @@ export interface MsgRevokeGuildInviteAmino {
|
|
|
794
794
|
invitee?: string;
|
|
795
795
|
}
|
|
796
796
|
export interface MsgRevokeGuildInviteAminoMsg {
|
|
797
|
-
type: "/
|
|
797
|
+
type: "sparkdream/x/season/MsgRevokeGuildInvite";
|
|
798
798
|
value: MsgRevokeGuildInviteAmino;
|
|
799
799
|
}
|
|
800
800
|
/**
|
|
@@ -848,7 +848,7 @@ export interface MsgSetGuildInviteOnlyAmino {
|
|
|
848
848
|
invite_only?: boolean;
|
|
849
849
|
}
|
|
850
850
|
export interface MsgSetGuildInviteOnlyAminoMsg {
|
|
851
|
-
type: "/
|
|
851
|
+
type: "sparkdream/x/season/MsgSetGuildInviteOnly";
|
|
852
852
|
value: MsgSetGuildInviteOnlyAmino;
|
|
853
853
|
}
|
|
854
854
|
/**
|
|
@@ -902,7 +902,7 @@ export interface MsgUpdateGuildDescriptionAmino {
|
|
|
902
902
|
description?: string;
|
|
903
903
|
}
|
|
904
904
|
export interface MsgUpdateGuildDescriptionAminoMsg {
|
|
905
|
-
type: "/
|
|
905
|
+
type: "sparkdream/x/season/MsgUpdateGuildDescription";
|
|
906
906
|
value: MsgUpdateGuildDescriptionAmino;
|
|
907
907
|
}
|
|
908
908
|
/**
|
|
@@ -958,7 +958,7 @@ export interface MsgKickFromGuildAmino {
|
|
|
958
958
|
reason?: string;
|
|
959
959
|
}
|
|
960
960
|
export interface MsgKickFromGuildAminoMsg {
|
|
961
|
-
type: "/
|
|
961
|
+
type: "sparkdream/x/season/MsgKickFromGuild";
|
|
962
962
|
value: MsgKickFromGuildAmino;
|
|
963
963
|
}
|
|
964
964
|
/**
|
|
@@ -1010,7 +1010,7 @@ export interface MsgClaimGuildFounderAmino {
|
|
|
1010
1010
|
guild_id?: string;
|
|
1011
1011
|
}
|
|
1012
1012
|
export interface MsgClaimGuildFounderAminoMsg {
|
|
1013
|
-
type: "/
|
|
1013
|
+
type: "sparkdream/x/season/MsgClaimGuildFounder";
|
|
1014
1014
|
value: MsgClaimGuildFounderAmino;
|
|
1015
1015
|
}
|
|
1016
1016
|
/**
|
|
@@ -1062,7 +1062,7 @@ export interface MsgStartQuestAmino {
|
|
|
1062
1062
|
quest_id?: string;
|
|
1063
1063
|
}
|
|
1064
1064
|
export interface MsgStartQuestAminoMsg {
|
|
1065
|
-
type: "/
|
|
1065
|
+
type: "sparkdream/x/season/MsgStartQuest";
|
|
1066
1066
|
value: MsgStartQuestAmino;
|
|
1067
1067
|
}
|
|
1068
1068
|
/**
|
|
@@ -1114,7 +1114,7 @@ export interface MsgClaimQuestRewardAmino {
|
|
|
1114
1114
|
quest_id?: string;
|
|
1115
1115
|
}
|
|
1116
1116
|
export interface MsgClaimQuestRewardAminoMsg {
|
|
1117
|
-
type: "/
|
|
1117
|
+
type: "sparkdream/x/season/MsgClaimQuestReward";
|
|
1118
1118
|
value: MsgClaimQuestRewardAmino;
|
|
1119
1119
|
}
|
|
1120
1120
|
/**
|
|
@@ -1166,7 +1166,7 @@ export interface MsgAbandonQuestAmino {
|
|
|
1166
1166
|
quest_id?: string;
|
|
1167
1167
|
}
|
|
1168
1168
|
export interface MsgAbandonQuestAminoMsg {
|
|
1169
|
-
type: "/
|
|
1169
|
+
type: "sparkdream/x/season/MsgAbandonQuest";
|
|
1170
1170
|
value: MsgAbandonQuestAmino;
|
|
1171
1171
|
}
|
|
1172
1172
|
/**
|
|
@@ -1648,7 +1648,7 @@ export interface MsgReportDisplayNameAmino {
|
|
|
1648
1648
|
reason?: string;
|
|
1649
1649
|
}
|
|
1650
1650
|
export interface MsgReportDisplayNameAminoMsg {
|
|
1651
|
-
type: "/
|
|
1651
|
+
type: "sparkdream/x/season/MsgReportDisplayName";
|
|
1652
1652
|
value: MsgReportDisplayNameAmino;
|
|
1653
1653
|
}
|
|
1654
1654
|
/**
|
|
@@ -1700,7 +1700,7 @@ export interface MsgAppealDisplayNameModerationAmino {
|
|
|
1700
1700
|
appeal_reason?: string;
|
|
1701
1701
|
}
|
|
1702
1702
|
export interface MsgAppealDisplayNameModerationAminoMsg {
|
|
1703
|
-
type: "/
|
|
1703
|
+
type: "sparkdream/x/season/MsgAppealDisplayNameModeration";
|
|
1704
1704
|
value: MsgAppealDisplayNameModerationAmino;
|
|
1705
1705
|
}
|
|
1706
1706
|
/**
|
|
@@ -2384,7 +2384,7 @@ export interface MsgNominateAmino {
|
|
|
2384
2384
|
rationale?: string;
|
|
2385
2385
|
}
|
|
2386
2386
|
export interface MsgNominateAminoMsg {
|
|
2387
|
-
type: "/
|
|
2387
|
+
type: "sparkdream/x/season/MsgNominate";
|
|
2388
2388
|
value: MsgNominateAmino;
|
|
2389
2389
|
}
|
|
2390
2390
|
/**
|
|
@@ -2446,7 +2446,7 @@ export interface MsgStakeNominationAmino {
|
|
|
2446
2446
|
amount?: string;
|
|
2447
2447
|
}
|
|
2448
2448
|
export interface MsgStakeNominationAminoMsg {
|
|
2449
|
-
type: "/
|
|
2449
|
+
type: "sparkdream/x/season/MsgStakeNomination";
|
|
2450
2450
|
value: MsgStakeNominationAmino;
|
|
2451
2451
|
}
|
|
2452
2452
|
/**
|
|
@@ -2498,7 +2498,7 @@ export interface MsgUnstakeNominationAmino {
|
|
|
2498
2498
|
nomination_id?: string;
|
|
2499
2499
|
}
|
|
2500
2500
|
export interface MsgUnstakeNominationAminoMsg {
|
|
2501
|
-
type: "/
|
|
2501
|
+
type: "sparkdream/x/season/MsgUnstakeNomination";
|
|
2502
2502
|
value: MsgUnstakeNominationAmino;
|
|
2503
2503
|
}
|
|
2504
2504
|
/**
|
|
@@ -2611,12 +2611,14 @@ export declare const MsgUpdateOperationalParamsResponse: {
|
|
|
2611
2611
|
*/
|
|
2612
2612
|
export declare const MsgSetDisplayName: {
|
|
2613
2613
|
typeUrl: string;
|
|
2614
|
+
aminoType: string;
|
|
2614
2615
|
encode(message: MsgSetDisplayName, writer?: BinaryWriter): BinaryWriter;
|
|
2615
2616
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgSetDisplayName;
|
|
2616
2617
|
fromPartial(object: DeepPartial<MsgSetDisplayName>): MsgSetDisplayName;
|
|
2617
2618
|
fromAmino(object: MsgSetDisplayNameAmino): MsgSetDisplayName;
|
|
2618
2619
|
toAmino(message: MsgSetDisplayName): MsgSetDisplayNameAmino;
|
|
2619
2620
|
fromAminoMsg(object: MsgSetDisplayNameAminoMsg): MsgSetDisplayName;
|
|
2621
|
+
toAminoMsg(message: MsgSetDisplayName): MsgSetDisplayNameAminoMsg;
|
|
2620
2622
|
fromProtoMsg(message: MsgSetDisplayNameProtoMsg): MsgSetDisplayName;
|
|
2621
2623
|
toProto(message: MsgSetDisplayName): Uint8Array;
|
|
2622
2624
|
toProtoMsg(message: MsgSetDisplayName): MsgSetDisplayNameProtoMsg;
|
|
@@ -2647,12 +2649,14 @@ export declare const MsgSetDisplayNameResponse: {
|
|
|
2647
2649
|
*/
|
|
2648
2650
|
export declare const MsgSetUsername: {
|
|
2649
2651
|
typeUrl: string;
|
|
2652
|
+
aminoType: string;
|
|
2650
2653
|
encode(message: MsgSetUsername, writer?: BinaryWriter): BinaryWriter;
|
|
2651
2654
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgSetUsername;
|
|
2652
2655
|
fromPartial(object: DeepPartial<MsgSetUsername>): MsgSetUsername;
|
|
2653
2656
|
fromAmino(object: MsgSetUsernameAmino): MsgSetUsername;
|
|
2654
2657
|
toAmino(message: MsgSetUsername): MsgSetUsernameAmino;
|
|
2655
2658
|
fromAminoMsg(object: MsgSetUsernameAminoMsg): MsgSetUsername;
|
|
2659
|
+
toAminoMsg(message: MsgSetUsername): MsgSetUsernameAminoMsg;
|
|
2656
2660
|
fromProtoMsg(message: MsgSetUsernameProtoMsg): MsgSetUsername;
|
|
2657
2661
|
toProto(message: MsgSetUsername): Uint8Array;
|
|
2658
2662
|
toProtoMsg(message: MsgSetUsername): MsgSetUsernameProtoMsg;
|
|
@@ -2683,12 +2687,14 @@ export declare const MsgSetUsernameResponse: {
|
|
|
2683
2687
|
*/
|
|
2684
2688
|
export declare const MsgSetDisplayTitle: {
|
|
2685
2689
|
typeUrl: string;
|
|
2690
|
+
aminoType: string;
|
|
2686
2691
|
encode(message: MsgSetDisplayTitle, writer?: BinaryWriter): BinaryWriter;
|
|
2687
2692
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgSetDisplayTitle;
|
|
2688
2693
|
fromPartial(object: DeepPartial<MsgSetDisplayTitle>): MsgSetDisplayTitle;
|
|
2689
2694
|
fromAmino(object: MsgSetDisplayTitleAmino): MsgSetDisplayTitle;
|
|
2690
2695
|
toAmino(message: MsgSetDisplayTitle): MsgSetDisplayTitleAmino;
|
|
2691
2696
|
fromAminoMsg(object: MsgSetDisplayTitleAminoMsg): MsgSetDisplayTitle;
|
|
2697
|
+
toAminoMsg(message: MsgSetDisplayTitle): MsgSetDisplayTitleAminoMsg;
|
|
2692
2698
|
fromProtoMsg(message: MsgSetDisplayTitleProtoMsg): MsgSetDisplayTitle;
|
|
2693
2699
|
toProto(message: MsgSetDisplayTitle): Uint8Array;
|
|
2694
2700
|
toProtoMsg(message: MsgSetDisplayTitle): MsgSetDisplayTitleProtoMsg;
|
|
@@ -2719,12 +2725,14 @@ export declare const MsgSetDisplayTitleResponse: {
|
|
|
2719
2725
|
*/
|
|
2720
2726
|
export declare const MsgCreateGuild: {
|
|
2721
2727
|
typeUrl: string;
|
|
2728
|
+
aminoType: string;
|
|
2722
2729
|
encode(message: MsgCreateGuild, writer?: BinaryWriter): BinaryWriter;
|
|
2723
2730
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateGuild;
|
|
2724
2731
|
fromPartial(object: DeepPartial<MsgCreateGuild>): MsgCreateGuild;
|
|
2725
2732
|
fromAmino(object: MsgCreateGuildAmino): MsgCreateGuild;
|
|
2726
2733
|
toAmino(message: MsgCreateGuild): MsgCreateGuildAmino;
|
|
2727
2734
|
fromAminoMsg(object: MsgCreateGuildAminoMsg): MsgCreateGuild;
|
|
2735
|
+
toAminoMsg(message: MsgCreateGuild): MsgCreateGuildAminoMsg;
|
|
2728
2736
|
fromProtoMsg(message: MsgCreateGuildProtoMsg): MsgCreateGuild;
|
|
2729
2737
|
toProto(message: MsgCreateGuild): Uint8Array;
|
|
2730
2738
|
toProtoMsg(message: MsgCreateGuild): MsgCreateGuildProtoMsg;
|
|
@@ -2755,12 +2763,14 @@ export declare const MsgCreateGuildResponse: {
|
|
|
2755
2763
|
*/
|
|
2756
2764
|
export declare const MsgJoinGuild: {
|
|
2757
2765
|
typeUrl: string;
|
|
2766
|
+
aminoType: string;
|
|
2758
2767
|
encode(message: MsgJoinGuild, writer?: BinaryWriter): BinaryWriter;
|
|
2759
2768
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgJoinGuild;
|
|
2760
2769
|
fromPartial(object: DeepPartial<MsgJoinGuild>): MsgJoinGuild;
|
|
2761
2770
|
fromAmino(object: MsgJoinGuildAmino): MsgJoinGuild;
|
|
2762
2771
|
toAmino(message: MsgJoinGuild): MsgJoinGuildAmino;
|
|
2763
2772
|
fromAminoMsg(object: MsgJoinGuildAminoMsg): MsgJoinGuild;
|
|
2773
|
+
toAminoMsg(message: MsgJoinGuild): MsgJoinGuildAminoMsg;
|
|
2764
2774
|
fromProtoMsg(message: MsgJoinGuildProtoMsg): MsgJoinGuild;
|
|
2765
2775
|
toProto(message: MsgJoinGuild): Uint8Array;
|
|
2766
2776
|
toProtoMsg(message: MsgJoinGuild): MsgJoinGuildProtoMsg;
|
|
@@ -2791,12 +2801,14 @@ export declare const MsgJoinGuildResponse: {
|
|
|
2791
2801
|
*/
|
|
2792
2802
|
export declare const MsgLeaveGuild: {
|
|
2793
2803
|
typeUrl: string;
|
|
2804
|
+
aminoType: string;
|
|
2794
2805
|
encode(message: MsgLeaveGuild, writer?: BinaryWriter): BinaryWriter;
|
|
2795
2806
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgLeaveGuild;
|
|
2796
2807
|
fromPartial(object: DeepPartial<MsgLeaveGuild>): MsgLeaveGuild;
|
|
2797
2808
|
fromAmino(object: MsgLeaveGuildAmino): MsgLeaveGuild;
|
|
2798
2809
|
toAmino(message: MsgLeaveGuild): MsgLeaveGuildAmino;
|
|
2799
2810
|
fromAminoMsg(object: MsgLeaveGuildAminoMsg): MsgLeaveGuild;
|
|
2811
|
+
toAminoMsg(message: MsgLeaveGuild): MsgLeaveGuildAminoMsg;
|
|
2800
2812
|
fromProtoMsg(message: MsgLeaveGuildProtoMsg): MsgLeaveGuild;
|
|
2801
2813
|
toProto(message: MsgLeaveGuild): Uint8Array;
|
|
2802
2814
|
toProtoMsg(message: MsgLeaveGuild): MsgLeaveGuildProtoMsg;
|
|
@@ -2827,12 +2839,14 @@ export declare const MsgLeaveGuildResponse: {
|
|
|
2827
2839
|
*/
|
|
2828
2840
|
export declare const MsgTransferGuildFounder: {
|
|
2829
2841
|
typeUrl: string;
|
|
2842
|
+
aminoType: string;
|
|
2830
2843
|
encode(message: MsgTransferGuildFounder, writer?: BinaryWriter): BinaryWriter;
|
|
2831
2844
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgTransferGuildFounder;
|
|
2832
2845
|
fromPartial(object: DeepPartial<MsgTransferGuildFounder>): MsgTransferGuildFounder;
|
|
2833
2846
|
fromAmino(object: MsgTransferGuildFounderAmino): MsgTransferGuildFounder;
|
|
2834
2847
|
toAmino(message: MsgTransferGuildFounder): MsgTransferGuildFounderAmino;
|
|
2835
2848
|
fromAminoMsg(object: MsgTransferGuildFounderAminoMsg): MsgTransferGuildFounder;
|
|
2849
|
+
toAminoMsg(message: MsgTransferGuildFounder): MsgTransferGuildFounderAminoMsg;
|
|
2836
2850
|
fromProtoMsg(message: MsgTransferGuildFounderProtoMsg): MsgTransferGuildFounder;
|
|
2837
2851
|
toProto(message: MsgTransferGuildFounder): Uint8Array;
|
|
2838
2852
|
toProtoMsg(message: MsgTransferGuildFounder): MsgTransferGuildFounderProtoMsg;
|
|
@@ -2863,12 +2877,14 @@ export declare const MsgTransferGuildFounderResponse: {
|
|
|
2863
2877
|
*/
|
|
2864
2878
|
export declare const MsgDissolveGuild: {
|
|
2865
2879
|
typeUrl: string;
|
|
2880
|
+
aminoType: string;
|
|
2866
2881
|
encode(message: MsgDissolveGuild, writer?: BinaryWriter): BinaryWriter;
|
|
2867
2882
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgDissolveGuild;
|
|
2868
2883
|
fromPartial(object: DeepPartial<MsgDissolveGuild>): MsgDissolveGuild;
|
|
2869
2884
|
fromAmino(object: MsgDissolveGuildAmino): MsgDissolveGuild;
|
|
2870
2885
|
toAmino(message: MsgDissolveGuild): MsgDissolveGuildAmino;
|
|
2871
2886
|
fromAminoMsg(object: MsgDissolveGuildAminoMsg): MsgDissolveGuild;
|
|
2887
|
+
toAminoMsg(message: MsgDissolveGuild): MsgDissolveGuildAminoMsg;
|
|
2872
2888
|
fromProtoMsg(message: MsgDissolveGuildProtoMsg): MsgDissolveGuild;
|
|
2873
2889
|
toProto(message: MsgDissolveGuild): Uint8Array;
|
|
2874
2890
|
toProtoMsg(message: MsgDissolveGuild): MsgDissolveGuildProtoMsg;
|
|
@@ -2899,12 +2915,14 @@ export declare const MsgDissolveGuildResponse: {
|
|
|
2899
2915
|
*/
|
|
2900
2916
|
export declare const MsgPromoteToOfficer: {
|
|
2901
2917
|
typeUrl: string;
|
|
2918
|
+
aminoType: string;
|
|
2902
2919
|
encode(message: MsgPromoteToOfficer, writer?: BinaryWriter): BinaryWriter;
|
|
2903
2920
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgPromoteToOfficer;
|
|
2904
2921
|
fromPartial(object: DeepPartial<MsgPromoteToOfficer>): MsgPromoteToOfficer;
|
|
2905
2922
|
fromAmino(object: MsgPromoteToOfficerAmino): MsgPromoteToOfficer;
|
|
2906
2923
|
toAmino(message: MsgPromoteToOfficer): MsgPromoteToOfficerAmino;
|
|
2907
2924
|
fromAminoMsg(object: MsgPromoteToOfficerAminoMsg): MsgPromoteToOfficer;
|
|
2925
|
+
toAminoMsg(message: MsgPromoteToOfficer): MsgPromoteToOfficerAminoMsg;
|
|
2908
2926
|
fromProtoMsg(message: MsgPromoteToOfficerProtoMsg): MsgPromoteToOfficer;
|
|
2909
2927
|
toProto(message: MsgPromoteToOfficer): Uint8Array;
|
|
2910
2928
|
toProtoMsg(message: MsgPromoteToOfficer): MsgPromoteToOfficerProtoMsg;
|
|
@@ -2935,12 +2953,14 @@ export declare const MsgPromoteToOfficerResponse: {
|
|
|
2935
2953
|
*/
|
|
2936
2954
|
export declare const MsgDemoteOfficer: {
|
|
2937
2955
|
typeUrl: string;
|
|
2956
|
+
aminoType: string;
|
|
2938
2957
|
encode(message: MsgDemoteOfficer, writer?: BinaryWriter): BinaryWriter;
|
|
2939
2958
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgDemoteOfficer;
|
|
2940
2959
|
fromPartial(object: DeepPartial<MsgDemoteOfficer>): MsgDemoteOfficer;
|
|
2941
2960
|
fromAmino(object: MsgDemoteOfficerAmino): MsgDemoteOfficer;
|
|
2942
2961
|
toAmino(message: MsgDemoteOfficer): MsgDemoteOfficerAmino;
|
|
2943
2962
|
fromAminoMsg(object: MsgDemoteOfficerAminoMsg): MsgDemoteOfficer;
|
|
2963
|
+
toAminoMsg(message: MsgDemoteOfficer): MsgDemoteOfficerAminoMsg;
|
|
2944
2964
|
fromProtoMsg(message: MsgDemoteOfficerProtoMsg): MsgDemoteOfficer;
|
|
2945
2965
|
toProto(message: MsgDemoteOfficer): Uint8Array;
|
|
2946
2966
|
toProtoMsg(message: MsgDemoteOfficer): MsgDemoteOfficerProtoMsg;
|
|
@@ -2971,12 +2991,14 @@ export declare const MsgDemoteOfficerResponse: {
|
|
|
2971
2991
|
*/
|
|
2972
2992
|
export declare const MsgInviteToGuild: {
|
|
2973
2993
|
typeUrl: string;
|
|
2994
|
+
aminoType: string;
|
|
2974
2995
|
encode(message: MsgInviteToGuild, writer?: BinaryWriter): BinaryWriter;
|
|
2975
2996
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgInviteToGuild;
|
|
2976
2997
|
fromPartial(object: DeepPartial<MsgInviteToGuild>): MsgInviteToGuild;
|
|
2977
2998
|
fromAmino(object: MsgInviteToGuildAmino): MsgInviteToGuild;
|
|
2978
2999
|
toAmino(message: MsgInviteToGuild): MsgInviteToGuildAmino;
|
|
2979
3000
|
fromAminoMsg(object: MsgInviteToGuildAminoMsg): MsgInviteToGuild;
|
|
3001
|
+
toAminoMsg(message: MsgInviteToGuild): MsgInviteToGuildAminoMsg;
|
|
2980
3002
|
fromProtoMsg(message: MsgInviteToGuildProtoMsg): MsgInviteToGuild;
|
|
2981
3003
|
toProto(message: MsgInviteToGuild): Uint8Array;
|
|
2982
3004
|
toProtoMsg(message: MsgInviteToGuild): MsgInviteToGuildProtoMsg;
|
|
@@ -3007,12 +3029,14 @@ export declare const MsgInviteToGuildResponse: {
|
|
|
3007
3029
|
*/
|
|
3008
3030
|
export declare const MsgAcceptGuildInvite: {
|
|
3009
3031
|
typeUrl: string;
|
|
3032
|
+
aminoType: string;
|
|
3010
3033
|
encode(message: MsgAcceptGuildInvite, writer?: BinaryWriter): BinaryWriter;
|
|
3011
3034
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgAcceptGuildInvite;
|
|
3012
3035
|
fromPartial(object: DeepPartial<MsgAcceptGuildInvite>): MsgAcceptGuildInvite;
|
|
3013
3036
|
fromAmino(object: MsgAcceptGuildInviteAmino): MsgAcceptGuildInvite;
|
|
3014
3037
|
toAmino(message: MsgAcceptGuildInvite): MsgAcceptGuildInviteAmino;
|
|
3015
3038
|
fromAminoMsg(object: MsgAcceptGuildInviteAminoMsg): MsgAcceptGuildInvite;
|
|
3039
|
+
toAminoMsg(message: MsgAcceptGuildInvite): MsgAcceptGuildInviteAminoMsg;
|
|
3016
3040
|
fromProtoMsg(message: MsgAcceptGuildInviteProtoMsg): MsgAcceptGuildInvite;
|
|
3017
3041
|
toProto(message: MsgAcceptGuildInvite): Uint8Array;
|
|
3018
3042
|
toProtoMsg(message: MsgAcceptGuildInvite): MsgAcceptGuildInviteProtoMsg;
|
|
@@ -3043,12 +3067,14 @@ export declare const MsgAcceptGuildInviteResponse: {
|
|
|
3043
3067
|
*/
|
|
3044
3068
|
export declare const MsgRevokeGuildInvite: {
|
|
3045
3069
|
typeUrl: string;
|
|
3070
|
+
aminoType: string;
|
|
3046
3071
|
encode(message: MsgRevokeGuildInvite, writer?: BinaryWriter): BinaryWriter;
|
|
3047
3072
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgRevokeGuildInvite;
|
|
3048
3073
|
fromPartial(object: DeepPartial<MsgRevokeGuildInvite>): MsgRevokeGuildInvite;
|
|
3049
3074
|
fromAmino(object: MsgRevokeGuildInviteAmino): MsgRevokeGuildInvite;
|
|
3050
3075
|
toAmino(message: MsgRevokeGuildInvite): MsgRevokeGuildInviteAmino;
|
|
3051
3076
|
fromAminoMsg(object: MsgRevokeGuildInviteAminoMsg): MsgRevokeGuildInvite;
|
|
3077
|
+
toAminoMsg(message: MsgRevokeGuildInvite): MsgRevokeGuildInviteAminoMsg;
|
|
3052
3078
|
fromProtoMsg(message: MsgRevokeGuildInviteProtoMsg): MsgRevokeGuildInvite;
|
|
3053
3079
|
toProto(message: MsgRevokeGuildInvite): Uint8Array;
|
|
3054
3080
|
toProtoMsg(message: MsgRevokeGuildInvite): MsgRevokeGuildInviteProtoMsg;
|
|
@@ -3079,12 +3105,14 @@ export declare const MsgRevokeGuildInviteResponse: {
|
|
|
3079
3105
|
*/
|
|
3080
3106
|
export declare const MsgSetGuildInviteOnly: {
|
|
3081
3107
|
typeUrl: string;
|
|
3108
|
+
aminoType: string;
|
|
3082
3109
|
encode(message: MsgSetGuildInviteOnly, writer?: BinaryWriter): BinaryWriter;
|
|
3083
3110
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgSetGuildInviteOnly;
|
|
3084
3111
|
fromPartial(object: DeepPartial<MsgSetGuildInviteOnly>): MsgSetGuildInviteOnly;
|
|
3085
3112
|
fromAmino(object: MsgSetGuildInviteOnlyAmino): MsgSetGuildInviteOnly;
|
|
3086
3113
|
toAmino(message: MsgSetGuildInviteOnly): MsgSetGuildInviteOnlyAmino;
|
|
3087
3114
|
fromAminoMsg(object: MsgSetGuildInviteOnlyAminoMsg): MsgSetGuildInviteOnly;
|
|
3115
|
+
toAminoMsg(message: MsgSetGuildInviteOnly): MsgSetGuildInviteOnlyAminoMsg;
|
|
3088
3116
|
fromProtoMsg(message: MsgSetGuildInviteOnlyProtoMsg): MsgSetGuildInviteOnly;
|
|
3089
3117
|
toProto(message: MsgSetGuildInviteOnly): Uint8Array;
|
|
3090
3118
|
toProtoMsg(message: MsgSetGuildInviteOnly): MsgSetGuildInviteOnlyProtoMsg;
|
|
@@ -3115,12 +3143,14 @@ export declare const MsgSetGuildInviteOnlyResponse: {
|
|
|
3115
3143
|
*/
|
|
3116
3144
|
export declare const MsgUpdateGuildDescription: {
|
|
3117
3145
|
typeUrl: string;
|
|
3146
|
+
aminoType: string;
|
|
3118
3147
|
encode(message: MsgUpdateGuildDescription, writer?: BinaryWriter): BinaryWriter;
|
|
3119
3148
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateGuildDescription;
|
|
3120
3149
|
fromPartial(object: DeepPartial<MsgUpdateGuildDescription>): MsgUpdateGuildDescription;
|
|
3121
3150
|
fromAmino(object: MsgUpdateGuildDescriptionAmino): MsgUpdateGuildDescription;
|
|
3122
3151
|
toAmino(message: MsgUpdateGuildDescription): MsgUpdateGuildDescriptionAmino;
|
|
3123
3152
|
fromAminoMsg(object: MsgUpdateGuildDescriptionAminoMsg): MsgUpdateGuildDescription;
|
|
3153
|
+
toAminoMsg(message: MsgUpdateGuildDescription): MsgUpdateGuildDescriptionAminoMsg;
|
|
3124
3154
|
fromProtoMsg(message: MsgUpdateGuildDescriptionProtoMsg): MsgUpdateGuildDescription;
|
|
3125
3155
|
toProto(message: MsgUpdateGuildDescription): Uint8Array;
|
|
3126
3156
|
toProtoMsg(message: MsgUpdateGuildDescription): MsgUpdateGuildDescriptionProtoMsg;
|
|
@@ -3151,12 +3181,14 @@ export declare const MsgUpdateGuildDescriptionResponse: {
|
|
|
3151
3181
|
*/
|
|
3152
3182
|
export declare const MsgKickFromGuild: {
|
|
3153
3183
|
typeUrl: string;
|
|
3184
|
+
aminoType: string;
|
|
3154
3185
|
encode(message: MsgKickFromGuild, writer?: BinaryWriter): BinaryWriter;
|
|
3155
3186
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgKickFromGuild;
|
|
3156
3187
|
fromPartial(object: DeepPartial<MsgKickFromGuild>): MsgKickFromGuild;
|
|
3157
3188
|
fromAmino(object: MsgKickFromGuildAmino): MsgKickFromGuild;
|
|
3158
3189
|
toAmino(message: MsgKickFromGuild): MsgKickFromGuildAmino;
|
|
3159
3190
|
fromAminoMsg(object: MsgKickFromGuildAminoMsg): MsgKickFromGuild;
|
|
3191
|
+
toAminoMsg(message: MsgKickFromGuild): MsgKickFromGuildAminoMsg;
|
|
3160
3192
|
fromProtoMsg(message: MsgKickFromGuildProtoMsg): MsgKickFromGuild;
|
|
3161
3193
|
toProto(message: MsgKickFromGuild): Uint8Array;
|
|
3162
3194
|
toProtoMsg(message: MsgKickFromGuild): MsgKickFromGuildProtoMsg;
|
|
@@ -3187,12 +3219,14 @@ export declare const MsgKickFromGuildResponse: {
|
|
|
3187
3219
|
*/
|
|
3188
3220
|
export declare const MsgClaimGuildFounder: {
|
|
3189
3221
|
typeUrl: string;
|
|
3222
|
+
aminoType: string;
|
|
3190
3223
|
encode(message: MsgClaimGuildFounder, writer?: BinaryWriter): BinaryWriter;
|
|
3191
3224
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgClaimGuildFounder;
|
|
3192
3225
|
fromPartial(object: DeepPartial<MsgClaimGuildFounder>): MsgClaimGuildFounder;
|
|
3193
3226
|
fromAmino(object: MsgClaimGuildFounderAmino): MsgClaimGuildFounder;
|
|
3194
3227
|
toAmino(message: MsgClaimGuildFounder): MsgClaimGuildFounderAmino;
|
|
3195
3228
|
fromAminoMsg(object: MsgClaimGuildFounderAminoMsg): MsgClaimGuildFounder;
|
|
3229
|
+
toAminoMsg(message: MsgClaimGuildFounder): MsgClaimGuildFounderAminoMsg;
|
|
3196
3230
|
fromProtoMsg(message: MsgClaimGuildFounderProtoMsg): MsgClaimGuildFounder;
|
|
3197
3231
|
toProto(message: MsgClaimGuildFounder): Uint8Array;
|
|
3198
3232
|
toProtoMsg(message: MsgClaimGuildFounder): MsgClaimGuildFounderProtoMsg;
|
|
@@ -3223,12 +3257,14 @@ export declare const MsgClaimGuildFounderResponse: {
|
|
|
3223
3257
|
*/
|
|
3224
3258
|
export declare const MsgStartQuest: {
|
|
3225
3259
|
typeUrl: string;
|
|
3260
|
+
aminoType: string;
|
|
3226
3261
|
encode(message: MsgStartQuest, writer?: BinaryWriter): BinaryWriter;
|
|
3227
3262
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgStartQuest;
|
|
3228
3263
|
fromPartial(object: DeepPartial<MsgStartQuest>): MsgStartQuest;
|
|
3229
3264
|
fromAmino(object: MsgStartQuestAmino): MsgStartQuest;
|
|
3230
3265
|
toAmino(message: MsgStartQuest): MsgStartQuestAmino;
|
|
3231
3266
|
fromAminoMsg(object: MsgStartQuestAminoMsg): MsgStartQuest;
|
|
3267
|
+
toAminoMsg(message: MsgStartQuest): MsgStartQuestAminoMsg;
|
|
3232
3268
|
fromProtoMsg(message: MsgStartQuestProtoMsg): MsgStartQuest;
|
|
3233
3269
|
toProto(message: MsgStartQuest): Uint8Array;
|
|
3234
3270
|
toProtoMsg(message: MsgStartQuest): MsgStartQuestProtoMsg;
|
|
@@ -3259,12 +3295,14 @@ export declare const MsgStartQuestResponse: {
|
|
|
3259
3295
|
*/
|
|
3260
3296
|
export declare const MsgClaimQuestReward: {
|
|
3261
3297
|
typeUrl: string;
|
|
3298
|
+
aminoType: string;
|
|
3262
3299
|
encode(message: MsgClaimQuestReward, writer?: BinaryWriter): BinaryWriter;
|
|
3263
3300
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgClaimQuestReward;
|
|
3264
3301
|
fromPartial(object: DeepPartial<MsgClaimQuestReward>): MsgClaimQuestReward;
|
|
3265
3302
|
fromAmino(object: MsgClaimQuestRewardAmino): MsgClaimQuestReward;
|
|
3266
3303
|
toAmino(message: MsgClaimQuestReward): MsgClaimQuestRewardAmino;
|
|
3267
3304
|
fromAminoMsg(object: MsgClaimQuestRewardAminoMsg): MsgClaimQuestReward;
|
|
3305
|
+
toAminoMsg(message: MsgClaimQuestReward): MsgClaimQuestRewardAminoMsg;
|
|
3268
3306
|
fromProtoMsg(message: MsgClaimQuestRewardProtoMsg): MsgClaimQuestReward;
|
|
3269
3307
|
toProto(message: MsgClaimQuestReward): Uint8Array;
|
|
3270
3308
|
toProtoMsg(message: MsgClaimQuestReward): MsgClaimQuestRewardProtoMsg;
|
|
@@ -3295,12 +3333,14 @@ export declare const MsgClaimQuestRewardResponse: {
|
|
|
3295
3333
|
*/
|
|
3296
3334
|
export declare const MsgAbandonQuest: {
|
|
3297
3335
|
typeUrl: string;
|
|
3336
|
+
aminoType: string;
|
|
3298
3337
|
encode(message: MsgAbandonQuest, writer?: BinaryWriter): BinaryWriter;
|
|
3299
3338
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgAbandonQuest;
|
|
3300
3339
|
fromPartial(object: DeepPartial<MsgAbandonQuest>): MsgAbandonQuest;
|
|
3301
3340
|
fromAmino(object: MsgAbandonQuestAmino): MsgAbandonQuest;
|
|
3302
3341
|
toAmino(message: MsgAbandonQuest): MsgAbandonQuestAmino;
|
|
3303
3342
|
fromAminoMsg(object: MsgAbandonQuestAminoMsg): MsgAbandonQuest;
|
|
3343
|
+
toAminoMsg(message: MsgAbandonQuest): MsgAbandonQuestAminoMsg;
|
|
3304
3344
|
fromProtoMsg(message: MsgAbandonQuestProtoMsg): MsgAbandonQuest;
|
|
3305
3345
|
toProto(message: MsgAbandonQuest): Uint8Array;
|
|
3306
3346
|
toProtoMsg(message: MsgAbandonQuest): MsgAbandonQuestProtoMsg;
|
|
@@ -3597,12 +3637,14 @@ export declare const MsgSkipTransitionPhaseResponse: {
|
|
|
3597
3637
|
*/
|
|
3598
3638
|
export declare const MsgReportDisplayName: {
|
|
3599
3639
|
typeUrl: string;
|
|
3640
|
+
aminoType: string;
|
|
3600
3641
|
encode(message: MsgReportDisplayName, writer?: BinaryWriter): BinaryWriter;
|
|
3601
3642
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgReportDisplayName;
|
|
3602
3643
|
fromPartial(object: DeepPartial<MsgReportDisplayName>): MsgReportDisplayName;
|
|
3603
3644
|
fromAmino(object: MsgReportDisplayNameAmino): MsgReportDisplayName;
|
|
3604
3645
|
toAmino(message: MsgReportDisplayName): MsgReportDisplayNameAmino;
|
|
3605
3646
|
fromAminoMsg(object: MsgReportDisplayNameAminoMsg): MsgReportDisplayName;
|
|
3647
|
+
toAminoMsg(message: MsgReportDisplayName): MsgReportDisplayNameAminoMsg;
|
|
3606
3648
|
fromProtoMsg(message: MsgReportDisplayNameProtoMsg): MsgReportDisplayName;
|
|
3607
3649
|
toProto(message: MsgReportDisplayName): Uint8Array;
|
|
3608
3650
|
toProtoMsg(message: MsgReportDisplayName): MsgReportDisplayNameProtoMsg;
|
|
@@ -3633,12 +3675,14 @@ export declare const MsgReportDisplayNameResponse: {
|
|
|
3633
3675
|
*/
|
|
3634
3676
|
export declare const MsgAppealDisplayNameModeration: {
|
|
3635
3677
|
typeUrl: string;
|
|
3678
|
+
aminoType: string;
|
|
3636
3679
|
encode(message: MsgAppealDisplayNameModeration, writer?: BinaryWriter): BinaryWriter;
|
|
3637
3680
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgAppealDisplayNameModeration;
|
|
3638
3681
|
fromPartial(object: DeepPartial<MsgAppealDisplayNameModeration>): MsgAppealDisplayNameModeration;
|
|
3639
3682
|
fromAmino(object: MsgAppealDisplayNameModerationAmino): MsgAppealDisplayNameModeration;
|
|
3640
3683
|
toAmino(message: MsgAppealDisplayNameModeration): MsgAppealDisplayNameModerationAmino;
|
|
3641
3684
|
fromAminoMsg(object: MsgAppealDisplayNameModerationAminoMsg): MsgAppealDisplayNameModeration;
|
|
3685
|
+
toAminoMsg(message: MsgAppealDisplayNameModeration): MsgAppealDisplayNameModerationAminoMsg;
|
|
3642
3686
|
fromProtoMsg(message: MsgAppealDisplayNameModerationProtoMsg): MsgAppealDisplayNameModeration;
|
|
3643
3687
|
toProto(message: MsgAppealDisplayNameModeration): Uint8Array;
|
|
3644
3688
|
toProtoMsg(message: MsgAppealDisplayNameModeration): MsgAppealDisplayNameModerationProtoMsg;
|
|
@@ -4031,12 +4075,14 @@ export declare const MsgResolveUnappealedModerationResponse: {
|
|
|
4031
4075
|
*/
|
|
4032
4076
|
export declare const MsgNominate: {
|
|
4033
4077
|
typeUrl: string;
|
|
4078
|
+
aminoType: string;
|
|
4034
4079
|
encode(message: MsgNominate, writer?: BinaryWriter): BinaryWriter;
|
|
4035
4080
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgNominate;
|
|
4036
4081
|
fromPartial(object: DeepPartial<MsgNominate>): MsgNominate;
|
|
4037
4082
|
fromAmino(object: MsgNominateAmino): MsgNominate;
|
|
4038
4083
|
toAmino(message: MsgNominate): MsgNominateAmino;
|
|
4039
4084
|
fromAminoMsg(object: MsgNominateAminoMsg): MsgNominate;
|
|
4085
|
+
toAminoMsg(message: MsgNominate): MsgNominateAminoMsg;
|
|
4040
4086
|
fromProtoMsg(message: MsgNominateProtoMsg): MsgNominate;
|
|
4041
4087
|
toProto(message: MsgNominate): Uint8Array;
|
|
4042
4088
|
toProtoMsg(message: MsgNominate): MsgNominateProtoMsg;
|
|
@@ -4067,12 +4113,14 @@ export declare const MsgNominateResponse: {
|
|
|
4067
4113
|
*/
|
|
4068
4114
|
export declare const MsgStakeNomination: {
|
|
4069
4115
|
typeUrl: string;
|
|
4116
|
+
aminoType: string;
|
|
4070
4117
|
encode(message: MsgStakeNomination, writer?: BinaryWriter): BinaryWriter;
|
|
4071
4118
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgStakeNomination;
|
|
4072
4119
|
fromPartial(object: DeepPartial<MsgStakeNomination>): MsgStakeNomination;
|
|
4073
4120
|
fromAmino(object: MsgStakeNominationAmino): MsgStakeNomination;
|
|
4074
4121
|
toAmino(message: MsgStakeNomination): MsgStakeNominationAmino;
|
|
4075
4122
|
fromAminoMsg(object: MsgStakeNominationAminoMsg): MsgStakeNomination;
|
|
4123
|
+
toAminoMsg(message: MsgStakeNomination): MsgStakeNominationAminoMsg;
|
|
4076
4124
|
fromProtoMsg(message: MsgStakeNominationProtoMsg): MsgStakeNomination;
|
|
4077
4125
|
toProto(message: MsgStakeNomination): Uint8Array;
|
|
4078
4126
|
toProtoMsg(message: MsgStakeNomination): MsgStakeNominationProtoMsg;
|
|
@@ -4103,12 +4151,14 @@ export declare const MsgStakeNominationResponse: {
|
|
|
4103
4151
|
*/
|
|
4104
4152
|
export declare const MsgUnstakeNomination: {
|
|
4105
4153
|
typeUrl: string;
|
|
4154
|
+
aminoType: string;
|
|
4106
4155
|
encode(message: MsgUnstakeNomination, writer?: BinaryWriter): BinaryWriter;
|
|
4107
4156
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgUnstakeNomination;
|
|
4108
4157
|
fromPartial(object: DeepPartial<MsgUnstakeNomination>): MsgUnstakeNomination;
|
|
4109
4158
|
fromAmino(object: MsgUnstakeNominationAmino): MsgUnstakeNomination;
|
|
4110
4159
|
toAmino(message: MsgUnstakeNomination): MsgUnstakeNominationAmino;
|
|
4111
4160
|
fromAminoMsg(object: MsgUnstakeNominationAminoMsg): MsgUnstakeNomination;
|
|
4161
|
+
toAminoMsg(message: MsgUnstakeNomination): MsgUnstakeNominationAminoMsg;
|
|
4112
4162
|
fromProtoMsg(message: MsgUnstakeNominationProtoMsg): MsgUnstakeNomination;
|
|
4113
4163
|
toProto(message: MsgUnstakeNomination): Uint8Array;
|
|
4114
4164
|
toProtoMsg(message: MsgUnstakeNomination): MsgUnstakeNominationProtoMsg;
|