@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
|
@@ -179,7 +179,7 @@ export interface MsgInviteMemberAmino {
|
|
|
179
179
|
vouched_tags?: string[];
|
|
180
180
|
}
|
|
181
181
|
export interface MsgInviteMemberAminoMsg {
|
|
182
|
-
type: "/
|
|
182
|
+
type: "sparkdream/x/rep/MsgInviteMember";
|
|
183
183
|
value: MsgInviteMemberAmino;
|
|
184
184
|
}
|
|
185
185
|
/**
|
|
@@ -231,7 +231,7 @@ export interface MsgAcceptInvitationAmino {
|
|
|
231
231
|
invitation_id?: string;
|
|
232
232
|
}
|
|
233
233
|
export interface MsgAcceptInvitationAminoMsg {
|
|
234
|
-
type: "/
|
|
234
|
+
type: "sparkdream/x/rep/MsgAcceptInvitation";
|
|
235
235
|
value: MsgAcceptInvitationAmino;
|
|
236
236
|
}
|
|
237
237
|
/**
|
|
@@ -289,7 +289,7 @@ export interface MsgTransferDreamAmino {
|
|
|
289
289
|
reference?: string;
|
|
290
290
|
}
|
|
291
291
|
export interface MsgTransferDreamAminoMsg {
|
|
292
|
-
type: "/
|
|
292
|
+
type: "sparkdream/x/rep/MsgTransferDream";
|
|
293
293
|
value: MsgTransferDreamAmino;
|
|
294
294
|
}
|
|
295
295
|
/**
|
|
@@ -349,7 +349,7 @@ export interface MsgCreateInterimAmino {
|
|
|
349
349
|
deadline?: string;
|
|
350
350
|
}
|
|
351
351
|
export interface MsgCreateInterimAminoMsg {
|
|
352
|
-
type: "/
|
|
352
|
+
type: "sparkdream/x/rep/MsgCreateInterim";
|
|
353
353
|
value: MsgCreateInterimAmino;
|
|
354
354
|
}
|
|
355
355
|
/**
|
|
@@ -403,7 +403,7 @@ export interface MsgAssignInterimAmino {
|
|
|
403
403
|
assignee?: string;
|
|
404
404
|
}
|
|
405
405
|
export interface MsgAssignInterimAminoMsg {
|
|
406
|
-
type: "/
|
|
406
|
+
type: "sparkdream/x/rep/MsgAssignInterim";
|
|
407
407
|
value: MsgAssignInterimAmino;
|
|
408
408
|
}
|
|
409
409
|
/**
|
|
@@ -459,7 +459,7 @@ export interface MsgSubmitInterimWorkAmino {
|
|
|
459
459
|
comments?: string;
|
|
460
460
|
}
|
|
461
461
|
export interface MsgSubmitInterimWorkAminoMsg {
|
|
462
|
-
type: "/
|
|
462
|
+
type: "sparkdream/x/rep/MsgSubmitInterimWork";
|
|
463
463
|
value: MsgSubmitInterimWorkAmino;
|
|
464
464
|
}
|
|
465
465
|
/**
|
|
@@ -515,7 +515,7 @@ export interface MsgApproveInterimAmino {
|
|
|
515
515
|
comments?: string;
|
|
516
516
|
}
|
|
517
517
|
export interface MsgApproveInterimAminoMsg {
|
|
518
|
-
type: "/
|
|
518
|
+
type: "sparkdream/x/rep/MsgApproveInterim";
|
|
519
519
|
value: MsgApproveInterimAmino;
|
|
520
520
|
}
|
|
521
521
|
/**
|
|
@@ -569,7 +569,7 @@ export interface MsgAbandonInterimAmino {
|
|
|
569
569
|
reason?: string;
|
|
570
570
|
}
|
|
571
571
|
export interface MsgAbandonInterimAminoMsg {
|
|
572
|
-
type: "/
|
|
572
|
+
type: "sparkdream/x/rep/MsgAbandonInterim";
|
|
573
573
|
value: MsgAbandonInterimAmino;
|
|
574
574
|
}
|
|
575
575
|
/**
|
|
@@ -623,7 +623,7 @@ export interface MsgCompleteInterimAmino {
|
|
|
623
623
|
completion_notes?: string;
|
|
624
624
|
}
|
|
625
625
|
export interface MsgCompleteInterimAminoMsg {
|
|
626
|
-
type: "/
|
|
626
|
+
type: "sparkdream/x/rep/MsgCompleteInterim";
|
|
627
627
|
value: MsgCompleteInterimAmino;
|
|
628
628
|
}
|
|
629
629
|
/**
|
|
@@ -691,7 +691,7 @@ export interface MsgProposeProjectAmino {
|
|
|
691
691
|
milestones?: string[];
|
|
692
692
|
}
|
|
693
693
|
export interface MsgProposeProjectAminoMsg {
|
|
694
|
-
type: "/
|
|
694
|
+
type: "sparkdream/x/rep/MsgProposeProject";
|
|
695
695
|
value: MsgProposeProjectAmino;
|
|
696
696
|
}
|
|
697
697
|
/**
|
|
@@ -747,7 +747,7 @@ export interface MsgApproveProjectBudgetAmino {
|
|
|
747
747
|
approved_spark?: string;
|
|
748
748
|
}
|
|
749
749
|
export interface MsgApproveProjectBudgetAminoMsg {
|
|
750
|
-
type: "/
|
|
750
|
+
type: "sparkdream/x/rep/MsgApproveProjectBudget";
|
|
751
751
|
value: MsgApproveProjectBudgetAmino;
|
|
752
752
|
}
|
|
753
753
|
/**
|
|
@@ -801,7 +801,7 @@ export interface MsgCancelProjectAmino {
|
|
|
801
801
|
reason?: string;
|
|
802
802
|
}
|
|
803
803
|
export interface MsgCancelProjectAminoMsg {
|
|
804
|
-
type: "/
|
|
804
|
+
type: "sparkdream/x/rep/MsgCancelProject";
|
|
805
805
|
value: MsgCancelProjectAmino;
|
|
806
806
|
}
|
|
807
807
|
/**
|
|
@@ -867,7 +867,7 @@ export interface MsgCreateInitiativeAmino {
|
|
|
867
867
|
budget?: string;
|
|
868
868
|
}
|
|
869
869
|
export interface MsgCreateInitiativeAminoMsg {
|
|
870
|
-
type: "/
|
|
870
|
+
type: "sparkdream/x/rep/MsgCreateInitiative";
|
|
871
871
|
value: MsgCreateInitiativeAmino;
|
|
872
872
|
}
|
|
873
873
|
/**
|
|
@@ -923,7 +923,7 @@ export interface MsgAssignInitiativeAmino {
|
|
|
923
923
|
assignee?: string;
|
|
924
924
|
}
|
|
925
925
|
export interface MsgAssignInitiativeAminoMsg {
|
|
926
|
-
type: "/
|
|
926
|
+
type: "sparkdream/x/rep/MsgAssignInitiative";
|
|
927
927
|
value: MsgAssignInitiativeAmino;
|
|
928
928
|
}
|
|
929
929
|
/**
|
|
@@ -979,7 +979,7 @@ export interface MsgSubmitInitiativeWorkAmino {
|
|
|
979
979
|
comments?: string;
|
|
980
980
|
}
|
|
981
981
|
export interface MsgSubmitInitiativeWorkAminoMsg {
|
|
982
|
-
type: "/
|
|
982
|
+
type: "sparkdream/x/rep/MsgSubmitInitiativeWork";
|
|
983
983
|
value: MsgSubmitInitiativeWorkAmino;
|
|
984
984
|
}
|
|
985
985
|
/**
|
|
@@ -1037,7 +1037,7 @@ export interface MsgApproveInitiativeAmino {
|
|
|
1037
1037
|
comments?: string;
|
|
1038
1038
|
}
|
|
1039
1039
|
export interface MsgApproveInitiativeAminoMsg {
|
|
1040
|
-
type: "/
|
|
1040
|
+
type: "sparkdream/x/rep/MsgApproveInitiative";
|
|
1041
1041
|
value: MsgApproveInitiativeAmino;
|
|
1042
1042
|
}
|
|
1043
1043
|
/**
|
|
@@ -1091,7 +1091,7 @@ export interface MsgAbandonInitiativeAmino {
|
|
|
1091
1091
|
reason?: string;
|
|
1092
1092
|
}
|
|
1093
1093
|
export interface MsgAbandonInitiativeAminoMsg {
|
|
1094
|
-
type: "/
|
|
1094
|
+
type: "sparkdream/x/rep/MsgAbandonInitiative";
|
|
1095
1095
|
value: MsgAbandonInitiativeAmino;
|
|
1096
1096
|
}
|
|
1097
1097
|
/**
|
|
@@ -1145,7 +1145,7 @@ export interface MsgCompleteInitiativeAmino {
|
|
|
1145
1145
|
completion_notes?: string;
|
|
1146
1146
|
}
|
|
1147
1147
|
export interface MsgCompleteInitiativeAminoMsg {
|
|
1148
|
-
type: "/
|
|
1148
|
+
type: "sparkdream/x/rep/MsgCompleteInitiative";
|
|
1149
1149
|
value: MsgCompleteInitiativeAmino;
|
|
1150
1150
|
}
|
|
1151
1151
|
/**
|
|
@@ -1215,7 +1215,7 @@ export interface MsgStakeAmino {
|
|
|
1215
1215
|
amount?: string;
|
|
1216
1216
|
}
|
|
1217
1217
|
export interface MsgStakeAminoMsg {
|
|
1218
|
-
type: "/
|
|
1218
|
+
type: "sparkdream/x/rep/MsgStake";
|
|
1219
1219
|
value: MsgStakeAmino;
|
|
1220
1220
|
}
|
|
1221
1221
|
/**
|
|
@@ -1271,7 +1271,7 @@ export interface MsgUnstakeAmino {
|
|
|
1271
1271
|
amount?: string;
|
|
1272
1272
|
}
|
|
1273
1273
|
export interface MsgUnstakeAminoMsg {
|
|
1274
|
-
type: "/
|
|
1274
|
+
type: "sparkdream/x/rep/MsgUnstake";
|
|
1275
1275
|
value: MsgUnstakeAmino;
|
|
1276
1276
|
}
|
|
1277
1277
|
/**
|
|
@@ -1327,7 +1327,7 @@ export interface MsgClaimStakingRewardsAmino {
|
|
|
1327
1327
|
stake_id?: string;
|
|
1328
1328
|
}
|
|
1329
1329
|
export interface MsgClaimStakingRewardsAminoMsg {
|
|
1330
|
-
type: "/
|
|
1330
|
+
type: "sparkdream/x/rep/MsgClaimStakingRewards";
|
|
1331
1331
|
value: MsgClaimStakingRewardsAmino;
|
|
1332
1332
|
}
|
|
1333
1333
|
/**
|
|
@@ -1381,7 +1381,7 @@ export interface MsgCompoundStakingRewardsAmino {
|
|
|
1381
1381
|
stake_id?: string;
|
|
1382
1382
|
}
|
|
1383
1383
|
export interface MsgCompoundStakingRewardsAminoMsg {
|
|
1384
|
-
type: "/
|
|
1384
|
+
type: "sparkdream/x/rep/MsgCompoundStakingRewards";
|
|
1385
1385
|
value: MsgCompoundStakingRewardsAmino;
|
|
1386
1386
|
}
|
|
1387
1387
|
/**
|
|
@@ -1443,7 +1443,7 @@ export interface MsgCreateChallengeAmino {
|
|
|
1443
1443
|
staked_dream?: string;
|
|
1444
1444
|
}
|
|
1445
1445
|
export interface MsgCreateChallengeAminoMsg {
|
|
1446
|
-
type: "/
|
|
1446
|
+
type: "sparkdream/x/rep/MsgCreateChallenge";
|
|
1447
1447
|
value: MsgCreateChallengeAmino;
|
|
1448
1448
|
}
|
|
1449
1449
|
/**
|
|
@@ -1499,7 +1499,7 @@ export interface MsgRespondToChallengeAmino {
|
|
|
1499
1499
|
evidence?: string[];
|
|
1500
1500
|
}
|
|
1501
1501
|
export interface MsgRespondToChallengeAminoMsg {
|
|
1502
|
-
type: "/
|
|
1502
|
+
type: "sparkdream/x/rep/MsgRespondToChallenge";
|
|
1503
1503
|
value: MsgRespondToChallengeAmino;
|
|
1504
1504
|
}
|
|
1505
1505
|
/**
|
|
@@ -1559,7 +1559,7 @@ export interface MsgSubmitJurorVoteAmino {
|
|
|
1559
1559
|
reasoning?: string;
|
|
1560
1560
|
}
|
|
1561
1561
|
export interface MsgSubmitJurorVoteAminoMsg {
|
|
1562
|
-
type: "/
|
|
1562
|
+
type: "sparkdream/x/rep/MsgSubmitJurorVote";
|
|
1563
1563
|
value: MsgSubmitJurorVoteAmino;
|
|
1564
1564
|
}
|
|
1565
1565
|
/**
|
|
@@ -1615,7 +1615,7 @@ export interface MsgSubmitExpertTestimonyAmino {
|
|
|
1615
1615
|
reasoning?: string;
|
|
1616
1616
|
}
|
|
1617
1617
|
export interface MsgSubmitExpertTestimonyAminoMsg {
|
|
1618
|
-
type: "/
|
|
1618
|
+
type: "sparkdream/x/rep/MsgSubmitExpertTestimony";
|
|
1619
1619
|
value: MsgSubmitExpertTestimonyAmino;
|
|
1620
1620
|
}
|
|
1621
1621
|
/**
|
|
@@ -1681,7 +1681,7 @@ export interface MsgChallengeContentAmino {
|
|
|
1681
1681
|
staked_dream?: string;
|
|
1682
1682
|
}
|
|
1683
1683
|
export interface MsgChallengeContentAminoMsg {
|
|
1684
|
-
type: "/
|
|
1684
|
+
type: "sparkdream/x/rep/MsgChallengeContent";
|
|
1685
1685
|
value: MsgChallengeContentAmino;
|
|
1686
1686
|
}
|
|
1687
1687
|
/**
|
|
@@ -1739,7 +1739,7 @@ export interface MsgRespondToContentChallengeAmino {
|
|
|
1739
1739
|
evidence?: string[];
|
|
1740
1740
|
}
|
|
1741
1741
|
export interface MsgRespondToContentChallengeAminoMsg {
|
|
1742
|
-
type: "/
|
|
1742
|
+
type: "sparkdream/x/rep/MsgRespondToContentChallenge";
|
|
1743
1743
|
value: MsgRespondToContentChallengeAmino;
|
|
1744
1744
|
}
|
|
1745
1745
|
/**
|
|
@@ -1791,7 +1791,7 @@ export interface MsgRegisterZkPublicKeyAmino {
|
|
|
1791
1791
|
zk_public_key?: string;
|
|
1792
1792
|
}
|
|
1793
1793
|
export interface MsgRegisterZkPublicKeyAminoMsg {
|
|
1794
|
-
type: "/
|
|
1794
|
+
type: "sparkdream/x/rep/MsgRegisterZkPublicKey";
|
|
1795
1795
|
value: MsgRegisterZkPublicKeyAmino;
|
|
1796
1796
|
}
|
|
1797
1797
|
/**
|
|
@@ -1847,7 +1847,7 @@ export interface MsgCreateTagAmino {
|
|
|
1847
1847
|
name?: string;
|
|
1848
1848
|
}
|
|
1849
1849
|
export interface MsgCreateTagAminoMsg {
|
|
1850
|
-
type: "/
|
|
1850
|
+
type: "sparkdream/x/rep/MsgCreateTag";
|
|
1851
1851
|
value: MsgCreateTagAmino;
|
|
1852
1852
|
}
|
|
1853
1853
|
/**
|
|
@@ -1903,7 +1903,7 @@ export interface MsgReportTagAmino {
|
|
|
1903
1903
|
reason?: string;
|
|
1904
1904
|
}
|
|
1905
1905
|
export interface MsgReportTagAminoMsg {
|
|
1906
|
-
type: "/
|
|
1906
|
+
type: "sparkdream/x/rep/MsgReportTag";
|
|
1907
1907
|
value: MsgReportTagAmino;
|
|
1908
1908
|
}
|
|
1909
1909
|
/**
|
|
@@ -1961,7 +1961,7 @@ export interface MsgResolveTagReportAmino {
|
|
|
1961
1961
|
reserve_members_can_use?: boolean;
|
|
1962
1962
|
}
|
|
1963
1963
|
export interface MsgResolveTagReportAminoMsg {
|
|
1964
|
-
type: "/
|
|
1964
|
+
type: "sparkdream/x/rep/MsgResolveTagReport";
|
|
1965
1965
|
value: MsgResolveTagReportAmino;
|
|
1966
1966
|
}
|
|
1967
1967
|
/**
|
|
@@ -2017,7 +2017,7 @@ export interface MsgCreateTagBudgetAmino {
|
|
|
2017
2017
|
members_only?: boolean;
|
|
2018
2018
|
}
|
|
2019
2019
|
export interface MsgCreateTagBudgetAminoMsg {
|
|
2020
|
-
type: "/
|
|
2020
|
+
type: "sparkdream/x/rep/MsgCreateTagBudget";
|
|
2021
2021
|
value: MsgCreateTagBudgetAmino;
|
|
2022
2022
|
}
|
|
2023
2023
|
/**
|
|
@@ -2075,7 +2075,7 @@ export interface MsgAwardFromTagBudgetAmino {
|
|
|
2075
2075
|
reason?: string;
|
|
2076
2076
|
}
|
|
2077
2077
|
export interface MsgAwardFromTagBudgetAminoMsg {
|
|
2078
|
-
type: "/
|
|
2078
|
+
type: "sparkdream/x/rep/MsgAwardFromTagBudget";
|
|
2079
2079
|
value: MsgAwardFromTagBudgetAmino;
|
|
2080
2080
|
}
|
|
2081
2081
|
/**
|
|
@@ -2129,7 +2129,7 @@ export interface MsgTopUpTagBudgetAmino {
|
|
|
2129
2129
|
amount?: string;
|
|
2130
2130
|
}
|
|
2131
2131
|
export interface MsgTopUpTagBudgetAminoMsg {
|
|
2132
|
-
type: "/
|
|
2132
|
+
type: "sparkdream/x/rep/MsgTopUpTagBudget";
|
|
2133
2133
|
value: MsgTopUpTagBudgetAmino;
|
|
2134
2134
|
}
|
|
2135
2135
|
/**
|
|
@@ -2183,7 +2183,7 @@ export interface MsgToggleTagBudgetAmino {
|
|
|
2183
2183
|
active?: boolean;
|
|
2184
2184
|
}
|
|
2185
2185
|
export interface MsgToggleTagBudgetAminoMsg {
|
|
2186
|
-
type: "/
|
|
2186
|
+
type: "sparkdream/x/rep/MsgToggleTagBudget";
|
|
2187
2187
|
value: MsgToggleTagBudgetAmino;
|
|
2188
2188
|
}
|
|
2189
2189
|
/**
|
|
@@ -2235,7 +2235,7 @@ export interface MsgWithdrawTagBudgetAmino {
|
|
|
2235
2235
|
budget_id?: string;
|
|
2236
2236
|
}
|
|
2237
2237
|
export interface MsgWithdrawTagBudgetAminoMsg {
|
|
2238
|
-
type: "/
|
|
2238
|
+
type: "sparkdream/x/rep/MsgWithdrawTagBudget";
|
|
2239
2239
|
value: MsgWithdrawTagBudgetAmino;
|
|
2240
2240
|
}
|
|
2241
2241
|
/**
|
|
@@ -2293,7 +2293,7 @@ export interface MsgBondRoleAmino {
|
|
|
2293
2293
|
amount?: string;
|
|
2294
2294
|
}
|
|
2295
2295
|
export interface MsgBondRoleAminoMsg {
|
|
2296
|
-
type: "/
|
|
2296
|
+
type: "sparkdream/x/rep/MsgBondRole";
|
|
2297
2297
|
value: MsgBondRoleAmino;
|
|
2298
2298
|
}
|
|
2299
2299
|
/**
|
|
@@ -2351,7 +2351,7 @@ export interface MsgUnbondRoleAmino {
|
|
|
2351
2351
|
amount?: string;
|
|
2352
2352
|
}
|
|
2353
2353
|
export interface MsgUnbondRoleAminoMsg {
|
|
2354
|
-
type: "/
|
|
2354
|
+
type: "sparkdream/x/rep/MsgUnbondRole";
|
|
2355
2355
|
value: MsgUnbondRoleAmino;
|
|
2356
2356
|
}
|
|
2357
2357
|
/**
|
|
@@ -2407,7 +2407,7 @@ export interface MsgReportMemberAmino {
|
|
|
2407
2407
|
recommended_action?: string;
|
|
2408
2408
|
}
|
|
2409
2409
|
export interface MsgReportMemberAminoMsg {
|
|
2410
|
-
type: "/
|
|
2410
|
+
type: "sparkdream/x/rep/MsgReportMember";
|
|
2411
2411
|
value: MsgReportMemberAmino;
|
|
2412
2412
|
}
|
|
2413
2413
|
/**
|
|
@@ -2459,7 +2459,7 @@ export interface MsgCosignMemberReportAmino {
|
|
|
2459
2459
|
member?: string;
|
|
2460
2460
|
}
|
|
2461
2461
|
export interface MsgCosignMemberReportAminoMsg {
|
|
2462
|
-
type: "/
|
|
2462
|
+
type: "sparkdream/x/rep/MsgCosignMemberReport";
|
|
2463
2463
|
value: MsgCosignMemberReportAmino;
|
|
2464
2464
|
}
|
|
2465
2465
|
/**
|
|
@@ -2515,7 +2515,7 @@ export interface MsgResolveMemberReportAmino {
|
|
|
2515
2515
|
reason?: string;
|
|
2516
2516
|
}
|
|
2517
2517
|
export interface MsgResolveMemberReportAminoMsg {
|
|
2518
|
-
type: "/
|
|
2518
|
+
type: "sparkdream/x/rep/MsgResolveMemberReport";
|
|
2519
2519
|
value: MsgResolveMemberReportAmino;
|
|
2520
2520
|
}
|
|
2521
2521
|
/**
|
|
@@ -2567,7 +2567,7 @@ export interface MsgDefendMemberReportAmino {
|
|
|
2567
2567
|
defense?: string;
|
|
2568
2568
|
}
|
|
2569
2569
|
export interface MsgDefendMemberReportAminoMsg {
|
|
2570
|
-
type: "/
|
|
2570
|
+
type: "sparkdream/x/rep/MsgDefendMemberReport";
|
|
2571
2571
|
value: MsgDefendMemberReportAmino;
|
|
2572
2572
|
}
|
|
2573
2573
|
/**
|
|
@@ -2623,7 +2623,7 @@ export interface MsgAppealGovActionAmino {
|
|
|
2623
2623
|
appeal_reason?: string;
|
|
2624
2624
|
}
|
|
2625
2625
|
export interface MsgAppealGovActionAminoMsg {
|
|
2626
|
-
type: "/
|
|
2626
|
+
type: "sparkdream/x/rep/MsgAppealGovAction";
|
|
2627
2627
|
value: MsgAppealGovActionAmino;
|
|
2628
2628
|
}
|
|
2629
2629
|
/**
|
|
@@ -2685,7 +2685,7 @@ export interface MsgResolveGovActionAppealAmino {
|
|
|
2685
2685
|
reason?: string;
|
|
2686
2686
|
}
|
|
2687
2687
|
export interface MsgResolveGovActionAppealAminoMsg {
|
|
2688
|
-
type: "/
|
|
2688
|
+
type: "sparkdream/x/rep/MsgResolveGovActionAppeal";
|
|
2689
2689
|
value: MsgResolveGovActionAppealAmino;
|
|
2690
2690
|
}
|
|
2691
2691
|
/**
|
|
@@ -2800,12 +2800,14 @@ export declare const MsgUpdateOperationalParamsResponse: {
|
|
|
2800
2800
|
*/
|
|
2801
2801
|
export declare const MsgInviteMember: {
|
|
2802
2802
|
typeUrl: string;
|
|
2803
|
+
aminoType: string;
|
|
2803
2804
|
encode(message: MsgInviteMember, writer?: BinaryWriter): BinaryWriter;
|
|
2804
2805
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgInviteMember;
|
|
2805
2806
|
fromPartial(object: DeepPartial<MsgInviteMember>): MsgInviteMember;
|
|
2806
2807
|
fromAmino(object: MsgInviteMemberAmino): MsgInviteMember;
|
|
2807
2808
|
toAmino(message: MsgInviteMember): MsgInviteMemberAmino;
|
|
2808
2809
|
fromAminoMsg(object: MsgInviteMemberAminoMsg): MsgInviteMember;
|
|
2810
|
+
toAminoMsg(message: MsgInviteMember): MsgInviteMemberAminoMsg;
|
|
2809
2811
|
fromProtoMsg(message: MsgInviteMemberProtoMsg): MsgInviteMember;
|
|
2810
2812
|
toProto(message: MsgInviteMember): Uint8Array;
|
|
2811
2813
|
toProtoMsg(message: MsgInviteMember): MsgInviteMemberProtoMsg;
|
|
@@ -2836,12 +2838,14 @@ export declare const MsgInviteMemberResponse: {
|
|
|
2836
2838
|
*/
|
|
2837
2839
|
export declare const MsgAcceptInvitation: {
|
|
2838
2840
|
typeUrl: string;
|
|
2841
|
+
aminoType: string;
|
|
2839
2842
|
encode(message: MsgAcceptInvitation, writer?: BinaryWriter): BinaryWriter;
|
|
2840
2843
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgAcceptInvitation;
|
|
2841
2844
|
fromPartial(object: DeepPartial<MsgAcceptInvitation>): MsgAcceptInvitation;
|
|
2842
2845
|
fromAmino(object: MsgAcceptInvitationAmino): MsgAcceptInvitation;
|
|
2843
2846
|
toAmino(message: MsgAcceptInvitation): MsgAcceptInvitationAmino;
|
|
2844
2847
|
fromAminoMsg(object: MsgAcceptInvitationAminoMsg): MsgAcceptInvitation;
|
|
2848
|
+
toAminoMsg(message: MsgAcceptInvitation): MsgAcceptInvitationAminoMsg;
|
|
2845
2849
|
fromProtoMsg(message: MsgAcceptInvitationProtoMsg): MsgAcceptInvitation;
|
|
2846
2850
|
toProto(message: MsgAcceptInvitation): Uint8Array;
|
|
2847
2851
|
toProtoMsg(message: MsgAcceptInvitation): MsgAcceptInvitationProtoMsg;
|
|
@@ -2872,12 +2876,14 @@ export declare const MsgAcceptInvitationResponse: {
|
|
|
2872
2876
|
*/
|
|
2873
2877
|
export declare const MsgTransferDream: {
|
|
2874
2878
|
typeUrl: string;
|
|
2879
|
+
aminoType: string;
|
|
2875
2880
|
encode(message: MsgTransferDream, writer?: BinaryWriter): BinaryWriter;
|
|
2876
2881
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgTransferDream;
|
|
2877
2882
|
fromPartial(object: DeepPartial<MsgTransferDream>): MsgTransferDream;
|
|
2878
2883
|
fromAmino(object: MsgTransferDreamAmino): MsgTransferDream;
|
|
2879
2884
|
toAmino(message: MsgTransferDream): MsgTransferDreamAmino;
|
|
2880
2885
|
fromAminoMsg(object: MsgTransferDreamAminoMsg): MsgTransferDream;
|
|
2886
|
+
toAminoMsg(message: MsgTransferDream): MsgTransferDreamAminoMsg;
|
|
2881
2887
|
fromProtoMsg(message: MsgTransferDreamProtoMsg): MsgTransferDream;
|
|
2882
2888
|
toProto(message: MsgTransferDream): Uint8Array;
|
|
2883
2889
|
toProtoMsg(message: MsgTransferDream): MsgTransferDreamProtoMsg;
|
|
@@ -2908,12 +2914,14 @@ export declare const MsgTransferDreamResponse: {
|
|
|
2908
2914
|
*/
|
|
2909
2915
|
export declare const MsgCreateInterim: {
|
|
2910
2916
|
typeUrl: string;
|
|
2917
|
+
aminoType: string;
|
|
2911
2918
|
encode(message: MsgCreateInterim, writer?: BinaryWriter): BinaryWriter;
|
|
2912
2919
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateInterim;
|
|
2913
2920
|
fromPartial(object: DeepPartial<MsgCreateInterim>): MsgCreateInterim;
|
|
2914
2921
|
fromAmino(object: MsgCreateInterimAmino): MsgCreateInterim;
|
|
2915
2922
|
toAmino(message: MsgCreateInterim): MsgCreateInterimAmino;
|
|
2916
2923
|
fromAminoMsg(object: MsgCreateInterimAminoMsg): MsgCreateInterim;
|
|
2924
|
+
toAminoMsg(message: MsgCreateInterim): MsgCreateInterimAminoMsg;
|
|
2917
2925
|
fromProtoMsg(message: MsgCreateInterimProtoMsg): MsgCreateInterim;
|
|
2918
2926
|
toProto(message: MsgCreateInterim): Uint8Array;
|
|
2919
2927
|
toProtoMsg(message: MsgCreateInterim): MsgCreateInterimProtoMsg;
|
|
@@ -2944,12 +2952,14 @@ export declare const MsgCreateInterimResponse: {
|
|
|
2944
2952
|
*/
|
|
2945
2953
|
export declare const MsgAssignInterim: {
|
|
2946
2954
|
typeUrl: string;
|
|
2955
|
+
aminoType: string;
|
|
2947
2956
|
encode(message: MsgAssignInterim, writer?: BinaryWriter): BinaryWriter;
|
|
2948
2957
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgAssignInterim;
|
|
2949
2958
|
fromPartial(object: DeepPartial<MsgAssignInterim>): MsgAssignInterim;
|
|
2950
2959
|
fromAmino(object: MsgAssignInterimAmino): MsgAssignInterim;
|
|
2951
2960
|
toAmino(message: MsgAssignInterim): MsgAssignInterimAmino;
|
|
2952
2961
|
fromAminoMsg(object: MsgAssignInterimAminoMsg): MsgAssignInterim;
|
|
2962
|
+
toAminoMsg(message: MsgAssignInterim): MsgAssignInterimAminoMsg;
|
|
2953
2963
|
fromProtoMsg(message: MsgAssignInterimProtoMsg): MsgAssignInterim;
|
|
2954
2964
|
toProto(message: MsgAssignInterim): Uint8Array;
|
|
2955
2965
|
toProtoMsg(message: MsgAssignInterim): MsgAssignInterimProtoMsg;
|
|
@@ -2980,12 +2990,14 @@ export declare const MsgAssignInterimResponse: {
|
|
|
2980
2990
|
*/
|
|
2981
2991
|
export declare const MsgSubmitInterimWork: {
|
|
2982
2992
|
typeUrl: string;
|
|
2993
|
+
aminoType: string;
|
|
2983
2994
|
encode(message: MsgSubmitInterimWork, writer?: BinaryWriter): BinaryWriter;
|
|
2984
2995
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitInterimWork;
|
|
2985
2996
|
fromPartial(object: DeepPartial<MsgSubmitInterimWork>): MsgSubmitInterimWork;
|
|
2986
2997
|
fromAmino(object: MsgSubmitInterimWorkAmino): MsgSubmitInterimWork;
|
|
2987
2998
|
toAmino(message: MsgSubmitInterimWork): MsgSubmitInterimWorkAmino;
|
|
2988
2999
|
fromAminoMsg(object: MsgSubmitInterimWorkAminoMsg): MsgSubmitInterimWork;
|
|
3000
|
+
toAminoMsg(message: MsgSubmitInterimWork): MsgSubmitInterimWorkAminoMsg;
|
|
2989
3001
|
fromProtoMsg(message: MsgSubmitInterimWorkProtoMsg): MsgSubmitInterimWork;
|
|
2990
3002
|
toProto(message: MsgSubmitInterimWork): Uint8Array;
|
|
2991
3003
|
toProtoMsg(message: MsgSubmitInterimWork): MsgSubmitInterimWorkProtoMsg;
|
|
@@ -3016,12 +3028,14 @@ export declare const MsgSubmitInterimWorkResponse: {
|
|
|
3016
3028
|
*/
|
|
3017
3029
|
export declare const MsgApproveInterim: {
|
|
3018
3030
|
typeUrl: string;
|
|
3031
|
+
aminoType: string;
|
|
3019
3032
|
encode(message: MsgApproveInterim, writer?: BinaryWriter): BinaryWriter;
|
|
3020
3033
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgApproveInterim;
|
|
3021
3034
|
fromPartial(object: DeepPartial<MsgApproveInterim>): MsgApproveInterim;
|
|
3022
3035
|
fromAmino(object: MsgApproveInterimAmino): MsgApproveInterim;
|
|
3023
3036
|
toAmino(message: MsgApproveInterim): MsgApproveInterimAmino;
|
|
3024
3037
|
fromAminoMsg(object: MsgApproveInterimAminoMsg): MsgApproveInterim;
|
|
3038
|
+
toAminoMsg(message: MsgApproveInterim): MsgApproveInterimAminoMsg;
|
|
3025
3039
|
fromProtoMsg(message: MsgApproveInterimProtoMsg): MsgApproveInterim;
|
|
3026
3040
|
toProto(message: MsgApproveInterim): Uint8Array;
|
|
3027
3041
|
toProtoMsg(message: MsgApproveInterim): MsgApproveInterimProtoMsg;
|
|
@@ -3052,12 +3066,14 @@ export declare const MsgApproveInterimResponse: {
|
|
|
3052
3066
|
*/
|
|
3053
3067
|
export declare const MsgAbandonInterim: {
|
|
3054
3068
|
typeUrl: string;
|
|
3069
|
+
aminoType: string;
|
|
3055
3070
|
encode(message: MsgAbandonInterim, writer?: BinaryWriter): BinaryWriter;
|
|
3056
3071
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgAbandonInterim;
|
|
3057
3072
|
fromPartial(object: DeepPartial<MsgAbandonInterim>): MsgAbandonInterim;
|
|
3058
3073
|
fromAmino(object: MsgAbandonInterimAmino): MsgAbandonInterim;
|
|
3059
3074
|
toAmino(message: MsgAbandonInterim): MsgAbandonInterimAmino;
|
|
3060
3075
|
fromAminoMsg(object: MsgAbandonInterimAminoMsg): MsgAbandonInterim;
|
|
3076
|
+
toAminoMsg(message: MsgAbandonInterim): MsgAbandonInterimAminoMsg;
|
|
3061
3077
|
fromProtoMsg(message: MsgAbandonInterimProtoMsg): MsgAbandonInterim;
|
|
3062
3078
|
toProto(message: MsgAbandonInterim): Uint8Array;
|
|
3063
3079
|
toProtoMsg(message: MsgAbandonInterim): MsgAbandonInterimProtoMsg;
|
|
@@ -3088,12 +3104,14 @@ export declare const MsgAbandonInterimResponse: {
|
|
|
3088
3104
|
*/
|
|
3089
3105
|
export declare const MsgCompleteInterim: {
|
|
3090
3106
|
typeUrl: string;
|
|
3107
|
+
aminoType: string;
|
|
3091
3108
|
encode(message: MsgCompleteInterim, writer?: BinaryWriter): BinaryWriter;
|
|
3092
3109
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgCompleteInterim;
|
|
3093
3110
|
fromPartial(object: DeepPartial<MsgCompleteInterim>): MsgCompleteInterim;
|
|
3094
3111
|
fromAmino(object: MsgCompleteInterimAmino): MsgCompleteInterim;
|
|
3095
3112
|
toAmino(message: MsgCompleteInterim): MsgCompleteInterimAmino;
|
|
3096
3113
|
fromAminoMsg(object: MsgCompleteInterimAminoMsg): MsgCompleteInterim;
|
|
3114
|
+
toAminoMsg(message: MsgCompleteInterim): MsgCompleteInterimAminoMsg;
|
|
3097
3115
|
fromProtoMsg(message: MsgCompleteInterimProtoMsg): MsgCompleteInterim;
|
|
3098
3116
|
toProto(message: MsgCompleteInterim): Uint8Array;
|
|
3099
3117
|
toProtoMsg(message: MsgCompleteInterim): MsgCompleteInterimProtoMsg;
|
|
@@ -3124,12 +3142,14 @@ export declare const MsgCompleteInterimResponse: {
|
|
|
3124
3142
|
*/
|
|
3125
3143
|
export declare const MsgProposeProject: {
|
|
3126
3144
|
typeUrl: string;
|
|
3145
|
+
aminoType: string;
|
|
3127
3146
|
encode(message: MsgProposeProject, writer?: BinaryWriter): BinaryWriter;
|
|
3128
3147
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgProposeProject;
|
|
3129
3148
|
fromPartial(object: DeepPartial<MsgProposeProject>): MsgProposeProject;
|
|
3130
3149
|
fromAmino(object: MsgProposeProjectAmino): MsgProposeProject;
|
|
3131
3150
|
toAmino(message: MsgProposeProject): MsgProposeProjectAmino;
|
|
3132
3151
|
fromAminoMsg(object: MsgProposeProjectAminoMsg): MsgProposeProject;
|
|
3152
|
+
toAminoMsg(message: MsgProposeProject): MsgProposeProjectAminoMsg;
|
|
3133
3153
|
fromProtoMsg(message: MsgProposeProjectProtoMsg): MsgProposeProject;
|
|
3134
3154
|
toProto(message: MsgProposeProject): Uint8Array;
|
|
3135
3155
|
toProtoMsg(message: MsgProposeProject): MsgProposeProjectProtoMsg;
|
|
@@ -3160,12 +3180,14 @@ export declare const MsgProposeProjectResponse: {
|
|
|
3160
3180
|
*/
|
|
3161
3181
|
export declare const MsgApproveProjectBudget: {
|
|
3162
3182
|
typeUrl: string;
|
|
3183
|
+
aminoType: string;
|
|
3163
3184
|
encode(message: MsgApproveProjectBudget, writer?: BinaryWriter): BinaryWriter;
|
|
3164
3185
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgApproveProjectBudget;
|
|
3165
3186
|
fromPartial(object: DeepPartial<MsgApproveProjectBudget>): MsgApproveProjectBudget;
|
|
3166
3187
|
fromAmino(object: MsgApproveProjectBudgetAmino): MsgApproveProjectBudget;
|
|
3167
3188
|
toAmino(message: MsgApproveProjectBudget): MsgApproveProjectBudgetAmino;
|
|
3168
3189
|
fromAminoMsg(object: MsgApproveProjectBudgetAminoMsg): MsgApproveProjectBudget;
|
|
3190
|
+
toAminoMsg(message: MsgApproveProjectBudget): MsgApproveProjectBudgetAminoMsg;
|
|
3169
3191
|
fromProtoMsg(message: MsgApproveProjectBudgetProtoMsg): MsgApproveProjectBudget;
|
|
3170
3192
|
toProto(message: MsgApproveProjectBudget): Uint8Array;
|
|
3171
3193
|
toProtoMsg(message: MsgApproveProjectBudget): MsgApproveProjectBudgetProtoMsg;
|
|
@@ -3196,12 +3218,14 @@ export declare const MsgApproveProjectBudgetResponse: {
|
|
|
3196
3218
|
*/
|
|
3197
3219
|
export declare const MsgCancelProject: {
|
|
3198
3220
|
typeUrl: string;
|
|
3221
|
+
aminoType: string;
|
|
3199
3222
|
encode(message: MsgCancelProject, writer?: BinaryWriter): BinaryWriter;
|
|
3200
3223
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgCancelProject;
|
|
3201
3224
|
fromPartial(object: DeepPartial<MsgCancelProject>): MsgCancelProject;
|
|
3202
3225
|
fromAmino(object: MsgCancelProjectAmino): MsgCancelProject;
|
|
3203
3226
|
toAmino(message: MsgCancelProject): MsgCancelProjectAmino;
|
|
3204
3227
|
fromAminoMsg(object: MsgCancelProjectAminoMsg): MsgCancelProject;
|
|
3228
|
+
toAminoMsg(message: MsgCancelProject): MsgCancelProjectAminoMsg;
|
|
3205
3229
|
fromProtoMsg(message: MsgCancelProjectProtoMsg): MsgCancelProject;
|
|
3206
3230
|
toProto(message: MsgCancelProject): Uint8Array;
|
|
3207
3231
|
toProtoMsg(message: MsgCancelProject): MsgCancelProjectProtoMsg;
|
|
@@ -3232,12 +3256,14 @@ export declare const MsgCancelProjectResponse: {
|
|
|
3232
3256
|
*/
|
|
3233
3257
|
export declare const MsgCreateInitiative: {
|
|
3234
3258
|
typeUrl: string;
|
|
3259
|
+
aminoType: string;
|
|
3235
3260
|
encode(message: MsgCreateInitiative, writer?: BinaryWriter): BinaryWriter;
|
|
3236
3261
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateInitiative;
|
|
3237
3262
|
fromPartial(object: DeepPartial<MsgCreateInitiative>): MsgCreateInitiative;
|
|
3238
3263
|
fromAmino(object: MsgCreateInitiativeAmino): MsgCreateInitiative;
|
|
3239
3264
|
toAmino(message: MsgCreateInitiative): MsgCreateInitiativeAmino;
|
|
3240
3265
|
fromAminoMsg(object: MsgCreateInitiativeAminoMsg): MsgCreateInitiative;
|
|
3266
|
+
toAminoMsg(message: MsgCreateInitiative): MsgCreateInitiativeAminoMsg;
|
|
3241
3267
|
fromProtoMsg(message: MsgCreateInitiativeProtoMsg): MsgCreateInitiative;
|
|
3242
3268
|
toProto(message: MsgCreateInitiative): Uint8Array;
|
|
3243
3269
|
toProtoMsg(message: MsgCreateInitiative): MsgCreateInitiativeProtoMsg;
|
|
@@ -3268,12 +3294,14 @@ export declare const MsgCreateInitiativeResponse: {
|
|
|
3268
3294
|
*/
|
|
3269
3295
|
export declare const MsgAssignInitiative: {
|
|
3270
3296
|
typeUrl: string;
|
|
3297
|
+
aminoType: string;
|
|
3271
3298
|
encode(message: MsgAssignInitiative, writer?: BinaryWriter): BinaryWriter;
|
|
3272
3299
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgAssignInitiative;
|
|
3273
3300
|
fromPartial(object: DeepPartial<MsgAssignInitiative>): MsgAssignInitiative;
|
|
3274
3301
|
fromAmino(object: MsgAssignInitiativeAmino): MsgAssignInitiative;
|
|
3275
3302
|
toAmino(message: MsgAssignInitiative): MsgAssignInitiativeAmino;
|
|
3276
3303
|
fromAminoMsg(object: MsgAssignInitiativeAminoMsg): MsgAssignInitiative;
|
|
3304
|
+
toAminoMsg(message: MsgAssignInitiative): MsgAssignInitiativeAminoMsg;
|
|
3277
3305
|
fromProtoMsg(message: MsgAssignInitiativeProtoMsg): MsgAssignInitiative;
|
|
3278
3306
|
toProto(message: MsgAssignInitiative): Uint8Array;
|
|
3279
3307
|
toProtoMsg(message: MsgAssignInitiative): MsgAssignInitiativeProtoMsg;
|
|
@@ -3304,12 +3332,14 @@ export declare const MsgAssignInitiativeResponse: {
|
|
|
3304
3332
|
*/
|
|
3305
3333
|
export declare const MsgSubmitInitiativeWork: {
|
|
3306
3334
|
typeUrl: string;
|
|
3335
|
+
aminoType: string;
|
|
3307
3336
|
encode(message: MsgSubmitInitiativeWork, writer?: BinaryWriter): BinaryWriter;
|
|
3308
3337
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitInitiativeWork;
|
|
3309
3338
|
fromPartial(object: DeepPartial<MsgSubmitInitiativeWork>): MsgSubmitInitiativeWork;
|
|
3310
3339
|
fromAmino(object: MsgSubmitInitiativeWorkAmino): MsgSubmitInitiativeWork;
|
|
3311
3340
|
toAmino(message: MsgSubmitInitiativeWork): MsgSubmitInitiativeWorkAmino;
|
|
3312
3341
|
fromAminoMsg(object: MsgSubmitInitiativeWorkAminoMsg): MsgSubmitInitiativeWork;
|
|
3342
|
+
toAminoMsg(message: MsgSubmitInitiativeWork): MsgSubmitInitiativeWorkAminoMsg;
|
|
3313
3343
|
fromProtoMsg(message: MsgSubmitInitiativeWorkProtoMsg): MsgSubmitInitiativeWork;
|
|
3314
3344
|
toProto(message: MsgSubmitInitiativeWork): Uint8Array;
|
|
3315
3345
|
toProtoMsg(message: MsgSubmitInitiativeWork): MsgSubmitInitiativeWorkProtoMsg;
|
|
@@ -3340,12 +3370,14 @@ export declare const MsgSubmitInitiativeWorkResponse: {
|
|
|
3340
3370
|
*/
|
|
3341
3371
|
export declare const MsgApproveInitiative: {
|
|
3342
3372
|
typeUrl: string;
|
|
3373
|
+
aminoType: string;
|
|
3343
3374
|
encode(message: MsgApproveInitiative, writer?: BinaryWriter): BinaryWriter;
|
|
3344
3375
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgApproveInitiative;
|
|
3345
3376
|
fromPartial(object: DeepPartial<MsgApproveInitiative>): MsgApproveInitiative;
|
|
3346
3377
|
fromAmino(object: MsgApproveInitiativeAmino): MsgApproveInitiative;
|
|
3347
3378
|
toAmino(message: MsgApproveInitiative): MsgApproveInitiativeAmino;
|
|
3348
3379
|
fromAminoMsg(object: MsgApproveInitiativeAminoMsg): MsgApproveInitiative;
|
|
3380
|
+
toAminoMsg(message: MsgApproveInitiative): MsgApproveInitiativeAminoMsg;
|
|
3349
3381
|
fromProtoMsg(message: MsgApproveInitiativeProtoMsg): MsgApproveInitiative;
|
|
3350
3382
|
toProto(message: MsgApproveInitiative): Uint8Array;
|
|
3351
3383
|
toProtoMsg(message: MsgApproveInitiative): MsgApproveInitiativeProtoMsg;
|
|
@@ -3376,12 +3408,14 @@ export declare const MsgApproveInitiativeResponse: {
|
|
|
3376
3408
|
*/
|
|
3377
3409
|
export declare const MsgAbandonInitiative: {
|
|
3378
3410
|
typeUrl: string;
|
|
3411
|
+
aminoType: string;
|
|
3379
3412
|
encode(message: MsgAbandonInitiative, writer?: BinaryWriter): BinaryWriter;
|
|
3380
3413
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgAbandonInitiative;
|
|
3381
3414
|
fromPartial(object: DeepPartial<MsgAbandonInitiative>): MsgAbandonInitiative;
|
|
3382
3415
|
fromAmino(object: MsgAbandonInitiativeAmino): MsgAbandonInitiative;
|
|
3383
3416
|
toAmino(message: MsgAbandonInitiative): MsgAbandonInitiativeAmino;
|
|
3384
3417
|
fromAminoMsg(object: MsgAbandonInitiativeAminoMsg): MsgAbandonInitiative;
|
|
3418
|
+
toAminoMsg(message: MsgAbandonInitiative): MsgAbandonInitiativeAminoMsg;
|
|
3385
3419
|
fromProtoMsg(message: MsgAbandonInitiativeProtoMsg): MsgAbandonInitiative;
|
|
3386
3420
|
toProto(message: MsgAbandonInitiative): Uint8Array;
|
|
3387
3421
|
toProtoMsg(message: MsgAbandonInitiative): MsgAbandonInitiativeProtoMsg;
|
|
@@ -3412,12 +3446,14 @@ export declare const MsgAbandonInitiativeResponse: {
|
|
|
3412
3446
|
*/
|
|
3413
3447
|
export declare const MsgCompleteInitiative: {
|
|
3414
3448
|
typeUrl: string;
|
|
3449
|
+
aminoType: string;
|
|
3415
3450
|
encode(message: MsgCompleteInitiative, writer?: BinaryWriter): BinaryWriter;
|
|
3416
3451
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgCompleteInitiative;
|
|
3417
3452
|
fromPartial(object: DeepPartial<MsgCompleteInitiative>): MsgCompleteInitiative;
|
|
3418
3453
|
fromAmino(object: MsgCompleteInitiativeAmino): MsgCompleteInitiative;
|
|
3419
3454
|
toAmino(message: MsgCompleteInitiative): MsgCompleteInitiativeAmino;
|
|
3420
3455
|
fromAminoMsg(object: MsgCompleteInitiativeAminoMsg): MsgCompleteInitiative;
|
|
3456
|
+
toAminoMsg(message: MsgCompleteInitiative): MsgCompleteInitiativeAminoMsg;
|
|
3421
3457
|
fromProtoMsg(message: MsgCompleteInitiativeProtoMsg): MsgCompleteInitiative;
|
|
3422
3458
|
toProto(message: MsgCompleteInitiative): Uint8Array;
|
|
3423
3459
|
toProtoMsg(message: MsgCompleteInitiative): MsgCompleteInitiativeProtoMsg;
|
|
@@ -3448,12 +3484,14 @@ export declare const MsgCompleteInitiativeResponse: {
|
|
|
3448
3484
|
*/
|
|
3449
3485
|
export declare const MsgStake: {
|
|
3450
3486
|
typeUrl: string;
|
|
3487
|
+
aminoType: string;
|
|
3451
3488
|
encode(message: MsgStake, writer?: BinaryWriter): BinaryWriter;
|
|
3452
3489
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgStake;
|
|
3453
3490
|
fromPartial(object: DeepPartial<MsgStake>): MsgStake;
|
|
3454
3491
|
fromAmino(object: MsgStakeAmino): MsgStake;
|
|
3455
3492
|
toAmino(message: MsgStake): MsgStakeAmino;
|
|
3456
3493
|
fromAminoMsg(object: MsgStakeAminoMsg): MsgStake;
|
|
3494
|
+
toAminoMsg(message: MsgStake): MsgStakeAminoMsg;
|
|
3457
3495
|
fromProtoMsg(message: MsgStakeProtoMsg): MsgStake;
|
|
3458
3496
|
toProto(message: MsgStake): Uint8Array;
|
|
3459
3497
|
toProtoMsg(message: MsgStake): MsgStakeProtoMsg;
|
|
@@ -3484,12 +3522,14 @@ export declare const MsgStakeResponse: {
|
|
|
3484
3522
|
*/
|
|
3485
3523
|
export declare const MsgUnstake: {
|
|
3486
3524
|
typeUrl: string;
|
|
3525
|
+
aminoType: string;
|
|
3487
3526
|
encode(message: MsgUnstake, writer?: BinaryWriter): BinaryWriter;
|
|
3488
3527
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgUnstake;
|
|
3489
3528
|
fromPartial(object: DeepPartial<MsgUnstake>): MsgUnstake;
|
|
3490
3529
|
fromAmino(object: MsgUnstakeAmino): MsgUnstake;
|
|
3491
3530
|
toAmino(message: MsgUnstake): MsgUnstakeAmino;
|
|
3492
3531
|
fromAminoMsg(object: MsgUnstakeAminoMsg): MsgUnstake;
|
|
3532
|
+
toAminoMsg(message: MsgUnstake): MsgUnstakeAminoMsg;
|
|
3493
3533
|
fromProtoMsg(message: MsgUnstakeProtoMsg): MsgUnstake;
|
|
3494
3534
|
toProto(message: MsgUnstake): Uint8Array;
|
|
3495
3535
|
toProtoMsg(message: MsgUnstake): MsgUnstakeProtoMsg;
|
|
@@ -3520,12 +3560,14 @@ export declare const MsgUnstakeResponse: {
|
|
|
3520
3560
|
*/
|
|
3521
3561
|
export declare const MsgClaimStakingRewards: {
|
|
3522
3562
|
typeUrl: string;
|
|
3563
|
+
aminoType: string;
|
|
3523
3564
|
encode(message: MsgClaimStakingRewards, writer?: BinaryWriter): BinaryWriter;
|
|
3524
3565
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgClaimStakingRewards;
|
|
3525
3566
|
fromPartial(object: DeepPartial<MsgClaimStakingRewards>): MsgClaimStakingRewards;
|
|
3526
3567
|
fromAmino(object: MsgClaimStakingRewardsAmino): MsgClaimStakingRewards;
|
|
3527
3568
|
toAmino(message: MsgClaimStakingRewards): MsgClaimStakingRewardsAmino;
|
|
3528
3569
|
fromAminoMsg(object: MsgClaimStakingRewardsAminoMsg): MsgClaimStakingRewards;
|
|
3570
|
+
toAminoMsg(message: MsgClaimStakingRewards): MsgClaimStakingRewardsAminoMsg;
|
|
3529
3571
|
fromProtoMsg(message: MsgClaimStakingRewardsProtoMsg): MsgClaimStakingRewards;
|
|
3530
3572
|
toProto(message: MsgClaimStakingRewards): Uint8Array;
|
|
3531
3573
|
toProtoMsg(message: MsgClaimStakingRewards): MsgClaimStakingRewardsProtoMsg;
|
|
@@ -3556,12 +3598,14 @@ export declare const MsgClaimStakingRewardsResponse: {
|
|
|
3556
3598
|
*/
|
|
3557
3599
|
export declare const MsgCompoundStakingRewards: {
|
|
3558
3600
|
typeUrl: string;
|
|
3601
|
+
aminoType: string;
|
|
3559
3602
|
encode(message: MsgCompoundStakingRewards, writer?: BinaryWriter): BinaryWriter;
|
|
3560
3603
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgCompoundStakingRewards;
|
|
3561
3604
|
fromPartial(object: DeepPartial<MsgCompoundStakingRewards>): MsgCompoundStakingRewards;
|
|
3562
3605
|
fromAmino(object: MsgCompoundStakingRewardsAmino): MsgCompoundStakingRewards;
|
|
3563
3606
|
toAmino(message: MsgCompoundStakingRewards): MsgCompoundStakingRewardsAmino;
|
|
3564
3607
|
fromAminoMsg(object: MsgCompoundStakingRewardsAminoMsg): MsgCompoundStakingRewards;
|
|
3608
|
+
toAminoMsg(message: MsgCompoundStakingRewards): MsgCompoundStakingRewardsAminoMsg;
|
|
3565
3609
|
fromProtoMsg(message: MsgCompoundStakingRewardsProtoMsg): MsgCompoundStakingRewards;
|
|
3566
3610
|
toProto(message: MsgCompoundStakingRewards): Uint8Array;
|
|
3567
3611
|
toProtoMsg(message: MsgCompoundStakingRewards): MsgCompoundStakingRewardsProtoMsg;
|
|
@@ -3592,12 +3636,14 @@ export declare const MsgCompoundStakingRewardsResponse: {
|
|
|
3592
3636
|
*/
|
|
3593
3637
|
export declare const MsgCreateChallenge: {
|
|
3594
3638
|
typeUrl: string;
|
|
3639
|
+
aminoType: string;
|
|
3595
3640
|
encode(message: MsgCreateChallenge, writer?: BinaryWriter): BinaryWriter;
|
|
3596
3641
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateChallenge;
|
|
3597
3642
|
fromPartial(object: DeepPartial<MsgCreateChallenge>): MsgCreateChallenge;
|
|
3598
3643
|
fromAmino(object: MsgCreateChallengeAmino): MsgCreateChallenge;
|
|
3599
3644
|
toAmino(message: MsgCreateChallenge): MsgCreateChallengeAmino;
|
|
3600
3645
|
fromAminoMsg(object: MsgCreateChallengeAminoMsg): MsgCreateChallenge;
|
|
3646
|
+
toAminoMsg(message: MsgCreateChallenge): MsgCreateChallengeAminoMsg;
|
|
3601
3647
|
fromProtoMsg(message: MsgCreateChallengeProtoMsg): MsgCreateChallenge;
|
|
3602
3648
|
toProto(message: MsgCreateChallenge): Uint8Array;
|
|
3603
3649
|
toProtoMsg(message: MsgCreateChallenge): MsgCreateChallengeProtoMsg;
|
|
@@ -3628,12 +3674,14 @@ export declare const MsgCreateChallengeResponse: {
|
|
|
3628
3674
|
*/
|
|
3629
3675
|
export declare const MsgRespondToChallenge: {
|
|
3630
3676
|
typeUrl: string;
|
|
3677
|
+
aminoType: string;
|
|
3631
3678
|
encode(message: MsgRespondToChallenge, writer?: BinaryWriter): BinaryWriter;
|
|
3632
3679
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgRespondToChallenge;
|
|
3633
3680
|
fromPartial(object: DeepPartial<MsgRespondToChallenge>): MsgRespondToChallenge;
|
|
3634
3681
|
fromAmino(object: MsgRespondToChallengeAmino): MsgRespondToChallenge;
|
|
3635
3682
|
toAmino(message: MsgRespondToChallenge): MsgRespondToChallengeAmino;
|
|
3636
3683
|
fromAminoMsg(object: MsgRespondToChallengeAminoMsg): MsgRespondToChallenge;
|
|
3684
|
+
toAminoMsg(message: MsgRespondToChallenge): MsgRespondToChallengeAminoMsg;
|
|
3637
3685
|
fromProtoMsg(message: MsgRespondToChallengeProtoMsg): MsgRespondToChallenge;
|
|
3638
3686
|
toProto(message: MsgRespondToChallenge): Uint8Array;
|
|
3639
3687
|
toProtoMsg(message: MsgRespondToChallenge): MsgRespondToChallengeProtoMsg;
|
|
@@ -3664,12 +3712,14 @@ export declare const MsgRespondToChallengeResponse: {
|
|
|
3664
3712
|
*/
|
|
3665
3713
|
export declare const MsgSubmitJurorVote: {
|
|
3666
3714
|
typeUrl: string;
|
|
3715
|
+
aminoType: string;
|
|
3667
3716
|
encode(message: MsgSubmitJurorVote, writer?: BinaryWriter): BinaryWriter;
|
|
3668
3717
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitJurorVote;
|
|
3669
3718
|
fromPartial(object: DeepPartial<MsgSubmitJurorVote>): MsgSubmitJurorVote;
|
|
3670
3719
|
fromAmino(object: MsgSubmitJurorVoteAmino): MsgSubmitJurorVote;
|
|
3671
3720
|
toAmino(message: MsgSubmitJurorVote): MsgSubmitJurorVoteAmino;
|
|
3672
3721
|
fromAminoMsg(object: MsgSubmitJurorVoteAminoMsg): MsgSubmitJurorVote;
|
|
3722
|
+
toAminoMsg(message: MsgSubmitJurorVote): MsgSubmitJurorVoteAminoMsg;
|
|
3673
3723
|
fromProtoMsg(message: MsgSubmitJurorVoteProtoMsg): MsgSubmitJurorVote;
|
|
3674
3724
|
toProto(message: MsgSubmitJurorVote): Uint8Array;
|
|
3675
3725
|
toProtoMsg(message: MsgSubmitJurorVote): MsgSubmitJurorVoteProtoMsg;
|
|
@@ -3700,12 +3750,14 @@ export declare const MsgSubmitJurorVoteResponse: {
|
|
|
3700
3750
|
*/
|
|
3701
3751
|
export declare const MsgSubmitExpertTestimony: {
|
|
3702
3752
|
typeUrl: string;
|
|
3753
|
+
aminoType: string;
|
|
3703
3754
|
encode(message: MsgSubmitExpertTestimony, writer?: BinaryWriter): BinaryWriter;
|
|
3704
3755
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitExpertTestimony;
|
|
3705
3756
|
fromPartial(object: DeepPartial<MsgSubmitExpertTestimony>): MsgSubmitExpertTestimony;
|
|
3706
3757
|
fromAmino(object: MsgSubmitExpertTestimonyAmino): MsgSubmitExpertTestimony;
|
|
3707
3758
|
toAmino(message: MsgSubmitExpertTestimony): MsgSubmitExpertTestimonyAmino;
|
|
3708
3759
|
fromAminoMsg(object: MsgSubmitExpertTestimonyAminoMsg): MsgSubmitExpertTestimony;
|
|
3760
|
+
toAminoMsg(message: MsgSubmitExpertTestimony): MsgSubmitExpertTestimonyAminoMsg;
|
|
3709
3761
|
fromProtoMsg(message: MsgSubmitExpertTestimonyProtoMsg): MsgSubmitExpertTestimony;
|
|
3710
3762
|
toProto(message: MsgSubmitExpertTestimony): Uint8Array;
|
|
3711
3763
|
toProtoMsg(message: MsgSubmitExpertTestimony): MsgSubmitExpertTestimonyProtoMsg;
|
|
@@ -3736,12 +3788,14 @@ export declare const MsgSubmitExpertTestimonyResponse: {
|
|
|
3736
3788
|
*/
|
|
3737
3789
|
export declare const MsgChallengeContent: {
|
|
3738
3790
|
typeUrl: string;
|
|
3791
|
+
aminoType: string;
|
|
3739
3792
|
encode(message: MsgChallengeContent, writer?: BinaryWriter): BinaryWriter;
|
|
3740
3793
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgChallengeContent;
|
|
3741
3794
|
fromPartial(object: DeepPartial<MsgChallengeContent>): MsgChallengeContent;
|
|
3742
3795
|
fromAmino(object: MsgChallengeContentAmino): MsgChallengeContent;
|
|
3743
3796
|
toAmino(message: MsgChallengeContent): MsgChallengeContentAmino;
|
|
3744
3797
|
fromAminoMsg(object: MsgChallengeContentAminoMsg): MsgChallengeContent;
|
|
3798
|
+
toAminoMsg(message: MsgChallengeContent): MsgChallengeContentAminoMsg;
|
|
3745
3799
|
fromProtoMsg(message: MsgChallengeContentProtoMsg): MsgChallengeContent;
|
|
3746
3800
|
toProto(message: MsgChallengeContent): Uint8Array;
|
|
3747
3801
|
toProtoMsg(message: MsgChallengeContent): MsgChallengeContentProtoMsg;
|
|
@@ -3772,12 +3826,14 @@ export declare const MsgChallengeContentResponse: {
|
|
|
3772
3826
|
*/
|
|
3773
3827
|
export declare const MsgRespondToContentChallenge: {
|
|
3774
3828
|
typeUrl: string;
|
|
3829
|
+
aminoType: string;
|
|
3775
3830
|
encode(message: MsgRespondToContentChallenge, writer?: BinaryWriter): BinaryWriter;
|
|
3776
3831
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgRespondToContentChallenge;
|
|
3777
3832
|
fromPartial(object: DeepPartial<MsgRespondToContentChallenge>): MsgRespondToContentChallenge;
|
|
3778
3833
|
fromAmino(object: MsgRespondToContentChallengeAmino): MsgRespondToContentChallenge;
|
|
3779
3834
|
toAmino(message: MsgRespondToContentChallenge): MsgRespondToContentChallengeAmino;
|
|
3780
3835
|
fromAminoMsg(object: MsgRespondToContentChallengeAminoMsg): MsgRespondToContentChallenge;
|
|
3836
|
+
toAminoMsg(message: MsgRespondToContentChallenge): MsgRespondToContentChallengeAminoMsg;
|
|
3781
3837
|
fromProtoMsg(message: MsgRespondToContentChallengeProtoMsg): MsgRespondToContentChallenge;
|
|
3782
3838
|
toProto(message: MsgRespondToContentChallenge): Uint8Array;
|
|
3783
3839
|
toProtoMsg(message: MsgRespondToContentChallenge): MsgRespondToContentChallengeProtoMsg;
|
|
@@ -3808,12 +3864,14 @@ export declare const MsgRespondToContentChallengeResponse: {
|
|
|
3808
3864
|
*/
|
|
3809
3865
|
export declare const MsgRegisterZkPublicKey: {
|
|
3810
3866
|
typeUrl: string;
|
|
3867
|
+
aminoType: string;
|
|
3811
3868
|
encode(message: MsgRegisterZkPublicKey, writer?: BinaryWriter): BinaryWriter;
|
|
3812
3869
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgRegisterZkPublicKey;
|
|
3813
3870
|
fromPartial(object: DeepPartial<MsgRegisterZkPublicKey>): MsgRegisterZkPublicKey;
|
|
3814
3871
|
fromAmino(object: MsgRegisterZkPublicKeyAmino): MsgRegisterZkPublicKey;
|
|
3815
3872
|
toAmino(message: MsgRegisterZkPublicKey): MsgRegisterZkPublicKeyAmino;
|
|
3816
3873
|
fromAminoMsg(object: MsgRegisterZkPublicKeyAminoMsg): MsgRegisterZkPublicKey;
|
|
3874
|
+
toAminoMsg(message: MsgRegisterZkPublicKey): MsgRegisterZkPublicKeyAminoMsg;
|
|
3817
3875
|
fromProtoMsg(message: MsgRegisterZkPublicKeyProtoMsg): MsgRegisterZkPublicKey;
|
|
3818
3876
|
toProto(message: MsgRegisterZkPublicKey): Uint8Array;
|
|
3819
3877
|
toProtoMsg(message: MsgRegisterZkPublicKey): MsgRegisterZkPublicKeyProtoMsg;
|
|
@@ -3846,12 +3904,14 @@ export declare const MsgRegisterZkPublicKeyResponse: {
|
|
|
3846
3904
|
*/
|
|
3847
3905
|
export declare const MsgCreateTag: {
|
|
3848
3906
|
typeUrl: string;
|
|
3907
|
+
aminoType: string;
|
|
3849
3908
|
encode(message: MsgCreateTag, writer?: BinaryWriter): BinaryWriter;
|
|
3850
3909
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateTag;
|
|
3851
3910
|
fromPartial(object: DeepPartial<MsgCreateTag>): MsgCreateTag;
|
|
3852
3911
|
fromAmino(object: MsgCreateTagAmino): MsgCreateTag;
|
|
3853
3912
|
toAmino(message: MsgCreateTag): MsgCreateTagAmino;
|
|
3854
3913
|
fromAminoMsg(object: MsgCreateTagAminoMsg): MsgCreateTag;
|
|
3914
|
+
toAminoMsg(message: MsgCreateTag): MsgCreateTagAminoMsg;
|
|
3855
3915
|
fromProtoMsg(message: MsgCreateTagProtoMsg): MsgCreateTag;
|
|
3856
3916
|
toProto(message: MsgCreateTag): Uint8Array;
|
|
3857
3917
|
toProtoMsg(message: MsgCreateTag): MsgCreateTagProtoMsg;
|
|
@@ -3882,12 +3942,14 @@ export declare const MsgCreateTagResponse: {
|
|
|
3882
3942
|
*/
|
|
3883
3943
|
export declare const MsgReportTag: {
|
|
3884
3944
|
typeUrl: string;
|
|
3945
|
+
aminoType: string;
|
|
3885
3946
|
encode(message: MsgReportTag, writer?: BinaryWriter): BinaryWriter;
|
|
3886
3947
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgReportTag;
|
|
3887
3948
|
fromPartial(object: DeepPartial<MsgReportTag>): MsgReportTag;
|
|
3888
3949
|
fromAmino(object: MsgReportTagAmino): MsgReportTag;
|
|
3889
3950
|
toAmino(message: MsgReportTag): MsgReportTagAmino;
|
|
3890
3951
|
fromAminoMsg(object: MsgReportTagAminoMsg): MsgReportTag;
|
|
3952
|
+
toAminoMsg(message: MsgReportTag): MsgReportTagAminoMsg;
|
|
3891
3953
|
fromProtoMsg(message: MsgReportTagProtoMsg): MsgReportTag;
|
|
3892
3954
|
toProto(message: MsgReportTag): Uint8Array;
|
|
3893
3955
|
toProtoMsg(message: MsgReportTag): MsgReportTagProtoMsg;
|
|
@@ -3918,12 +3980,14 @@ export declare const MsgReportTagResponse: {
|
|
|
3918
3980
|
*/
|
|
3919
3981
|
export declare const MsgResolveTagReport: {
|
|
3920
3982
|
typeUrl: string;
|
|
3983
|
+
aminoType: string;
|
|
3921
3984
|
encode(message: MsgResolveTagReport, writer?: BinaryWriter): BinaryWriter;
|
|
3922
3985
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgResolveTagReport;
|
|
3923
3986
|
fromPartial(object: DeepPartial<MsgResolveTagReport>): MsgResolveTagReport;
|
|
3924
3987
|
fromAmino(object: MsgResolveTagReportAmino): MsgResolveTagReport;
|
|
3925
3988
|
toAmino(message: MsgResolveTagReport): MsgResolveTagReportAmino;
|
|
3926
3989
|
fromAminoMsg(object: MsgResolveTagReportAminoMsg): MsgResolveTagReport;
|
|
3990
|
+
toAminoMsg(message: MsgResolveTagReport): MsgResolveTagReportAminoMsg;
|
|
3927
3991
|
fromProtoMsg(message: MsgResolveTagReportProtoMsg): MsgResolveTagReport;
|
|
3928
3992
|
toProto(message: MsgResolveTagReport): Uint8Array;
|
|
3929
3993
|
toProtoMsg(message: MsgResolveTagReport): MsgResolveTagReportProtoMsg;
|
|
@@ -3954,12 +4018,14 @@ export declare const MsgResolveTagReportResponse: {
|
|
|
3954
4018
|
*/
|
|
3955
4019
|
export declare const MsgCreateTagBudget: {
|
|
3956
4020
|
typeUrl: string;
|
|
4021
|
+
aminoType: string;
|
|
3957
4022
|
encode(message: MsgCreateTagBudget, writer?: BinaryWriter): BinaryWriter;
|
|
3958
4023
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateTagBudget;
|
|
3959
4024
|
fromPartial(object: DeepPartial<MsgCreateTagBudget>): MsgCreateTagBudget;
|
|
3960
4025
|
fromAmino(object: MsgCreateTagBudgetAmino): MsgCreateTagBudget;
|
|
3961
4026
|
toAmino(message: MsgCreateTagBudget): MsgCreateTagBudgetAmino;
|
|
3962
4027
|
fromAminoMsg(object: MsgCreateTagBudgetAminoMsg): MsgCreateTagBudget;
|
|
4028
|
+
toAminoMsg(message: MsgCreateTagBudget): MsgCreateTagBudgetAminoMsg;
|
|
3963
4029
|
fromProtoMsg(message: MsgCreateTagBudgetProtoMsg): MsgCreateTagBudget;
|
|
3964
4030
|
toProto(message: MsgCreateTagBudget): Uint8Array;
|
|
3965
4031
|
toProtoMsg(message: MsgCreateTagBudget): MsgCreateTagBudgetProtoMsg;
|
|
@@ -3990,12 +4056,14 @@ export declare const MsgCreateTagBudgetResponse: {
|
|
|
3990
4056
|
*/
|
|
3991
4057
|
export declare const MsgAwardFromTagBudget: {
|
|
3992
4058
|
typeUrl: string;
|
|
4059
|
+
aminoType: string;
|
|
3993
4060
|
encode(message: MsgAwardFromTagBudget, writer?: BinaryWriter): BinaryWriter;
|
|
3994
4061
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgAwardFromTagBudget;
|
|
3995
4062
|
fromPartial(object: DeepPartial<MsgAwardFromTagBudget>): MsgAwardFromTagBudget;
|
|
3996
4063
|
fromAmino(object: MsgAwardFromTagBudgetAmino): MsgAwardFromTagBudget;
|
|
3997
4064
|
toAmino(message: MsgAwardFromTagBudget): MsgAwardFromTagBudgetAmino;
|
|
3998
4065
|
fromAminoMsg(object: MsgAwardFromTagBudgetAminoMsg): MsgAwardFromTagBudget;
|
|
4066
|
+
toAminoMsg(message: MsgAwardFromTagBudget): MsgAwardFromTagBudgetAminoMsg;
|
|
3999
4067
|
fromProtoMsg(message: MsgAwardFromTagBudgetProtoMsg): MsgAwardFromTagBudget;
|
|
4000
4068
|
toProto(message: MsgAwardFromTagBudget): Uint8Array;
|
|
4001
4069
|
toProtoMsg(message: MsgAwardFromTagBudget): MsgAwardFromTagBudgetProtoMsg;
|
|
@@ -4026,12 +4094,14 @@ export declare const MsgAwardFromTagBudgetResponse: {
|
|
|
4026
4094
|
*/
|
|
4027
4095
|
export declare const MsgTopUpTagBudget: {
|
|
4028
4096
|
typeUrl: string;
|
|
4097
|
+
aminoType: string;
|
|
4029
4098
|
encode(message: MsgTopUpTagBudget, writer?: BinaryWriter): BinaryWriter;
|
|
4030
4099
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgTopUpTagBudget;
|
|
4031
4100
|
fromPartial(object: DeepPartial<MsgTopUpTagBudget>): MsgTopUpTagBudget;
|
|
4032
4101
|
fromAmino(object: MsgTopUpTagBudgetAmino): MsgTopUpTagBudget;
|
|
4033
4102
|
toAmino(message: MsgTopUpTagBudget): MsgTopUpTagBudgetAmino;
|
|
4034
4103
|
fromAminoMsg(object: MsgTopUpTagBudgetAminoMsg): MsgTopUpTagBudget;
|
|
4104
|
+
toAminoMsg(message: MsgTopUpTagBudget): MsgTopUpTagBudgetAminoMsg;
|
|
4035
4105
|
fromProtoMsg(message: MsgTopUpTagBudgetProtoMsg): MsgTopUpTagBudget;
|
|
4036
4106
|
toProto(message: MsgTopUpTagBudget): Uint8Array;
|
|
4037
4107
|
toProtoMsg(message: MsgTopUpTagBudget): MsgTopUpTagBudgetProtoMsg;
|
|
@@ -4062,12 +4132,14 @@ export declare const MsgTopUpTagBudgetResponse: {
|
|
|
4062
4132
|
*/
|
|
4063
4133
|
export declare const MsgToggleTagBudget: {
|
|
4064
4134
|
typeUrl: string;
|
|
4135
|
+
aminoType: string;
|
|
4065
4136
|
encode(message: MsgToggleTagBudget, writer?: BinaryWriter): BinaryWriter;
|
|
4066
4137
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgToggleTagBudget;
|
|
4067
4138
|
fromPartial(object: DeepPartial<MsgToggleTagBudget>): MsgToggleTagBudget;
|
|
4068
4139
|
fromAmino(object: MsgToggleTagBudgetAmino): MsgToggleTagBudget;
|
|
4069
4140
|
toAmino(message: MsgToggleTagBudget): MsgToggleTagBudgetAmino;
|
|
4070
4141
|
fromAminoMsg(object: MsgToggleTagBudgetAminoMsg): MsgToggleTagBudget;
|
|
4142
|
+
toAminoMsg(message: MsgToggleTagBudget): MsgToggleTagBudgetAminoMsg;
|
|
4071
4143
|
fromProtoMsg(message: MsgToggleTagBudgetProtoMsg): MsgToggleTagBudget;
|
|
4072
4144
|
toProto(message: MsgToggleTagBudget): Uint8Array;
|
|
4073
4145
|
toProtoMsg(message: MsgToggleTagBudget): MsgToggleTagBudgetProtoMsg;
|
|
@@ -4098,12 +4170,14 @@ export declare const MsgToggleTagBudgetResponse: {
|
|
|
4098
4170
|
*/
|
|
4099
4171
|
export declare const MsgWithdrawTagBudget: {
|
|
4100
4172
|
typeUrl: string;
|
|
4173
|
+
aminoType: string;
|
|
4101
4174
|
encode(message: MsgWithdrawTagBudget, writer?: BinaryWriter): BinaryWriter;
|
|
4102
4175
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgWithdrawTagBudget;
|
|
4103
4176
|
fromPartial(object: DeepPartial<MsgWithdrawTagBudget>): MsgWithdrawTagBudget;
|
|
4104
4177
|
fromAmino(object: MsgWithdrawTagBudgetAmino): MsgWithdrawTagBudget;
|
|
4105
4178
|
toAmino(message: MsgWithdrawTagBudget): MsgWithdrawTagBudgetAmino;
|
|
4106
4179
|
fromAminoMsg(object: MsgWithdrawTagBudgetAminoMsg): MsgWithdrawTagBudget;
|
|
4180
|
+
toAminoMsg(message: MsgWithdrawTagBudget): MsgWithdrawTagBudgetAminoMsg;
|
|
4107
4181
|
fromProtoMsg(message: MsgWithdrawTagBudgetProtoMsg): MsgWithdrawTagBudget;
|
|
4108
4182
|
toProto(message: MsgWithdrawTagBudget): Uint8Array;
|
|
4109
4183
|
toProtoMsg(message: MsgWithdrawTagBudget): MsgWithdrawTagBudgetProtoMsg;
|
|
@@ -4136,12 +4210,14 @@ export declare const MsgWithdrawTagBudgetResponse: {
|
|
|
4136
4210
|
*/
|
|
4137
4211
|
export declare const MsgBondRole: {
|
|
4138
4212
|
typeUrl: string;
|
|
4213
|
+
aminoType: string;
|
|
4139
4214
|
encode(message: MsgBondRole, writer?: BinaryWriter): BinaryWriter;
|
|
4140
4215
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgBondRole;
|
|
4141
4216
|
fromPartial(object: DeepPartial<MsgBondRole>): MsgBondRole;
|
|
4142
4217
|
fromAmino(object: MsgBondRoleAmino): MsgBondRole;
|
|
4143
4218
|
toAmino(message: MsgBondRole): MsgBondRoleAmino;
|
|
4144
4219
|
fromAminoMsg(object: MsgBondRoleAminoMsg): MsgBondRole;
|
|
4220
|
+
toAminoMsg(message: MsgBondRole): MsgBondRoleAminoMsg;
|
|
4145
4221
|
fromProtoMsg(message: MsgBondRoleProtoMsg): MsgBondRole;
|
|
4146
4222
|
toProto(message: MsgBondRole): Uint8Array;
|
|
4147
4223
|
toProtoMsg(message: MsgBondRole): MsgBondRoleProtoMsg;
|
|
@@ -4174,12 +4250,14 @@ export declare const MsgBondRoleResponse: {
|
|
|
4174
4250
|
*/
|
|
4175
4251
|
export declare const MsgUnbondRole: {
|
|
4176
4252
|
typeUrl: string;
|
|
4253
|
+
aminoType: string;
|
|
4177
4254
|
encode(message: MsgUnbondRole, writer?: BinaryWriter): BinaryWriter;
|
|
4178
4255
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgUnbondRole;
|
|
4179
4256
|
fromPartial(object: DeepPartial<MsgUnbondRole>): MsgUnbondRole;
|
|
4180
4257
|
fromAmino(object: MsgUnbondRoleAmino): MsgUnbondRole;
|
|
4181
4258
|
toAmino(message: MsgUnbondRole): MsgUnbondRoleAmino;
|
|
4182
4259
|
fromAminoMsg(object: MsgUnbondRoleAminoMsg): MsgUnbondRole;
|
|
4260
|
+
toAminoMsg(message: MsgUnbondRole): MsgUnbondRoleAminoMsg;
|
|
4183
4261
|
fromProtoMsg(message: MsgUnbondRoleProtoMsg): MsgUnbondRole;
|
|
4184
4262
|
toProto(message: MsgUnbondRole): Uint8Array;
|
|
4185
4263
|
toProtoMsg(message: MsgUnbondRole): MsgUnbondRoleProtoMsg;
|
|
@@ -4210,12 +4288,14 @@ export declare const MsgUnbondRoleResponse: {
|
|
|
4210
4288
|
*/
|
|
4211
4289
|
export declare const MsgReportMember: {
|
|
4212
4290
|
typeUrl: string;
|
|
4291
|
+
aminoType: string;
|
|
4213
4292
|
encode(message: MsgReportMember, writer?: BinaryWriter): BinaryWriter;
|
|
4214
4293
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgReportMember;
|
|
4215
4294
|
fromPartial(object: DeepPartial<MsgReportMember>): MsgReportMember;
|
|
4216
4295
|
fromAmino(object: MsgReportMemberAmino): MsgReportMember;
|
|
4217
4296
|
toAmino(message: MsgReportMember): MsgReportMemberAmino;
|
|
4218
4297
|
fromAminoMsg(object: MsgReportMemberAminoMsg): MsgReportMember;
|
|
4298
|
+
toAminoMsg(message: MsgReportMember): MsgReportMemberAminoMsg;
|
|
4219
4299
|
fromProtoMsg(message: MsgReportMemberProtoMsg): MsgReportMember;
|
|
4220
4300
|
toProto(message: MsgReportMember): Uint8Array;
|
|
4221
4301
|
toProtoMsg(message: MsgReportMember): MsgReportMemberProtoMsg;
|
|
@@ -4246,12 +4326,14 @@ export declare const MsgReportMemberResponse: {
|
|
|
4246
4326
|
*/
|
|
4247
4327
|
export declare const MsgCosignMemberReport: {
|
|
4248
4328
|
typeUrl: string;
|
|
4329
|
+
aminoType: string;
|
|
4249
4330
|
encode(message: MsgCosignMemberReport, writer?: BinaryWriter): BinaryWriter;
|
|
4250
4331
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgCosignMemberReport;
|
|
4251
4332
|
fromPartial(object: DeepPartial<MsgCosignMemberReport>): MsgCosignMemberReport;
|
|
4252
4333
|
fromAmino(object: MsgCosignMemberReportAmino): MsgCosignMemberReport;
|
|
4253
4334
|
toAmino(message: MsgCosignMemberReport): MsgCosignMemberReportAmino;
|
|
4254
4335
|
fromAminoMsg(object: MsgCosignMemberReportAminoMsg): MsgCosignMemberReport;
|
|
4336
|
+
toAminoMsg(message: MsgCosignMemberReport): MsgCosignMemberReportAminoMsg;
|
|
4255
4337
|
fromProtoMsg(message: MsgCosignMemberReportProtoMsg): MsgCosignMemberReport;
|
|
4256
4338
|
toProto(message: MsgCosignMemberReport): Uint8Array;
|
|
4257
4339
|
toProtoMsg(message: MsgCosignMemberReport): MsgCosignMemberReportProtoMsg;
|
|
@@ -4282,12 +4364,14 @@ export declare const MsgCosignMemberReportResponse: {
|
|
|
4282
4364
|
*/
|
|
4283
4365
|
export declare const MsgResolveMemberReport: {
|
|
4284
4366
|
typeUrl: string;
|
|
4367
|
+
aminoType: string;
|
|
4285
4368
|
encode(message: MsgResolveMemberReport, writer?: BinaryWriter): BinaryWriter;
|
|
4286
4369
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgResolveMemberReport;
|
|
4287
4370
|
fromPartial(object: DeepPartial<MsgResolveMemberReport>): MsgResolveMemberReport;
|
|
4288
4371
|
fromAmino(object: MsgResolveMemberReportAmino): MsgResolveMemberReport;
|
|
4289
4372
|
toAmino(message: MsgResolveMemberReport): MsgResolveMemberReportAmino;
|
|
4290
4373
|
fromAminoMsg(object: MsgResolveMemberReportAminoMsg): MsgResolveMemberReport;
|
|
4374
|
+
toAminoMsg(message: MsgResolveMemberReport): MsgResolveMemberReportAminoMsg;
|
|
4291
4375
|
fromProtoMsg(message: MsgResolveMemberReportProtoMsg): MsgResolveMemberReport;
|
|
4292
4376
|
toProto(message: MsgResolveMemberReport): Uint8Array;
|
|
4293
4377
|
toProtoMsg(message: MsgResolveMemberReport): MsgResolveMemberReportProtoMsg;
|
|
@@ -4318,12 +4402,14 @@ export declare const MsgResolveMemberReportResponse: {
|
|
|
4318
4402
|
*/
|
|
4319
4403
|
export declare const MsgDefendMemberReport: {
|
|
4320
4404
|
typeUrl: string;
|
|
4405
|
+
aminoType: string;
|
|
4321
4406
|
encode(message: MsgDefendMemberReport, writer?: BinaryWriter): BinaryWriter;
|
|
4322
4407
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgDefendMemberReport;
|
|
4323
4408
|
fromPartial(object: DeepPartial<MsgDefendMemberReport>): MsgDefendMemberReport;
|
|
4324
4409
|
fromAmino(object: MsgDefendMemberReportAmino): MsgDefendMemberReport;
|
|
4325
4410
|
toAmino(message: MsgDefendMemberReport): MsgDefendMemberReportAmino;
|
|
4326
4411
|
fromAminoMsg(object: MsgDefendMemberReportAminoMsg): MsgDefendMemberReport;
|
|
4412
|
+
toAminoMsg(message: MsgDefendMemberReport): MsgDefendMemberReportAminoMsg;
|
|
4327
4413
|
fromProtoMsg(message: MsgDefendMemberReportProtoMsg): MsgDefendMemberReport;
|
|
4328
4414
|
toProto(message: MsgDefendMemberReport): Uint8Array;
|
|
4329
4415
|
toProtoMsg(message: MsgDefendMemberReport): MsgDefendMemberReportProtoMsg;
|
|
@@ -4354,12 +4440,14 @@ export declare const MsgDefendMemberReportResponse: {
|
|
|
4354
4440
|
*/
|
|
4355
4441
|
export declare const MsgAppealGovAction: {
|
|
4356
4442
|
typeUrl: string;
|
|
4443
|
+
aminoType: string;
|
|
4357
4444
|
encode(message: MsgAppealGovAction, writer?: BinaryWriter): BinaryWriter;
|
|
4358
4445
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgAppealGovAction;
|
|
4359
4446
|
fromPartial(object: DeepPartial<MsgAppealGovAction>): MsgAppealGovAction;
|
|
4360
4447
|
fromAmino(object: MsgAppealGovActionAmino): MsgAppealGovAction;
|
|
4361
4448
|
toAmino(message: MsgAppealGovAction): MsgAppealGovActionAmino;
|
|
4362
4449
|
fromAminoMsg(object: MsgAppealGovActionAminoMsg): MsgAppealGovAction;
|
|
4450
|
+
toAminoMsg(message: MsgAppealGovAction): MsgAppealGovActionAminoMsg;
|
|
4363
4451
|
fromProtoMsg(message: MsgAppealGovActionProtoMsg): MsgAppealGovAction;
|
|
4364
4452
|
toProto(message: MsgAppealGovAction): Uint8Array;
|
|
4365
4453
|
toProtoMsg(message: MsgAppealGovAction): MsgAppealGovActionProtoMsg;
|
|
@@ -4393,12 +4481,14 @@ export declare const MsgAppealGovActionResponse: {
|
|
|
4393
4481
|
*/
|
|
4394
4482
|
export declare const MsgResolveGovActionAppeal: {
|
|
4395
4483
|
typeUrl: string;
|
|
4484
|
+
aminoType: string;
|
|
4396
4485
|
encode(message: MsgResolveGovActionAppeal, writer?: BinaryWriter): BinaryWriter;
|
|
4397
4486
|
decode(input: BinaryReader | Uint8Array, length?: number): MsgResolveGovActionAppeal;
|
|
4398
4487
|
fromPartial(object: DeepPartial<MsgResolveGovActionAppeal>): MsgResolveGovActionAppeal;
|
|
4399
4488
|
fromAmino(object: MsgResolveGovActionAppealAmino): MsgResolveGovActionAppeal;
|
|
4400
4489
|
toAmino(message: MsgResolveGovActionAppeal): MsgResolveGovActionAppealAmino;
|
|
4401
4490
|
fromAminoMsg(object: MsgResolveGovActionAppealAminoMsg): MsgResolveGovActionAppeal;
|
|
4491
|
+
toAminoMsg(message: MsgResolveGovActionAppeal): MsgResolveGovActionAppealAminoMsg;
|
|
4402
4492
|
fromProtoMsg(message: MsgResolveGovActionAppealProtoMsg): MsgResolveGovActionAppeal;
|
|
4403
4493
|
toProto(message: MsgResolveGovActionAppeal): Uint8Array;
|
|
4404
4494
|
toProtoMsg(message: MsgResolveGovActionAppeal): MsgResolveGovActionAppealProtoMsg;
|