@iconlake/client 0.4.0 → 0.6.0
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/dist/index.iife.js +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1300 -1239
- package/dist/index.umd.js +1 -1
- package/package.json +2 -2
- package/types/cosmos.authz.v1beta1/module.d.ts +10 -10
- package/types/cosmos.bank.v1beta1/module.d.ts +10 -10
- package/types/cosmos.distribution.v1beta1/module.d.ts +21 -21
- package/types/cosmos.gov.v1/module.d.ts +12 -12
- package/types/cosmos.gov.v1beta1/module.d.ts +12 -12
- package/types/cosmos.group.v1/module.d.ts +79 -79
- package/types/cosmos.staking.v1beta1/module.d.ts +21 -21
- package/types/cosmos.upgrade.v1beta1/module.d.ts +10 -10
- package/types/cosmos.vesting.v1beta1/module.d.ts +11 -11
- package/types/iconlake.drop/module.d.ts +12 -1
- package/types/iconlake.drop/rest.d.ts +1 -0
- package/types/iconlake.drop/types/iconlake/drop/tx.d.ts +41 -0
- package/types/iconlake.icon/module.d.ts +11 -11
- package/types/index.d.ts +140 -132
package/types/index.d.ts
CHANGED
|
@@ -13,22 +13,22 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
13
13
|
CosmosBankV1Beta1: {
|
|
14
14
|
query: import("./cosmos.bank.v1beta1/rest").Api<unknown>;
|
|
15
15
|
tx: {
|
|
16
|
-
sendMsgMultiSend({ value, fee, memo }: {
|
|
17
|
-
value: import("./cosmos.bank.v1beta1/module").MsgMultiSend;
|
|
18
|
-
fee?: import("@cosmjs/launchpad").StdFee;
|
|
19
|
-
memo?: string;
|
|
20
|
-
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
21
16
|
sendMsgSend({ value, fee, memo }: {
|
|
22
17
|
value: import("./cosmos.bank.v1beta1/module").MsgSend;
|
|
23
18
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
24
19
|
memo?: string;
|
|
25
20
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
26
|
-
|
|
21
|
+
sendMsgMultiSend({ value, fee, memo }: {
|
|
27
22
|
value: import("./cosmos.bank.v1beta1/module").MsgMultiSend;
|
|
28
|
-
|
|
23
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
24
|
+
memo?: string;
|
|
25
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
29
26
|
msgSend({ value }: {
|
|
30
27
|
value: import("./cosmos.bank.v1beta1/module").MsgSend;
|
|
31
28
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
29
|
+
msgMultiSend({ value }: {
|
|
30
|
+
value: import("./cosmos.bank.v1beta1/module").MsgMultiSend;
|
|
31
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
32
32
|
};
|
|
33
33
|
structure: Record<string, unknown>;
|
|
34
34
|
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
@@ -38,11 +38,21 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
38
38
|
CosmosStakingV1Beta1: {
|
|
39
39
|
query: import("./cosmos.staking.v1beta1/rest").Api<unknown>;
|
|
40
40
|
tx: {
|
|
41
|
+
sendMsgCancelUnbondingDelegation({ value, fee, memo }: {
|
|
42
|
+
value: import("./cosmos.staking.v1beta1/module").MsgCancelUnbondingDelegation;
|
|
43
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
44
|
+
memo?: string;
|
|
45
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
41
46
|
sendMsgCreateValidator({ value, fee, memo }: {
|
|
42
47
|
value: import("./cosmos.staking.v1beta1/module").MsgCreateValidator;
|
|
43
48
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
44
49
|
memo?: string;
|
|
45
50
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
51
|
+
sendMsgEditValidator({ value, fee, memo }: {
|
|
52
|
+
value: import("./cosmos.staking.v1beta1/module").MsgEditValidator;
|
|
53
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
54
|
+
memo?: string;
|
|
55
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
46
56
|
sendMsgBeginRedelegate({ value, fee, memo }: {
|
|
47
57
|
value: import("./cosmos.staking.v1beta1/module").MsgBeginRedelegate;
|
|
48
58
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
@@ -53,39 +63,29 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
53
63
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
54
64
|
memo?: string;
|
|
55
65
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
56
|
-
sendMsgEditValidator({ value, fee, memo }: {
|
|
57
|
-
value: import("./cosmos.staking.v1beta1/module").MsgEditValidator;
|
|
58
|
-
fee?: import("@cosmjs/launchpad").StdFee;
|
|
59
|
-
memo?: string;
|
|
60
|
-
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
61
66
|
sendMsgUndelegate({ value, fee, memo }: {
|
|
62
67
|
value: import("./cosmos.staking.v1beta1/module").MsgUndelegate;
|
|
63
68
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
64
69
|
memo?: string;
|
|
65
70
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
66
|
-
|
|
71
|
+
msgCancelUnbondingDelegation({ value }: {
|
|
67
72
|
value: import("./cosmos.staking.v1beta1/module").MsgCancelUnbondingDelegation;
|
|
68
|
-
|
|
69
|
-
memo?: string;
|
|
70
|
-
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
73
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
71
74
|
msgCreateValidator({ value }: {
|
|
72
75
|
value: import("./cosmos.staking.v1beta1/module").MsgCreateValidator;
|
|
73
76
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
77
|
+
msgEditValidator({ value }: {
|
|
78
|
+
value: import("./cosmos.staking.v1beta1/module").MsgEditValidator;
|
|
79
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
74
80
|
msgBeginRedelegate({ value }: {
|
|
75
81
|
value: import("./cosmos.staking.v1beta1/module").MsgBeginRedelegate;
|
|
76
82
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
77
83
|
msgDelegate({ value }: {
|
|
78
84
|
value: import("./cosmos.staking.v1beta1/module").MsgDelegate;
|
|
79
85
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
80
|
-
msgEditValidator({ value }: {
|
|
81
|
-
value: import("./cosmos.staking.v1beta1/module").MsgEditValidator;
|
|
82
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
83
86
|
msgUndelegate({ value }: {
|
|
84
87
|
value: import("./cosmos.staking.v1beta1/module").MsgUndelegate;
|
|
85
88
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
86
|
-
msgCancelUnbondingDelegation({ value }: {
|
|
87
|
-
value: import("./cosmos.staking.v1beta1/module").MsgCancelUnbondingDelegation;
|
|
88
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
89
89
|
};
|
|
90
90
|
structure: Record<string, unknown>;
|
|
91
91
|
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
@@ -103,11 +103,6 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
103
103
|
CosmosAuthzV1Beta1: {
|
|
104
104
|
query: import("./cosmos.authz.v1beta1/rest").Api<unknown>;
|
|
105
105
|
tx: {
|
|
106
|
-
sendMsgRevoke({ value, fee, memo }: {
|
|
107
|
-
value: import("./cosmos.authz.v1beta1/module").MsgRevoke;
|
|
108
|
-
fee?: import("@cosmjs/launchpad").StdFee;
|
|
109
|
-
memo?: string;
|
|
110
|
-
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
111
106
|
sendMsgGrant({ value, fee, memo }: {
|
|
112
107
|
value: import("./cosmos.authz.v1beta1/module").MsgGrant;
|
|
113
108
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
@@ -118,15 +113,20 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
118
113
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
119
114
|
memo?: string;
|
|
120
115
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
121
|
-
|
|
116
|
+
sendMsgRevoke({ value, fee, memo }: {
|
|
122
117
|
value: import("./cosmos.authz.v1beta1/module").MsgRevoke;
|
|
123
|
-
|
|
118
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
119
|
+
memo?: string;
|
|
120
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
124
121
|
msgGrant({ value }: {
|
|
125
122
|
value: import("./cosmos.authz.v1beta1/module").MsgGrant;
|
|
126
123
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
127
124
|
msgExec({ value }: {
|
|
128
125
|
value: import("./cosmos.authz.v1beta1/module").MsgExec;
|
|
129
126
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
127
|
+
msgRevoke({ value }: {
|
|
128
|
+
value: import("./cosmos.authz.v1beta1/module").MsgRevoke;
|
|
129
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
130
130
|
};
|
|
131
131
|
structure: Record<string, unknown>;
|
|
132
132
|
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
@@ -186,6 +186,11 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
186
186
|
CosmosDistributionV1Beta1: {
|
|
187
187
|
query: import("./cosmos.distribution.v1beta1/rest").Api<unknown>;
|
|
188
188
|
tx: {
|
|
189
|
+
sendMsgFundCommunityPool({ value, fee, memo }: {
|
|
190
|
+
value: import("./cosmos.distribution.v1beta1/module").MsgFundCommunityPool;
|
|
191
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
192
|
+
memo?: string;
|
|
193
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
189
194
|
sendMsgCommunityPoolSpend({ value, fee, memo }: {
|
|
190
195
|
value: import("./cosmos.distribution.v1beta1/module").MsgCommunityPoolSpend;
|
|
191
196
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
@@ -196,6 +201,11 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
196
201
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
197
202
|
memo?: string;
|
|
198
203
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
204
|
+
sendMsgWithdrawValidatorCommission({ value, fee, memo }: {
|
|
205
|
+
value: import("./cosmos.distribution.v1beta1/module").MsgWithdrawValidatorCommission;
|
|
206
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
207
|
+
memo?: string;
|
|
208
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
199
209
|
sendMsgUpdateParams({ value, fee, memo }: {
|
|
200
210
|
value: import("./cosmos.distribution.v1beta1/module").MsgUpdateParams;
|
|
201
211
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
@@ -206,34 +216,24 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
206
216
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
207
217
|
memo?: string;
|
|
208
218
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
209
|
-
|
|
219
|
+
msgFundCommunityPool({ value }: {
|
|
210
220
|
value: import("./cosmos.distribution.v1beta1/module").MsgFundCommunityPool;
|
|
211
|
-
|
|
212
|
-
memo?: string;
|
|
213
|
-
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
214
|
-
sendMsgWithdrawValidatorCommission({ value, fee, memo }: {
|
|
215
|
-
value: import("./cosmos.distribution.v1beta1/module").MsgWithdrawValidatorCommission;
|
|
216
|
-
fee?: import("@cosmjs/launchpad").StdFee;
|
|
217
|
-
memo?: string;
|
|
218
|
-
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
221
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
219
222
|
msgCommunityPoolSpend({ value }: {
|
|
220
223
|
value: import("./cosmos.distribution.v1beta1/module").MsgCommunityPoolSpend;
|
|
221
224
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
222
225
|
msgWithdrawDelegatorReward({ value }: {
|
|
223
226
|
value: import("./cosmos.distribution.v1beta1/module").MsgWithdrawDelegatorReward;
|
|
224
227
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
228
|
+
msgWithdrawValidatorCommission({ value }: {
|
|
229
|
+
value: import("./cosmos.distribution.v1beta1/module").MsgWithdrawValidatorCommission;
|
|
230
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
225
231
|
msgUpdateParams({ value }: {
|
|
226
232
|
value: import("./cosmos.distribution.v1beta1/module").MsgUpdateParams;
|
|
227
233
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
228
234
|
msgSetWithdrawAddress({ value }: {
|
|
229
235
|
value: import("./cosmos.distribution.v1beta1/module").MsgSetWithdrawAddress;
|
|
230
236
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
231
|
-
msgFundCommunityPool({ value }: {
|
|
232
|
-
value: import("./cosmos.distribution.v1beta1/module").MsgFundCommunityPool;
|
|
233
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
234
|
-
msgWithdrawValidatorCommission({ value }: {
|
|
235
|
-
value: import("./cosmos.distribution.v1beta1/module").MsgWithdrawValidatorCommission;
|
|
236
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
237
237
|
};
|
|
238
238
|
structure: Record<string, unknown>;
|
|
239
239
|
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
@@ -295,6 +295,11 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
295
295
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
296
296
|
memo?: string;
|
|
297
297
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
298
|
+
sendMsgSubmitProposal({ value, fee, memo }: {
|
|
299
|
+
value: import("./cosmos.gov.v1/module").MsgSubmitProposal;
|
|
300
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
301
|
+
memo?: string;
|
|
302
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
298
303
|
sendMsgUpdateParams({ value, fee, memo }: {
|
|
299
304
|
value: import("./cosmos.gov.v1/module").MsgUpdateParams;
|
|
300
305
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
@@ -305,26 +310,21 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
305
310
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
306
311
|
memo?: string;
|
|
307
312
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
308
|
-
sendMsgSubmitProposal({ value, fee, memo }: {
|
|
309
|
-
value: import("./cosmos.gov.v1/module").MsgSubmitProposal;
|
|
310
|
-
fee?: import("@cosmjs/launchpad").StdFee;
|
|
311
|
-
memo?: string;
|
|
312
|
-
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
313
313
|
msgVote({ value }: {
|
|
314
314
|
value: import("./cosmos.gov.v1/module").MsgVote;
|
|
315
315
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
316
316
|
msgVoteWeighted({ value }: {
|
|
317
317
|
value: import("./cosmos.gov.v1/module").MsgVoteWeighted;
|
|
318
318
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
319
|
+
msgSubmitProposal({ value }: {
|
|
320
|
+
value: import("./cosmos.gov.v1/module").MsgSubmitProposal;
|
|
321
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
319
322
|
msgUpdateParams({ value }: {
|
|
320
323
|
value: import("./cosmos.gov.v1/module").MsgUpdateParams;
|
|
321
324
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
322
325
|
msgDeposit({ value }: {
|
|
323
326
|
value: import("./cosmos.gov.v1/module").MsgDeposit;
|
|
324
327
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
325
|
-
msgSubmitProposal({ value }: {
|
|
326
|
-
value: import("./cosmos.gov.v1/module").MsgSubmitProposal;
|
|
327
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
328
328
|
};
|
|
329
329
|
structure: Record<string, unknown>;
|
|
330
330
|
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
@@ -339,11 +339,6 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
339
339
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
340
340
|
memo?: string;
|
|
341
341
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
342
|
-
sendMsgDeposit({ value, fee, memo }: {
|
|
343
|
-
value: import("./cosmos.gov.v1beta1/module").MsgDeposit;
|
|
344
|
-
fee?: import("@cosmjs/launchpad").StdFee;
|
|
345
|
-
memo?: string;
|
|
346
|
-
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
347
342
|
sendMsgVote({ value, fee, memo }: {
|
|
348
343
|
value: import("./cosmos.gov.v1beta1/module").MsgVote;
|
|
349
344
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
@@ -354,18 +349,23 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
354
349
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
355
350
|
memo?: string;
|
|
356
351
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
352
|
+
sendMsgDeposit({ value, fee, memo }: {
|
|
353
|
+
value: import("./cosmos.gov.v1beta1/module").MsgDeposit;
|
|
354
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
355
|
+
memo?: string;
|
|
356
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
357
357
|
msgSubmitProposal({ value }: {
|
|
358
358
|
value: import("./cosmos.gov.v1beta1/module").MsgSubmitProposal;
|
|
359
359
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
360
|
-
msgDeposit({ value }: {
|
|
361
|
-
value: import("./cosmos.gov.v1beta1/module").MsgDeposit;
|
|
362
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
363
360
|
msgVote({ value }: {
|
|
364
361
|
value: import("./cosmos.gov.v1beta1/module").MsgVote;
|
|
365
362
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
366
363
|
msgVoteWeighted({ value }: {
|
|
367
364
|
value: import("./cosmos.gov.v1beta1/module").MsgVoteWeighted;
|
|
368
365
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
366
|
+
msgDeposit({ value }: {
|
|
367
|
+
value: import("./cosmos.gov.v1beta1/module").MsgDeposit;
|
|
368
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
369
369
|
};
|
|
370
370
|
structure: Record<string, unknown>;
|
|
371
371
|
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
@@ -375,23 +375,23 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
375
375
|
CosmosGroupV1: {
|
|
376
376
|
query: import("./cosmos.group.v1/rest").Api<unknown>;
|
|
377
377
|
tx: {
|
|
378
|
-
|
|
379
|
-
value: import("./cosmos.group.v1/module").
|
|
378
|
+
sendMsgLeaveGroup({ value, fee, memo }: {
|
|
379
|
+
value: import("./cosmos.group.v1/module").MsgLeaveGroup;
|
|
380
380
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
381
381
|
memo?: string;
|
|
382
382
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
383
|
-
|
|
384
|
-
value: import("./cosmos.group.v1/module").
|
|
383
|
+
sendMsgCreateGroup({ value, fee, memo }: {
|
|
384
|
+
value: import("./cosmos.group.v1/module").MsgCreateGroup;
|
|
385
385
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
386
386
|
memo?: string;
|
|
387
387
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
388
|
-
|
|
389
|
-
value: import("./cosmos.group.v1/module").
|
|
388
|
+
sendMsgUpdateGroupPolicyMetadata({ value, fee, memo }: {
|
|
389
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyMetadata;
|
|
390
390
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
391
391
|
memo?: string;
|
|
392
392
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
393
|
-
|
|
394
|
-
value: import("./cosmos.group.v1/module").
|
|
393
|
+
sendMsgExec({ value, fee, memo }: {
|
|
394
|
+
value: import("./cosmos.group.v1/module").MsgExec;
|
|
395
395
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
396
396
|
memo?: string;
|
|
397
397
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
@@ -400,92 +400,92 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
400
400
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
401
401
|
memo?: string;
|
|
402
402
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
403
|
-
|
|
404
|
-
value: import("./cosmos.group.v1/module").
|
|
403
|
+
sendMsgCreateGroupWithPolicy({ value, fee, memo }: {
|
|
404
|
+
value: import("./cosmos.group.v1/module").MsgCreateGroupWithPolicy;
|
|
405
405
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
406
406
|
memo?: string;
|
|
407
407
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
408
|
-
|
|
409
|
-
value: import("./cosmos.group.v1/module").
|
|
408
|
+
sendMsgUpdateGroupPolicyAdmin({ value, fee, memo }: {
|
|
409
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyAdmin;
|
|
410
410
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
411
411
|
memo?: string;
|
|
412
412
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
413
|
-
|
|
414
|
-
value: import("./cosmos.group.v1/module").
|
|
413
|
+
sendMsgWithdrawProposal({ value, fee, memo }: {
|
|
414
|
+
value: import("./cosmos.group.v1/module").MsgWithdrawProposal;
|
|
415
415
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
416
416
|
memo?: string;
|
|
417
417
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
418
|
-
|
|
419
|
-
value: import("./cosmos.group.v1/module").
|
|
418
|
+
sendMsgUpdateGroupPolicyDecisionPolicy({ value, fee, memo }: {
|
|
419
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyDecisionPolicy;
|
|
420
420
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
421
421
|
memo?: string;
|
|
422
422
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
423
|
-
|
|
424
|
-
value: import("./cosmos.group.v1/module").
|
|
423
|
+
sendMsgUpdateGroupMetadata({ value, fee, memo }: {
|
|
424
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupMetadata;
|
|
425
425
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
426
426
|
memo?: string;
|
|
427
427
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
428
|
-
|
|
429
|
-
value: import("./cosmos.group.v1/module").
|
|
428
|
+
sendMsgVote({ value, fee, memo }: {
|
|
429
|
+
value: import("./cosmos.group.v1/module").MsgVote;
|
|
430
430
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
431
431
|
memo?: string;
|
|
432
432
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
433
|
-
|
|
434
|
-
value: import("./cosmos.group.v1/module").
|
|
433
|
+
sendMsgSubmitProposal({ value, fee, memo }: {
|
|
434
|
+
value: import("./cosmos.group.v1/module").MsgSubmitProposal;
|
|
435
435
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
436
436
|
memo?: string;
|
|
437
437
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
438
|
-
|
|
439
|
-
value: import("./cosmos.group.v1/module").
|
|
438
|
+
sendMsgCreateGroupPolicy({ value, fee, memo }: {
|
|
439
|
+
value: import("./cosmos.group.v1/module").MsgCreateGroupPolicy;
|
|
440
440
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
441
441
|
memo?: string;
|
|
442
442
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
443
|
-
|
|
444
|
-
value: import("./cosmos.group.v1/module").
|
|
443
|
+
sendMsgUpdateGroupMembers({ value, fee, memo }: {
|
|
444
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupMembers;
|
|
445
445
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
446
446
|
memo?: string;
|
|
447
447
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
448
|
-
|
|
449
|
-
value: import("./cosmos.group.v1/module").
|
|
448
|
+
msgLeaveGroup({ value }: {
|
|
449
|
+
value: import("./cosmos.group.v1/module").MsgLeaveGroup;
|
|
450
450
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
451
|
-
|
|
452
|
-
value: import("./cosmos.group.v1/module").
|
|
451
|
+
msgCreateGroup({ value }: {
|
|
452
|
+
value: import("./cosmos.group.v1/module").MsgCreateGroup;
|
|
453
453
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
454
|
-
|
|
455
|
-
value: import("./cosmos.group.v1/module").
|
|
454
|
+
msgUpdateGroupPolicyMetadata({ value }: {
|
|
455
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyMetadata;
|
|
456
456
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
457
|
-
|
|
458
|
-
value: import("./cosmos.group.v1/module").
|
|
457
|
+
msgExec({ value }: {
|
|
458
|
+
value: import("./cosmos.group.v1/module").MsgExec;
|
|
459
459
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
460
460
|
msgUpdateGroupAdmin({ value }: {
|
|
461
461
|
value: import("./cosmos.group.v1/module").MsgUpdateGroupAdmin;
|
|
462
462
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
463
|
-
msgUpdateGroupPolicyDecisionPolicy({ value }: {
|
|
464
|
-
value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyDecisionPolicy;
|
|
465
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
466
463
|
msgCreateGroupWithPolicy({ value }: {
|
|
467
464
|
value: import("./cosmos.group.v1/module").MsgCreateGroupWithPolicy;
|
|
468
465
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
469
|
-
|
|
470
|
-
value: import("./cosmos.group.v1/module").
|
|
471
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
472
|
-
msgVote({ value }: {
|
|
473
|
-
value: import("./cosmos.group.v1/module").MsgVote;
|
|
474
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
475
|
-
msgUpdateGroupMembers({ value }: {
|
|
476
|
-
value: import("./cosmos.group.v1/module").MsgUpdateGroupMembers;
|
|
466
|
+
msgUpdateGroupPolicyAdmin({ value }: {
|
|
467
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyAdmin;
|
|
477
468
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
478
|
-
|
|
479
|
-
value: import("./cosmos.group.v1/module").
|
|
469
|
+
msgWithdrawProposal({ value }: {
|
|
470
|
+
value: import("./cosmos.group.v1/module").MsgWithdrawProposal;
|
|
480
471
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
481
|
-
|
|
482
|
-
value: import("./cosmos.group.v1/module").
|
|
472
|
+
msgUpdateGroupPolicyDecisionPolicy({ value }: {
|
|
473
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyDecisionPolicy;
|
|
483
474
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
484
475
|
msgUpdateGroupMetadata({ value }: {
|
|
485
476
|
value: import("./cosmos.group.v1/module").MsgUpdateGroupMetadata;
|
|
486
477
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
487
|
-
|
|
488
|
-
value: import("./cosmos.group.v1/module").
|
|
478
|
+
msgVote({ value }: {
|
|
479
|
+
value: import("./cosmos.group.v1/module").MsgVote;
|
|
480
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
481
|
+
msgSubmitProposal({ value }: {
|
|
482
|
+
value: import("./cosmos.group.v1/module").MsgSubmitProposal;
|
|
483
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
484
|
+
msgCreateGroupPolicy({ value }: {
|
|
485
|
+
value: import("./cosmos.group.v1/module").MsgCreateGroupPolicy;
|
|
486
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
487
|
+
msgUpdateGroupMembers({ value }: {
|
|
488
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupMembers;
|
|
489
489
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
490
490
|
};
|
|
491
491
|
structure: Record<string, unknown>;
|
|
@@ -545,22 +545,22 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
545
545
|
CosmosUpgradeV1Beta1: {
|
|
546
546
|
query: import("./cosmos.upgrade.v1beta1/rest").Api<unknown>;
|
|
547
547
|
tx: {
|
|
548
|
-
sendMsgCancelUpgrade({ value, fee, memo }: {
|
|
549
|
-
value: import("./cosmos.upgrade.v1beta1/module").MsgCancelUpgrade;
|
|
550
|
-
fee?: import("@cosmjs/launchpad").StdFee;
|
|
551
|
-
memo?: string;
|
|
552
|
-
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
553
548
|
sendMsgSoftwareUpgrade({ value, fee, memo }: {
|
|
554
549
|
value: import("./cosmos.upgrade.v1beta1/module").MsgSoftwareUpgrade;
|
|
555
550
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
556
551
|
memo?: string;
|
|
557
552
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
558
|
-
|
|
553
|
+
sendMsgCancelUpgrade({ value, fee, memo }: {
|
|
559
554
|
value: import("./cosmos.upgrade.v1beta1/module").MsgCancelUpgrade;
|
|
560
|
-
|
|
555
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
556
|
+
memo?: string;
|
|
557
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
561
558
|
msgSoftwareUpgrade({ value }: {
|
|
562
559
|
value: import("./cosmos.upgrade.v1beta1/module").MsgSoftwareUpgrade;
|
|
563
560
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
561
|
+
msgCancelUpgrade({ value }: {
|
|
562
|
+
value: import("./cosmos.upgrade.v1beta1/module").MsgCancelUpgrade;
|
|
563
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
564
564
|
};
|
|
565
565
|
structure: Record<string, unknown>;
|
|
566
566
|
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
@@ -575,25 +575,25 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
575
575
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
576
576
|
memo?: string;
|
|
577
577
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
578
|
-
|
|
579
|
-
value: import("./cosmos.vesting.v1beta1/module").
|
|
578
|
+
sendMsgCreatePeriodicVestingAccount({ value, fee, memo }: {
|
|
579
|
+
value: import("./cosmos.vesting.v1beta1/module").MsgCreatePeriodicVestingAccount;
|
|
580
580
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
581
581
|
memo?: string;
|
|
582
582
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
583
|
-
|
|
584
|
-
value: import("./cosmos.vesting.v1beta1/module").
|
|
583
|
+
sendMsgCreatePermanentLockedAccount({ value, fee, memo }: {
|
|
584
|
+
value: import("./cosmos.vesting.v1beta1/module").MsgCreatePermanentLockedAccount;
|
|
585
585
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
586
586
|
memo?: string;
|
|
587
587
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
588
588
|
msgCreateVestingAccount({ value }: {
|
|
589
589
|
value: import("./cosmos.vesting.v1beta1/module").MsgCreateVestingAccount;
|
|
590
590
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
591
|
-
msgCreatePermanentLockedAccount({ value }: {
|
|
592
|
-
value: import("./cosmos.vesting.v1beta1/module").MsgCreatePermanentLockedAccount;
|
|
593
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
594
591
|
msgCreatePeriodicVestingAccount({ value }: {
|
|
595
592
|
value: import("./cosmos.vesting.v1beta1/module").MsgCreatePeriodicVestingAccount;
|
|
596
593
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
594
|
+
msgCreatePermanentLockedAccount({ value }: {
|
|
595
|
+
value: import("./cosmos.vesting.v1beta1/module").MsgCreatePermanentLockedAccount;
|
|
596
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
597
597
|
};
|
|
598
598
|
structure: Record<string, unknown>;
|
|
599
599
|
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
@@ -661,12 +661,20 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
661
661
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
662
662
|
memo?: string;
|
|
663
663
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
664
|
+
sendMsgUpdateParams({ value, fee, memo }: {
|
|
665
|
+
value: import("./iconlake.drop/module").MsgUpdateParams;
|
|
666
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
667
|
+
memo?: string;
|
|
668
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
664
669
|
msgInit({ value }: {
|
|
665
670
|
value: import("./iconlake.drop/module").MsgInit;
|
|
666
671
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
667
672
|
msgMint({ value }: {
|
|
668
673
|
value: import("./iconlake.drop/module").MsgMint;
|
|
669
674
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
675
|
+
msgUpdateParams({ value }: {
|
|
676
|
+
value: import("./iconlake.drop/module").MsgUpdateParams;
|
|
677
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
670
678
|
};
|
|
671
679
|
structure: Record<string, unknown>;
|
|
672
680
|
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
@@ -676,13 +684,13 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
676
684
|
IconlakeIcon: {
|
|
677
685
|
query: import("./iconlake.icon/rest").Api<unknown>;
|
|
678
686
|
tx: {
|
|
679
|
-
|
|
680
|
-
value: import("./iconlake.icon/module").
|
|
687
|
+
sendMsgUpdateClass({ value, fee, memo }: {
|
|
688
|
+
value: import("./iconlake.icon/module").MsgUpdateClass;
|
|
681
689
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
682
690
|
memo?: string;
|
|
683
691
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
684
|
-
|
|
685
|
-
value: import("./iconlake.icon/module").
|
|
692
|
+
sendMsgBurn({ value, fee, memo }: {
|
|
693
|
+
value: import("./iconlake.icon/module").MsgBurn;
|
|
686
694
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
687
695
|
memo?: string;
|
|
688
696
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
@@ -691,12 +699,12 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
691
699
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
692
700
|
memo?: string;
|
|
693
701
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
694
|
-
msgBurn({ value }: {
|
|
695
|
-
value: import("./iconlake.icon/module").MsgBurn;
|
|
696
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
697
702
|
msgUpdateClass({ value }: {
|
|
698
703
|
value: import("./iconlake.icon/module").MsgUpdateClass;
|
|
699
704
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
705
|
+
msgBurn({ value }: {
|
|
706
|
+
value: import("./iconlake.icon/module").MsgBurn;
|
|
707
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
700
708
|
msgMint({ value }: {
|
|
701
709
|
value: import("./iconlake.icon/module").MsgMint;
|
|
702
710
|
}): import("@cosmjs/proto-signing").EncodeObject;
|